:root {
  --ink: #f4f7fb;
  --muted: #9aa9bd;
  --dark: #08111d;
  --dark-2: #0b1726;
  --panel: #101d2d;
  --panel-2: #132235;
  --line: rgba(159, 185, 219, 0.17);
  --blue: #49aef5;
  --blue-2: #83cfff;
  --mint: #78e2c1;
  --cream: #f0eee8;
  --cream-ink: #172230;
  --cream-muted: #637080;
  --shell: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 2%, rgba(73, 174, 245, .15), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(120, 226, 193, .09), transparent 25%),
    linear-gradient(180deg, #08121f 0%, #07101b 40%, #08111d 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .38;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 55%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; color: var(--muted); line-height: 1.7; }
h1, h2, h3 { margin: 0; letter-spacing: -.035em; }
h1 { max-width: 870px; font-size: clamp(3.4rem, 6.6vw, 6.7rem); line-height: .96; font-weight: 720; }
h2 { max-width: 720px; font-size: clamp(2.35rem, 4.8vw, 4.55rem); line-height: 1; font-weight: 680; }
h3 { font-size: 1.35rem; line-height: 1.16; }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding-block: 120px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--mint);
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: linear-gradient(90deg, var(--blue), var(--mint)); }

.site-header {
  position: sticky;
  top: 18px;
  z-index: 50;
  width: min(calc(100% - 40px), var(--shell));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 11px 13px 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 16, 28, .8);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.brand img { width: 40px; height: 40px; border-radius: 11px; }
