:root {
  --navy: #062f5f;
  --deep: #04101f;
  --blue: #0b5d92;
  --green: #64d42f;
  --lime: #97ff4e;
  --ice: #f3f8fb;
  --steel: #718091;
  --ink: #111827;
  --muted: #627084;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--deep);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 18px clamp(16px, 4vw, 48px) auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 10px 12px 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 16, 31, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  width: 70px;
  height: 42px;
  place-items: center;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(6, 47, 95, 0.94), rgba(4, 16, 31, 0.96));
  box-shadow: 0 0 0 1px rgba(151, 255, 78, 0.16), 0 14px 34px rgba(0, 0, 0, 0.28);
}

.brand-mark svg {
  width: 60px;
  height: auto;
  overflow: visible;
}

.brand-mark path {
  fill: none;
  stroke: #0d5b92;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.brand-mark .accent {
  stroke: var(--green);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 4px;
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

nav a:hover {
  color: var(--lime);
}

.header-cta,
footer > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 5px;
  color: var(--deep);
  background: var(--green);
  font-weight: 950;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: clamp(28px, 5vw, 70px);
  min-height: 100vh;
  padding: 150px clamp(18px, 5vw, 76px) 66px;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 16, 31, 0.98) 0%, rgba(4, 16, 31, 0.78) 42%, rgba(4, 16, 31, 0.2) 74%),
    linear-gradient(0deg, rgba(4, 16, 31, 0.9) 0%, rgba(4, 16, 31, 0.1) 38%),
    url("assets/hero-roofing-dfw.png") center / cover;
  transform: scale(1.015);
}

.hero::before {
  position: absolute;
  inset: auto -12vw -18vw -12vw;
  height: 38vw;
  min-height: 300px;
  background:
    linear-gradient(130deg, transparent 0 31%, rgba(100, 212, 47, 0.9) 31% 33%, transparent 33% 100%),
    linear-gradient(34deg, rgba(6, 47, 95, 0.84), rgba(4, 16, 31, 0.95));
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.4vw, 5.95rem);
  line-height: 0.93;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.02;
}

.hero-subcopy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  padding: 9px 12px;
  border: 1px solid rgba(151, 255, 78, 0.28);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(4, 16, 31, 0.42);
  font-size: 0.82rem;
  font-weight: 900;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 5px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.button.primary,
button {
  color: var(--deep);
  background: var(--green);
  box-shadow: 0 16px 40px rgba(100, 212, 47, 0.24);
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #081829;
  color: rgba(255, 255, 255, 0.78);
}

.proof-strip span {
  display: grid;
  min-height: 84px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 900;
  text-align: center;
}

.measurement-feature,
.services,
.claims-process,
.campaign-section,
.contact-section,
footer {
  padding: clamp(64px, 8vw, 118px) clamp(18px, 5vw, 76px);
}

.measurement-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(100, 212, 47, 0.12), transparent 28%),
    #f7fbfd;
}

.measurement-copy h2,
.section-kicker h2,
.claims-heading h2,
.campaign-copy h2,
.contact-copy h2 {
  color: var(--deep);
}

.measurement-copy p:not(.eyebrow),
.campaign-copy p,
.contact-copy p,
.service-card p,
footer p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.measurement-eyebrow {
  color: var(--green-dark, #3d9f17);
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  letter-spacing: 0.16em;
}

.measurement-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 26px;
  padding: 0 24px;
  border-radius: 5px;
  color: #fff;
  background: var(--deep);
  box-shadow: 0 18px 42px rgba(4, 16, 31, 0.16);
  font-weight: 950;
}

.measurement-cta:hover {
  color: var(--deep);
  background: var(--green);
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.mini-proof span {
  padding: 10px 12px;
  border: 1px solid rgba(4, 16, 31, 0.11);
  color: var(--deep);
  background: #fff;
  box-shadow: 0 12px 34px rgba(4, 16, 31, 0.08);
  font-size: 0.86rem;
  font-weight: 950;
}

.measurement-report {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(4, 16, 31, 0.14);
  background: var(--deep);
  box-shadow: var(--shadow);
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
}

.measurement-report::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(151, 255, 78, 0.34);
  pointer-events: none;
  content: "";
}

