/* ============================================================
   Wellnexis Gastro — Stylesheet
   Mobile-first · premium italian-medical aesthetic
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --amber-50:  #fffbeb;
  --amber-100: #fef3c7;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-700: #b45309;
  --rose-50:  #fff1f2;
  --rose-500: #f43f5e;
  --red-500:  #ef4444;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow:    0 4px 18px rgba(15,23,42,0.07), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 32px rgba(15,23,42,0.10), 0 4px 8px rgba(15,23,42,0.05);
  --shadow-teal: 0 12px 32px rgba(13,148,136,0.18);

  --container: 1140px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11','ss01';
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Icon helper (sprite) ---------- */
.icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.icon-flag {
  width: 1.35em;
  height: 0.9em;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

/* ---------- Typography ---------- */
h1 { font-size: clamp(1.7rem, 4.4vw, 2.75rem); font-weight: 800; color: var(--slate-900); line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 3.2vw, 2.1rem); font-weight: 800; color: var(--slate-900); line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); letter-spacing: -0.01em; }
p  { font-size: 1rem; color: var(--slate-600); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--teal-200);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--slate-500);
  max-width: 640px;
  margin: 12px auto 0;
  text-align: center;
  line-height: 1.55;
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--teal-600) 0%, var(--teal-700) 100%);
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-align: center;
  min-height: 52px;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 12px rgba(13,148,136,0.22);
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-primary .icon,
.btn-submit  .icon { font-size: 1.2em; }
.btn-primary:hover,
.btn-submit:hover  { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(13,148,136,0.32); }
.btn-primary:active,
.btn-submit:active { transform: translateY(0); }
.btn-submit { width: 100%; padding: 16px 24px; margin-bottom: 12px; }
.btn-submit:disabled { background: var(--slate-300); cursor: not-allowed; box-shadow: none; transform: none; }

.btn-pulse { animation: pulse-cta 2.6s infinite; }
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 12px rgba(13,148,136,0.22), 0 0 0 0 rgba(13,148,136,0.45); }
  50%      { box-shadow: 0 4px 12px rgba(13,148,136,0.22), 0 0 0 14px rgba(13,148,136,0); }
}

/* ---------- Cookie consent ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--slate-800);
  color: var(--slate-50);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  max-width: 1100px;
  width: 100%;
}
.cookie-banner-text strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.cookie-banner-text p { font-size: 0.82rem; color: var(--slate-300); line-height: 1.45; }
.cookie-banner-text a { color: var(--teal-200); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; }
.cookie-btn {
  flex: 1;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: opacity .2s, background .2s;
}
.cookie-btn:hover { opacity: 0.9; }
.cookie-btn-accept  { background: var(--teal-600); color: white; }
.cookie-btn-decline { background: transparent; color: var(--slate-300); border: 1px solid var(--slate-600); }

@media (min-width: 720px) {
  .cookie-banner-inner { flex-direction: row; align-items: center; gap: 20px; }
  .cookie-banner-text { flex: 1; }
  .cookie-banner-actions { flex-shrink: 0; }
  .cookie-btn { flex: 0 0 auto; }
}

/* ---------- Header (main page) ---------- */
.header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--slate-100);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.logo-text { font-size: 1.12rem; font-weight: 600; color: var(--slate-900); letter-spacing: -0.01em; }
.logo-text strong { color: var(--teal-600); font-weight: 800; }
.header-nav { display: none; }
.btn-nav {
  background: var(--teal-600);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: background .2s, transform .15s !important;
  display: inline-flex; align-items: center;
}
.btn-nav:hover { background: var(--teal-700) !important; transform: translateY(-1px); }

@media (min-width: 768px) {
  .header-nav { display: flex; align-items: center; gap: 28px; }
  .header-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--slate-700);
    transition: color .2s;
  }
  .header-nav a:hover { color: var(--teal-600); }
}