.brand-name { font-size: 1.2rem; font-weight: 780; letter-spacing: -.025em; }
.brand-inc { align-self: flex-end; margin: 0 0 8px -4px; color: var(--muted); font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 29px; color: #adbacb; font-size: .88rem; font-weight: 560; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: white; }
.nav-cta { padding: 12px 17px; border: 1px solid rgba(131, 207, 255, .27); border-radius: 999px; color: white !important; background: rgba(73, 174, 245, .1); }
.mobile-nav { display: none; position: relative; }
.mobile-nav summary { display: grid; gap: 4px; padding: 12px; cursor: pointer; list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary span { width: 21px; height: 2px; border-radius: 3px; background: var(--ink); }
.mobile-nav nav { position: absolute; top: 54px; right: 0; display: grid; width: 220px; padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: #0b1726; box-shadow: 0 18px 45px rgba(0,0,0,.4); }
.mobile-nav nav a { padding: 13px 14px; border-radius: 10px; color: #c7d1de; }
.mobile-nav nav a:hover { background: rgba(255,255,255,.05); color: white; }

.hero { min-height: calc(100vh - 88px); display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 60px; padding-block: 96px 78px; }
.hero-copy { position: relative; z-index: 2; }
.hero-lede { max-width: 720px; margin-top: 30px; color: #b1bfd1; font-size: 1.12rem; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 19px; border: 1px solid transparent; border-radius: 999px; font-size: .91rem; font-weight: 680; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #06111b; background: linear-gradient(135deg, var(--blue-2), var(--mint)); box-shadow: 0 12px 34px rgba(73, 174, 245, .2); }
.button-secondary { border-color: var(--line); color: #dde7f3; background: rgba(255,255,255,.035); }
.button-secondary:hover { border-color: rgba(159, 185, 219, .35); background: rgba(255,255,255,.065); }
.location-line { display: flex; align-items: center; gap: 9px; margin-top: 27px; color: #73849a; font-size: .78rem; }
.location-line span { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(120, 226, 193, .09); }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: 390px; height: 390px; border-radius: 50%; background: radial-gradient(circle, rgba(73, 174, 245, .2), rgba(73,174,245,.035) 52%, transparent 70%); filter: blur(6px); }
.signal-card { position: absolute; z-index: 2; border: 1px solid rgba(156, 193, 233, .19); background: linear-gradient(155deg, rgba(18, 34, 53, .94), rgba(10, 22, 36, .92)); box-shadow: 0 30px 70px rgba(0,0,0,.38); backdrop-filter: blur(18px); }
.signal-card-main { width: min(100%, 430px); padding: 26px; border-radius: 28px; transform: rotate(-1.8deg); }
.signal-topline { display: flex; justify-content: space-between; align-items: center; color: #8fa1b7; font-size: .7rem; font-weight: 660; letter-spacing: .05em; text-transform: uppercase; }
.live-dot { display: inline-flex; align-items: center; gap: 6px; color: var(--mint); }
.live-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--mint); }
.signal-label { margin-top: 34px; color: #8b9db3; font-size: .78rem; }
.signal-value { margin-top: 4px; color: white; font-size: 1.55rem; font-weight: 680; letter-spacing: -.03em; }
.chart { height: 145px; display: flex; align-items: flex-end; gap: 10px; margin-top: 26px; padding: 16px 13px 0; border-bottom: 1px solid var(--line); background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 100% 34px; }
.chart span { flex: 1; min-width: 7px; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--mint), var(--blue)); opacity: .82; }
.metric-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; margin-top: 19px; color: #8293a8; font-size: .64rem; text-transform: uppercase; letter-spacing: .07em; }
.signal-card-small { right: -18px; bottom: 52px; width: 185px; display: grid; gap: 8px; padding: 20px; border-radius: 20px; transform: rotate(3deg); color: #9caec1; font-size: .75rem; line-height: 1.45; }
.signal-number { color: white; font-size: 2rem; font-weight: 720; line-height: 1; }
.orbit { position: absolute; border: 1px solid rgba(132, 173, 217, .09); border-radius: 50%; }
.orbit-one { width: 460px; height: 460px; }
.orbit-two { width: 340px; height: 340px; border-style: dashed; transform: rotate(22deg); }

.proof-band { border-block: 1px solid var(--line); background: rgba(13, 25, 41, .72); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-height: 126px; display: grid; align-content: center; gap: 8px; padding: 24px 28px; border-left: 1px solid var(--line); }
.proof-grid > div:last-child { border-right: 1px solid var(--line); }
.proof-grid strong { font-size: 1.75rem; letter-spacing: -.04em; }
.proof-grid span { color: #8394a9; font-size: .78rem; }

.section-intro { max-width: 800px; margin-bottom: 50px; }
.section-intro > p:last-child { max-width: 700px; margin-top: 24px; font-size: 1.04rem; }
.split-intro { max-width: none; display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; align-items: end; }
.split-intro > p:last-child { margin: 0; padding-bottom: 6px; }
.situation-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.situation-card { min-height: 285px; padding: 27px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(10, 22, 36, .34); transition: background .22s ease, transform .22s ease; }
.situation-card:hover { position: relative; z-index: 2; transform: translateY(-4px); background: rgba(17, 33, 52, .86); }
.card-index { display: block; margin-bottom: 58px; color: var(--blue); font-size: .7rem; letter-spacing: .12em; }
.situation-card p { margin-top: 15px; font-size: .9rem; line-height: 1.65; }

.section-deep { position: relative; border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(13, 27, 44, .94), rgba(8, 18, 31, .88)); overflow: hidden; }
.section-deep::before { content: ""; position: absolute; inset: -30% -20% auto auto; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(73,174,245,.1), transparent 65%); }
.engagement-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.engagement-card { position: relative; min-height: 510px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(18, 34, 53, .88), rgba(10, 22, 37, .88)); box-shadow: 0 24px 60px rgba(0,0,0,.2); overflow: hidden; }
.engagement-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--mint)); opacity: .55; }
.engagement-number { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 52px; border: 1px solid rgba(120,226,193,.22); border-radius: 50%; color: var(--mint); font-size: .71rem; font-weight: 750; letter-spacing: .1em; }
.engagement-card h3 { max-width: 270px; font-size: 1.55rem; }
.engagement-card > p { min-height: 110px; margin-top: 18px; font-size: .91rem; }
.engagement-card ul { display: grid; gap: 13px; margin: 27px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; color: #b0bdcc; font-size: .83rem; }
.engagement-card li { display: flex; gap: 10px; }
.engagement-card li::before { content: ""; width: 6px; height: 6px; flex: 0 0 auto; margin-top: 6px; border-radius: 50%; background: var(--blue); }
.card-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; color: var(--mint); font-size: .82rem; font-weight: 680; }
.card-link span { transition: transform .2s ease; }
.card-link:hover span { transform: translateX(4px); }