.measurement-report img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.report-callout {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 260px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(4, 16, 31, 0.78);
  backdrop-filter: blur(14px);
}

.report-callout strong,
.report-callout span {
  display: block;
}

.report-callout strong {
  margin-bottom: 4px;
  color: var(--lime);
}

.report-callout span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.45;
}

.measurement-flow {
  display: grid;
  gap: 14px;
  perspective: 900px;
}

.flow-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--deep), var(--navy));
  box-shadow: 0 24px 60px rgba(4, 16, 31, 0.18);
  transform: skewX(-8deg);
}

.flow-step > * {
  transform: skewX(8deg);
}

.flow-step.active {
  color: var(--deep);
  background: var(--green);
}

.flow-step small {
  color: currentColor;
  opacity: 0.62;
}

.flow-step strong {
  font-size: clamp(1.2rem, 2.4vw, 2rem);
}

.services {
  background:
    linear-gradient(180deg, rgba(4, 16, 31, 0.92), rgba(4, 16, 31, 1)),
    radial-gradient(circle at 80% 10%, rgba(100, 212, 47, 0.22), transparent 30%);
  color: #fff;
}

.claims-process {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 96px);
  background:
    radial-gradient(circle at 18% 20%, rgba(100, 212, 47, 0.16), transparent 28%),
    linear-gradient(180deg, #02070e, #050f1d);
  color: #fff;
}

.claims-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.claims-heading h2 {
  color: #fff;
}

.claims-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.claim-timeline {
  position: relative;
  display: grid;
  gap: 34px;
}

.claim-timeline::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 34px;
  width: 2px;
  background: linear-gradient(var(--green), #25b8ff, var(--green));
  opacity: 0.7;
  content: "";
}

.claim-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  align-items: start;
}

.claim-timeline article > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 3px solid var(--green);
  border-radius: 50%;
  color: var(--lime);
  background: #050f1d;
  box-shadow: 0 0 26px rgba(100, 212, 47, 0.38);
  font-size: 1.08rem;
  font-weight: 950;
}

.claim-timeline article:nth-child(odd) > span {
  border-color: #25b8ff;
  color: #7bdcff;
  box-shadow: 0 0 30px rgba(37, 184, 255, 0.34);
}

.claim-timeline div {
  padding: 0 0 26px;
}

.claim-timeline h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 3.2rem);
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(100, 212, 47, 0.28);
}

.claim-timeline article:nth-child(odd) h3 {
  text-shadow: 0 0 24px rgba(37, 184, 255, 0.34);
}

.claim-timeline p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
  line-height: 1.72;
}

.section-kicker {
  max-width: 940px;
  margin-bottom: 40px;
}

.section-kicker h2 {
  color: #fff;
}

.service-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-image:
    linear-gradient(180deg, rgba(4, 16, 31, 0.04), rgba(4, 16, 31, 0.2) 42%, rgba(4, 16, 31, 0.88) 100%),
    var(--service-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  cursor: zoom-in;
}

.service-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(151, 255, 78, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(4, 16, 31, 0.18), transparent 45%);
  opacity: 0.52;
  content: "";
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.16), transparent 22%);
  opacity: 0.28;
  content: "";
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card span {
  width: fit-content;
  margin-bottom: auto;
  padding: 6px 9px;
  color: var(--deep);
  background: var(--green);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 560px;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.22rem, 1.55vw, 1.72rem);
  line-height: 1.08;
}

.service-card p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.86rem, 0.95vw, 0.98rem);
  line-height: 1.52;
}

.service-card:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.metal-card {
  grid-row: span 2;
  min-height: 540px;
  --service-image: url("assets/service-metal-roof.png");
  background-position: center;
}

.metal-card h3 {
  font-size: clamp(1.55rem, 2.1vw, 2.35rem);
}

.metal-card p {
  max-width: 610px;
}

.shingle-card {
  --service-image: url("assets/service-shingle-roof.png");
}

.repair-card {
  --service-image: url("assets/service-storm-repair.png");
}

.siding-card {
  --service-image: url("assets/service-siding.png");
}

