:root {
  --navy-950: #05172e;
  --navy-900: #081f3d;
  --navy-800: #0d315a;
  --blue-500: #1798d4;
  --blue-400: #2eb0ec;
  --red-600: #d62f2f;
  --red-500: #e63d38;
  --ink: #14243a;
  --muted: #5b6b7d;
  --line: #dbe4ec;
  --mist: #eef5fa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 23, 46, .16);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.topline {
  color: #d9ebf8;
  background: var(--navy-950);
  font-size: .86rem;
  letter-spacing: .02em;
}

.topline-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topline a { color: var(--white); font-weight: 750; text-decoration: none; }
.topline a:hover { color: var(--blue-400); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(7, 29, 55, .08);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 14px rgba(8, 31, 61, .16);
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.18; }
.brand-copy strong { font-size: 1.07rem; letter-spacing: -.02em; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: var(--red-600); font-size: .69rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: var(--navy-900); font-size: .94rem; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.nav-cta):hover { color: var(--red-600); }
.nav-cta { padding: 12px 20px; color: var(--white) !important; background: var(--red-600); border-radius: 999px; box-shadow: 0 10px 24px rgba(214, 47, 47, .22); }
.nav-cta:hover { background: #bc2225; transform: translateY(-1px); }

.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 10px; background: var(--mist); cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(46, 176, 236, .2), transparent 24%),
    linear-gradient(118deg, var(--navy-950) 0%, var(--navy-900) 60%, #0c3a65 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .09;
  background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 75%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -120px;
  width: 46%;
  height: 190px;
  background: var(--red-600);
  transform: rotate(7deg);
  opacity: .96;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 72px;
  padding-block: 86px 96px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red-600);
  font-size: .79rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow > span { width: 34px; height: 3px; background: currentColor; border-radius: 99px; }
.eyebrow-light { color: #72cef5; }

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.55rem);
  line-height: .98;
  letter-spacing: -.062em;
}

.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: #d9e7f2;
  font-size: 1.17rem;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; fill: currentColor; }