/* ---------- Quiz minimal header ---------- */
.quiz-header {
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
  padding: 12px 0;
}
.quiz-header .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.quiz-header-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--slate-500);
  font-weight: 500;
}
.quiz-header-trust .icon { color: var(--teal-600); font-size: 1.05em; }
.quiz-header-trust span { display: none; }
@media (min-width: 480px) { .quiz-header-trust span { display: inline; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 36px 0 32px;
  background: radial-gradient(ellipse at top right, rgba(13,148,136,0.10) 0%, rgba(255,255,255,0) 60%),
              linear-gradient(180deg, var(--teal-50) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}
.hero-content { max-width: 560px; }
.hero-image { display: flex; justify-content: center; order: -1; }
.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  width: 100%;
}

.badge-made-in {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber-50);
  border: 1px solid var(--amber-100);
  color: var(--amber-700);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px 5px 6px;
  border-radius: 100px;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.badge-made-in .icon-flag { width: 1.5em; height: 1em; }

.hero h1 { margin-bottom: 14px; }
.hero h1 .highlight { color: var(--teal-700); }
.hero-subtitle {
  font-size: clamp(0.98rem, 2.3vw, 1.1rem);
  color: var(--slate-600);
  margin-bottom: 20px;
  line-height: 1.55;
}
.hero-subtitle strong { color: var(--teal-700); font-weight: 700; }

.price-block { display: flex; flex-direction: column; gap: 2px; margin-bottom: 18px; align-items: center; }
.price-new { font-size: clamp(1.8rem, 5vw, 2.4rem); font-weight: 800; color: var(--teal-700); line-height: 1; letter-spacing: -0.02em; }
.price-label { font-size: 0.85rem; color: var(--slate-500); font-weight: 500; }

.hero-cta-group { margin-bottom: 22px; }
.hero-cta-group .btn-primary { width: 100%; max-width: 380px; }

.trust-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  text-align: left;
}
.trust-mini-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate-700);
}
.trust-mini-item .icon {
  width: 18px; height: 18px;
  color: var(--teal-600);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .hero { padding: 64px 0 56px; }
  .hero-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 56px;
  }
  .hero-content { max-width: none; flex: 1; }
  .hero-image { order: 1; flex: 0 0 44%; }
  .hero-image img { max-width: 440px; }
  .price-block { align-items: flex-start; }
  .hero-cta-group .btn-primary { width: auto; }
  .trust-mini-grid { grid-template-columns: repeat(4, auto); justify-content: start; gap: 8px 22px; }
}