.gutter-card {
  --service-image: url("assets/service-gutters.png");
}

.campaign-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(151, 255, 78, 0.16), transparent 28%),
    linear-gradient(135deg, #f7fbfd 0%, #eef5f8 100%);
}

.campaign-art {
  position: relative;
  min-height: 520px;
}

.review-art {
  display: grid;
  align-content: center;
  gap: 22px;
  min-height: 500px;
}

.review-score-card,
.review-theme-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(4, 16, 31, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(4, 16, 31, 0.14);
  backdrop-filter: blur(16px);
}

.review-score-card {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 420px;
  padding: 22px;
}

.google-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background:
    conic-gradient(from 20deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  font-size: 2rem;
  font-weight: 950;
}

.review-score-card small,
.review-theme-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.review-score-card strong {
  display: block;
  margin-top: 4px;
  color: var(--deep);
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1;
}

.star-burst {
  display: flex;
  gap: clamp(7px, 1vw, 12px);
  padding: 10px 0;
  color: var(--green);
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 1;
  text-shadow: 0 18px 42px rgba(100, 212, 47, 0.22);
}

.star-burst span:nth-child(even) {
  color: var(--navy);
  transform: translateY(14px);
}

.review-theme-card {
  max-width: 480px;
  margin-left: clamp(18px, 5vw, 90px);
  padding: 24px;
}

.review-theme-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.review-theme-card li {
  position: relative;
  padding-left: 26px;
  color: var(--deep);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 900;
}

.review-theme-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "★";
}

.angle-panel {
  position: absolute;
  width: 72%;
  height: 48%;
  border: 1px solid rgba(4, 16, 31, 0.18);
  box-shadow: var(--shadow);
  transform: skewY(-13deg);
}

