:root {
  --blue: #1b5ebf;
  --dark: #10203a;
  --yellow: #ffd600;
  --ink: #172033;
  --muted: #5c667a;
  --line: rgba(27, 94, 191, 0.14);
  --shadow: 0 24px 70px rgba(15, 31, 55, 0.14);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #f7f9fc; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.header {
  position: fixed; inset: 0 0 auto; z-index: 20;
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 10px clamp(18px, 4vw, 46px);
  background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(15,31,55,.08);
  box-shadow: 0 10px 30px rgba(15,31,55,.08); backdrop-filter: blur(14px);
}
.brand img { width: 138px; }
.nav { display: flex; align-items: center; gap: 28px; font-size: .9rem; font-weight: 800; }
.nav a:hover { opacity: .72; }
.nav-cta { padding: .78rem 1.18rem; border-radius: 999px; background: var(--yellow); box-shadow: 0 12px 26px rgba(255,214,0,.32); }
.menu { display: none; width: 44px; height: 44px; border: 0; border-radius: 14px; background: #eef4ff; cursor: pointer; }
.menu span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--blue); border-radius: 999px; }

.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; color: white; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,214,0,.25), transparent 28%),
    linear-gradient(90deg, rgba(7,15,28,.92), rgba(7,15,28,.54)),
    linear-gradient(135deg, #12315e, #0e1c33 58%, #08111f);
}
.hero-bg:after {
  content: ""; position: absolute; right: -8vw; bottom: -18vw; width: 62vw; height: 62vw;
  background: rgba(255,214,0,.12); transform: rotate(28deg); border-radius: 60px;
}
.hero-content { position: relative; z-index: 1; padding-top: 116px; padding-bottom: 72px; max-width: 1180px; }
.hero-logo { width: min(310px, 76vw); margin-bottom: 22px; filter: drop-shadow(0 18px 34px rgba(0,0,0,.32)); }
.eyebrow { margin: 0 0 16px; color: var(--yellow); font-size: .82rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow.blue { color: var(--blue); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 880px; margin-bottom: 22px; font-size: clamp(2.7rem, 6.4vw, 4.8rem); line-height: 1.03; letter-spacing: 0; text-wrap: balance; }
.lead { max-width: 760px; margin-bottom: 30px; color: rgba(255,255,255,.9); font-size: clamp(1.08rem, 1.4vw, 1.25rem); line-height: 1.75; font-weight: 500; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: .96rem 1.55rem; border-radius: 999px; font-weight: 900; transition: transform .18s ease, box-shadow .18s ease; }
.btn:hover { transform: translateY(-2px); }
.primary { background: var(--yellow); color: var(--ink); box-shadow: 0 16px 40px rgba(255,214,0,.32); }
.ghost { color: white; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.hero-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-pills span { padding: .65rem .86rem; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.1); font-size: .92rem; font-weight: 800; }

.intro, .results { padding: clamp(4.2rem, 8vw, 6.4rem) 0; background: white; }
.split { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
h2 { font-size: clamp(2.15rem, 4.2vw, 3.45rem); line-height: 1.08; letter-spacing: 0; text-wrap: balance; }
.split p, .contact p { color: var(--muted); font-size: 1.1rem; line-height: 1.75; font-weight: 500; }

.why { padding: clamp(5rem, 9vw, 7.5rem) 0; background: linear-gradient(180deg, #f7fbff, #fff); }
.heading { max-width: 900px; margin: 0 auto 48px; text-align: center; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.card { min-height: 300px; padding: clamp(1.7rem, 3vw, 2.4rem); border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(180deg,#fff,#f8fbff); box-shadow: var(--shadow); text-align: center; }
.icon { width: 86px; height: 86px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 24px; background: linear-gradient(135deg,var(--blue),#2f80ed); box-shadow: 0 18px 36px rgba(27,94,191,.24); }
.icon.yellow { background: linear-gradient(135deg,var(--yellow),#ffbe33); }
.icon svg { width: 58px; height: 58px; }
.icon path, .icon circle { fill: none; stroke: white; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.icon.yellow path, .icon.yellow circle { stroke: var(--dark); }
.card h3 { margin-bottom: 14px; font-size: 1.38rem; line-height: 1.25; font-weight: 900; }
.card p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.68; font-weight: 500; }

.results-grid { grid-template-columns: minmax(0,.85fr) minmax(320px,.95fr); }
.result-box { min-height: 360px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.result { display: grid; place-items: center; color: white; font-size: 2rem; font-weight: 900; }
.before { background: linear-gradient(135deg,#111827,#334155); }
.after { background: linear-gradient(135deg,var(--blue),#62a5ff); color: var(--yellow); }

.trust { padding: clamp(2.8rem, 5vw, 3.8rem) 0; background: var(--dark); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.trust-grid div { padding: 1.3rem; border: 1px solid rgba(255,255,255,.11); border-radius: 20px; background: rgba(255,255,255,.06); }
.trust-grid strong { display: block; margin-bottom: .42rem; color: var(--yellow); font-size: 1rem; line-height: 1.3; }
.trust-grid span { color: rgba(255,255,255,.74); font-size: .9rem; line-height: 1.55; }

.contact { padding: clamp(5rem, 8vw, 7rem) 0; background: linear-gradient(135deg,#eef4ff,#fff 56%,#fff7cc); }
.contact-grid { display: grid; grid-template-columns: minmax(280px,.82fr) minmax(0,1fr); gap: clamp(2rem,6vw,5rem); align-items: center; }
.contact-logo { width: min(380px,82vw); margin-bottom: 24px; }
.contact-links { display: grid; gap: 12px; }
.contact-links a { width: fit-content; color: var(--blue); font-weight: 900; }
.footer { padding: 1.4rem 0; background: #1f2937; color: rgba(255,255,255,.74); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: .92rem; font-weight: 600; }
.footer a { color: #ffcf24; font-weight: 800; }

@media (max-width: 900px) {
  :root { font-size: 16px; }
  .menu { display: block; }
  .nav { position: absolute; top: 100%; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 8px; padding: 14px; border: 1px solid rgba(15,31,55,.08); border-radius: 22px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: .82rem 1rem; }
  .split, .results-grid, .contact-grid, .cards, .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand img { width: 118px; }
  .header { min-height: 68px; }
  .hero { min-height: 92svh; }
  .actions .btn, .hero-pills span { width: 100%; }
  .card { min-height: auto; }
  .footer-inner { flex-direction: column; text-align: center; }
}
