:root {
  --navy: #0D1B2A;
  --navy-mid: #152238;
  --navy-light: #1B2D45;
  --gold: #C5A059;
  --gold-light: #DBBE7E;
  --gold-dim: rgba(197,160,89,0.12);
  --yellow: #FFD600;
  --yellow-dim: rgba(255,214,0,0.10);
  --bg: #FAFBFC;
  --white: #F8F9FA;
  --text: #0D1B2A;
  --text-muted: #5A6B80;
  --border: #E2E6EC;
  --border-light: #EEF0F4;
  --red: #D90429;
  --green: #16A34A;
  --green-dim: rgba(34,197,94,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: rgba(197,160,89,0.2); }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ─── Utility ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.container-quiz { max-width: 540px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ─── Typography ─── */
.font-display { font-family: 'Cormorant Garamond', serif; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px;
}
.section-label--gold { color: var(--gold); }
.section-label--yellow { color: var(--yellow); }
.section-label--red { color: var(--red); }
.section-label--gold-light { color: var(--gold-light); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; letter-spacing: 0.3px;
  border: none; cursor: pointer; transition: all 0.2s ease; text-decoration: none;
}
.btn-yellow {
  background: var(--yellow); color: var(--navy);
  padding: 14px 30px; border-radius: 8px; font-size: 15px;
  box-shadow: 0 4px 16px rgba(255,214,0,0.2);
}
.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,214,0,0.35);
}
.btn-yellow--lg { padding: 18px 44px; font-size: 17px; }
.btn-yellow--full { width: 100%; }
.btn-gold-outline {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
  padding: 14px 30px; border-radius: 8px; font-size: 15px;
}
.btn-gold-outline:hover { background: var(--gold-dim); }
.btn-back {
  padding: 14px 24px; border-radius: 8px; border: 2px solid var(--border);
  background: #fff; color: var(--navy); font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: inherit;
}

/* ─── Badge ─── */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold-dim); border: 1px solid rgba(197,160,89,0.2);
  border-radius: 100px; padding: 7px 16px; font-size: 12.5px;
  font-weight: 600; color: var(--gold); white-space: nowrap;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 24px; }

