:root {
  --ink: #102d3d;
  --ink-deep: #09202d;
  --muted: #60737d;
  --muted-light: #8ea2ab;
  --paper: #f4f7f8;
  --white: #ffffff;
  --line: #dce6e9;
  --teal: #16a9a0;
  --teal-dark: #087e7d;
  --teal-pale: #dff3f0;
  --orange: #f4a35b;
  --orange-pale: #fff0e2;
  --shadow: 0 24px 70px rgba(12, 43, 57, .10);
  --shadow-small: 0 10px 30px rgba(12, 43, 57, .08);
  --radius: 22px;
  --container: 1180px;
  --display: Georgia, 'Times New Roman', serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--teal); color: var(--white); }

.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section { padding: 128px 0; position: relative; }
.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 16px; z-index: 100; padding: 9px 14px; border-radius: 8px; color: var(--white); background: var(--ink-deep); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(244, 247, 248, .94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(220, 230, 233, .86); }
.utility-bar { background: var(--ink-deep); color: #c9d8dc; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.utility-inner { min-height: 33px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-location, .utility-links, .utility-links a { display: flex; align-items: center; gap: 8px; }
.utility-links { gap: 25px; }
.utility-links a { color: #fff; transition: color .2s ease; }
.utility-links a:hover { color: var(--orange); }
.status-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(244, 163, 91, .14); }
.nav-wrap { min-height: 83px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-mark { width: 39px; height: 39px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(16, 45, 61, .08); border-radius: 50%; background: var(--white); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { color: var(--ink); font-size: 23px; font-weight: 800; letter-spacing: -.045em; line-height: 1; }
.brand-footer .brand-name { color: var(--white); }
.primary-nav { display: flex; align-items: center; gap: 34px; }
.nav-link { position: relative; padding: 28px 0; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .02em; transition: color .2s ease; }
.nav-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: 19px; height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; align-items: center; gap: 11px; margin-left: 3px; padding: 12px 17px 12px 19px; color: var(--white); border-radius: 100px; background: var(--teal); font-size: 12px; font-weight: 800; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.nav-cta span, .button span { font-size: 16px; line-height: 1; }
.nav-cta:hover { background: var(--teal-dark); box-shadow: 0 7px 16px rgba(22, 169, 160, .25); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; padding: 8px; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

/* Shared typography / buttons */
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 22px; color: var(--teal-dark); font-size: 10px; font-weight: 800; letter-spacing: .18em; line-height: 1.2; text-transform: uppercase; }
.eyebrow-line { width: 28px; height: 2px; display: inline-block; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; }
h1, h2 { font-family: var(--display); font-weight: 400; }
h1 { max-width: 650px; margin-bottom: 25px; color: var(--ink-deep); font-size: clamp(52px, 6.1vw, 84px); line-height: .98; }
h2 { margin-bottom: 22px; color: var(--ink-deep); font-size: clamp(42px, 4.6vw, 65px); line-height: .99; }
h1 em, h2 em { color: var(--teal); font-style: italic; }
h3 { color: var(--ink-deep); font-size: 17px; line-height: 1.2; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 49px; padding: 12px 20px; border: 1px solid transparent; border-radius: 100px; font-size: 12px; font-weight: 800; letter-spacing: .01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--teal); box-shadow: 0 10px 22px rgba(22, 169, 160, .20); }
.button-primary:hover { background: var(--teal-dark); box-shadow: 0 13px 28px rgba(22, 169, 160, .28); }
.button-secondary { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.46); }
.button-secondary:hover { border-color: var(--teal); background: var(--white); }
.button-light { color: var(--ink-deep); background: var(--white); }
.button-light:hover { color: var(--teal-dark); box-shadow: 0 10px 24px rgba(9, 32, 45, .13); }
.button-dark { color: var(--white); background: var(--ink-deep); }
.button-dark:hover { background: #173e4f; box-shadow: 0 10px 24px rgba(9, 32, 45, .25); }
.button-full { width: 100%; border: 0; cursor: pointer; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-dark); font-size: 11px; font-weight: 800; }
.text-link span { font-size: 16px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

/* Hero */
.hero { min-height: 690px; overflow: hidden; padding-top: 102px; padding-bottom: 92px; background: var(--paper); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr); align-items: center; gap: 56px; }
.hero-copy { padding-bottom: 5px; }
.hero-lede { max-width: 540px; margin-bottom: 31px; color: var(--muted); font-size: 17px; line-height: 1.73; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-bottom: 28px; }
.hero-note { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; }
.checkmark { display: inline-grid; place-items: center; width: 18px; height: 18px; color: var(--teal-dark); border: 1px solid #9ad9d2; border-radius: 50%; background: var(--teal-pale); font-size: 11px; font-weight: 800; }
.hero-visual { position: relative; min-height: 490px; }
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-one { width: 580px; height: 580px; top: -190px; right: -165px; background: radial-gradient(circle, rgba(223,243,240,.95) 0%, rgba(223,243,240,0) 68%); }
.hero-glow-two { width: 420px; height: 420px; bottom: -270px; left: 14%; background: radial-gradient(circle, rgba(255,240,226,.75) 0%, rgba(255,240,226,0) 68%); }
.visual-orbit { position: absolute; border: 1px solid rgba(22, 169, 160, .18); border-radius: 50%; transform: rotate(-24deg); }
.orbit-one { width: 535px; height: 272px; top: 122px; left: 0; }
.orbit-two { width: 460px; height: 210px; top: 157px; left: 38px; border-color: rgba(244, 163, 91, .28); transform: rotate(35deg); }
.device-card { position: absolute; top: 73px; left: 89px; width: 393px; padding: 12px; border: 1px solid rgba(255,255,255,.8); border-radius: 17px; background: rgba(255,255,255,.62); box-shadow: 0 32px 60px rgba(23, 70, 82, .17), inset 0 0 0 1px rgba(255,255,255,.35); transform: rotate(-5deg); backdrop-filter: blur(10px); }
.device-topline { display: flex; align-items: center; gap: 8px; height: 24px; color: var(--muted-light); font-size: 7px; font-weight: 800; letter-spacing: .1em; }
.device-light { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 13px 0 0 #cfdee1, 26px 0 0 #cfdee1; margin-right: 26px; }
.device-menu { margin-left: auto; letter-spacing: 2px; }
.device-screen { position: relative; min-height: 246px; overflow: hidden; padding: 36px 30px 28px; border-radius: 9px; background: linear-gradient(135deg, #0e3444 0%, #114a57 63%, #0f7077 100%); }
.device-screen::before { content: ''; position: absolute; width: 210px; height: 210px; top: -90px; right: -38px; border: 1px solid rgba(161, 233, 224, .36); border-radius: 50%; box-shadow: 0 0 0 22px rgba(161, 233, 224, .05), 0 0 0 46px rgba(161, 233, 224, .04); }
.device-screen::after { content: ''; position: absolute; width: 90px; height: 90px; right: 28px; bottom: -36px; border-radius: 50%; background: rgba(244, 163, 91, .8); filter: blur(1px); }
.screen-label { position: relative; z-index: 1; margin-bottom: 19px; color: #9ed3d2; font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.screen-title { position: relative; z-index: 1; color: var(--white); font-family: var(--display); font-size: 36px; line-height: .98; letter-spacing: -.05em; }
.screen-title span { color: #8fe0d1; font-style: italic; }
.screen-lines { position: relative; z-index: 1; display: flex; gap: 5px; margin-top: 28px; }
.screen-lines i { display: block; height: 4px; border-radius: 4px; background: rgba(255,255,255,.25); }
.screen-lines i:nth-child(1) { width: 82px; background: var(--orange); }
.screen-lines i:nth-child(2) { width: 38px; }
.screen-lines i:nth-child(3) { width: 18px; }
.screen-chip { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; margin-top: 30px; padding: 6px 9px; color: #c3eeea; border: 1px solid rgba(195,238,234,.22); border-radius: 40px; background: rgba(255,255,255,.06); font-size: 8px; }
.chip-dot { width: 5px; height: 5px; border-radius: 50%; background: #8fe0d1; }
.device-base { width: 150px; height: 9px; margin: 8px auto 0; border-radius: 0 0 14px 14px; background: #b9cbd0; box-shadow: 0 5px 0 #9aafb5; }
.device-base span { display: inline-block; width: 4px; height: 4px; margin: 2px 1px 0; border-radius: 50%; background: #708e97; }
.rate-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.8); border-radius: 13px; background: rgba(255,255,255,.93); box-shadow: var(--shadow-small); }
.rate-card strong { color: var(--teal-dark); font-family: var(--display); font-size: 29px; line-height: 1; letter-spacing: -.05em; }
.rate-card span { color: var(--muted); font-size: 9px; font-weight: 700; line-height: 1.25; }
.rate-card-top { top: 36px; right: 11px; transform: rotate(4deg); }
.rate-card-bottom { right: 15px; bottom: 60px; transform: rotate(-3deg); }
.rate-card-bottom strong { color: var(--ink); }
.service-badge { position: absolute; bottom: 2px; left: 22px; display: flex; align-items: center; gap: 9px; padding: 11px 15px 11px 11px; border-radius: 12px; background: var(--ink-deep); box-shadow: 0 14px 28px rgba(9,32,45,.2); transform: rotate(3deg); }
.badge-icon { display: grid; place-items: center; width: 29px; height: 29px; color: var(--ink-deep); border-radius: 8px; background: var(--orange); font-size: 17px; }
.service-badge strong, .service-badge small { display: block; line-height: 1.2; }
.service-badge strong { color: #fff; font-size: 10px; }
.service-badge small { margin-top: 4px; color: #91b2ba; font-size: 8px; }

/* Trust strip */
.trust-strip { color: var(--white); background: var(--teal-dark); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; align-items: center; gap: 15px; min-height: 102px; padding: 15px 28px; border-right: 1px solid rgba(255,255,255,.15); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 32px; color: var(--teal-dark); border-radius: 50%; background: #a5e5dc; font-size: 15px; font-weight: 800; }
.trust-item strong, .trust-item small { display: block; line-height: 1.25; }
.trust-item strong { font-size: 13px; }
.trust-item small { margin-top: 4px; color: #b8dcd9; font-size: 10px; }

/* Services */
.services-section { background: var(--white); }
.section-heading { margin-bottom: 57px; }
.heading-row { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.heading-row h2 { margin-bottom: 0; }
.heading-aside { max-width: 350px; margin-bottom: 3px; color: var(--muted); font-size: 14px; line-height: 1.72; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { position: relative; min-height: 293px; padding: 29px 29px 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fbfcfc; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { border-color: #b5dcda; box-shadow: var(--shadow-small); transform: translateY(-5px); }
.service-card-featured { color: var(--white); border-color: var(--ink-deep); background: var(--ink-deep); }
.service-card-featured h3 { color: var(--white); }
.service-card-featured p { color: #a5bec4; }
.service-card-featured .service-icon { color: var(--ink-deep); background: var(--orange); }
.service-card-featured .service-number { color: #69909a; }
.service-card-featured .text-link { color: #8fe0d1; }
.service-number { position: absolute; top: 30px; right: 28px; color: #a8b9be; font-size: 10px; font-weight: 800; letter-spacing: .06em; }
.service-icon { display: grid; place-items: center; width: 47px; height: 47px; margin-bottom: 27px; color: var(--teal-dark); border-radius: 13px; background: var(--teal-pale); }
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { min-height: 41px; margin-bottom: 11px; }
.service-card p { min-height: 52px; margin-bottom: 19px; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* About */
.about-section { overflow: hidden; background: var(--paper); }
.about-grid { display: grid; grid-template-columns: minmax(400px, .91fr) minmax(0, 1.09fr); align-items: center; gap: 105px; }
.about-visual { position: relative; min-height: 520px; }
.about-label { position: absolute; z-index: 1; top: 29px; left: 27px; color: var(--ink-deep); font-family: var(--display); font-size: 25px; line-height: .98; letter-spacing: -.045em; }
.about-shape { position: absolute; }
.shape-main { top: 87px; left: 46px; width: 321px; height: 332px; border-radius: 47% 53% 42% 58% / 50% 42% 58% 50%; background: var(--teal-pale); transform: rotate(15deg); }
.shape-main::before { content: ''; position: absolute; inset: 40px 37px 42px 49px; border: 1px solid rgba(22, 169, 160, .25); border-radius: inherit; }
.shape-main::after { content: ''; position: absolute; top: 118px; left: 101px; width: 117px; height: 88px; border: 1px solid rgba(22, 169, 160, .35); border-radius: 50%; transform: rotate(-30deg); }
.shape-ring { top: 80px; left: 27px; width: 390px; height: 364px; border: 1px solid rgba(22, 169, 160, .28); border-radius: 50%; transform: rotate(-26deg); }
.shape-dot { top: 81px; right: 10px; width: 72px; height: 72px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 15px rgba(244, 163, 91, .13), 0 0 0 30px rgba(244, 163, 91, .07); }
.year-card { position: absolute; right: 0; bottom: 74px; display: flex; flex-direction: column; min-width: 143px; padding: 17px 18px; border-radius: 14px; color: var(--white); background: var(--ink-deep); box-shadow: var(--shadow-small); }
.year-card strong { color: var(--orange); font-family: var(--display); font-size: 35px; line-height: 1; letter-spacing: -.05em; }
.year-card span { margin-top: 7px; color: #a1bcc3; font-size: 9px; line-height: 1.35; }
.quote-card { position: absolute; bottom: 0; left: 3px; width: 236px; padding: 19px 22px 17px; border: 1px solid #eadfcf; border-radius: 14px; background: var(--white); box-shadow: var(--shadow-small); transform: rotate(-3deg); }
.quote-mark { display: block; height: 27px; color: var(--orange); font-family: Georgia, serif; font-size: 47px; line-height: 1; }
.quote-card p { margin: 0; color: var(--ink); font-family: var(--display); font-size: 16px; line-height: 1.22; letter-spacing: -.02em; }
.about-copy h2 { margin-bottom: 25px; }
.about-copy > p:not(.eyebrow) { max-width: 535px; color: var(--muted); font-size: 14px; line-height: 1.78; }
.founder-note { display: inline-flex; align-items: center; gap: 11px; margin-top: 13px; padding-top: 17px; border-top: 1px solid var(--line); min-width: 260px; }
.founder-avatar { display: grid; place-items: center; width: 38px; height: 38px; color: var(--teal-dark); border-radius: 50%; background: var(--teal-pale); font-size: 10px; font-weight: 800; letter-spacing: .05em; }
.founder-note strong, .founder-note small { display: block; line-height: 1.25; }
.founder-note strong { color: var(--ink); font-size: 12px; }
.founder-note small { margin-top: 4px; color: var(--muted); font-size: 10px; }

/* Audience */
.audience-section { padding-top: 0; background: var(--paper); }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.audience-card { min-height: 478px; padding: 51px 56px; border-radius: var(--radius); overflow: hidden; }
.audience-card h2 { margin-bottom: 22px; font-size: clamp(37px, 4vw, 56px); }
.audience-card p { max-width: 460px; font-size: 13px; line-height: 1.75; }
.audience-card p:last-of-type { margin-bottom: 29px; }
.audience-kicker { margin-bottom: 26px; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.residential-card { position: relative; color: var(--ink); background: var(--orange-pale); }
.residential-card::after { content: ''; position: absolute; right: -78px; bottom: -100px; width: 285px; height: 285px; border: 1px solid rgba(244, 163, 91, .6); border-radius: 50%; box-shadow: 0 0 0 23px rgba(244,163,91,.13), 0 0 0 46px rgba(244,163,91,.10); }
.residential-card > * { position: relative; z-index: 1; }
.residential-card h2 em { color: #d47731; }
.residential-card p { color: #7f624d; }
.business-card { position: relative; color: var(--white); background: var(--teal-dark); }
.business-card::before { content: ''; position: absolute; right: -45px; top: -66px; width: 274px; height: 274px; border: 1px solid rgba(177,241,230,.28); border-radius: 50%; box-shadow: 0 0 0 19px rgba(177,241,230,.05), 0 0 0 40px rgba(177,241,230,.04); }
.business-card::after { content: '＋'; position: absolute; right: 97px; top: 86px; color: rgba(177,241,230,.55); font-size: 28px; }
.business-card > * { position: relative; z-index: 1; }
.business-card h2 { color: var(--white); }
.business-card h2 em { color: #a5e5dc; }
.business-card p { color: #c0e1de; }

/* Pricing */
.pricing-section { color: var(--ink); background: var(--white); }
.pricing-heading { margin-bottom: 49px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price-card { min-height: 350px; display: flex; flex-direction: column; padding: 29px 30px 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fbfcfc; }
.price-card-dark { color: var(--white); border-color: var(--ink-deep); background: var(--ink-deep); }
.price-card-accent { border-color: #f5d3b3; background: var(--orange-pale); }
.price-topline { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.price-card-dark .price-topline { color: #94b4bc; }
.price-card-accent .price-topline { color: #b77342; }
.price-icon { display: inline-grid; place-items: center; width: 29px; height: 29px; color: var(--teal-dark); border-radius: 9px; background: var(--teal-pale); font-size: 17px; line-height: 1; }
.price-card-dark .price-icon { color: var(--ink-deep); background: #9ce1d8; }
.price-card-accent .price-icon { color: #bd6930; background: #ffd9b8; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 31px 0 17px; }
.price strong { color: var(--ink-deep); font-family: var(--display); font-size: clamp(42px, 4.1vw, 56px); font-weight: 400; line-height: .9; letter-spacing: -.07em; }
.price-card-dark .price strong { color: var(--white); }
.price-card-accent .price strong { color: #bf6e32; }
.price span { color: var(--muted); font-size: 10px; font-weight: 700; }
.price-card-dark .price span { color: #8eaeb6; }
.price-card p { min-height: 91px; margin-bottom: 23px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.price-card-dark p { color: #aac4ca; }
.price-card-accent p { color: #86644d; }
.price-detail { display: flex; flex-direction: column; gap: 4px; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line); }
.price-card-dark .price-detail { border-color: rgba(255,255,255,.16); }
.price-detail span { color: var(--muted-light); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.price-detail strong { color: var(--ink); font-size: 11px; }
.price-card-dark .price-detail span { color: #769aa4; }
.price-card-dark .price-detail strong { color: #e6f2f2; }
.guarantee { display: flex; align-items: center; gap: 9px; margin-top: auto; padding-top: 15px; border-top: 1px solid #edc9a8; color: #9c5624; font-size: 12px; }
.guarantee span { display: grid; place-items: center; width: 21px; height: 21px; color: #fff; border-radius: 50%; background: #d7823e; font-size: 11px; }
.pricing-footnote { max-width: 720px; margin: 25px auto 0; color: var(--muted); text-align: center; font-size: 11px; line-height: 1.6; }

/* Approach */
.approach-section { background: var(--paper); }
.approach-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 108px; }
.approach-grid h2 { margin-bottom: 0; }
.approach-steps { border-top: 1px solid var(--line); }
.approach-step { display: grid; grid-template-columns: 57px 1fr; gap: 22px; padding: 23px 0 22px; border-bottom: 1px solid var(--line); }
.step-number { color: var(--teal-dark); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.approach-step h3 { margin-bottom: 7px; font-size: 16px; }
.approach-step p { max-width: 520px; margin-bottom: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

/* Contact */
.contact-section { position: relative; overflow: hidden; padding: 108px 0; color: var(--white); background: var(--ink-deep); }
.contact-section::before { content: ''; position: absolute; width: 620px; height: 620px; top: -360px; right: -170px; border: 1px solid rgba(161, 233, 224, .18); border-radius: 50%; box-shadow: 0 0 0 27px rgba(161,233,224,.035), 0 0 0 58px rgba(161,233,224,.025); }
.contact-section::after { content: ''; position: absolute; width: 390px; height: 390px; bottom: -280px; left: -150px; border: 1px solid rgba(244,163,91,.20); border-radius: 50%; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 100px; }
.eyebrow-light { color: #8fe0d1; }
.contact-copy h2 { color: var(--white); }
.contact-copy h2 em { color: var(--orange); }
.contact-copy > p:not(.eyebrow) { max-width: 480px; color: #a8c2c8; font-size: 14px; line-height: 1.75; }
.contact-details { display: grid; grid-template-columns: repeat(2, max-content); gap: 19px 33px; margin-top: 37px; }
.contact-detail { display: flex; align-items: flex-start; gap: 11px; }
a.contact-detail { transition: transform .2s ease; }
a.contact-detail:hover { transform: translateX(3px); }
.contact-detail-icon { display: grid; place-items: center; width: 29px; height: 29px; flex: 0 0 29px; color: var(--ink-deep); border-radius: 9px; background: #a5e5dc; font-size: 14px; font-weight: 800; }
.contact-detail small, .contact-detail strong { display: block; line-height: 1.35; }
.contact-detail small { color: #82a8b0; font-size: 9px; }
.contact-detail strong { margin-top: 3px; color: var(--white); font-size: 12px; }
.contact-detail > span:last-child > small:last-child { margin-top: 5px; }
.contact-form-wrap { padding: 31px 33px 30px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.06); box-shadow: 0 20px 50px rgba(0,0,0,.15); backdrop-filter: blur(9px); }
.form-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; margin-bottom: 22px; color: #82b3b6; border-bottom: 1px solid rgba(255,255,255,.13); font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.form-spark { color: var(--orange); font-size: 16px; }
.contact-form-wrap label { display: block; margin: 0 0 7px; color: #b9d1d5; font-size: 10px; font-weight: 700; }
.contact-form-wrap input, .contact-form-wrap textarea { width: 100%; margin-bottom: 17px; padding: 12px 13px; color: var(--white); border: 1px solid rgba(255,255,255,.17); border-radius: 9px; outline: none; background: rgba(255,255,255,.06); font-size: 12px; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.contact-form-wrap textarea { resize: vertical; min-height: 96px; }
.contact-form-wrap input::placeholder, .contact-form-wrap textarea::placeholder { color: #71919a; }
.contact-form-wrap input:focus, .contact-form-wrap textarea:focus { border-color: #70d5c8; background: rgba(255,255,255,.09); box-shadow: 0 0 0 3px rgba(112,213,200,.13); }
.form-note { margin: 12px 0 0; color: #7597a0; font-size: 9px; line-height: 1.4; text-align: center; }

/* Footer */
.site-footer { color: #c4d4d7; background: #061a25; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.3fr; align-items: center; gap: 30px; min-height: 159px; }
.brand-footer { color: var(--white); }
.brand-footer .brand-mark { color: #8fe0d1; background: rgba(143,224,209,.11); }
.footer-tagline { color: #75959d; font-family: var(--display); font-size: 17px; line-height: 1.1; letter-spacing: -.02em; }
.footer-links { display: flex; justify-content: flex-end; align-items: center; flex-wrap: wrap; gap: 21px; color: #a5c1c5; font-size: 10px; font-weight: 700; }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 55px; border-top: 1px solid rgba(255,255,255,.10); color: #60808a; font-size: 9px; letter-spacing: .02em; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: minmax(0, .95fr) minmax(400px, .95fr); gap: 25px; }
  .hero-visual { transform: scale(.9); transform-origin: center right; margin-left: -30px; }
  .about-grid { gap: 60px; }
  .approach-grid { gap: 60px; }
  .contact-grid { gap: 55px; }
}

@media (max-width: 850px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .section { padding: 92px 0; }
  .utility-location { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .utility-links { gap: 13px; }
  .nav-wrap { min-height: 73px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 11px 20px 20px; border-bottom: 1px solid var(--line); background: rgba(244,247,248,.98); box-shadow: 0 16px 28px rgba(9,32,45,.08); }
  .primary-nav.open { display: flex; }
  .nav-link { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-link::after { bottom: 10px; right: auto; width: 26px; }
  .nav-cta { justify-content: center; margin: 15px 0 0; }
  .hero { padding-top: 72px; padding-bottom: 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 640px; }
  .hero-visual { width: min(590px, 100%); min-height: 470px; margin: 6px auto -35px; transform: none; transform-origin: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child { min-height: 74px; padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .trust-item:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .heading-row { align-items: start; flex-direction: column; gap: 23px; }
  .heading-aside { max-width: 520px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { width: min(500px, 100%); margin: 0 auto; }
  .about-copy { max-width: 650px; }
  .audience-card { padding: 42px 39px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
  .price-card p { min-height: 0; max-width: 620px; }
  .price-card .price-detail, .price-card .guarantee { margin-top: 12px; }
  .approach-grid { grid-template-columns: 1fr; gap: 45px; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .contact-copy { max-width: 650px; }
  .footer-grid { grid-template-columns: 1fr 1fr; min-height: 190px; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; padding-bottom: 24px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .utility-bar { font-size: 9px; }
  .utility-inner { min-height: 30px; }
  .utility-links a:first-child { display: none; }
  .brand-name { font-size: 21px; }
  h1 { font-size: clamp(46px, 14vw, 66px); }
  h2 { font-size: clamp(40px, 12vw, 56px); }
  .hero { padding-top: 62px; }
  .hero-lede { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 310px; }
  .hero-note { align-items: flex-start; font-size: 10px; }
  .hero-visual { min-height: 375px; margin-top: 12px; margin-bottom: -38px; transform: scale(.77); transform-origin: top center; width: 130%; margin-left: -15%; }
  .trust-item { gap: 11px; }
  .service-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { min-height: 0; padding: 26px; }
  .service-card h3, .service-card p { min-height: 0; }
  .section-heading { margin-bottom: 38px; }
  .about-visual { min-height: 420px; transform: scale(.82); transform-origin: top left; width: 122%; margin-bottom: -76px; }
  .about-grid { gap: 4px; }
  .audience-grid { grid-template-columns: 1fr; gap: 10px; }
  .audience-card { min-height: 0; padding: 36px 28px 42px; }
  .audience-card h2 { font-size: 42px; }
  .contact-section { padding: 82px 0; }
  .contact-details { grid-template-columns: 1fr; gap: 17px; }
  .contact-form-wrap { padding: 25px 20px 23px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; padding: 35px 0 26px; }
  .footer-tagline { font-size: 15px; }
  .footer-links { grid-column: auto; padding-bottom: 0; gap: 15px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; min-height: 75px; padding: 12px 0; }
}

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