/* ---------- Profile banner (quiz handoff) ---------- */
.profile-banner {
  background: linear-gradient(90deg, var(--teal-700) 0%, var(--teal-500) 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 0.9rem;
}
.profile-banner-inner { display: flex; align-items: center; gap: 12px; }
.profile-banner-icon { flex-shrink: 0; display: flex; }
.profile-banner-icon .icon { font-size: 1.2rem; }
.profile-banner-text { flex: 1; line-height: 1.4; min-width: 0; font-size: 0.85rem; }
.profile-banner-text strong { display: block; font-weight: 700; }
.profile-banner-text span { opacity: 0.95; }
.profile-banner-cta {
  flex-shrink: 0;
  background: #fff;
  color: var(--teal-700);
  padding: 7px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background .2s;
}
.profile-banner-cta:hover { background: var(--teal-50); }
@media (min-width: 768px) {
  .profile-banner-text strong { display: inline; margin-right: 6px; }
  .profile-banner-text { font-size: 0.92rem; }
}

/* ---------- Problem section ---------- */
.problem-section {
  padding: 56px 0;
  text-align: center;
}
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 32px 0;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.problem-card:hover {
  border-color: var(--teal-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.problem-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.problem-icon .icon { width: 22px; height: 22px; }
.problem-icon-bloat   { background: linear-gradient(135deg, #ecfeff, #cffafe); color: #0e7490; }
.problem-icon-acid    { background: linear-gradient(135deg, #fff1f2, #ffe4e6); color: #be123c; }
.problem-icon-fatigue { background: linear-gradient(135deg, #f5f3ff, #ede9fe); color: #6d28d9; }
.problem-icon-transit { background: linear-gradient(135deg, #fef3c7, #fde68a); color: var(--amber-700); }
.problem-card h3 { font-size: 1rem; margin-bottom: 4px; }
.problem-card p  { font-size: 0.88rem; color: var(--slate-500); margin: 0; line-height: 1.5; }

.problem-solution {
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.problem-solution-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--teal-600);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-solution-arrow .icon { width: 20px; height: 20px; }
.problem-solution p { font-size: 0.95rem; color: var(--slate-700); margin: 0; }
.problem-solution strong { color: var(--teal-700); font-weight: 700; }

@media (min-width: 640px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
  .problem-section { padding: 80px 0; }
  .problems-grid { grid-template-columns: repeat(4, 1fr); margin: 40px 0; }
}

/* ---------- Benefits ---------- */
.benefits-section {
  padding: 56px 0;
  background: var(--slate-50);
  text-align: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: left;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--teal-200); }
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.benefit-icon .icon { width: 26px; height: 26px; }
.benefit-icon-1 { background: linear-gradient(135deg, #ccfbf1, #99f6e4); color: var(--teal-700); }
.benefit-icon-2 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #be185d; }
.benefit-icon-3 { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #15803d; }
.benefit-icon-4 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.benefit-icon-5 { background: linear-gradient(135deg, #fef3c7, #fde68a); color: var(--amber-700); }
.benefit-icon-6 { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #6d28d9; }
.benefit-card h3 { margin-bottom: 6px; }
.benefit-card p  { font-size: 0.9rem; color: var(--slate-500); line-height: 1.55; }

@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1024px) {
  .benefits-section { padding: 80px 0; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
}

/* ---------- Ingredients ---------- */
.ingredients-section {
  padding: 56px 0;
  text-align: center;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.ingredient-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  text-align: left;
  position: relative;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.ingredient-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.ingredient-featured {
  border: 2px solid var(--teal-600);
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--white) 100%);
  box-shadow: var(--shadow-teal);
}
.ingredient-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--slate-100);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.04em;
}
.ingredient-featured .ingredient-number { color: var(--teal-100); }
.ingredient-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--teal-600);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ingredient-icon { width: 56px; height: 56px; margin-bottom: 14px; border-radius: 16px; display:flex; align-items:center; justify-content:center; }
.ingredient-icon-calcium { background: var(--teal-50); color: var(--teal-700); }
.ingredient-icon-collagen { background: #ecfdf5; color: #047857; }
.ingredient-icon-d3 { background: var(--amber-50); color: var(--amber-700); }
.ingredient-icon .icon { width: 30px; height: 30px; }
.ingredient-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.ingredient-latin { font-size: 0.82rem; color: var(--slate-500); margin-bottom: 12px; font-style: italic; }
.ingredient-card > p { font-size: 0.9rem; color: var(--slate-600); margin-bottom: 14px; line-height: 1.55; }
.ingredient-benefits { display: flex; flex-wrap: wrap; gap: 6px; }
.ingredient-benefits span {
  background: var(--teal-100);
  color: var(--teal-800);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.ingredient-featured .ingredient-benefits span { background: var(--teal-600); color: var(--white); }

.made-in-italy {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--amber-50);
  border: 1px solid var(--amber-100);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin: 32px auto 0;
  max-width: 540px;
  text-align: left;
}
.made-in-italy .italy-flag {
  width: 48px; height: 32px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.made-in-italy strong { display: block; font-size: 0.98rem; color: var(--slate-900); margin-bottom: 2px; }
.made-in-italy p { font-size: 0.85rem; color: var(--slate-500); margin: 0; line-height: 1.45; }

@media (min-width: 1024px) {
  .ingredients-section { padding: 80px 0; }
  .ingredients-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: none; margin-top: 40px; }
}

/* ---------- How it works ---------- */
.how-it-works {
  padding: 56px 0;
  background: var(--slate-50);
  text-align: center;
}
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
  align-items: center;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  width: 100%;
  max-width: 320px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--teal-600);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(13,148,136,0.25);
}
.step-icon {
  margin: 8px auto 14px;
  width: 56px; height: 56px;
  background: var(--teal-50);
  color: var(--teal-700);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon .icon { width: 28px; height: 28px; }
.step-card h3 { margin-bottom: 6px; }
.step-card p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.5; }
.step-arrow {
  color: var(--teal-300, var(--teal-200));
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-arrow .icon { width: 22px; height: 22px; transform: rotate(90deg); color: var(--teal-500); }

@media (min-width: 1024px) {
  .how-it-works { padding: 80px 0; }
  .steps-grid { flex-direction: row; align-items: stretch; justify-content: center; gap: 8px; margin-top: 48px; }
  .step-card { max-width: 280px; flex: 1; }
  .step-arrow .icon { transform: none; }
}

/* ---------- Product details ---------- */
.product-details { padding: 56px 0; }
.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.details-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}
.details-content h2 { margin-bottom: 18px; }
.details-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.details-table tr { border-bottom: 1px solid var(--slate-100); }
.details-table td { padding: 11px 0; font-size: 0.92rem; }
.details-table td:first-child { color: var(--slate-500); width: 42%; font-weight: 500; }
.details-table td:last-child  { color: var(--slate-900); font-weight: 500; }
.details-table .td-flag { display: inline-flex; align-items: center; gap: 6px; }
.details-table .td-flag .icon-flag { width: 1.4em; height: 0.95em; }
.price-highlight { color: var(--teal-700); font-size: 1.2rem; font-weight: 800; }

@media (max-width: 1023px) { .details-image { display: none; } }
@media (min-width: 1024px) {
  .product-details { padding: 80px 0; }
  .details-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 56px 0;
  background: var(--slate-50);
  text-align: center;
}
.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  padding: 8px 16px;
  border-radius: 100px;
  margin: 14px 0 32px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  justify-content: center;
}
.rating-stars { display: inline-flex; gap: 2px; color: var(--amber-500); }
.rating-stars .icon { width: 16px; height: 16px; }
.rating-score { font-size: 1rem; font-weight: 800; color: var(--slate-900); }
.rating-count { font-size: 0.8rem; color: var(--slate-500); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.testimonial-featured { border: 2px solid var(--teal-600); }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-header > div:nth-child(2) { flex: 1; min-width: 0; }
.testimonial-header strong { display: block; font-size: 0.92rem; color: var(--slate-900); }
.testimonial-location { font-size: 0.78rem; color: var(--slate-500); }
.testimonial-stars { display: inline-flex; gap: 1px; color: var(--amber-500); }
.testimonial-stars .icon { width: 14px; height: 14px; }
.testimonial-stars .star-empty .icon { color: var(--slate-300); }
.testimonial-card > p {
  font-size: 0.9rem;
  color: var(--slate-700);
  line-height: 1.65;
  margin-bottom: 10px;
}
.testimonial-card > p::before { content: '“'; color: var(--teal-300, var(--teal-200)); font-size: 1.4rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-date { font-size: 0.75rem; color: var(--slate-500); }

.testimonials-disclaimer {
  margin-top: 28px;
  font-size: 0.8rem;
  color: var(--slate-500);
  text-align: center;
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1024px) {
  .testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ---------- FAQ ---------- */
.faq-section { padding: 56px 0; text-align: center; }
.faq-list {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid var(--slate-100);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
  text-align: left;
  cursor: pointer;
  transition: color .2s;
  min-height: 48px;
}
.faq-question:hover,
.faq-question[aria-expanded="true"] { color: var(--teal-700); }
.faq-arrow { transition: transform .3s; width: 20px; height: 20px; color: var(--slate-400); flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--teal-600); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}
.faq-answer.open { max-height: 400px; padding-bottom: 18px; }
.faq-answer p { font-size: 0.92rem; color: var(--slate-600); line-height: 1.65; }

@media (min-width: 1024px) { .faq-section { padding: 80px 0; } }

/* ---------- Order section (main page) ---------- */
.order-section {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--white) 100%);
}
.order-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.order-info { display: none; }
.order-info h2 { margin-bottom: 18px; }
.order-price-block { margin-bottom: 22px; display: flex; flex-direction: column; gap: 4px; }
.order-price-new { font-size: 2.2rem; font-weight: 800; color: var(--teal-700); letter-spacing: -0.02em; }
.order-price-label { font-size: 0.9rem; color: var(--slate-500); font-weight: 500; }
.order-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.order-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--slate-700);
}
.order-features li .icon { width: 20px; height: 20px; color: var(--teal-600); flex-shrink: 0; }

.order-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
  scroll-margin-top: 16px;
}
.order-form h3 { font-size: 1.18rem; margin-bottom: 4px; }
.form-subtitle { font-size: 0.88rem; color: var(--slate-500); margin-bottom: 20px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--slate-700); margin-bottom: 6px; }
.form-group input {
  width: 100%;
  padding: 14px 14px;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--slate-900);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  min-height: 48px;
}
.form-group input:focus { border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(13,148,136,0.14); }
.form-group input.error { border-color: var(--red-500); }
.field-error { display: block; font-size: 0.8rem; color: var(--red-500); margin-top: 4px; min-height: 16px; }

.phone-input-wrap { display: flex; align-items: stretch; }
.phone-prefix {
  background: var(--slate-100);
  border: 1.5px solid var(--slate-300);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 0 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-700);
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.phone-input-wrap input { border-radius: 0 var(--radius) var(--radius) 0; flex: 1; }

.honeypot-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-disclaimer { font-size: 0.74rem; color: var(--slate-500); text-align: center; line-height: 1.5; }
.form-disclaimer a { color: var(--teal-600); text-decoration: underline; }

/* Inline submit error (replaces alert() for network/server failures) */
.form-submit-error {
  margin: 4px 0 12px;
  padding: 10px 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  color: #b91c1c;
  font-size: 0.85rem;
  line-height: 1.45;
  text-align: center;
}
.form-submit-error[hidden] { display: none; }

/* GDPR consent */
.form-consent { margin-top: 4px; margin-bottom: 6px; }
.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--slate-600);
}
.consent-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 1px;
  accent-color: var(--teal-600);
  cursor: pointer;
}
.consent-checkbox .consent-text a { color: var(--teal-700); text-decoration: underline; }
.form-consent.error .consent-checkbox { color: var(--red-500); }
.form-consent.error input[type="checkbox"] { outline: 2px solid var(--red-500); outline-offset: 2px; border-radius: 3px; }

/* Form trust grid */
.form-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--slate-100);
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--slate-600);
  font-weight: 500;
}
.form-trust-item .icon { width: 16px; height: 16px; color: var(--teal-600); }

