/* ==========================================================================
   Дарья Ковалёва — нутрициолог. Демо-сайт (яркий энергичный стиль)
   ========================================================================== */

:root {
  --accent: #B6E24D;
  --accent-dark: #96C82E;
  --accent-text: #1A2E0A;
  --green-deep: #14261F;
  --green: #2D5F4F;
  --green-light: #7FB5A6;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE0;
  --dark-text: #1A1A1A;
  --white: #FFFFFF;

  --font-display: 'Unbounded', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 20px 50px rgba(20, 38, 31, 0.12);
  --shadow-card: 0 12px 30px rgba(20, 38, 31, 0.08);

  --container-w: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: var(--accent-text);
  padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.eyebrow.center { display: block; text-align: center; }

.section-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 640px; }

section { padding: 96px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 10px 24px rgba(182, 226, 77, 0.35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(182, 226, 77, 0.45); }

.btn-outline {
  background: transparent;
  border-color: var(--dark-text);
  color: var(--dark-text);
}
.btn-outline:hover { background: var(--dark-text); color: var(--white); transform: translateY(-2px); }

.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-block { width: 100%; margin-top: 20px; }

.btn-header { display: inline-flex; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 38, 31, 0.06);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(20, 38, 31, 0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--dark-text);
  flex-shrink: 0;
}
.logo-dot { color: var(--accent); }

.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
  font-weight: 500;
  font-size: 15px;
}
.nav a { position: relative; padding: 4px 0; color: var(--dark-text); opacity: 0.8; }
.nav a:hover { opacity: 1; color: var(--accent); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  flex-shrink: 0;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--dark-text); transition: 0.3s ease; margin: 0 auto; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--green-deep);
  color: var(--cream);
  padding: 90px 0 70px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(182, 226, 77, 0.35), transparent 70%);
  top: -250px; right: -200px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-text h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  color: var(--white);
  margin-bottom: 22px;
}
.hero-text .hl { color: var(--accent); }

.hero-lead {
  font-size: 18px;
  color: rgba(255, 248, 240, 0.78);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero .btn-outline { border-color: rgba(255, 248, 240, 0.6); color: var(--cream); }
.hero .btn-outline:hover { background: var(--cream); color: var(--green-deep); }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-value { display: inline-flex; align-items: baseline; white-space: nowrap; }
.stat-num, .stat-plus {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--accent);
  display: inline;
}
.stat-label { font-size: 13px; color: rgba(255, 248, 240, 0.65); margin-top: 4px; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; align-self: stretch; min-height: 420px; }

.avatar-card { position: relative; text-align: center; }
.avatar-photo {
  width: 400px; height: 400px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 8px solid rgba(255, 248, 240, 0.15);
}
.avatar-photo img { width: 100%; height: 100%; object-fit: cover; }
.avatar-badge {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 16px;
  white-space: nowrap;
  font-size: 12px;
  background: rgba(255, 248, 240, 0.1);
  color: rgba(255, 248, 240, 0.7);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ---------- Trustbar ---------- */
.trustbar { background: var(--cream-dark); padding: 20px 0; }
.trustbar-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--green);
  text-align: center;
}
.trustbar .dot { color: var(--accent); }

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-visual { position: relative; }
.about-blob {
  position: absolute;
  width: 400px; height: 400px;
  background: var(--accent);
  opacity: 0.12;
  border-radius: 50%;
  top: -40px; left: -50px;
}
.about-photo {
  position: relative;
  max-width: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-photo img { width: 100%; height: 460px; object-fit: cover; display: block; }

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin: 28px 0;
}
.about-facts li { display: flex; flex-direction: column; gap: 4px; }
.fact-num { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 18px; }
.about-facts li span:last-child { font-size: 14px; color: var(--dark-text); opacity: 0.75; }

.about-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 13px; font-weight: 600;
  background: var(--green-deep); color: var(--cream);
  padding: 8px 16px; border-radius: 100px;
}

/* ---------- Programs / cards ---------- */
.programs { background: var(--white); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(20, 38, 31, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s ease; }
.card:hover .card-media img { transform: scale(1.06); }

.card-body { padding: 28px 30px 32px; }

.card-accent {
  background: var(--green-deep);
  color: var(--cream);
  border: none;
}
.card-accent h3 { color: var(--white); }
.card-accent .card-list li { color: rgba(255, 248, 240, 0.75); }
.card-accent .card-list li::before { color: var(--accent); }

.card-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: var(--accent);
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
}

.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { font-size: 15px; opacity: 0.85; margin-bottom: 18px; }

.card-list li { font-size: 14px; padding-left: 22px; position: relative; margin-bottom: 8px; opacity: 0.85; }
.card-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- Process ---------- */
.process { background: var(--cream-dark); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.step { position: relative; padding-top: 8px; }
.step-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 8px;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14px; opacity: 0.8; }

/* ---------- Reviews ---------- */
.reviews { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.review-stars { color: var(--accent); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-size: 15px; margin-bottom: 24px; opacity: 0.9; }

.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-deep); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; }
.review-author span { display: block; font-size: 12px; opacity: 0.6; }

/* ---------- Pricing ---------- */
.pricing { background: var(--cream-dark); }

.pricing-grid { align-items: stretch; }
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(20, 38, 31, 0.06);
}
.price-card h3 { font-size: 20px; margin-bottom: 10px; }
.price { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--accent); }
.price-note { font-size: 13px; opacity: 0.6; margin-bottom: 22px; }
.price-card .card-list { margin-bottom: auto; }

