:root {
  --ink: #111827;
  --navy: #10233d;
  --navy-deep: #071321;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --lime: #c9f45a;
  --coral: #ff6b4a;
  --line: rgba(16, 35, 61, 0.18);
  --muted: #596478;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 19, 33, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--lime); color: var(--navy-deep); }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(20px, 4vw, 68px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 232, 0.95);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; text-decoration: none; }
.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.brand-name { color: var(--navy); font-weight: 800; letter-spacing: -0.035em; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { color: var(--navy); font-size: 14px; font-weight: 700; text-decoration: none; }
.language-link { justify-self: end; color: var(--navy); font-size: 14px; font-weight: 800; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) 0 clamp(68px, 9vw, 116px);
  background: var(--navy-deep);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -38%;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(201, 244, 90, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(201, 244, 90, 0.045), 0 0 0 180px rgba(201, 244, 90, 0.025);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 56px; align-items: end; }
.eyebrow { margin: 0 0 20px; color: var(--lime); font-size: 13px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--navy-deep); letter-spacing: -0.045em; line-height: 1.04; }
h1 { max-width: 850px; margin-bottom: 24px; color: var(--white); font-size: clamp(44px, 7.2vw, 88px); }
h2 { margin-bottom: 18px; font-size: clamp(34px, 5vw, 58px); }
h3 { margin-bottom: 12px; font-size: 25px; }
.hero-copy { max-width: 760px; margin: 0; color: rgba(255, 255, 255, 0.8); font-size: clamp(18px, 2.3vw, 23px); }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { transform: translateY(-1px); }
.button-lime { border-color: var(--lime); background: var(--lime); color: var(--navy-deep); }
.button-ghost { border-color: rgba(255,255,255,.45); background: transparent; color: var(--white); }
.hero-note { padding: 25px; border: 1px solid rgba(255,255,255,.19); background: rgba(255,255,255,.07); }
.hero-note strong { display: block; margin-bottom: 8px; color: var(--lime); font-size: 34px; line-height: 1; }
.hero-note p { margin: 0; color: rgba(255,255,255,.78); }

.section { padding: clamp(72px, 9vw, 112px) 0; }
.section-paper { background: var(--paper); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-heading { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: 44px; align-items: end; margin-bottom: 48px; }
.section-heading p { max-width: 690px; margin: 0; color: var(--muted); font-size: 18px; }
.section-dark .section-heading p { color: rgba(255,255,255,.72); }
.kicker { margin: 0 0 12px; color: var(--coral); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }

.tiers { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.tier-card {
  grid-column: span 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 7px 0 rgba(16,35,61,.04);
}
.tier-card:nth-child(4) { grid-column: 2 / span 2; }
.tier-card.featured { border: 3px solid var(--navy); padding: 26px; box-shadow: var(--shadow); }
.tier-number { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.popular { padding: 5px 8px; background: var(--lime); color: var(--navy-deep); letter-spacing: .04em; }
.tier-audience { min-height: 72px; margin: 0 0 20px; color: var(--muted); }
.price-block { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 4px 0 22px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-block span { display: block; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.price-block strong { display: block; margin-top: 4px; color: var(--navy); font-size: 25px; letter-spacing: -.04em; }
.tier-card ul, .care-card ul, .terms-list { margin: 0 0 25px; padding-left: 20px; }
.tier-card li, .care-card li, .terms-list li { margin: 9px 0; }
.tier-card .button { width: 100%; margin-top: auto; }

.profit-note { margin-top: 28px; padding: 22px 24px; border-left: 5px solid var(--coral); background: rgba(255,107,74,.08); }
.profit-note strong { color: var(--navy); }

.care-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.care-card { padding: 25px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.care-card .care-price { margin: 18px 0; color: var(--lime); font-size: 30px; font-weight: 900; letter-spacing: -.04em; }
.care-card .care-price span { color: rgba(255,255,255,.66); font-size: 14px; font-weight: 600; letter-spacing: 0; }
.care-card li { color: rgba(255,255,255,.74); }
.care-rules { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.care-rules article { padding: 26px; border: 1px solid rgba(255,255,255,.17); }
.care-rules p { margin-bottom: 0; color: rgba(255,255,255,.72); }

.process-grid, .fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step, .fact { padding: 28px; border-top: 4px solid var(--navy); background: var(--paper); }
.step span { display: block; margin-bottom: 22px; color: var(--coral); font-size: 14px; font-weight: 900; }
.step p, .fact p { margin-bottom: 0; color: var(--muted); }

.request-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 52px; align-items: start; }
.request-copy { position: sticky; top: 112px; }
.request-copy p { color: var(--muted); font-size: 18px; }
.assurance-list { display: grid; gap: 13px; margin-top: 28px; }
.assurance-list div { display: grid; grid-template-columns: 31px 1fr; gap: 12px; align-items: start; }
.assurance-list b { display: grid; width: 27px; height: 27px; place-items: center; background: var(--lime); color: var(--navy); font-size: 12px; }

.app-form { padding: clamp(24px, 5vw, 44px); border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.form-intro { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-intro h3 { margin-bottom: 8px; }
.form-intro p { margin: 0; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field-full { grid-column: 1 / -1; }
.field span, fieldset legend { color: var(--navy); font-size: 14px; font-weight: 800; }
.field small { color: var(--muted); font-weight: 500; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(16,35,61,.32);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
fieldset { margin: 0 0 20px; padding: 18px; border: 1px solid var(--line); }
fieldset legend { padding: 0 8px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
.check { display: grid; grid-template-columns: 20px 1fr; gap: 9px; align-items: start; color: var(--ink); font-size: 14px; }
.check input { width: 18px; min-height: 18px; margin: 2px 0 0; }
.consent { margin: 18px 0; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.turnstile { min-height: 66px; margin: 18px 0; }
.form-status { min-height: 26px; margin: 14px 0 0; font-weight: 700; }
.form-status.success { color: #27722f; }
.form-status.error { color: #a83a24; }
.app-form .button { width: 100%; border: 0; }

.terms-banner { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 34px; background: var(--lime); color: var(--navy-deep); }
.terms-banner h2 { margin-bottom: 8px; font-size: clamp(29px, 4vw, 44px); }
.terms-banner p { max-width: 760px; margin: 0; }
.terms-banner .button { white-space: nowrap; }

.site-footer { padding: 36px 0; background: var(--navy-deep); color: rgba(255,255,255,.72); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-row nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-row a { color: var(--white); font-weight: 700; }

@media (max-width: 1050px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .tier-card, .tier-card:nth-child(4) { grid-column: auto; }
  .tier-card:last-child { grid-column: 1 / -1; }
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .care-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero-grid, .section-heading, .request-layout { grid-template-columns: 1fr; }
  .request-copy { position: static; }
  .process-grid, .fact-grid { grid-template-columns: 1fr; }
  .care-rules { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 26px, 1180px); }
  .site-header { min-height: 68px; padding: 10px 13px; }
  .brand-name { max-width: 120px; line-height: 1.1; }
  .tiers, .care-grid, .form-grid, .checks { grid-template-columns: 1fr; }
  .tier-card:last-child, .field-full { grid-column: auto; }
  .price-block { grid-template-columns: 1fr; }
  .hero-actions .button, .button-row .button { width: 100%; }
  .terms-banner, .footer-row { grid-template-columns: 1fr; display: grid; }
  .terms-banner .button { width: 100%; white-space: normal; }
}

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