/* Novya - Brand styles */
:root {
  --teal: #008B8B;
  --teal-dark: #006d6d;
  --teal-light: #e0f2f2;
  --teal-bg: #d8ecec;
  --bg: #F5F0E8;
  --bg-warm: #ede6d6;
  --text: #1a2b2b;
  --text-muted: #5a6868;
  --border: #e3dccb;
  --white: #ffffff;
  --star: #f5b301;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Promo banner */
.promo-banner {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Nav */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
}
.logo span { color: var(--text); }
.logo img {
  width: 140px;
  height: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--teal-bg) 0%, var(--teal-light) 100%);
  padding: 72px 24px 88px;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.hero-eyebrow .dots {
  display: inline-flex;
}
.hero-eyebrow .dots span {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); border: 2px solid #fff;
  margin-left: -8px;
}
.hero h1 { margin-bottom: 24px; }
.hero-sub { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 28px; max-width: 540px; }
.benefits {
  list-style: none;
  margin-bottom: 36px;
}
.benefits li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.benefits li::before {
  content: '✓';
  background: var(--teal);
  color: #fff;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-img {
  background: #fff;
  border-radius: 24px;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0,139,139,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  background-image: linear-gradient(135deg, #f0e8d5 0%, #e0d4b8 100%);
  position: relative;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* Press ticker */
.press {
  background: var(--white);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-wrap {
  overflow: hidden;
  width: 100%;
}
.press-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.ticker {
  display: flex;
  width: max-content;
  animation: scroll 36s linear infinite;
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}
.ticker span {
  margin-right: 72px;
}
.stats-ticker { background: var(--bg); }
.stats-ticker .ticker {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}
.stats-ticker .ticker span {
  margin-right: 32px;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* Product cards */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { color: var(--text-muted); margin-top: 12px; }
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.product-card .pill {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.product-card h3 { font-size: 1.6rem; margin-bottom: 8px; }
.product-card .price { font-size: 1.1rem; color: var(--teal); font-weight: 600; margin-bottom: 18px; }
.product-card p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.product-visual {
  width: 100%;
  height: 400px;
  background: #FFFFFF;
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  overflow: hidden;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  display: block;
}

/* Stats */
.stats-section {
  background: var(--teal);
  color: #fff;
  padding: 72px 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 24px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.95rem; opacity: 0.9; }

/* How it works */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--teal);
  opacity: 0.25;
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px;
  height: 64px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 6px solid var(--bg);
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* Calculator */
.calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.calc-left h2 { margin-bottom: 22px; }
.calc-left h2 span { color: var(--teal); }
.calc-left p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.02rem; }
.calc-left p span { color: var(--teal); font-weight: 600; }
.btn-dark {
  background: #1a1a1a;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.calc-right {
  background: #F5F5F5;
  border-radius: 24px;
  padding: 36px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.calc-row label {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.calc-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.calc-val.teal { color: var(--teal); }
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e5e5e5;
  outline: none;
  margin: 18px 0 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #C49A2A;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(196,154,42,0.45);
}
.calc-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #C49A2A;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(196,154,42,0.45);
}
@media (max-width: 820px) {
  .calc { grid-template-columns: 1fr; gap: 36px; }
}

/* Science section */
.science {
  background: #fff;
  border-radius: 32px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--border);
}
.science-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.photo-ph {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #e8dcc0, #d0c098);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a5d40;
  font-size: 0.85rem;
  overflow: hidden;
}
.photo-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.photo-ph:nth-child(2) { margin-top: 32px; }
.science h2 { margin-bottom: 20px; }
.science p { color: var(--text-muted); margin-bottom: 16px; }

/* Support */
.support-card {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border-radius: 32px;
  padding: 56px;
  text-align: center;
}
.support-card h2 { margin-bottom: 16px; }
.support-card p { opacity: 0.92; max-width: 600px; margin: 0 auto 28px; }

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
}
.stars { color: var(--star); margin-bottom: 12px; letter-spacing: 2px; }
.review p { color: var(--text-muted); margin-bottom: 18px; font-size: 0.95rem; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-weight: 700;
}

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 22px 28px;
  text-align: left;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq-q::after {
  content: '+';
  color: var(--teal);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 28px;
  color: var(--text-muted);
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }

/* Guarantee */
.guarantee {
  background: #FDF8F0;
  border: none;
  border-radius: 32px;
  padding: 56px;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  text-align: left;
}
.guarantee-icon {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #C49A2A;
  color: #C49A2A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-icon svg {
  width: 84px;
  height: 84px;
}
.guarantee-content { flex: 1; }
.guarantee-label {
  color: #C49A2A;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.guarantee h2 { margin-bottom: 14px; color: var(--text); }
.guarantee p { color: var(--text-muted); margin-bottom: 28px; }
.btn-gold {
  background: #C49A2A;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn-gold:hover { background: #a8831f; transform: translateY(-1px); }
@media (max-width: 720px) {
  .guarantee { flex-direction: column; text-align: center; padding: 40px 28px; gap: 28px; }
  .guarantee-icon { width: 120px; height: 120px; }
  .guarantee-icon svg { width: 64px; height: 64px; }
}

/* Footer */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  margin-top: 80px;
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.badge {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg);
  border-radius: 16px;
}
.badge-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
  font-weight: 700;
}
.badge-title { font-weight: 600; font-size: 0.95rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 16px;
}
.gphc {
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
}

/* -------- FORM PAGE -------- */
.form-topbar {
  background: var(--bg);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
}
.form-topbar .logo { flex: 1; display: flex; justify-content: center; align-items: center; }
.form-topbar .spacer { flex: 1; }
.trustpilot {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}
.trustpilot .stars-small { color: #00b67a; letter-spacing: 2px; }

.progress-wrap {
  background: #fff;
  padding: 28px 24px;
  border-bottom: 1px solid var(--border);
}
.progress {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.progress::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--border);
  z-index: 0;
}
.progress-fill {
  position: absolute;
  top: 18px;
  left: 40px;
  height: 3px;
  background: var(--teal);
  z-index: 1;
  transition: width 0.4s;
}
.progress-step {
  position: relative;
  z-index: 2;
  text-align: center;
}
.progress-step .dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 8px;
  color: var(--text-muted);
}
.progress-step.active .dot,
.progress-step.done .dot {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.progress-step .label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.progress-step.active .label,
.progress-step.done .label { color: var(--teal); }

.form-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.form-hero-img {
  width: 1360px;
  max-width: 100%;
  height: auto;
  background: transparent;
  border-radius: 16px;
  margin: 0 auto 36px;
  overflow: hidden;
}
.form-hero-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}
.form-title {
  text-align: center;
  margin-bottom: 12px;
}
.form-title span { color: var(--teal); font-style: italic; }
.form-intro {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.field {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.field .error-msg {
  display: none;
  color: #E05555;
  font-size: 0.82rem;
  margin-top: 10px;
  font-weight: 500;
}
.field.has-error .error-msg { display: block; }
.field.has-error input,
.field.has-error select {
  border-color: #E05555;
}
.field.has-error .option-card {
  border-color: #E05555;
}
.field label.q {
  display: block;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.field-row { display: flex; gap: 12px; }
.field-row > * { flex: 1; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: border 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
textarea { resize: vertical; min-height: 100px; }

.unit-toggle {
  display: inline-flex;
  background: var(--bg);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 12px;
}
.unit-toggle button {
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.unit-toggle button.active { background: var(--teal); color: #fff; }

.option-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.option-cards.three { grid-template-columns: repeat(3, 1fr); }
.option-card {
  padding: 24px 18px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
.option-card .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.option-card .icon svg {
  width: 32px;
  height: 32px;
  stroke: #2D2D2D;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.option-card.selected .icon svg { stroke: var(--teal-dark); }
.option-card .sub { display: block; font-weight: 400; font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.option-card:hover { border-color: var(--teal); }
.option-card.selected {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
}

.checklist { display: grid; gap: 10px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.check-item:hover { border-color: var(--teal); }
.check-item input { width: 18px; height: 18px; accent-color: var(--teal); }
.check-item.selected { background: var(--teal-light); border-color: var(--teal); }

.dob { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }

.video-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
}
.video-ph {
  width: 280px;
  height: 280px;
  flex: 0 0 280px;
  background: #F5F0E8;
  border: 1px solid #E0D9CF;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.play-btn {
  width: 56px;
  height: 56px;
  background: #fff;
  border: 1px solid #E0D9CF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn svg { width: 18px; height: 18px; fill: #9a9a9a; }

.next-block {
  text-align: center;
  padding: 40px 0;
}
.next-block h3 { margin-bottom: 20px; font-size: 1.6rem; }

.stage { display: none; }
.stage.active { display: block; }

.result-card {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  padding: 36px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 32px;
}
.result-card .big {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 8px 0;
}
.result-card .sub { opacity: 0.9; font-size: 0.95rem; }

.summary-card {
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 28px;
}
.summary-card h3 { color: var(--teal); margin-bottom: 20px; }
.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.summary-grid .item {
  background: var(--bg);
  padding: 16px;
  border-radius: 12px;
}
.summary-grid .item-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.summary-grid .item-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
}

.candidate-banner {
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 20px 28px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 32px;
  border: 1px solid var(--teal);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 20px 0;
}
.consent input { margin-top: 4px; accent-color: var(--teal); }

.badges-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.mini-badge {
  background: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 820px) {
  .hero-inner, .science { grid-template-columns: 1fr; }
  .products, .stats, .reviews, .trust-badges, .summary-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .timeline::before { display: none; }
  .science { padding: 36px; }
  .support-card, .guarantee { padding: 36px 24px; }
  .stat-num { font-size: 2.2rem; }
  .option-cards.three { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .products, .stats, .reviews, .trust-badges, .summary-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 20px 64px; }
  .form-container { padding: 32px 16px 64px; }
  .field { padding: 20px; }
  .progress-step .label { font-size: 0.72rem; }
}

/* Mobile: centre alignment below 768px */
@media (max-width: 768px) {
  .hero-inner,
  .hero-inner > div,
  .science,
  .science > div,
  .calc,
  .calc-left,
  .calc-right,
  .product-card,
  .review,
  .support-card,
  .guarantee,
  .guarantee-content,
  .step,
  .section-header,
  .form-title,
  .form-intro,
  .field,
  .field .q,
  .calc-row,
  .candidate-banner,
  .next-block {
    text-align: center;
  }
  .hero h1,
  .hero-sub,
  .calc-left h2,
  .calc-left p,
  .science h2,
  .science p,
  .guarantee h2,
  .guarantee p,
  .guarantee-label,
  .product-card h3,
  .product-card p,
  .product-card .price,
  .review p,
  section h2,
  section p {
    text-align: center;
  }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .benefits li { justify-content: center; }
  .review-author { justify-content: center; }
  .calc-row { flex-direction: column; align-items: center; gap: 6px; }
  .guarantee { flex-direction: column; text-align: center; }
  .guarantee-icon { margin: 0 auto; }
  /* Buttons centre (except nav Get Started which stays right via flex layout) */
  .hero .btn,
  .product-card .btn,
  .support-card .btn,
  .guarantee .btn,
  .calc-left .btn,
  .next-block .btn,
  .form-container .btn {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
  /* Nav Get Started stays on the right — nav-inner keeps flex space-between */
  .nav-inner { text-align: left; }
}
