:root {
  --primary: #1f3c88;
  --secondary: #2b2b2b;
  --accent: #c8a96a;
  --bg: #f7f7f7;
  --white: #ffffff;
  --text: #1d2433;
  --muted: #65708a;
  --border: #e5e9f2;
  --danger: #fff0f0;
  --danger-border: #f0b8b8;
  --shadow: 0 18px 50px rgba(24, 39, 75, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Open Sans, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section { padding: 74px 0; }
.section-sm { padding: 42px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #f4f7ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow-light {
  background: rgba(31,60,136,0.08);
  color: var(--primary);
}

.eyebrow-hero-alt {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

h1, h2, h3, p { margin: 0; }

h1 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: #dfe6fb;
  max-width: 780px;
}

.muted { color: var(--muted); }
.mb-0 { margin-bottom: 0 !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e1c48b);
  color: #1d1d1d;
  box-shadow: 0 14px 30px rgba(200, 169, 106, 0.24);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(200, 169, 106, 0.22), transparent 28%),
    linear-gradient(135deg, #10234f 0%, #1f3c88 45%, #11244f 100%);
  color: var(--white);
  padding: 26px 0 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  padding-top: 18px;
}

.hero-copy {
  display: grid;
  gap: 16px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
}

.hero-point {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  color: #eef3ff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.compliance-box,
.urgency-box {
  border-radius: var(--radius-sm);
  padding: 18px;
  max-width: 780px;
  font-size: 15px;
}

.compliance-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #e5ecff;
}

.urgency-box {
  background: rgba(200,169,106,0.13);
  border: 1px solid rgba(200,169,106,0.22);
  color: #fff5df;
}

.hero-card,
.card {
  background: var(--white);
  border: 1px solid rgba(229, 233, 242, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  color: var(--text);
  padding: 24px;
}

.form-title {
  margin-bottom: 8px;
  color: var(--secondary);
}

.progress {
  height: 10px;
  background: #edf1f8;
  border-radius: 999px;
  overflow: hidden;
  margin: 16px 0 10px;
}

.progress > span {
  display: block;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--primary), #4e71d0);
  border-radius: inherit;
  transition: width .25s ease;
}

.step-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 600;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; }

.radio-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.radio-option {
  display: block;
  cursor: pointer;
}

.radio-option input {
  display: none;
}

.radio-option span {
  display: block;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--secondary);
  background: #fff;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
  user-select: none;
}

.radio-option:hover span {
  border-color: rgba(31, 60, 136, 0.35);
  transform: translateY(-1px);
}

.radio-option input:checked + span {
  border-color: var(--primary);
  background: rgba(31, 60, 136, 0.05);
}

.radio-grid-error .radio-option span {
  border-color: #d64545;
  background: #fff7f7;
}

.field {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  color: var(--secondary);
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field:focus {
  border-color: rgba(31, 60, 136, 0.5);
  box-shadow: 0 0 0 4px rgba(31, 60, 136, 0.08);
}

.iti {
  width: 100%;
}

.iti__country-container {
  left: 0;
}

.iti__country-list {
  top: calc(100% + 6px);
  left: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  max-height: 220px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(24, 39, 75, 0.18);
  font-size: 13px;
  overflow-x: hidden;
}

.iti__country {
  padding: 7px 10px;
}

.iti__search-input {
  padding: 8px 10px;
  font-size: 13px;
}

.iti__dial-code {
  font-size: 12px;
}

.iti--container {
  z-index: 200;
}

.field-error {
  border-color: #d64545 !important;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.08) !important;
}

.error-text {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: #d64545;
  font-weight: 600;
}

.error-text.is-visible {
  display: block;
}

.error-box {
  background: var(--danger);
  border: 1px solid var(--danger-border);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 18px;
  color: #7a1f1f;
}

.field-group {
  display: grid;
  gap: 12px;
}

.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ghost-btn {
  background: #f3f6fb;
  color: var(--secondary);
  box-shadow: none;
}

.form-note {
  font-size: 14px;
  margin-top: 12px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 32px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head-full {
  margin-bottom: 0;
  max-width: none;
}

.trust-grid,
.process-grid,
.scam-grid,
.cases-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.scam-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.cases-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  padding: 24px;
  height: 100%;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(31, 60, 136, 0.08);
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 14px;
}

.card p { color: var(--muted); }

.number-pill {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(200, 169, 106, 0.18);
  color: #765d2d;
  font-weight: 800;
  margin-bottom: 14px;
}

.ticker-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
}

.ticker {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  width: max-content;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  white-space: nowrap;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  background: #fff;
  color: var(--secondary);
  font-weight: 600;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.faq { display: grid; gap: 14px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  text-align: left;
  font: inherit;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.open .faq-answer { display: block; }

.cta-band {
  background: linear-gradient(135deg, #10234f, #1f3c88 55%, #11244f);
  color: var(--white);
  border-radius: 28px;
  padding: 38px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}

.cta-band p {
  color: #dee7ff;
  max-width: 720px;
}

footer {
  background: #111827;
  color: #e5edf9;
  padding: 54px 0 100px;
  margin-top: 72px;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 12px;
  max-width: 540px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #e5edf9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover { color: #ffffff; }

.footer-note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #aeb9cf;
  font-size: 14px;
}

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: block;
  width: 320px;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.sticky-cta .btn {
  width: 100%;
  min-height: 50px;
}

.sticky-cta small {
  display: block;
  text-align: center;
  color: #cfd7e7;
  margin-top: 8px;
  font-size: 12px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .trust-grid,
  .process-grid,
  .scam-grid,
  .cases-grid,
  .testimonial-grid,
  .footer-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .hero { padding-bottom: 60px; }

  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .hero-points,
  .trust-grid,
  .process-grid,
  .scam-grid,
  .cases-grid,
  .testimonial-grid,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .card,
  .ticker-wrap,
  .cta-band {
    padding: 20px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .actions-row,
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .sticky-cta {
    display: block;
    left: 12px;
    right: 12px;
    width: auto;
  }

  .ticker {
    animation-duration: 18s;
  }
}