.panel-one {
  top: 4%;
  left: 10%;
  background:
    repeating-linear-gradient(90deg, #203449 0 13px, #071827 13px 25px);
}

.panel-two {
  top: 30%;
  right: 4%;
  background:
    repeating-linear-gradient(135deg, #555e69 0 18px, #303842 18px 36px);
}

.panel-three {
  bottom: 4%;
  left: 0;
  background:
    repeating-linear-gradient(0deg, #dce5eb 0 18px, #b9c6d0 18px 22px);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag-cloud span {
  padding: 10px 13px;
  border: 1px solid rgba(4, 16, 31, 0.12);
  background: #fff;
  color: var(--deep);
  font-weight: 900;
}

.trust-cloud span:first-child {
  color: var(--deep);
  background: var(--green);
  border-color: transparent;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(6, 47, 95, 0.92), rgba(4, 16, 31, 1)),
    #061629;
  color: #fff;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.inspection-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
}

.inspection-points span {
  padding: 10px 13px;
  border: 1px solid rgba(151, 255, 78, 0.26);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-direct a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(151, 255, 78, 0.28);
  color: #fff;
  background: rgba(4, 16, 31, 0.34);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-direct a:first-child {
  color: var(--deep);
  background: var(--green);
}

blockquote {
  max-width: 720px;
  margin: 34px 0 0;
  padding: 24px 0 24px 24px;
  border-left: 5px solid var(--green);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  line-height: 1.22;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.booking-panel {
  align-content: start;
  gap: 18px;
}

.booking-kicker {
  margin: 0;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-panel h3 {
  margin: 0;
  max-width: 520px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
}

.booking-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.booking-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.booking-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 11px;
  height: 11px;
  border: 2px solid var(--green);
  background: rgba(151, 255, 78, 0.18);
}

.calendly-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  color: var(--deep);
  background: var(--green);
  box-shadow: 0 18px 42px rgba(82, 216, 41, 0.22);
  font-size: 1rem;
  font-weight: 950;
  text-align: center;
}

.calendly-button:hover {
  transform: translateY(-1px);
}

.form-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.45;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: #fff;
  background: rgba(4, 16, 31, 0.72);
  font: inherit;
}

select option {
  color: var(--ink);
}

::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.chatbot-teaser {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 2px;
  min-height: 64px;
  padding: 12px 18px;
  border: 1px solid rgba(151, 255, 78, 0.38);
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 16, 31, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  text-align: center;
}

.chatbot-teaser span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chatbot-teaser strong {
  font-size: 0.94rem;
}

footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  background: #fff;
}

.footer-brand {
  color: var(--deep);
}

footer .brand-mark {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(6, 47, 95, 0.12), 0 16px 34px rgba(4, 16, 31, 0.08);
}

footer .brand-text strong {
  color: var(--navy);
}

footer .brand-text small {
  color: var(--green-dark, #3d9f17);
}

footer p {
  margin-bottom: 0;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-contact a:hover {
  color: var(--green-dark, #3d9f17);
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.quote-tab {
  position: fixed;
  right: -8px;
  top: 48%;
  z-index: 58;
  width: 190px;
  height: 330px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  transform: translateY(-50%);
}

.quote-tab img {
  position: absolute;
  right: 18px;
  top: 0;
  width: 180px;
  max-width: none;
  pointer-events: none;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.34));
}

.quote-tab span {
  position: absolute;
  right: 0;
  top: 26px;
  bottom: 26px;
  display: grid;
  width: 42px;
  place-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border: 1px solid rgba(151, 255, 78, 0.38);
  border-radius: 13px 0 0 13px;
  color: var(--deep);
  background: linear-gradient(180deg, var(--lime), var(--green));
  box-shadow: var(--shadow);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.quote-tab:hover img {
  transform: translateX(-4px);
}

.quote-tab img,
.quote-tab span {
  transition: transform 180ms ease;
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: clamp(16px, 4vw, 56px);
}

.image-lightbox[aria-hidden="false"] {
  display: grid;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: rgba(2, 7, 14, 0.84);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.image-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #061629;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.image-lightbox-panel img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #02070e;
}

.image-lightbox-panel h2 {
  margin: 0;
  padding: 14px 18px;
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
}

.image-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 46px;
  min-height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(4, 16, 31, 0.82);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  font-size: 1.8rem;
  line-height: 1;
}

.quote-embed-preview {
  display: grid;
  gap: 22px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(24px, 4vw, 46px);
}

.quote-address-form {
  display: grid;
  gap: 10px;
}

.quote-address-form label {
  color: var(--deep);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-address-row {
  display: grid;
  grid-template-columns: 1fr 210px;
  border: 1px solid rgba(4, 16, 31, 0.16);
  background: #fff;
  box-shadow: 0 14px 34px rgba(4, 16, 31, 0.08);
}

.quote-address-row input {
  min-height: 64px;
  border: 0;
  border-radius: 0;
  color: var(--deep);
  background: #fff;
  font-size: 1rem;
}

.quote-address-row input::placeholder {
  color: #9aa3af;
}

.quote-address-row button {
  min-height: 64px;
  border-radius: 0;
  box-shadow: none;
  text-transform: uppercase;
}

.quote-embed-preview img {
  display: block;
  width: 100%;
  max-height: min(460px, 48vh);
  object-fit: cover;
  border: 1px solid rgba(4, 16, 31, 0.12);
}

.quote-frame-note {
  margin: -22px clamp(18px, 5vw, 72px) 28px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

.concept-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(100, 212, 47, 0.16), transparent 28%),
    linear-gradient(135deg, #02070e, #061a31 55%, #02070e);
}

.concept-wrap {
  padding: clamp(30px, 5vw, 72px);
}

.concept-hero {
  max-width: 1020px;
  padding: 24px 0 46px;
}

.concept-hero h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.concept-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
  line-height: 1.7;
}

.back-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--lime);
  font-weight: 950;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.concept-card {
  display: grid;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.concept-card.selected {
  border-color: rgba(151, 255, 78, 0.48);
}

.logo-sample {
  display: grid;
  min-height: 250px;
  place-items: center;
  padding: 26px;
  background: #fff;
  color: var(--deep);
}

.logo-sample-a {
  gap: 14px;
}

.brand-mark.large {
  width: 150px;
  height: 90px;
}

.brand-mark.large svg {
  width: 124px;
}

.brand-mark.large path {
  stroke-width: 4.5;
}

.sample-text {
  display: grid;
  justify-items: center;
  text-align: center;
  line-height: 1;
}

.sample-text strong {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.sample-text small {
  margin-top: 8px;
  color: var(--green-dark, #3d9f17);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-sample-b {
  grid-template-columns: 110px 1fr;
  gap: 18px;
}

.shield-mark {
  display: grid;
  width: 104px;
  height: 120px;
  place-items: center;
  clip-path: polygon(50% 0, 94% 16%, 86% 78%, 50% 100%, 14% 78%, 6% 16%);
  background:
    linear-gradient(135deg, rgba(151, 255, 78, 0.92), rgba(100, 212, 47, 0.92)),
    var(--green);
}

.shield-mark span {
  color: var(--deep);
  font-size: 2.1rem;
  font-weight: 950;
}

.logo-sample-b .sample-text {
  justify-items: start;
  text-align: left;
}

.logo-sample-c {
  grid-template-columns: 130px 1fr;
  gap: 16px;
  overflow: hidden;
}

.logo-sample-c img {
  width: 150px;
  max-height: 190px;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 16px 28px rgba(4, 16, 31, 0.16));
}

.logo-sample-c .sample-text {
  justify-items: start;
  text-align: left;
}

.concept-card h2,
.mascot-preview h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
}

.concept-card p,
.mascot-preview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.mascot-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.side-tab-demo {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #fff;
}

.side-tab-demo img {
  position: absolute;
  right: 32px;
  bottom: 0;
  width: 270px;
}

.side-tab-demo span {
  position: absolute;
  right: 0;
  top: 44px;
  bottom: 44px;
  display: grid;
  width: 54px;
  place-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--deep);
  background: var(--green);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  nav {
    display: none;
  }

  .hero,
  .measurement-feature,
  .claims-process,
  .campaign-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: center;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer p,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .claims-heading {
    position: static;
  }

  .service-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .metal-card {
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .site-header {
    inset: 10px 10px auto;
    min-height: 66px;
    padding: 8px 8px 8px 13px;
  }

  .brand img {
    width: 136px;
  }

  .brand-mark {
    width: 54px;
    height: 34px;
  }

  .brand-mark svg {
    width: 46px;
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .brand-text small {
    font-size: 0.48rem;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  h1 {
    font-size: 2.85rem;
  }

  .hero-subcopy {
    font-size: 1.03rem;
  }

  .hero-actions .button,
  footer > a {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    min-height: 58px;
  }

  .flow-step {
    transform: none;
  }

  .flow-step > * {
    transform: none;
  }

  .measurement-report {
    transform: none;
  }

  .measurement-report img {
    min-height: 300px;
  }

  .report-callout {
    position: static;
    max-width: none;
  }

  .service-showcase {
    grid-template-columns: 1fr;
  }

  .claim-timeline {
    gap: 26px;
  }

  .claim-timeline::before {
    left: 27px;
  }

  .claim-timeline article {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .claim-timeline article > span {
    width: 56px;
    height: 56px;
    font-size: 0.9rem;
  }

  .chatbot-teaser {
    left: 12px;
    bottom: 12px;
    min-height: 56px;
    padding: 10px 14px;
  }

  .campaign-art {
    min-height: 360px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    display: grid;
    justify-content: stretch;
  }

  .footer-contact a {
    min-height: 36px;
  }

  .quote-tab {
    right: -16px;
    top: auto;
    bottom: 18px;
    width: 158px;
    height: 240px;
    transform: none;
  }

  .quote-tab img {
    right: 16px;
    width: 136px;
  }

  .quote-tab span {
    width: 34px;
    top: 20px;
    bottom: 20px;
    font-size: 0.62rem;
  }

  .quote-address-row {
    grid-template-columns: 1fr;
  }

  .quote-embed-preview img {
    max-height: 300px;
  }

  .concept-grid,
  .mascot-preview {
    grid-template-columns: 1fr;
  }

  .logo-sample-b,
  .logo-sample-c {
    grid-template-columns: 1fr;
  }

  .logo-sample-b .sample-text,
  .logo-sample-c .sample-text {
    justify-items: center;
    text-align: center;
  }
}