/* Form success */
.form-success { text-align: center; padding: 20px 0; }
.success-icon {
  width: 72px; height: 72px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.success-icon .icon { width: 38px; height: 38px; color: var(--teal-600); }
.form-success h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--teal-700); }
.form-success p { font-size: 0.95rem; margin-bottom: 8px; }
.success-note { font-size: 0.82rem; color: var(--slate-500); }

@media (min-width: 768px) {
  .order-form-wrap { padding: 32px 30px; }
}
@media (min-width: 1024px) {
  .order-section { padding: 80px 0; }
  .order-inner { grid-template-columns: 1fr 1fr; gap: 56px; }
  .order-info { display: block; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--slate-900);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color .15s;
}
.footer-links a:hover { color: var(--teal-200); }
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.footer-contact .icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--teal-200); }
.footer-contact a:hover { color: var(--teal-200); }

.footer-bottom { padding: 22px 0; text-align: center; }
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
  max-width: 800px;
  margin: 0 auto 10px;
  line-height: 1.6;
}
.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-copyright a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.cookie-reset-link {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.cookie-reset-link:hover { color: var(--teal-200); }

@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1024px) {
  .footer { padding: 60px 0 0; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
}

/* ---------- Footer quiz (simpler) ---------- */
.footer-quiz { padding: 24px 0 0; }
.footer-quiz .container { display: flex; flex-direction: column; align-items: center; gap: 12px; padding-top: 4px; }
.quiz-footer-nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.quiz-footer-nav a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color .2s; }
.quiz-footer-nav a:hover { color: var(--teal-200); }
.footer-quiz .footer-bottom { padding: 14px 0 22px; }
.footer-quiz .footer-disclaimer { font-size: 0.74rem; margin-bottom: 8px; }
.footer-quiz .footer-copyright a { color: var(--teal-200); }