.channel-band { padding-block: 32px; border-bottom: 1px solid var(--line); background: #0a1421; }
.channel-layout { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.channel-layout > span { color: #718298; font-size: .68rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.channel-layout > div { display: flex; flex-wrap: wrap; gap: 30px; color: #c6d0dc; font-size: .87rem; }

.process-list { border-top: 1px solid var(--line); }
.process-list article { display: grid; grid-template-columns: 75px .72fr 1.2fr; gap: 28px; align-items: start; padding-block: 29px; border-bottom: 1px solid var(--line); }
.process-list article > span { color: var(--blue); font-size: .69rem; letter-spacing: .12em; }
.process-list h3 { font-size: 1.1rem; }
.process-list p { max-width: 650px; font-size: .91rem; line-height: 1.6; }

.outcome-section { color: var(--cream-ink); background: var(--cream); }
.outcome-section .eyebrow { color: #267bb2; }
.outcome-section p { color: var(--cream-muted); }
.outcome-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.outcome-grid > div:first-child > p:last-child { max-width: 540px; margin-top: 25px; font-size: 1rem; }
.outcome-list { border-top: 1px solid rgba(23,34,48,.15); }
.outcome-list article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding-block: 28px; border-bottom: 1px solid rgba(23,34,48,.15); }
.outcome-list article > span { color: #348ec7; font-size: .7rem; letter-spacing: .1em; }
.outcome-list h3 { font-size: 1.15rem; }
.outcome-list p { margin-top: 9px; font-size: .91rem; line-height: 1.6; }

.about-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 95px; align-items: start; }
.about-identity { position: sticky; top: 135px; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(18,34,53,.92), rgba(9,20,34,.94)); }
.about-brand { gap: 14px; }
.about-brand img { width: 58px; height: 58px; border-radius: 15px; }
.about-brand .brand-name { font-size: 1.5rem; }
.about-brand .brand-inc { margin-bottom: 11px; }
.about-identity p { margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--line); font-size: .8rem; }
.about-copy h2 { max-width: 800px; }
.about-copy > p:not(.eyebrow) { max-width: 750px; margin-top: 24px; font-size: .99rem; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; padding-bottom: 7px; border-bottom: 1px solid rgba(120,226,193,.35); color: var(--mint); font-size: .88rem; font-weight: 650; }
.text-link span { font-size: 1.1rem; }

.contact-section { padding-top: 45px; }
.contact-card { position: relative; padding: clamp(36px, 7vw, 78px); border: 1px solid rgba(120,226,193,.2); border-radius: 34px; background: linear-gradient(135deg, rgba(18,38,58,.97), rgba(10,24,39,.98)); box-shadow: 0 32px 80px rgba(0,0,0,.3); overflow: hidden; }
.contact-card::after { content: ""; position: absolute; right: -140px; top: -170px; width: 430px; height: 430px; border: 1px solid rgba(120,226,193,.11); border-radius: 50%; box-shadow: 0 0 0 60px rgba(73,174,245,.03), 0 0 0 120px rgba(73,174,245,.02); }
.contact-card h2 { position: relative; z-index: 2; max-width: 900px; }
.contact-card > p:not(.eyebrow) { position: relative; z-index: 2; max-width: 720px; margin-top: 24px; }
.contact-card .hero-actions { position: relative; z-index: 2; }

.site-footer { min-height: 130px; display: grid; grid-template-columns: 1fr auto auto; gap: 35px; align-items: center; border-top: 1px solid var(--line); }
.footer-brand img { width: 34px; height: 34px; }
.footer-brand .brand-name { font-size: 1rem; }
.site-footer > p { font-size: .72rem; }

@media (max-width: 980px) {
  h1 { font-size: clamp(3rem, 8.5vw, 5.8rem); }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 25px; padding-block: 100px 65px; }
  .hero-copy { max-width: 850px; }
  .hero-visual { min-height: 480px; }
  .signal-card-main { width: min(82vw, 470px); }
  .signal-card-small { right: 9%; }
  .situation-grid { grid-template-columns: repeat(2, 1fr); }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card { min-height: auto; }
  .engagement-number { margin-bottom: 35px; }
  .engagement-card > p { min-height: auto; max-width: 700px; }
  .split-intro, .outcome-grid, .about-section { grid-template-columns: 1fr; gap: 48px; }
  .about-identity { position: static; }
}

