:root {
  --navy: #031327;
  --navy-2: #071f3b;
  --blue: #0877f9;
  --blue-dark: #075bcf;
  --cyan: #08c8ff;
  --ink: #06162b;
  --text: #43586f;
  --muted: #65788c;
  --line: #d8e4ef;
  --surface: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(15, 49, 85, 0.1);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 1000; padding: 10px 14px; color: #fff; background: var(--blue); border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
}
.site-header.inner-header { position: relative; background: var(--navy); }
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.logo img { display: block; width: 154px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: #c6d5e5; font-size: 15px; font-weight: 650; transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-cta { padding: 10px 16px; color: #fff !important; border: 1px solid rgba(255,255,255,.3); border-radius: 9px; }
.nav-cta:hover { border-color: var(--cyan); }
.menu-toggle { display: none; width: 44px; height: 44px; place-items: center; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 9px; cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 20px; height: 2px; content: ""; background: currentColor; }
.menu-toggle span { margin: 4px 0; }

.home-hero {
  min-height: 800px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.home-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #031327 0%, rgba(3,19,39,.97) 26%, rgba(3,19,39,.62) 54%, rgba(3,19,39,.08) 80%),
    linear-gradient(0deg, rgba(3,19,39,.7), transparent 50%);
}
.home-hero-content { position: relative; z-index: 2; padding: 170px 0 95px; }
.eyebrow, .kicker { margin: 0 0 17px; color: #55d5ff; font-size: 13px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow::before { width: 28px; height: 2px; content: ""; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.04em; }
h1 { max-width: 680px; margin: 0; font-size: clamp(3.1rem, 6vw, 5.3rem); line-height: .99; }
.hero-lead { max-width: 600px; margin: 27px 0 0; color: #c5d4e4; font-size: 19px; line-height: 1.7; }
.actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--blue);
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: #0069df; box-shadow: 0 14px 32px rgba(8,119,249,.25); }
.button-outline { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.button-outline:hover { background: rgba(255,255,255,.13); }
.button-light { color: var(--blue-dark); background: #fff; }
.button-light:hover { color: #034baf; background: #f8fcff; }
.hero-proof { margin-top: 31px; display: flex; flex-wrap: wrap; gap: 13px 24px; color: #a9bed3; font-size: 14px; }
.hero-proof span::before { margin-right: 7px; color: var(--cyan); content: "✓"; font-weight: 900; }

.inner-hero { padding: 82px 0 78px; color: #fff; background: radial-gradient(circle at 80% 20%, rgba(8,200,255,.18), transparent 30%), linear-gradient(135deg, #06284c, #031327 68%); }
.breadcrumbs { margin: 0 0 22px; color: #8eacc8; font-size: 14px; }
.breadcrumbs a { color: #68d9ff; }
.inner-hero h1 { max-width: 820px; font-size: clamp(2.8rem, 6vw, 4.7rem); }
.inner-hero p:last-child { max-width: 700px; margin: 23px 0 0; color: #bdd0e1; font-size: 18px; line-height: 1.7; }

.section { padding: 100px 0; }
.section-white { background: #fff; }
.section-dark { color: #fff; background: var(--navy-2); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
.kicker { color: var(--blue); }
.section h2 { margin: 0; font-size: clamp(2.25rem, 4vw, 3.55rem); }
.section-heading > p:last-child { margin: 19px 0 0; color: var(--text); font-size: 17px; }
.section-dark .section-heading > p:last-child { color: #afc3d7; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { min-height: 415px; padding: 42px; position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.service-card.dark { color: #fff; background: linear-gradient(145deg, #07315d, #031327 75%); border-color: #144d7d; }
.icon-box { width: 55px; height: 55px; display: grid; place-items: center; color: var(--blue); background: #e6f4ff; border-radius: 15px; font-size: 25px; font-weight: 900; }
.dark .icon-box { color: #64dcff; background: rgba(71,195,255,.13); }
.service-card h3 { margin: 25px 0 12px; font-size: 29px; }
.service-card p { color: var(--text); }
.service-card.dark p { color: #b6c9db; }
.feature-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.feature-list li { position: relative; padding-left: 26px; color: var(--text); }
.feature-list li::before { position: absolute; left: 0; color: var(--blue); content: "✓"; font-weight: 900; }
.dark .feature-list li { color: #d0deeb; }
.dark .feature-list li::before { color: var(--cyan); }
.text-link { margin-top: 28px; display: inline-flex; color: var(--blue); font-weight: 800; }
.dark .text-link { color: #58d8ff; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pricing-card { position: relative; padding: 38px 30px 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.pricing-card.featured { color: #fff; background: linear-gradient(155deg, #07325f, #031327 78%); border-color: var(--blue); transform: translateY(-10px); }
.popular { position: absolute; top: 0; right: 22px; margin: 0; padding: 7px 12px; color: #032142; background: #53d8ff; border-radius: 0 0 9px 9px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.plan-number { margin: 0 0 9px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.featured .plan-number { color: #63dcff; }
.pricing-card h3 { margin: 0; font-size: 28px; }
.plan-description { min-height: 74px; margin: 13px 0 17px; color: #5b6e82; }
.featured .plan-description { color: #b9cce0; }
.price { margin: 0 0 21px; display: flex; align-items: flex-start; font-size: 44px; line-height: 1; font-weight: 800; letter-spacing: -.05em; }
.price sup { margin: 5px 3px 0 0; font-size: 18px; letter-spacing: 0; }
.price span { align-self: flex-end; margin: 0 0 5px 7px; color: #68798b; font-size: 14px; letter-spacing: 0; }
.featured .price span { color: #9fb7ce; }
.pricing-card .button { width: 100%; }
.pricing-card .feature-list { padding-top: 24px; border-top: 1px solid #e1e9f1; }
.featured .feature-list { border-color: rgba(255,255,255,.14); }
.featured .feature-list li { color: #d4e1ed; }
.featured .feature-list li::before { color: var(--cyan); }
.plan-note { max-width: 850px; margin: 30px auto 0; color: #617387; font-size: 13px; text-align: center; }

.add-on { margin-top: 34px; padding: 28px 30px; display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.add-on h3 { margin: 0 0 7px; font-size: 22px; }
.add-on p { margin: 0; color: var(--text); }
.add-on .button { min-height: 47px; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
.benefit { min-height: 205px; padding: 29px; background: #0a2545; }
.benefit b { display: block; margin-bottom: 9px; font-size: 18px; }
.benefit p { margin: 0; color: #a9bed2; font-size: 15px; }
.benefit .icon-box { width: 48px; height: 48px; margin-bottom: 24px; font-size: 21px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split h2 { margin-top: 0; }
.split p { color: var(--text); }
.process { display: grid; gap: 16px; }
.process-step { padding: 22px; display: grid; grid-template-columns: 45px 1fr; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 15px; }
.step-number { width: 45px; height: 45px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 12px; font-weight: 900; }
.process-step h3 { margin: 0 0 5px; font-size: 19px; }
.process-step p { margin: 0; color: var(--text); font-size: 15px; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 55px; align-items: start; }
.contact-details { padding: 34px; color: #fff; background: var(--navy); border-radius: var(--radius); }
.contact-details h2 { margin-top: 0; font-size: 32px; }
.contact-details p { color: #b8cadd; }
.contact-list { margin-top: 27px; display: grid; gap: 15px; }
.contact-list a, .contact-list span { display: block; color: #e2eef8; }
.contact-list strong { display: block; margin-bottom: 2px; color: #61d9ff; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.contact-form { padding: 36px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 19px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #263f58; font-size: 14px; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #f9fbfd; border: 1px solid #cbd9e7; border-radius: 9px; outline: none; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,119,249,.12); }
.form-note { margin: 17px 0 0; color: var(--muted); font-size: 13px; }
.honeypot { position: absolute !important; left: -9999px !important; }

.cta-band { padding: 76px 0; color: #fff; background: linear-gradient(120deg, var(--blue), var(--blue-dark)); }
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.cta-content h2 { max-width: 730px; margin: 0; font-size: clamp(2.1rem, 4vw, 3.25rem); }

.site-footer { padding: 52px 0 24px; color: #8fa5bb; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 50px; }
.footer-logo img { width: 143px; }
.footer-about { max-width: 380px; margin: 17px 0 0; }
.footer-column h2 { margin: 0 0 13px; color: #fff; font-size: 15px; letter-spacing: .04em; }
.footer-column a { display: block; margin: 7px 0; color: #9db1c5; }
.footer-column a:hover { color: #fff; }
.footer-bottom { margin-top: 38px; padding-top: 22px; display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }

.thank-you { min-height: 72vh; display: grid; place-items: center; padding: 90px 24px; text-align: center; }
.thank-you-card { max-width: 680px; padding: 50px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.thank-you-mark { width: 70px; height: 70px; margin: 0 auto 24px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; font-size: 34px; }
.thank-you h1 { margin: 0; font-size: clamp(2.4rem, 6vw, 4rem); }
.thank-you p { color: var(--text); font-size: 18px; }

@media (max-width: 980px) {
  .menu-toggle { display: grid; }
  .nav-links { position: absolute; top: 80px; left: 24px; right: 24px; padding: 13px; display: none; align-items: stretch; flex-direction: column; gap: 2px; background: rgba(3,19,39,.98); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; box-shadow: 0 18px 45px rgba(0,0,0,.35); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; border-radius: 8px; }
  .nav-links a:hover { background: rgba(255,255,255,.07); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 650px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .plan-description { min-height: auto; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .add-on { grid-template-columns: auto 1fr; }
  .add-on .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1180px); }
  .nav { min-height: 76px; }
  .logo img { width: 141px; }
  .home-hero { min-height: 735px; }
  .home-hero-image { object-position: 66% center; opacity: .75; }
  .home-hero::after { background: linear-gradient(90deg, #031327 0%, rgba(3,19,39,.9) 70%, rgba(3,19,39,.5) 100%), linear-gradient(0deg, #031327 0%, transparent 60%); }
  .home-hero-content { padding: 135px 0 70px; }
  h1 { font-size: clamp(2.9rem, 14vw, 4rem); }
  .hero-lead { font-size: 17px; }
  .actions { flex-direction: column; }
  .actions .button { width: 100%; }
  .inner-hero { padding: 68px 0 64px; }
  .section { padding: 76px 0; }
  .service-grid, .benefit-grid, .form-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 31px 27px; }
  .benefit { min-height: auto; }
  .field.full { grid-column: auto; }
  .add-on { grid-template-columns: 1fr; padding: 25px; }
  .add-on .button { grid-column: auto; width: 100%; }
  .cta-content { flex-direction: column; align-items: stretch; }
  .cta-content .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .contact-form, .contact-details { padding: 28px 24px; }
  .thank-you-card { padding: 38px 25px; }
}

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