/* ---------- Sticky mobile CTA (main page) ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  transform: translateY(110%);
  transition: transform .25s ease-out;
  visibility: hidden;
}
.sticky-cta.visible { transform: translateY(0); visibility: visible; }
.sticky-cta-info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sticky-cta-price { font-size: 1.1rem; font-weight: 800; color: var(--teal-700); line-height: 1; }
.sticky-cta-note { font-size: 0.74rem; color: var(--slate-500); line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sticky-cta-btn {
  flex-shrink: 0;
  background: var(--teal-600);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .15s;
  min-height: 48px;
}
.sticky-cta-btn:hover { background: var(--teal-700); color: var(--white); }
@media (min-width: 769px) { .sticky-cta { display: none !important; } }
@media (max-width: 768px) { body.has-sticky-cta { padding-bottom: 76px; } }

/* ============================================================
   QUIZ-SPECIFIC STYLES
   ============================================================ */
.quiz-body {
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--white) 200px);
  min-height: 100vh;
}
.quiz-page-wrapper { min-height: calc(100vh - 200px); }

.quiz-screen { display: none; }
.quiz-screen.active { display: block; animation: fade-in .35s ease-out; }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ----- Intro screen ----- */
.quiz-intro-wrapper {
  max-width: 560px;
  margin: 0 auto;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.quiz-intro { width: 100%; }
.quiz-intro-image { width: 100%; display: flex; justify-content: center; order: -1; }
.quiz-intro-image img {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.quiz-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-50);
  color: var(--teal-700);
  border: 1px solid var(--teal-200);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 14px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.quiz-intro h1 { font-size: clamp(1.45rem, 5vw, 2.1rem); margin-bottom: 12px; }
.quiz-intro-lead {
  font-size: clamp(0.92rem, 2.4vw, 1.02rem);
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 20px;
}
.quiz-intro-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  align-items: center;
}
.quiz-intro-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--slate-700);
  font-weight: 500;
}
.quiz-intro-features .icon { color: var(--teal-600); width: 18px; height: 18px; }

