:root {
  --ink: #07111f;
  --ink-2: #0d1c30;
  --paper: #f5f7fa;
  --white: #ffffff;
  --blue: #2f7df4;
  --blue-bright: #5ca0ff;
  --amber: #f4a641;
  --muted: #9aabbd;
  --line: rgba(7, 17, 31, .13);
  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Oswald", Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-body); font-size: 16px; line-height: 1.65; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 999; background: #fff; padding: .75rem 1rem; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.site-header { height: 96px; padding: 0 clamp(1.2rem, 4vw, 5rem); display: flex; align-items: center; gap: 2rem; position: absolute; inset: 0 0 auto; z-index: 20; color: #fff; border-bottom: 1px solid rgba(255,255,255,.14); }
.brand { display: inline-flex; align-items: center; gap: .72rem; text-decoration: none; margin-right: auto; }
.brand-logo { width: 82px; height: 82px; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(0,0,0,.22)); }
nav { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); align-items: center; }
nav a { text-decoration: none; font-size: .86rem; font-weight: 700; }
nav a:hover, nav a:focus-visible { color: var(--blue-bright); }
.menu-toggle { display: none; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: .85rem 1.4rem; border: 1px solid var(--blue); border-radius: 4px; color: #fff; background: var(--blue); text-decoration: none; font-weight: 800; box-shadow: 0 14px 35px rgba(47,125,244,.25); transition: transform .2s, background .2s; }
.button:hover, .button:focus-visible { background: #1f6de7; transform: translateY(-2px); }
.button-small { min-height: 42px; padding: .65rem 1rem; font-size: .84rem; box-shadow: none; }

.hero { min-height: 780px; height: min(90vh, 900px); position: relative; display: flex; align-items: center; overflow: hidden; background: var(--ink); color: #fff; }
.hero-media, .hero-media img, .hero-wash { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 64% 35%; opacity: .76; }
.hero-wash { background: linear-gradient(90deg, rgba(4,12,23,.98) 0%, rgba(4,12,23,.9) 37%, rgba(4,12,23,.25) 72%, rgba(4,12,23,.55) 100%), linear-gradient(0deg, rgba(4,12,23,.65), transparent 45%); }
.hero::after { content: ""; position: absolute; width: 42vw; height: 42vw; min-width: 420px; min-height: 420px; border: 1px solid rgba(92,160,255,.2); border-radius: 50%; right: -13vw; bottom: -18vw; box-shadow: 0 0 0 60px rgba(92,160,255,.025), 0 0 0 120px rgba(92,160,255,.02); }
.hero-content { width: min(760px, 88vw); margin-left: clamp(1.2rem, 8vw, 9rem); position: relative; z-index: 2; padding-top: 80px; }
.eyebrow { margin: 0 0 1.1rem; color: var(--blue); text-transform: uppercase; letter-spacing: .18em; font-weight: 800; font-size: .76rem; }
.hero .eyebrow { color: var(--amber); }
h1, h2, h3 { margin-top: 0; }
h1 { margin-bottom: 1.35rem; font-family: var(--font-display); font-size: clamp(3.6rem, 7.8vw, 7.8rem); letter-spacing: -.025em; line-height: .94; text-transform: uppercase; }
h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.72); }
.hero-lead { max-width: 650px; margin: 0; color: #c5d0dc; font-size: clamp(1rem, 1.45vw, 1.2rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 1.6rem; margin-top: 2rem; }
.text-link { text-decoration: none; font-weight: 800; }
.text-link span { margin-left: .45rem; color: var(--amber); }
.hero-proof { display: flex; margin-top: 3.2rem; gap: 0; }
.hero-proof div { display: flex; flex-direction: column; min-width: 160px; padding: 0 1.5rem; border-left: 1px solid rgba(255,255,255,.2); }
.hero-proof div:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong { font-family: var(--font-display); font-size: 1.6rem; color: #fff; }
.hero-proof span { font-size: .75rem; color: #9fb0c2; }

.signal-strip { min-height: 74px; display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 3vw, 3rem); padding: 1rem; background: var(--blue); color: #fff; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; }
.signal-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }

.section { padding: clamp(5rem, 9vw, 8.5rem) clamp(1.2rem, 7vw, 8rem); }
.intro { background: #fff; }
.section-heading { max-width: 780px; }
h2 { font-family: var(--font-display); font-size: clamp(2.7rem, 5vw, 5.2rem); line-height: 1.03; letter-spacing: -.025em; text-transform: uppercase; }
.section-intro { max-width: 650px; margin: 1.5rem 0 3.5rem auto; color: #526276; font-size: 1.1rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 1300px; margin: 0 auto; align-items: stretch; }
.price-card { min-height: 600px; padding: 2rem; background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column; position: relative; transition: transform .25s, box-shadow .25s; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 55px rgba(7,17,31,.11); }
.price-card.featured { background: var(--ink-2); color: #fff; border-top: 5px solid var(--blue); transform: translateY(-12px); }
.price-card.featured:hover { transform: translateY(-18px); }
.popular { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--amber); color: var(--ink); padding: .35rem .6rem; text-transform: uppercase; letter-spacing: .08em; font-size: .65rem; font-weight: 800; }
.plan-tag { color: var(--blue); text-transform: uppercase; letter-spacing: .14em; font-size: .69rem; font-weight: 800; }
.price-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 2.2rem; line-height: 1; margin-bottom: 1rem; }
.price-card p { color: #59697a; }
.price-card.featured p { color: #b1bfce; }
.price-card ul { list-style: none; padding: 1.3rem 0; margin: 1rem 0 auto; border-top: 1px solid rgba(128,145,164,.2); }
.price-card li { position: relative; padding: .55rem 0 .55rem 1.55rem; font-size: .9rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.price { display: flex; align-items: baseline; gap: .45rem; margin: 1.6rem 0; }
.price span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.price strong { font-family: var(--font-display); font-size: 2.7rem; line-height: 1; }
.price small { font-weight: 800; }
.card-link { padding-top: 1rem; border-top: 1px solid rgba(128,145,164,.25); display: flex; justify-content: space-between; text-decoration: none; font-weight: 800; color: var(--blue); }

.method { background: var(--ink); color: #fff; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.method-copy { position: sticky; top: 2rem; }
.method-copy > p:not(.eyebrow) { color: #aebdca; max-width: 580px; font-size: 1.05rem; }
blockquote { margin: 2.5rem 0 0; padding: 1.4rem 0 1.4rem 1.5rem; border-left: 3px solid var(--amber); font-size: 1.2rem; font-weight: 700; }
.steps { list-style: none; padding: 0; margin: 0; }
.steps li { display: grid; grid-template-columns: 75px 1fr; gap: 1.2rem; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,.13); }
.steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.steps > li > span { color: var(--blue-bright); font-family: var(--font-display); font-size: 1.2rem; }
.steps h3 { margin-bottom: .45rem; font-size: 1.15rem; }
.steps p { margin: 0; color: #9eafbf; }

.outcomes { background: #edf1f6; }
.centered { margin-inline: auto; text-align: center; }
.outcome-grid { max-width: 1200px; margin: 4rem auto 0; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.outcome-grid article { min-height: 270px; padding: 1.7rem; border-right: 1px solid var(--line); background: rgba(255,255,255,.42); }
.outcome-grid article:last-child { border: 0; }
.outcome-grid span { font-family: var(--font-display); color: var(--blue); }
.outcome-grid h3 { margin: 4.4rem 0 .8rem; font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; }
.outcome-grid p { margin: 0; color: #617083; font-size: .9rem; }

.about { display: grid; grid-template-columns: .8fr 1.2fr; padding: 0; background: #fff; min-height: 680px; }
.about-visual { overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 42%, #153b69 0%, #0c2038 42%, #07111f 76%); color: #fff; }
.about-visual::before, .about-visual::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(92,160,255,.18); }
.about-visual::before { width: 76%; aspect-ratio: 1; }
.about-visual::after { width: 92%; aspect-ratio: 1; border-color: rgba(244,166,65,.1); }
.about-glow { position: absolute; width: 55%; aspect-ratio: 1; border-radius: 50%; background: rgba(47,125,244,.18); filter: blur(55px); }
.about-logo { position: relative; z-index: 2; width: min(78%, 520px); height: auto; filter: drop-shadow(0 28px 45px rgba(0,0,0,.35)); }
.about-copy { padding: clamp(4rem, 9vw, 9rem); align-self: center; }
.about-copy h2 { font-size: clamp(2.5rem, 4.4vw, 4.8rem); }
.about-copy > p:not(.eyebrow) { color: #536477; max-width: 760px; }
.credential-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.credential-row span { padding: .65rem .9rem; background: #edf4ff; color: #1c5fbf; border-left: 3px solid var(--blue); font-size: .82rem; font-weight: 800; }

.local-service { background: #edf1f6; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.local-copy > p:not(.eyebrow) { max-width: 760px; color: #536477; font-size: 1.02rem; }
.local-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; margin-top: 2rem; }
.local-link { color: var(--ink); }
.local-points { border-top: 1px solid var(--line); }
.local-points article { display: grid; grid-template-columns: 44px 1fr; column-gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.local-points span { grid-row: 1 / 3; color: var(--blue); font-family: var(--font-display); font-size: 1.2rem; }
.local-points h3 { margin: 0 0 .35rem; font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase; }
.local-points p { margin: 0; color: #617083; font-size: .9rem; }

.faq { background: #fff; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; padding: 1.4rem 0; display: flex; justify-content: space-between; gap: 1rem; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 1.4rem; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 3rem 1.5rem 0; color: #5a697b; }

.contact { margin: 0; padding: clamp(4rem, 7vw, 7rem) clamp(1.2rem, 8vw, 9rem); background: var(--blue); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.contact .eyebrow { color: #d7e7ff; }
.contact h2 { max-width: 820px; margin-bottom: 1rem; }
.contact p { margin: 0; }
.button-light { min-width: 230px; background: #fff; color: var(--ink); border-color: #fff; box-shadow: none; }
.button-light:hover { background: var(--amber); border-color: var(--amber); }

footer { padding: 2.3rem clamp(1.2rem, 5vw, 5rem); background: #040b14; color: #92a3b4; display: flex; align-items: center; gap: 2rem; font-size: .8rem; }
.footer-brand { color: #fff; margin-right: 0; }
.footer-brand .brand-logo { width: 74px; height: 74px; }
.footer-contact p { margin: .2rem 0; }
.footer-contact a { text-underline-offset: .22rem; }
.legal { margin-left: auto; max-width: 480px; text-align: right; }

@media (max-width: 980px) {
  .site-header { height: 78px; }
  .site-header .brand-logo { width: 68px; height: 68px; }
  .menu-toggle { display: grid; width: 42px; height: 42px; border: 0; padding: 10px; background: transparent; place-content: center; gap: 5px; order: 2; }
  .menu-toggle span { width: 22px; height: 2px; background: #fff; }
  .site-header nav { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 1.5rem; flex-direction: column; align-items: flex-start; background: rgba(7,17,31,.98); }
  .site-header nav.open { display: flex; }
  .header-cta { margin-left: auto; order: 1; }
  .hero { min-height: 760px; height: auto; padding: 8rem 0 4rem; }
  .hero-content { padding-top: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 650px; }
  .price-card { min-height: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .method { grid-template-columns: 1fr; }
  .method-copy { position: static; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .outcome-grid article:nth-child(2) { border-right: 0; }
  .outcome-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: 380px; }
  .big-word { transform: none; }
  .local-service { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .contact { align-items: flex-start; flex-direction: column; }
  footer { flex-wrap: wrap; }
  .legal { margin-left: 0; text-align: left; flex-basis: 100%; }
}

@media (max-width: 650px) {
  .header-cta { display: none; }
  .hero-media img { object-position: 67% center; opacity: .5; }
  .hero-wash { background: linear-gradient(90deg, rgba(4,12,23,.98), rgba(4,12,23,.58)), linear-gradient(0deg, rgba(4,12,23,.86), transparent 60%); }
  .hero-content { margin-left: 1.2rem; }
  h1 { font-size: clamp(3.15rem, 15vw, 4.8rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; row-gap: 1.2rem; }
  .hero-proof div { min-width: 0; padding: 0 1rem; }
  .hero-proof div:nth-child(3) { grid-column: 1 / -1; border-left: 0; padding-left: 0; }
  .signal-strip { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .signal-strip span:nth-of-type(n+3), .signal-strip i:nth-of-type(n+2) { display: none; }
  .section { padding: 4.5rem 1.2rem; }
  h2 { font-size: 2.65rem; }
  .section-intro { margin: 1.2rem 0 2.5rem; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .outcome-grid article:last-child { border-bottom: 0; }
  .about-copy { padding: 4.5rem 1.2rem; }
  .contact { padding: 4.5rem 1.2rem; }
  .button-light { width: 100%; }
}

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