:root {
  --ink: #182332;
  --muted: #566579;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --soft-strong: #eaf2f8;
  --line: #dbe6ee;
  --navy: #062b3f;
  --navy-strong: #032234;
  --blue: #0878d6;
  --blue-strong: #005fad;
  --teal: #009b9a;
  --amber: #d28b24;
  --coral: #cc5a42;
  --shadow: 0 18px 48px rgba(16, 35, 50, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(8, 120, 214, 0.38);
  outline-offset: 4px;
}

.icon-sprite {
  display: none;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--paper);
  background: var(--navy);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 230, 238, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--navy);
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(8, 120, 214, 0.28);
  border-radius: 8px;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #eef7ff);
}

.brand-text {
  font-size: 1.05rem;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #334254;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover {
  color: var(--blue-strong);
  background: var(--soft);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--paper);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(8, 120, 214, 0.28);
}

.btn-primary:hover {
  background: var(--blue-strong);
}

.btn-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--paper);
}

.btn-secondary:hover {
  border-color: rgba(8, 120, 214, 0.42);
  color: var(--blue-strong);
}

.btn-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-light {
  color: var(--navy);
  background: var(--paper);
}

.btn-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 72svh;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 27, 43, 0.94) 0%, rgba(3, 27, 43, 0.84) 38%, rgba(3, 27, 43, 0.32) 70%, rgba(3, 27, 43, 0.08) 100%),
    linear-gradient(0deg, rgba(3, 27, 43, 0.18), rgba(3, 27, 43, 0.02));
}

.hero-inner {
  padding-block: clamp(48px, 7vw, 84px);
}

.hero-copy {
  width: min(640px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #71d4ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-lead {
  max-width: 56ch;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.intro-band {
  padding-block: clamp(34px, 6vw, 58px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.55fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.intro-grid h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding-block: clamp(64px, 9vw, 104px);
}

.section-muted {
  background: var(--soft);
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading p,
.section-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.risk-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(15, 41, 60, 0.04);
}

.risk-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--blue);
  background: #eaf6ff;
}

.icon-box.teal {
  color: var(--teal);
  background: #e7fbfa;
}

.icon-box.amber {
  color: var(--amber);
  background: #fff6e7;
}

.icon-box.coral {
  color: var(--coral);
  background: #fff0ec;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.included-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.included-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #243448;
  font-weight: 680;
}

.included-item .icon {
  color: var(--blue);
}

.scope-panel {
  padding: 28px;
  border: 1px solid #c9dce9;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.scope-title {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 820;
}

.scope-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #35465b;
}

.scope-list .icon {
  margin-top: 3px;
  color: var(--coral);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.timeline-step {
  position: relative;
  min-height: 220px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.timeline-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--paper);
  background: var(--navy);
  font-weight: 820;
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.limits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: center;
}

.limits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.limit-item {
  min-height: 132px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background: var(--paper);
}

.limit-item .icon {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.4rem;
}

.limit-item strong {
  display: block;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.05;
}

.limit-item span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.brochure-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #f4f7fa 62%, #f4f7fa 100%);
}

.brochure-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 7vw, 80px);
  align-items: center;
}

.brochure-frame {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.brochure-frame img {
  width: 100%;
  height: min(720px, 74svh);
  object-fit: cover;
  object-position: top center;
}

.price-section {
  color: var(--paper);
  background: var(--navy);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.price-section .section-kicker {
  color: #75d7ff;
}

.price-copy h2 {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: clamp(3rem, 7vw, 5.2rem);
}

.price-copy p,
.price-actions p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.price-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
  max-width: 360px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 780;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  padding-block: clamp(48px, 7vw, 76px);
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy-strong), #0b5a75);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-cta .section-kicker {
  color: #83e4dc;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  padding-block: 26px;
  color: var(--paper);
  background: var(--navy-strong);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-footer {
  color: var(--paper);
}

.brand-footer .brand-mark {
  color: #72d5ff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .intro-grid,
  .two-column,
  .limits-layout,
  .brochure-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .risk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .limits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .price-actions {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 14px;
    left: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    margin-left: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header[data-nav-open="true"] .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    object-position: 64% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(3, 27, 43, 0.96), rgba(3, 27, 43, 0.72));
  }

  .hero-inner {
    padding-block: 46px 40px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .risk-grid,
  .timeline,
  .limits-grid {
    grid-template-columns: 1fr;
  }

  .risk-card,
  .timeline-step {
    min-height: auto;
  }

  .section {
    padding-block: 54px;
  }

  .scope-panel {
    padding: 22px;
  }

  .brochure-frame img {
    height: 560px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-actions {
    margin-bottom: 18px;
  }

  .hero-proof span {
    font-size: 0.88rem;
  }

  .brochure-frame img {
    height: 480px;
  }
}

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