@media (max-width: 700px) {
  .shell, .site-header { width: min(calc(100% - 24px), var(--shell)); }
  .section { padding-block: 82px; }
  .site-header { top: 10px; margin-top: 10px; min-height: 62px; padding: 8px 9px 8px 13px; }
  .brand img { width: 34px; height: 34px; }
  .brand-name { font-size: 1.03rem; }
  .brand-inc { margin-bottom: 6px; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.6rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.4rem); }
  .hero { padding-top: 85px; }
  .hero-lede { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .location-line { align-items: flex-start; line-height: 1.5; }
  .location-line span { margin-top: 5px; }
  .hero-visual { min-height: 390px; margin-top: 12px; }
  .signal-card-main { width: 94%; padding: 20px; }
  .signal-card-small { right: 0; bottom: 12px; width: 165px; }
  .chart { height: 112px; }
  .orbit-one { width: 350px; height: 350px; }
  .orbit-two { width: 270px; height: 270px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div { min-height: 110px; padding: 22px 18px; }
  .proof-grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-grid strong { font-size: 1.45rem; }
  .section-intro { margin-bottom: 38px; }
  .split-intro { gap: 26px; }
  .situation-grid { grid-template-columns: 1fr; }
  .situation-card { min-height: 235px; }
  .card-index { margin-bottom: 38px; }
  .engagement-card { padding: 24px 21px; }
  .channel-layout { align-items: flex-start; }
  .channel-layout > div { display: grid; gap: 11px; text-align: right; }
  .process-list article { grid-template-columns: 42px 1fr; gap: 12px; }
  .process-list p { grid-column: 2; }
  .outcome-grid { gap: 45px; }
  .about-identity { padding: 28px; }
  .contact-section { padding-top: 20px; }
  .contact-card { border-radius: 26px; }
  .site-footer { grid-template-columns: 1fr; gap: 13px; padding-block: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Google Ads audit service page */
.service-hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 72px;
  align-items: center;
  padding-block: 92px 84px;
}
.service-hero h1 { max-width: 760px; font-size: clamp(3.25rem, 5.8vw, 5.9rem); }
.service-hero-copy { position: relative; z-index: 2; }
.service-note { max-width: 650px; margin-top: 17px; color: #73849a; font-size: .76rem; line-height: 1.55; }

.search-diagnostic { position: relative; min-height: 570px; display: grid; place-items: center; }
.search-diagnostic::before { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle, rgba(73,174,245,.19), rgba(120,226,193,.035) 57%, transparent 72%); filter: blur(5px); }
.diagnostic-window { position: relative; z-index: 2; width: min(100%, 485px); padding: 17px; border: 1px solid rgba(156,193,233,.2); border-radius: 28px; background: linear-gradient(155deg, rgba(18,34,53,.97), rgba(9,21,35,.97)); box-shadow: 0 34px 80px rgba(0,0,0,.42); transform: rotate(1.2deg); }
.window-bar { display: flex; gap: 6px; padding: 1px 3px 14px; border-bottom: 1px solid var(--line); }
.window-bar span { width: 7px; height: 7px; border-radius: 50%; background: #617287; }
.window-bar span:first-child { background: #db7c77; }
.window-bar span:nth-child(2) { background: #d4b96c; }
.window-bar span:nth-child(3) { background: #6cb69b; }
.search-query { display: grid; gap: 7px; margin-top: 16px; padding: 15px 16px; border: 1px solid rgba(159,185,219,.14); border-radius: 14px; background: rgba(255,255,255,.025); }
.search-query span, .diagnostic-score span { color: #74869c; font-size: .63rem; font-weight: 720; letter-spacing: .11em; text-transform: uppercase; }
.search-query strong { color: #e7edf5; font-size: .9rem; font-weight: 610; }
.ad-example { margin-top: 13px; padding: 18px 17px; border: 1px solid rgba(159,185,219,.12); border-radius: 15px; background: #f6f8fb; }
.ad-example .sponsored { color: #4f5965; font-size: .65rem; }
.ad-example h2 { max-width: none; margin-top: 10px; color: #205bb0; font-size: 1.15rem; font-weight: 650; letter-spacing: -.015em; line-height: 1.2; }
.ad-example p { margin-top: 7px; color: #4b5663; font-size: .75rem; line-height: 1.45; }
.ad-example .display-url { display: block; margin-top: 9px; color: #237348; font-size: .65rem; }
.diagnostic-score { display: grid; gap: 1px; margin-top: 13px; border: 1px solid rgba(159,185,219,.12); border-radius: 15px; overflow: hidden; background: rgba(159,185,219,.12); }
.diagnostic-score > div { display: grid; grid-template-columns: 115px 1fr; gap: 16px; align-items: center; min-height: 53px; padding: 10px 14px; background: #0d1b2c; }
.diagnostic-score strong { color: #d7e0eb; font-size: .76rem; font-weight: 620; }
.diagnostic-score .status-warning { color: #f0c97f; }
.diagnostic-callout { position: absolute; z-index: 3; right: -26px; bottom: 35px; width: 235px; padding: 18px; border: 1px solid rgba(120,226,193,.24); border-radius: 19px; background: rgba(10,25,40,.96); box-shadow: 0 22px 55px rgba(0,0,0,.37); transform: rotate(-2.5deg); }
.diagnostic-callout span { display: block; margin-bottom: 8px; color: var(--mint); font-size: .62rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.diagnostic-callout strong { color: #eaf0f7; font-size: .8rem; line-height: 1.45; }

.service-proof { border-block: 1px solid var(--line); background: rgba(13,25,41,.74); }
.service-proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.service-proof-grid > div { min-height: 112px; display: grid; align-content: center; gap: 8px; padding: 22px 26px; border-left: 1px solid var(--line); }
.service-proof-grid > div:last-child { border-right: 1px solid var(--line); }
.service-proof-grid span { color: #718399; font-size: .65rem; font-weight: 720; letter-spacing: .12em; text-transform: uppercase; }
.service-proof-grid strong { color: #dbe4ef; font-size: .9rem; font-weight: 640; }

.leak-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.leak-grid article { min-height: 275px; padding: 27px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(10,22,36,.34); }
.leak-grid article > span { display: block; margin-bottom: 54px; color: var(--blue); font-size: .68rem; letter-spacing: .12em; }
.leak-grid p { margin-top: 15px; font-size: .88rem; line-height: 1.63; }

.intent-section { padding-block: 112px; color: var(--cream-ink); background: var(--cream); }
.intent-section .eyebrow { color: #267bb2; }
.intent-section p { color: var(--cream-muted); }
.intent-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.intent-layout > div:first-child > p:last-child { max-width: 520px; margin-top: 24px; }
.intent-chain { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(23,34,48,.14); border-radius: 20px; overflow: hidden; }
.intent-chain article { position: relative; min-height: 220px; display: grid; align-content: space-between; gap: 16px; padding: 23px 19px; border-right: 1px solid rgba(23,34,48,.14); background: rgba(255,255,255,.28); }
.intent-chain article:last-child { border-right: 0; }
.intent-chain article:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; right: -12px; top: 50%; width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid rgba(23,34,48,.15); border-radius: 50%; color: #267bb2; background: var(--cream); font-size: .75rem; transform: translateY(-50%); }
.intent-chain span { color: #3987b7; font-size: .67rem; font-weight: 760; letter-spacing: .12em; }
.intent-chain strong { align-self: end; font-size: .96rem; line-height: 1.25; }
.intent-chain small { color: #697584; font-size: .72rem; line-height: 1.5; }

.package-section { border-top: 0; }
.package-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
.package-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 29px 27px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(18,34,53,.9), rgba(9,21,36,.91)); box-shadow: 0 24px 60px rgba(0,0,0,.22); overflow: hidden; }
.package-card-featured { border-color: rgba(120,226,193,.38); box-shadow: 0 28px 75px rgba(0,0,0,.3), 0 0 0 1px rgba(120,226,193,.07) inset; }
.featured-label { position: absolute; top: 0; right: 0; padding: 9px 15px; border-radius: 0 22px 0 16px; color: #06111b; background: linear-gradient(135deg, var(--blue-2), var(--mint)); font-size: .61rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.package-label { display: block; margin-bottom: 24px; color: var(--mint); font-size: .66rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.package-card h3 { max-width: 280px; font-size: 1.62rem; }
.price { display: flex; align-items: baseline; gap: 10px; margin-top: 23px; }
.price strong { color: white; font-size: 2rem; font-weight: 720; letter-spacing: -.045em; }
.price span { color: #71849a; font-size: .65rem; font-weight: 670; text-transform: uppercase; letter-spacing: .06em; }
.package-top > p:last-child { min-height: 104px; margin-top: 17px; font-size: .88rem; line-height: 1.6; }
.package-card ul { display: grid; gap: 12px; margin: 25px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; color: #b5c1cf; font-size: .82rem; }
.package-card li { display: flex; gap: 10px; line-height: 1.45; }
.package-card li::before { content: ""; width: 6px; height: 6px; flex: 0 0 auto; margin-top: 5px; border-radius: 50%; background: var(--blue); }
.package-card-featured li::before { background: var(--mint); }
.package-meta { min-height: 84px; margin: auto 0 20px; padding-top: 24px; color: #72849a; font-size: .71rem; line-height: 1.55; }
.package-card .button { align-self: stretch; width: 100%; }
.scope-line { max-width: 880px; margin: 27px auto 0; color: #6f8196; font-size: .71rem; line-height: 1.55; text-align: center; }

.foundation-list { border-top: 1px solid var(--line); }
.foundation-list article { display: grid; grid-template-columns: .72fr 1fr; gap: 70px; padding-block: 33px; border-bottom: 1px solid var(--line); }
.foundation-heading { grid-row: 1 / span 2; }
.foundation-heading > span { display: block; margin-bottom: 11px; color: var(--blue); font-size: .65rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.foundation-heading h3 { font-size: 1.27rem; }
.foundation-price { margin-top: 12px; color: var(--mint); font-size: .78rem; font-weight: 680; }
.foundation-list article > p { grid-column: 2; align-self: start; font-size: .91rem; line-height: 1.65; }
.foundation-list small { grid-column: 2; color: #687b91; font-size: .7rem; line-height: 1.5; }

.audit-process-section { border-block: 1px solid var(--line); background: #0a1421; }
.audit-process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.audit-process-grid article { min-height: 275px; padding: 24px 22px; border: 1px solid var(--line); border-radius: 19px; background: linear-gradient(180deg, rgba(18,34,53,.68), rgba(9,21,36,.62)); }
.audit-process-grid article > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 44px; border: 1px solid rgba(120,226,193,.22); border-radius: 50%; color: var(--mint); font-size: .67rem; font-weight: 730; }
.audit-process-grid h3 { font-size: 1.15rem; }
.audit-process-grid p { margin-top: 14px; font-size: .84rem; line-height: 1.62; }

.fit-section { color: var(--cream-ink); background: var(--cream); }
.fit-section .eyebrow { color: #267bb2; }
.fit-section p { color: var(--cream-muted); }
.fit-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 85px; align-items: start; }
.fit-grid > div:first-child > p:last-child { max-width: 510px; margin-top: 24px; }
.fit-columns { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(23,34,48,.14); border-radius: 22px; overflow: hidden; }
.fit-columns article { padding: 28px 25px; background: rgba(255,255,255,.27); }
.fit-columns article + article { border-left: 1px solid rgba(23,34,48,.14); background: rgba(23,34,48,.035); }
.fit-columns h3 { font-size: 1.2rem; }
.fit-columns ul { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; color: #536171; font-size: .82rem; }
.fit-columns li { display: flex; gap: 10px; line-height: 1.45; }
.fit-columns li::before { content: "✓"; color: #267bb2; font-weight: 800; }
.fit-columns article + article li::before { content: "—"; color: #78828d; }

.senior-section { padding-bottom: 42px; }
.senior-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; padding: clamp(34px,6vw,68px); border: 1px solid rgba(120,226,193,.2); border-radius: 30px; background: linear-gradient(135deg, rgba(18,38,58,.96), rgba(9,22,37,.98)); box-shadow: 0 30px 75px rgba(0,0,0,.26); }
.senior-card > div:last-child > p { font-size: .96rem; }

.faq-section { padding-top: 75px; }
.faq-list { max-width: 930px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 50px 24px 0; color: #e5ebf3; font-size: .98rem; font-weight: 620; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 50%; color: var(--mint); font-size: 1.45rem; font-weight: 350; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 800px; padding: 0 35px 25px 0; font-size: .89rem; line-height: 1.65; }

@media (max-width: 1100px) {
  .service-hero { grid-template-columns: 1fr; gap: 25px; padding-top: 105px; }
  .service-hero-copy { max-width: 880px; }
  .search-diagnostic { min-height: 560px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { max-width: 760px; width: 100%; margin-inline: auto; }
  .package-top > p:last-child, .package-meta { min-height: 0; }
  .intent-layout, .fit-grid, .senior-card { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 980px) {
  .leak-grid, .audit-process-grid { grid-template-columns: repeat(2,1fr); }
  .intent-chain { grid-template-columns: repeat(2,1fr); }
  .intent-chain article:nth-child(2) { border-right: 0; }
  .intent-chain article:nth-child(-n+2) { border-bottom: 1px solid rgba(23,34,48,.14); }
  .intent-chain article:nth-child(2)::after { display: none; }
  .service-proof-grid { grid-template-columns: repeat(2,1fr); }
  .service-proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .foundation-list article { grid-template-columns: .8fr 1.2fr; gap: 40px; }
}

@media (max-width: 700px) {
  .service-hero { min-height: auto; padding-block: 82px 60px; }
  .service-hero h1 { font-size: clamp(2.65rem, 12.7vw, 4.4rem); }
  .search-diagnostic { min-height: 485px; }
  .diagnostic-window { width: 98%; padding: 13px; border-radius: 22px; }
  .diagnostic-callout { right: 0; bottom: 5px; width: 205px; }
  .diagnostic-score > div { grid-template-columns: 92px 1fr; gap: 9px; }
  .service-proof-grid { grid-template-columns: 1fr 1fr; }
  .service-proof-grid > div { min-height: 100px; padding: 18px 15px; }
  .leak-grid, .audit-process-grid { grid-template-columns: 1fr; }
  .leak-grid article { min-height: 225px; }
  .leak-grid article > span { margin-bottom: 38px; }
  .intent-section { padding-block: 82px; }
  .intent-chain { grid-template-columns: 1fr; }
  .intent-chain article { min-height: 170px; border-right: 0; border-bottom: 1px solid rgba(23,34,48,.14); }
  .intent-chain article:last-child { border-bottom: 0; }
  .intent-chain article:not(:last-child)::after { left: 50%; right: auto; top: auto; bottom: -12px; content: "↓"; transform: translateX(-50%); }
  .intent-chain article:nth-child(2)::after { display: grid; }
  .package-card { padding: 27px 21px; }
  .foundation-list article { grid-template-columns: 1fr; gap: 18px; }
  .foundation-heading { grid-row: auto; }
  .foundation-list article > p, .foundation-list small { grid-column: 1; }
  .fit-columns { grid-template-columns: 1fr; }
  .fit-columns article + article { border-top: 1px solid rgba(23,34,48,.14); border-left: 0; }
  .senior-card { padding: 29px 23px; }
}