.btn-start-quiz {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--teal-600) 0%, var(--teal-700) 100%);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 360px;
  min-height: 56px;
  box-shadow: 0 8px 20px rgba(13,148,136,0.32);
  transition: transform .15s, box-shadow .2s;
}
.btn-start-quiz:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(13,148,136,0.4); }
.btn-start-quiz:active { transform: translateY(0); }
.btn-start-quiz .icon { font-size: 1.15em; }

.quiz-intro-mini { font-size: 0.78rem; color: var(--slate-500); margin-top: 12px; }

@media (min-width: 820px) {
  .quiz-intro-wrapper {
    max-width: 1080px;
    flex-direction: row;
    text-align: left;
    gap: 56px;
    padding: 56px 24px 48px;
    align-items: center;
  }
  .quiz-intro { flex: 1; }
  .quiz-intro-image { order: 1; flex: 0 0 44%; }
  .quiz-intro-image img { max-width: 460px; }
  .quiz-intro-features { align-items: flex-start; }
  .btn-start-quiz { width: auto; max-width: none; }
}

/* ----- Quiz questions screen ----- */
.quiz-block {
  max-width: 580px;
  margin: 0 auto;
  padding: 24px 16px 32px;
}
.quiz-progress { margin-bottom: 22px; }
.quiz-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--slate-500);
  margin-bottom: 8px;
  font-weight: 600;
}
.quiz-progress-track {
  height: 8px;
  background: var(--slate-200);
  border-radius: 99px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-700));
  border-radius: 99px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.quiz-question-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 26px 22px 22px;
  border: 1px solid var(--slate-100);
}
.quiz-question-text {
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.4;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.quiz-answers { display: flex; flex-direction: column; gap: 10px; }
.quiz-answer-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-800);
  cursor: pointer;
  text-align: left;
  width: 100%;
  min-height: 56px;
  transition: border-color .15s, background .15s, transform .1s;
}
.quiz-answer-btn:hover {
  border-color: var(--teal-500);
  background: var(--teal-50);
  transform: translateY(-1px);
}
.quiz-answer-btn.selected {
  border-color: var(--teal-600);
  background: var(--teal-50);
  color: var(--teal-800);
}
.quiz-answer-marker {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--slate-300);
  background: var(--white);
  transition: border-color .15s, background .15s;
  position: relative;
}
.quiz-answer-btn:hover .quiz-answer-marker { border-color: var(--teal-500); }
.quiz-answer-btn.selected .quiz-answer-marker { border-color: var(--teal-600); background: var(--teal-600); }
.quiz-answer-btn.selected .quiz-answer-marker::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--white);
}
.quiz-answer-text { flex: 1; line-height: 1.4; }
.quiz-answer-arrow {
  width: 16px; height: 16px;
  color: var(--slate-300);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .15s, transform .15s, color .15s;
}
.quiz-answer-btn:hover .quiz-answer-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--teal-600);
}