.price-card-accent {
  background: var(--green-deep);
  color: var(--cream);
  transform: scale(1.03);
}
.price-card-accent h3 { color: var(--white); }
.price-card-accent .price { color: var(--accent); }
.price-card-accent .price-note { color: rgba(255, 248, 240, 0.6); }
.price-card-accent .card-list li { color: rgba(255, 248, 240, 0.8); }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}
.faq-lead { opacity: 0.75; margin-top: 4px; }

.faq-item { border-bottom: 1px solid rgba(20, 38, 31, 0.1); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 22px 0;
  cursor: pointer;
  color: var(--dark-text);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--accent); color: var(--accent-text);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p { padding-bottom: 22px; font-size: 15px; opacity: 0.8; max-width: 560px; }

/* ---------- Contact ---------- */
.contact { background: var(--green-deep); color: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(28px, 4vw, 38px); color: var(--white); margin-bottom: 16px; }
.contact-lead { opacity: 0.75; margin-bottom: 32px; max-width: 420px; }

.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list li { font-size: 15px; opacity: 0.9; }
.contact-list a:hover { color: var(--accent); }

.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--dark-text);
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.form-row input, .form-row textarea {
  width: 100%;
  border: 1.5px solid rgba(20, 38, 31, 0.15);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  transition: border-color 0.2s ease;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--accent); }

.form-note { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 20px; color: var(--green); }

/* ---------- Footer ---------- */
.site-footer { background: #0E1A15; color: rgba(255, 248, 240, 0.7); padding: 56px 0 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 248, 240, 0.1);
}
.logo-footer { color: var(--white); }
.footer-tag { font-size: 13px; margin-top: 8px; opacity: 0.6; max-width: 260px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; }
.footer-nav a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 240, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-text); }
.footer-bottom { padding: 24px 0; font-size: 13px; opacity: 0.5; }

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  border: none;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(182, 226, 77, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 90;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Quiz ---------- */
.quiz { background: var(--green-deep); color: var(--cream); }
.quiz-inner { max-width: 640px; }

.quiz-intro .btn { display: flex; margin: 0 auto; }

.quiz-card {
  background: var(--cream);
  color: var(--dark-text);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.quiz-progress {
  height: 6px;
  border-radius: 100px;
  background: var(--cream-dark);
  overflow: hidden;
  margin-bottom: 14px;
}
.quiz-progress-bar {
  height: 100%;
  width: 20%;
  background: var(--accent);
  border-radius: 100px;
  transition: width 0.35s ease;
}

.quiz-step-label { font-size: 13px; font-weight: 600; opacity: 0.6; margin-bottom: 20px; }

.quiz-question h3 { font-size: 22px; margin-bottom: 22px; }

.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 1.5px solid rgba(20, 38, 31, 0.12);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.quiz-option:hover { border-color: var(--accent); transform: translateX(2px); }
.quiz-option.selected { background: var(--accent); border-color: var(--accent); color: var(--accent-text); font-weight: 700; }

.quiz-back {
  margin-top: 22px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.55;
  cursor: pointer;
  padding: 0;
}
.quiz-back:hover { opacity: 1; }

.quiz-result {
  text-align: center;
}
.quiz-result-icon { font-size: 40px; margin-bottom: 10px; }
.quiz-result h3 { font-size: 26px; color: var(--green); margin-bottom: 14px; }
.quiz-result p#quizResultText { font-size: 15px; opacity: 0.8; max-width: 440px; margin: 0 auto 28px; }
.quiz-result-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Wheel of fortune ---------- */
.wheel-trigger {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--cream);
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(182, 226, 77, 0.45);
  z-index: 90;
  animation: pulse-wheel 2.4s ease-in-out infinite;
}
@keyframes pulse-wheel {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.wheel-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wheel-modal.open { display: flex; }

.wheel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 38, 31, 0.7);
  backdrop-filter: blur(4px);
}

.wheel-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-soft);
  max-height: 90vh;
  overflow-y: auto;
}

.wheel-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--cream-dark);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.wheel-close:hover { background: var(--accent); }

.wheel-lead { font-size: 14px; opacity: 0.75; margin: 8px 0 20px; }

.wheel-wrap { position: relative; width: 240px; height: 240px; margin: 0 auto 24px; }
.wheel-pointer {
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: var(--dark-text);
  z-index: 3;
}
.wheel {
  width: 100%; height: 100%;
  border-radius: 50%;
  position: relative;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 4.2s cubic-bezier(0.12, 0.75, 0.16, 1);
}
.wheel-label {
  position: absolute;
  top: 50%; left: 50%;
  margin-top: -7px;
  width: 100px;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
  padding-right: 12px;
  transform-origin: left center;
  line-height: 1.15;
}

.wheel-panel form { display: flex; flex-direction: column; gap: 12px; }
.wheel-panel input {
  border: 1.5px solid rgba(20, 38, 31, 0.15);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
}
.wheel-panel input:focus { outline: none; border-color: var(--accent); }

.wheel-prize-icon { font-size: 40px; margin-bottom: 6px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 300px; align-self: auto; }
  .avatar-photo { width: 300px; height: 300px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { max-width: 320px; margin: 0 auto; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .price-card-accent { transform: none; }
}

@media (max-width: 760px) {
  section { padding: 64px 0; }
  .nav, .btn-header { display: none; }
  .burger { display: flex; }

  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
    box-shadow: var(--shadow-card);
  }
  .nav.open a { font-size: 16px; }

  .header-inner { position: relative; }

  .hero { padding-top: 56px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 24px; }

  .cards-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr; }

  .quiz-card { padding: 28px 22px; }
  .wheel-trigger { width: 52px; height: 52px; font-size: 20px; bottom: 20px; left: 20px; }
  .wheel-card { padding: 32px 22px 26px; }
}

@media (max-width: 420px) {
  .wheel-wrap { width: 210px; height: 210px; }
  .avatar-photo { width: 230px; height: 230px; }
}