/* ─── Nav ─── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light); padding: 0 20px;
}
.site-nav__inner {
  max-width: 1100px; margin: 0 auto; display: flex;
  align-items: center; justify-content: space-between; height: 64px;
}
.site-nav__links { display: flex; align-items: center; gap: 32px; }
.site-nav__link {
  font-size: 13.5px; font-weight: 600; color: var(--navy);
  text-decoration: none; opacity: 0.55; transition: opacity 0.15s;
}
.site-nav__link:hover, .site-nav__link--active { opacity: 1; }
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-menu { display: none; padding: 8px 0 20px; border-top: 1px solid var(--border-light); }
.nav-mobile-menu a { display: block; padding: 13px 0; font-size: 15px; font-weight: 600; color: var(--navy); text-decoration: none; }

@media (max-width: 768px) {
  .site-nav__links { display: none !important; }
  .nav-mobile-btn { display: block !important; }
  .nav-mobile-menu.open { display: block !important; }
}

/* ─── Hero ─── */
.hero {
  background: linear-gradient(172deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  padding: 90px 20px 70px; position: relative; overflow: hidden;
}
.hero__dots {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0.04;
  background-image: radial-gradient(#C5A059 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero__glow {
  position: absolute; top: -120px; right: -120px; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(197,160,89,0.03), transparent 70%);
}
.hero h1 { font-size: clamp(34px, 6.5vw, 60px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 22px; letter-spacing: -0.5px; }
.hero p { color: #9AACBF; font-size: 18px; line-height: 1.65; max-width: 560px; margin: 0 auto 36px; }
.hero__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.text-yellow { color: var(--yellow); }
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }

/* ─── Cards ─── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 30px;
}
.card--bg { background: var(--bg); }
.card--dark {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 28px;
}
.card--top-gold { border-top: 3px solid var(--gold); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card__icon--gold { background: var(--gold-dim); }
.card__icon--red { background: rgba(217,4,41,0.04); }
.card__icon--sm { width: 44px; height: 44px; border-radius: 10px; }
.card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card p, .card--dark p { font-size: 14px; line-height: 1.65; color: var(--text-muted); }
.card--dark h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.card--dark p { color: #8A9DB5; font-size: 13.5px; }

/* ─── Sections ─── */
.section { padding: 80px 20px; }
.section--white { background: #fff; }
.section--bg { background: var(--bg); }
.section--navy { background: linear-gradient(172deg, var(--navy), var(--navy-light)); }
.section--navy-sm { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 70px 20px; }
.section h2 { font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 12px; }
.section--navy h2 { color: #fff; }
.section .subtitle { color: var(--text-muted); font-size: 16px; max-width: 580px; margin: 0 auto; line-height: 1.65; }
.section--navy .subtitle { color: #8A9DB5; max-width: 540px; }

/* ─── Testimonials ─── */
.testimonial {
  background: #fff; border-radius: 14px; padding: 28px 30px;
  border-left: 4px solid var(--gold); text-align: left;
  box-shadow: 0 2px 12px rgba(13,27,42,0.04); margin-bottom: 20px;
}
.testimonial__stars { display: flex; gap: 2px; margin-bottom: 12px; }
.testimonial p { font-size: 15px; color: var(--navy); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.testimonial__author { font-size: 13px; font-weight: 700; color: var(--gold); }

/* ─── Damages Grid ─── */
.damages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.damages-card { background: var(--bg); border-radius: 14px; padding: 32px; border: 1px solid var(--border); }
.damages-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.damages-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.callout {
  margin-top: 32px; background: var(--gold-dim); border-radius: 14px;
  padding: 24px 28px; border: 1px solid rgba(197,160,89,0.13);
  display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap;
}
.callout__body { flex: 1; min-width: 240px; }
.callout h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.callout p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── As Seen On ─── */
.trust-bar {
  padding: 28px 20px; background: #fff; border-bottom: 1px solid var(--border-light); text-align: center;
}
.trust-bar__label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.trust-bar__logos { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; opacity: 0.3; }
.trust-bar__logos span { font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: 1px; }

/* ─── Footer ─── */
.site-footer { background: var(--navy); padding: 48px 20px 32px; text-align: center; }
.site-footer p { color: #5A6B80; font-size: 12.5px; line-height: 1.7; max-width: 520px; margin: 20px auto 0; }
.site-footer__links { margin-top: 22px; display: flex; justify-content: center; gap: 24px; }
.site-footer__links a { color: #5A6B80; font-size: 12.5px; font-weight: 500; text-decoration: none; }
.site-footer__links a:hover { color: var(--gold); }
.site-footer__copy { color: #3A4B5E; font-size: 11px; margin-top: 24px; }

/* ─── Quiz ─── */
.quiz-wrapper { max-width: 540px; margin: 0 auto; }
.quiz-progress { margin-bottom: 28px; }
.quiz-progress__top { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--text-muted); margin-bottom: 7px; font-weight: 700; letter-spacing: 0.5px; }
.quiz-progress__bar { height: 5px; background: var(--border-light); border-radius: 100px; overflow: hidden; }
.quiz-progress__fill {
  height: 100%; background: linear-gradient(90deg, var(--yellow), var(--gold));
  border-radius: 100px; transition: width 0.4s ease;
}
.quiz-step { min-height: 280px; }
.quiz-step h3 { font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.quiz-step .desc { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; line-height: 1.5; }
.quiz-nav { display: flex; gap: 12px; margin-top: 24px; }

.quiz-option {
  width: 100%; text-align: left; padding: 17px 20px;
  background: #fff; border: 2px solid var(--border);
  border-radius: 10px; cursor: pointer; font-size: 15px; font-weight: 600;
  color: var(--navy); transition: all 0.15s; font-family: inherit;
  display: flex; align-items: center; justify-content: space-between;
}
.quiz-option:hover { border-color: var(--gold); }
.quiz-option.active { background: var(--yellow-dim); border-color: var(--yellow); }

.quiz-input {
  width: 100%; padding: 15px 16px; border-radius: 10px;
  border: 2px solid var(--border); font-size: 15px; color: var(--navy);
  font-family: inherit; outline: none; transition: border-color 0.15s;
  box-sizing: border-box;
}
.quiz-input:focus { border-color: var(--gold); }
.quiz-input[type="date"] { min-height: 50px; -webkit-appearance: auto; appearance: auto; color-scheme: light; background: #fff; }
.quiz-input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: 0.6; font-size: 18px; }
.quiz-select { background: #fff; }
.quiz-textarea { resize: vertical; }
.quiz-upload {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  padding: 11px 18px; border-radius: 8px; border: 1.5px dashed var(--border);
  cursor: pointer; font-size: 13px; color: var(--text-muted); font-weight: 500;
  background: transparent;
}
.quiz-upload input { display: none; }
.quiz-consent { font-size: 11.5px; color: var(--text-muted); margin-top: 4px; line-height: 1.5; }

.quiz-success { text-align: center; padding: 48px 20px; }
.quiz-success__icon {
  width: 68px; height: 68px; border-radius: 50%; background: var(--green-dim);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.quiz-success h2 { font-size: 26px; font-weight: 700; color: var(--navy); }
.quiz-success p { color: var(--text-muted); max-width: 380px; margin: 12px auto 0; line-height: 1.7; font-size: 15px; }

/* ─── Landing hero ─── */
.lp-hero { background: linear-gradient(170deg, var(--navy), var(--navy-light)); padding: 56px 20px; }
.lp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1.5px;
}
.lp-badge--gold { background: rgba(197,160,89,0.13); color: var(--gold); }
.lp-badge--yellow { background: rgba(255,214,0,0.13); color: var(--yellow); }
.lp-badge--red { background: rgba(217,4,41,0.13); color: var(--red); }
.lp-hero h1 { font-size: clamp(26px, 5vw, 44px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.lp-hero p { color: #8A9DB5; font-size: 16px; line-height: 1.65; max-width: 520px; margin: 0 auto 28px; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 50px; }
  .hero h1 { font-size: 32px; }
  .section { padding: 50px 20px; }
  .section h2 { font-size: 28px; }
  .hero__btns { flex-direction: column; align-items: center; }
  .damages-grid { grid-template-columns: 1fr; }
}