.button-primary { color: var(--white); background: var(--red-600); box-shadow: 0 13px 28px rgba(214, 47, 47, .28); }
.button-primary:hover { background: #bd2024; }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.06); }
.button-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.button-full { width: 100%; }

.trust-row { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 38px; color: #bdd0e0; font-size: .86rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.trust-row span { display: flex; align-items: center; gap: 9px; }
.trust-row span::before { content: ""; width: 7px; height: 7px; border: 2px solid var(--blue-400); border-radius: 50%; }

.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-stripe { position: absolute; width: 420px; height: 86px; border-radius: 80px; transform: rotate(-24deg); }
.stripe-one { top: 83px; right: -70px; background: var(--blue-500); opacity: .55; }
.stripe-two { bottom: 76px; left: -52px; background: var(--red-500); opacity: .7; }

.logo-stage {
  position: relative;
  width: min(410px, 90%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  box-shadow: 0 40px 90px rgba(0,0,0,.34);
  backdrop-filter: blur(5px);
}

.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
}
.logo-stage::before { inset: -20px; }
.logo-stage::after { inset: -46px; border-color: rgba(46,176,236,.18); }
.logo-stage img { width: calc(100% - 30px); aspect-ratio: 1; object-fit: cover; border-radius: 50%; position: relative; z-index: 2; }

.season-badge {
  position: absolute;
  right: 0;
  bottom: 84px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.season-badge span { color: var(--red-600); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.season-badge p { margin: 0; font-size: .76rem; font-weight: 850; letter-spacing: .08em; line-height: 1.25; text-transform: uppercase; }
.visual-caption { position: absolute; bottom: 5px; margin: 0; color: #cae0ef; font-weight: 700; text-align: center; }

.section { padding-block: 108px; }
.section-heading { margin-bottom: 48px; }
.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.section h2, .contact-section h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.25rem, 4.3vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -.052em;
}
.split-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 1.05rem; }

.services { background: linear-gradient(180deg, #fff 0%, #f7fafc 100%); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 310px; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 15px 40px rgba(5, 23, 46, .07); }
.service-card::after { content: ""; position: absolute; right: -25px; bottom: -25px; width: 88px; height: 88px; border: 18px solid var(--mist); border-radius: 50%; }
.service-card-featured { color: var(--white); border-color: var(--navy-900); background: var(--navy-900); transform: translateY(-14px); }
.service-card-featured::after { border-color: rgba(46,176,236,.22); }
.card-number { margin: 0 0 52px; color: var(--blue-500); font-size: .82rem; font-weight: 900; letter-spacing: .12em; }
.service-card-featured .card-number { color: #7bd7ff; }
.service-card h3 { margin: 0 0 14px; color: var(--navy-950); font-size: 1.42rem; line-height: 1.2; }
.service-card-featured h3 { color: var(--white); }
.service-card p:last-child { position: relative; z-index: 2; margin: 0; color: var(--muted); }
.service-card-featured p:last-child { color: #d3e4f0; }

.included-band { display: flex; align-items: center; gap: 28px; margin-top: 34px; padding: 24px 28px; border-left: 5px solid var(--red-600); background: var(--mist); border-radius: 0 14px 14px 0; }
.included-band > strong { flex: 0 0 auto; color: var(--navy-900); }
.included-list { width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 24px; color: var(--muted); }
.included-list span::before { content: "✓"; margin-right: 8px; color: var(--blue-500); font-weight: 900; }

.plan-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.plan-section::before { content: ""; position: absolute; width: 620px; height: 620px; right: -260px; top: -250px; border: 100px solid rgba(23,152,212,.12); border-radius: 50%; }
.plan-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 430px; gap: 100px; align-items: center; }
.plan-copy h2 { color: var(--white); }
.plan-copy > p:not(.eyebrow) { max-width: 630px; margin: 25px 0 0; color: #c7d9e8; font-size: 1.08rem; }
.season-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 38px 0 33px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; overflow: hidden; }
.season-list span { padding: 14px 10px; border-right: 1px solid rgba(255,255,255,.18); color: #e9f5fb; font-size: .82rem; font-weight: 850; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.season-list span:last-child { border-right: 0; }
.text-link { color: var(--white); font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--red-500); padding-bottom: 5px; }
.text-link span { margin-left: 7px; }

.price-card { position: relative; padding: 38px; color: var(--ink); background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 32px 80px rgba(0,0,0,.26); }
.best-value { display: inline-flex; margin: 0 0 15px; padding: 5px 11px; color: var(--white); background: var(--red-600); border-radius: 999px; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.price { margin: 0; color: var(--navy-950); font-size: 5.4rem; font-weight: 950; letter-spacing: -.07em; line-height: .95; }
.price sup { position: relative; top: -1.8rem; margin-right: 5px; color: var(--red-600); font-size: 2rem; }
.price-term { margin: 8px 0 0; color: var(--muted); font-weight: 750; }
.price-card hr { margin: 27px 0; border: 0; border-top: 1px solid var(--line); }
.price-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.price-card li { display: flex; gap: 10px; color: #45586b; }
.price-card li::before { content: "✓"; color: var(--blue-500); font-weight: 950; }
.quarterly { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: 26px 0 22px; padding: 14px 16px; color: var(--navy-900); background: var(--mist); border-radius: 12px; }
.quarterly span { color: var(--muted); font-size: .86rem; }

.scope-section { background: #f5f8fb; }
.scope-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.scope-card { padding: 38px; border-top: 7px solid var(--blue-500); background: var(--white); border-radius: 4px var(--radius-md) var(--radius-md) var(--radius-md); box-shadow: var(--shadow); }
.scope-card h3 { margin: 0 0 16px; color: var(--navy-900); font-size: 1.55rem; }
.scope-card p { margin: 14px 0 0; color: var(--muted); }
.scope-card .scope-note { padding: 18px; color: #3f5164; background: #fff5f5; border-left: 4px solid var(--red-600); border-radius: 0 10px 10px 0; }
.scope-note strong { color: var(--red-600); }

.contact-section { padding-block: 88px; color: var(--white); background: linear-gradient(110deg, var(--red-600) 0%, #bd2428 100%); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.contact-section h2 { color: var(--white); }
.contact-section p:not(.eyebrow) { margin: 18px 0 0; color: #ffe8e7; font-size: 1.04rem; }
.contact-section .eyebrow-light { color: #fff; }
.contact-actions { display: grid; grid-template-columns: 1fr 1.35fr; gap: 12px; }
.contact-actions a, .address-block { min-width: 0; padding: 18px 20px; color: var(--white); border: 1px solid rgba(255,255,255,.34); border-radius: 14px; background: rgba(100,0,0,.12); text-decoration: none; }
.contact-actions a:hover { background: rgba(255,255,255,.12); }
.contact-actions span { display: block; margin-bottom: 4px; color: #ffd9d7; font-size: .76rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.contact-actions strong { display: block; overflow-wrap: anywhere; line-height: 1.35; }
.address-block { grid-column: 1 / -1; }

.site-footer { padding: 34px 0 96px; color: #9fb1c1; background: var(--navy-950); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 32px; font-size: .84rem; }
.footer-inner > p { margin: 0; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.footer-brand div { display: flex; flex-direction: column; line-height: 1.2; }
.footer-brand strong { text-transform: uppercase; }
.footer-brand span { margin-top: 5px; color: #73cef4; font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.mobile-callbar { display: none; }

:focus-visible { outline: 3px solid #6dd1ff; outline-offset: 3px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 35px; padding-top: 72px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 520px; }
  .logo-stage { width: min(400px, 75vw); }
  .split-heading, .plan-grid, .scope-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .plan-grid { max-width: 760px; }
  .price-card { max-width: 520px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 250px; }
  .service-card-featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > p:nth-child(2) { display: none; }
}

@media (max-width: 760px) {
  body { padding-bottom: 64px; }
  .wrap { width: min(100% - 28px, 1160px); }
  .topline-inner { justify-content: center; min-height: 34px; }
  .topline-inner span { display: none; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 50px; height: 50px; }
  .brand-copy strong { font-size: .92rem; }
  .brand-copy small { font-size: .57rem; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    inset: 72px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(5, 23, 46, .12);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 12px; padding: 13px 18px; border: 0; text-align: center; }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { min-height: auto; padding-block: 60px 76px; }
  .hero h1 { font-size: clamp(2.9rem, 14vw, 4.6rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .trust-row { gap: 15px 20px; }
  .hero-visual { min-height: 390px; }
  .logo-stage { width: min(300px, 78vw); }
  .logo-stage::before { inset: -13px; }
  .logo-stage::after { inset: -30px; }
  .season-badge { right: 0; bottom: 60px; }
  .visual-caption { font-size: .9rem; }
  .section { padding-block: 76px; }
  .section-heading { margin-bottom: 34px; }
  .split-heading { gap: 24px; }
  .section h2, .contact-section h2 { font-size: clamp(2.15rem, 11vw, 3.3rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 270px; }
  .included-band { align-items: flex-start; flex-direction: column; gap: 12px; }
  .included-list { display: grid; grid-template-columns: 1fr; }
  .season-list { grid-template-columns: 1fr 1fr; }
  .season-list span { border-bottom: 1px solid rgba(255,255,255,.18); }
  .season-list span:nth-child(2) { border-right: 0; }
  .season-list span:nth-child(3), .season-list span:nth-child(4) { border-bottom: 0; }
  .price-card { padding: 30px 24px; }
  .quarterly { align-items: flex-start; flex-direction: column; }
  .scope-card { padding: 28px 24px; }
  .contact-section { padding-block: 70px; }
  .contact-actions { grid-template-columns: 1fr; }
  .address-block { grid-column: auto; }
  .footer-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
  .mobile-callbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: var(--navy-950);
    box-shadow: 0 -10px 30px rgba(5,23,46,.2);
  }
  .mobile-callbar a { padding: 10px; color: var(--white); font-weight: 850; text-align: center; text-decoration: none; }
  .mobile-callbar a + a { border-left: 1px solid rgba(255,255,255,.22); color: #82d7fb; }
}

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