.quiz-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--slate-500);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 14px;
  margin-top: 14px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.quiz-back-btn:hover { color: var(--teal-700); background: var(--teal-50); }
.quiz-back-btn .icon { width: 14px; height: 14px; }

/* ----- Loading screen ----- */
.quiz-loading {
  max-width: 420px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}
.quiz-loading-spinner {
  width: 52px; height: 52px;
  border: 4px solid var(--slate-200);
  border-top-color: var(--teal-600);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 22px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.quiz-loading h2 { font-size: 1.25rem; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.quiz-loading p { font-size: 0.92rem; color: var(--slate-500); margin-bottom: 28px; line-height: 1.5; }
.quiz-loading-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.quiz-loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--slate-400);
  opacity: 0.6;
  transition: opacity .4s, color .4s;
}
.quiz-loading-step.done { opacity: 1; color: var(--teal-700); font-weight: 600; }
.quiz-loading-step-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--slate-200);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .4s;
}
.quiz-loading-step.done .quiz-loading-step-dot { background: var(--teal-600); }

/* ----- Results screen ----- */
.quiz-result-wrapper {
  max-width: 580px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qr-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.qr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-50);
  color: var(--teal-700);
  border: 1px solid var(--teal-200);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.qr-badge .icon { width: 14px; height: 14px; }
.qr-headline {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.qr-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.qr-product {
  background: linear-gradient(135deg, var(--teal-50) 0%, #fff 70%);
  border: 1.5px solid var(--teal-200);
  border-radius: var(--radius-xl);
  padding: 18px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.qr-product-image {
  width: 96px; height: 96px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid var(--slate-100);
}
.qr-product-image img { width: 100%; height: 100%; object-fit: contain; }
.qr-product-info { min-width: 0; }
.qr-product-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--teal-700);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.qr-product-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.qr-product-sub {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin: 4px 0 8px;
  line-height: 1.4;
}
.qr-product-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.qr-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-700);
  padding: 4px 9px;
  border-radius: 100px;
}
.qr-tag .icon { color: var(--teal-600); width: 12px; height: 12px; }
.qr-tag .icon-flag { width: 16px; height: 11px; }

.qr-product-price {
  grid-column: 1 / -1;
  border-top: 1px dashed var(--teal-200);
  padding-top: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.qr-price-new {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--teal-700);
  letter-spacing: -0.02em;
  line-height: 1;
}
.qr-price-new span { font-size: 0.85rem; margin-left: 2px; font-weight: 700; color: var(--teal-700); }
.qr-price-note { font-size: 0.75rem; color: var(--slate-500); text-align: right; line-height: 1.3; }

/* Quiz inline form */
.qr-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 22px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
  scroll-margin-top: 16px;
}
.quiz-order-form h3 { font-size: 1.15rem; margin-bottom: 4px; letter-spacing: -0.01em; }

.qr-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--slate-100);
}
.qr-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--slate-600);
  font-weight: 500;
}
.qr-trust-item .icon { width: 16px; height: 16px; color: var(--teal-600); }

.qr-secondary-link {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate-500);
  text-decoration: underline;
  transition: color .15s;
}
.qr-secondary-link:hover { color: var(--teal-700); }

@media (min-width: 640px) {
  .qr-product {
    grid-template-columns: 110px 1fr auto;
  }
  .qr-product-image { width: 110px; height: 110px; }
  .qr-product-price {
    grid-column: 3;
    grid-row: 1;
    border-top: none;
    padding-top: 0;
    border-left: 1px dashed var(--teal-200);
    padding-left: 14px;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
  .qr-price-note { text-align: right; }
  .qr-form-wrap { padding: 28px 26px; }
}
