/* === STYLE.CSS === */
/* assets/css/style.css */
/* НАЗНАЧЕНИЕ: Стили лендинга Fiifit Online */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ===== CSS ПЕРЕМЕННЫЕ ===== */
:root {
  --background:       hsl(50, 38%, 96%);
  --foreground:       hsl(91, 20%, 30%);
  --card:             hsl(45, 58%, 90%);
  --card-foreground:  hsl(91, 20%, 30%);
  --primary:          hsl(43, 37%, 60%);
  --primary-foreground: hsl(50, 38%, 96%);
  --secondary:        hsl(101, 33%, 91%);
  --muted:            hsl(84, 30%, 83%);
  --muted-foreground: hsl(91, 15%, 42%);
  --accent:           hsl(48, 71%, 86%);
  --border:           hsl(84, 20%, 80%);

  --olive:    hsl(84, 30%, 83%);
  --fistic:   hsl(101, 33%, 91%);
  --crem:     hsl(45, 58%, 90%);
  --galben:   hsl(48, 71%, 86%);
  --mustar:   hsl(43, 37%, 60%);
  --verde-mat: hsl(91, 20%, 30%);
  --alb-bej:  hsl(50, 38%, 96%);

  --radius: 0.75rem;
}

/* ===== СБРОС И БАЗА ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

/* ===== УТИЛИТЫ ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-olive  { background-color: var(--olive); }
.section-fistic { background-color: var(--fistic); }
.section-crem   { background-color: var(--crem); }
.section-galben { background-color: var(--galben); }
.section-alb-bej { background-color: var(--alb-bej); }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ===== КНОПКИ ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: box-shadow 0.3s, transform 0.3s, background-color 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: scale(1.05);
  background-color: hsl(43, 37%, 52%);
}

.btn-primary-sm {
  padding: 0.6rem 1.75rem;
  font-size: 0.875rem;
  border-radius: 999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary-sm:hover { background-color: hsl(43, 37%, 52%); }

/* ===== АНИМАЦИИ ===== */
@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
@keyframes fade-in-up {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-pulse-soft { animation: pulse-soft 2s ease-in-out infinite; }
.animate-fade-in-up { animation: fade-in-up 0.6s ease-out forwards; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background-color: rgba(249, 248, 243, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo { height: 64px; width: auto; }

.navbar-burger {
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
  color: var(--foreground);
}
.navbar-burger:hover { background-color: var(--muted); }
.navbar-burger svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.navbar-menu {
  display: none;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.navbar-menu.open { display: block; }

.navbar-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-menu a {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background-color 0.2s;
}
.navbar-menu a:hover { background-color: var(--muted); }

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  flex-direction: column;
  background-color: var(--alb-bej);
  padding-top: 64px;
}

.hero-photo {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-card-wrap {
  position: relative;
  z-index: 10;
  margin-top: -5rem;
  padding: 0 1.25rem 2.5rem;
}

.hero-card {
  max-width: 560px;
  margin: 0 auto;
  background-color: var(--alb-bej);
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.07);
  text-align: center;
}

.hero-title {
  font-size: clamp(1.6rem, 6vw, 2.8rem);
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.hero-lines {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 1.25rem;
}
.hero-lines p {
  font-size: 1rem;
  color: var(--muted-foreground);
  font-style: italic;
  line-height: 1.7;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 0 auto 1.5rem;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--foreground);
  font-weight: 500;
}

.check-mark {
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hero-cta { min-width: 120px; }

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(192, 171, 116, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon svg {
  width: 14px; height: 14px;
  stroke: var(--primary);
  fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}

.hero-cta-secondary {
  display: inline-block;
  background-color: rgba(244, 234, 194, 0.6);
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s;
}
.hero-cta-secondary span { color: var(--primary); }
.hero-cta-secondary:hover { opacity: 0.8; }

/* ===== HERO COUNTDOWN ===== */
.hero-countdown {
  padding: 3rem 1.5rem;
  background-color: var(--fistic);
  text-align: center;
}

.badge-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.badge-row svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--foreground);
}

.hero-countdown h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.countdown-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
}

.countdown-box {
  background-color: var(--background);
  border-radius: 0.75rem;
  padding: 0.6rem 0;
  width: calc(25% - 0.375rem);
  min-width: 0;
  flex-shrink: 0;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.countdown-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  display: block;
}
.countdown-box .lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

/* ===== PROBLEMS SECTION ===== */
.problems { padding: 3.5rem 0 2.5rem; background-color: var(--alb-bej); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-desc {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Вводный блок — асимметричный, редакционный */
.problems-intro {
  max-width: 480px;
  margin: 0 auto 3rem;
  padding: 0 0.25rem;
}

.problems-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.problems-rhythm {
  margin-bottom: 1.25rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--primary);
}
.problems-rhythm p {
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.8;
  font-style: italic;
}

.problems-note {
  padding-top: 0.25rem;
}
.problems-note p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}
.problems-note p:first-child {
  font-weight: 600;
  color: var(--foreground);
  font-style: normal;
}

.problems-duo {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.problems-duo-block {
  padding: 1.75rem 1.5rem;
  background: rgba(255,255,255,0.6);
  border-radius: 1.25rem;
  box-shadow: 0 1px 16px rgba(0,0,0,0.04);
}

.problems-duo-line {
  width: 28px;
  height: 1.5px;
  background: var(--primary);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.problems-duo-block h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.problems-duo-block p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.problems-short-lines {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.problems-short-lines p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  font-style: italic;
  line-height: 1.8;
}

.problems-cta { display: flex; justify-content: center; margin-top: 1.5rem; }

/* ===== PROGRAM SECTION ===== */
.program { padding: 5rem 0; background-color: var(--fistic); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.pillar-box {
  background-color: var(--background);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.pillar-box svg {
  width: 32px; height: 32px;
  stroke: var(--primary);
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  margin: 0 auto 0.5rem;
  display: block;
}
.pillar-box span { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }

.program-cta { display: flex; justify-content: center; margin-bottom: 4rem; }

.expert-card {
  max-width: 780px;
  margin: 0 auto;
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.expert-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: left;
}

.expert-photo {
  width: 128px; height: 128px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.expert-photo img { width: 100%; height: 100%; object-fit: cover; }

.expert-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-align: center;
}
.expert-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.expert-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  text-align: center;
}
.expert-bio { color: var(--muted-foreground); line-height: 1.7; font-size: 0.95rem; }

.bio-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 1rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  border: none;
  background: none;
  transition: color 0.2s;
}
.bio-toggle-btn:hover { color: hsl(43, 37%, 45%); }
.bio-toggle-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.3s; stroke-linecap: round; stroke-linejoin: round; }
.bio-toggle-btn.open svg { transform: rotate(180deg); }

.bio-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s;
  opacity: 0;
  margin-top: 0;
  text-align: left;
}
.bio-expanded.open {
  max-height: 600px;
  opacity: 1;
  margin-top: 1rem;
}
.bio-expanded p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 0.75rem; }
.bio-expanded strong { color: var(--foreground); }

/* ===== FEATURES SECTION ===== */
.features { padding: 4rem 0; background-color: var(--alb-bej); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 600px;
  margin: 0 auto 0;
  background-color: var(--border);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
}

.feature-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background-color: var(--card);
}

.feature-block-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feature-block-icon svg {
  width: 18px; height: 18px;
  stroke: var(--foreground);
  opacity: 0.7;
}

.feature-block-text h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.3rem;
}
.feature-block-text p {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.features-cta { display: flex; justify-content: center; margin-top: 2rem; }

/* ===== PENTRU FEMEI OCUPATE ===== */
/* ===== QUADRANT SLIDER ===== */

.qs-section {
  background: #f5f1eb;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.qs-header {
  text-align: center;
}

.qs-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.7;
  margin-bottom: 0.6rem;
}

.qs-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 400;
  color: #3a3025;
  line-height: 1.25;
  margin: 0;
}

.qs-outer {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.qs-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1.5rem;
  border: 1px solid rgba(180,160,120,0.2);
  box-shadow: 0 2px 24px rgba(80,60,30,0.06);
  overflow: hidden;
}

/* каждая карточка — абсолютно поверх контейнера */
.qs-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  text-align: center;
  gap: 1.1rem;
  will-change: transform, opacity;
  /* стартовое состояние — скрыта */
  opacity: 0;
  pointer-events: none;
}

.qs-card--light { background: #f5f1eb; }
.qs-card--dark  { background: #ece6db; }

/* === направления входа и выхода === */
/* card 0: входит справа, уходит влево */
.qs-card[data-qs="0"]          { transform: translateX(100%); }
.qs-card[data-qs="0"].qs-leave { transform: translateX(-100%); }

/* card 1: входит сверху, уходит вниз */
.qs-card[data-qs="1"]          { transform: translateY(-100%); }
.qs-card[data-qs="1"].qs-leave { transform: translateY(100%); }

/* card 2: входит слева, уходит вправо */
.qs-card[data-qs="2"]          { transform: translateX(-100%); }
.qs-card[data-qs="2"].qs-leave { transform: translateX(100%); }

/* card 3: входит снизу, уходит вверх */
.qs-card[data-qs="3"]          { transform: translateY(100%); }
.qs-card[data-qs="3"].qs-leave { transform: translateY(-100%); }

/* активная карточка */
.qs-card.qs-active {
  opacity: 1;
  transform: translate(0, 0);
  pointer-events: auto;
  transition: transform 3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* уходящая карточка */
.qs-card.qs-leave {
  opacity: 0;
  pointer-events: none;
  transition: transform 3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qs-icon {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  flex-shrink: 0;
}
.qs-icon svg {
  width: 30px; height: 30px;
  stroke: #7a6a4f;
}

.qs-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 4vw, 1.65rem);
  font-weight: 400;
  color: #3a3025;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.qs-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #7a6a4f;
  line-height: 1.85;
  opacity: 0.9;
  margin: 0;
}

@media (max-width: 600px) {
  .busy-women-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 5rem 0; background-color: var(--crem); }

.carousel-wrap { max-width: 1100px; margin: 0 auto; position: relative; }

.carousel-track-outer { overflow: hidden; border-radius: 1rem; }

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 0.667rem);
  min-width: 0;
}

.testimonial-card {
  background-color: var(--background);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card img.tcard-img { width: 100%; object-fit: cover; display: block; }

.tcard-body { padding: 1rem 1.25rem; }

.tcard-quote {
  font-size: 0.75rem;
  color: rgba(76, 92, 61, 0.8);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.stars { display: flex; flex-wrap: nowrap; gap: 2px; margin-bottom: 0.75rem; }
.stars svg { width: 13px; height: 13px; flex-shrink: 0; fill: var(--primary); stroke: var(--primary); }

.tcard-author { font-size: 0.8rem; font-weight: 600; color: var(--foreground); }
.tcard-result { font-size: 0.7rem; color: var(--muted-foreground); }

.tcard-text-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.tcard-text-quote {
  font-size: 0.875rem;
  color: rgba(76,92,61,0.8);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.tcard-author-row { display: flex; align-items: center; gap: 0.75rem; }
.tcard-author-row img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background-color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
}
.carousel-btn:hover { background-color: var(--muted); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.carousel-btn svg { width: 18px; height: 18px; stroke: var(--foreground); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background-color: rgba(192, 171, 116, 0.25);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, width 0.3s;
}
.carousel-dot.active { background-color: var(--primary); width: 16px; }

.testimonials-link {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ===== PRICING ===== */
.pricing { padding: 5rem 0; background-color: var(--olive); scroll-margin-top: 5rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.pricing-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: 2px solid var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--premium {
  border-color: var(--verde-mat);
  box-shadow: 0 8px 32px rgba(76,92,61,0.18);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.pricing-badge--premium {
  background-color: var(--verde-mat);
  color: var(--background);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.pricing-badge svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.pricing-header { text-align: center; margin-bottom: 1rem; margin-top: 0.5rem; }
.pricing-sparkle { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.pricing-sparkle svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pricing-sparkle span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); }

.pricing-title { font-size: 1.4rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.pricing-period { font-size: 0.875rem; color: var(--muted-foreground); }

.pricing-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem 0 0.75rem;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.pricing-per-day {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(244, 234, 194, 0.6);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
}
.pricing-per-day span { font-size: 0.875rem; color: var(--muted-foreground); }
.pricing-per-day strong { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--primary); font-weight: 700; }

/* Promo code block */
.promo-block {
  position: relative;
  border: 2px dashed var(--primary);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(192,171,116,0.15), rgba(244,234,194,0.4), rgba(192,171,116,0.10));
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.promo-ai-badge {
  position: absolute;
  top: -10px; right: -10px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  transform: rotate(3deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

.promo-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.promo-label svg { width: 16px; height: 16px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.promo-label span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); }

.promo-desc { font-size: 0.875rem; color: rgba(76,92,61,0.85); margin-bottom: 0.75rem; }
.promo-desc strong { color: var(--foreground); }

.promo-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background-color: var(--background);
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  border: 2px solid rgba(192,171,116,0.5);
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.05);
}

.promo-code {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--foreground);
}

.promo-discount {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(76,92,61,0.8);
}
.pricing-feature svg { width: 16px; height: 16px; stroke: var(--primary); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }

.pricing-btn {
  display: block;
  text-align: center;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pricing-btn:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.15); transform: scale(1.04); }

.pricing-btn--premium {
  background-color: var(--verde-mat);
  color: var(--background);
}
.pricing-btn--premium:hover { box-shadow: 0 8px 20px rgba(76,92,61,0.3); }

.promo-block--premium { border-color: var(--verde-mat); }
.promo-block--premium .promo-label svg,
.promo-block--premium .promo-label span { stroke: var(--verde-mat); color: var(--verde-mat); }
.promo-block--premium .promo-ai-badge { background-color: var(--verde-mat); }
.promo-block--premium .promo-code-row { border-color: rgba(76,92,61,0.4); }
.promo-block--premium .promo-discount { background-color: var(--verde-mat); }

/* Gold — 6 luni */
.pricing-card--gold {
  border-color: var(--mustar);
  box-shadow: 0 8px 32px rgba(192,171,116,0.25);
  background: linear-gradient(160deg, var(--card) 80%, rgba(244,234,194,0.6));
}

.pricing-badge--gold {
  background: linear-gradient(90deg, hsl(43,50%,45%), hsl(43,37%,60%));
  color: var(--primary-foreground);
}

.pricing-btn--gold {
  background: linear-gradient(90deg, hsl(43,50%,45%), hsl(43,37%,60%));
  color: var(--primary-foreground);
}
.pricing-btn--gold:hover { box-shadow: 0 8px 20px rgba(192,171,116,0.4); }

.promo-block--gold { border-color: var(--mustar); }
.promo-block--gold .promo-label svg,
.promo-block--gold .promo-label span { stroke: var(--mustar); color: var(--mustar); }
.promo-ai-badge--gold { background: linear-gradient(90deg, hsl(43,50%,45%), hsl(43,37%,60%)) !important; }
.promo-block--gold .promo-code-row { border-color: rgba(192,171,116,0.5); }
.promo-block--gold .promo-discount { background: linear-gradient(90deg, hsl(43,50%,45%), hsl(43,37%,60%)); }

.pricing-note { text-align: center; font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.75rem; }

/* ===== COMPARE TABLE ===== */
.compare-wrap {
  max-width: 1200px;
  margin: 3rem auto 0;
}

.compare-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 1.25rem;
}

.compare-table-outer {
  overflow-x: visible;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--card);
  font-size: 0.78rem;
  font-family: 'DM Sans', sans-serif;
  table-layout: fixed;
}

.compare-table thead tr {
  background-color: var(--foreground);
}

.compare-table thead th {
  padding: 0.6rem 0.4rem;
  color: var(--background);
  font-weight: 600;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

.compare-table thead th.compare-feature-col {
  text-align: left;
  width: 46%;
  padding-left: 0.75rem;
}

.compare-plan {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.compare-price-sm {
  display: block;
  font-size: 0.62rem;
  opacity: 0.65;
  font-weight: 400;
  margin-top: 1px;
}

.compare-col--gold {
  background-color: rgba(244, 234, 194, 0.25);
}
thead .compare-col--gold {
  background-color: hsl(43, 45%, 42%);
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background-color 0.15s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background-color: rgba(244,234,194,0.2); }

.compare-row-even { background-color: rgba(249,248,243,0.5); }

.compare-feature {
  padding: 0.6rem 0.75rem;
  color: var(--foreground);
  font-weight: 500;
  text-align: left;
}

.compare-cell {
  padding: 0.6rem 0.3rem;
  text-align: center;
  vertical-align: middle;
}

.compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background-color: rgba(192,171,116,0.2);
}
.compare-check svg {
  width: 12px; height: 12px;
  stroke: var(--primary);
  fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}

.compare-col--gold .compare-check {
  background-color: rgba(192,171,116,0.3);
}

.compare-dash { color: var(--muted-foreground); font-size: 1rem; }

.compare-text {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.8rem;
}

/* ===== FAQ ===== */
.faq { padding: 5rem 0; background-color: var(--fistic); }

.faq-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: var(--background);
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.95rem;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}
.faq-trigger svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-trigger.open svg { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.7;
  padding-bottom: 0;
}
.faq-body.open {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-section { padding: 5rem 0; background-color: var(--galben); }

.countdown-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.countdown-img {
  width: 260px;
  flex-shrink: 0;
}
.countdown-img img { border-radius: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.12); width: 100%; object-fit: cover; }

.countdown-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.countdown-content p { color: var(--muted-foreground); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

.countdown-grid2 {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: nowrap;
}

.countdown-grid2 .countdown-box {
  width: calc(25% - 0.375rem);
  min-width: 0;
  padding: 0.6rem 0;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 1.5rem;
  background-color: var(--foreground);
  color: var(--background);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo { height: 48px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background-color: rgba(249,248,243,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.social-btn:hover { background-color: rgba(249,248,243,0.2); }
.social-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-links a { font-size: 0.875rem; color: rgba(249,248,243,0.6); transition: color 0.2s; }
.footer-links a:hover { color: rgba(249,248,243,1); }

.footer-company { font-size: 0.75rem; color: rgba(249,248,243,0.4); line-height: 1.8; margin-bottom: 1rem; }
.footer-company strong { color: rgba(249,248,243,0.5); }

.footer-copy { font-size: 0.75rem; color: rgba(249,248,243,0.4); }

/* ===== VIDEO SECTION ===== */
.video-section { padding: 2rem 0 3rem; }

.video-preview {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  aspect-ratio: 16 / 9;
  background: #1a1714;
}
.video-preview.playing { aspect-ratio: 16 / 9; }

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.82) saturate(0.75) sepia(0.12);
}
.video-preview:hover .video-thumb { transform: scale(1.015); }

/* кинематичное зерно */
.video-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30,22,14,0.08) 0%, rgba(20,14,8,0.55) 100%);
  pointer-events: none;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.video-play-btn:hover { transform: scale(1.08); }
.video-play-btn svg { width: 64px; height: 64px; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4)); }

.video-iframe-wrap {
  position: absolute;
  inset: 0;
  display: none;
}
.video-iframe-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}
.video-preview.playing .video-thumb,
.video-preview.playing .video-overlay,
.video-preview.playing .video-play-btn { display: none; }
.video-preview.playing .video-iframe-wrap { display: block; }

/* ===== HERO SOCIAL PROOF ===== */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  font-weight: 500;
}
.hero-social-proof svg {
  width: 16px; height: 16px;
  stroke: var(--primary); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ===== MECHANISM ===== */
.mechanism { padding: 3.5rem 0; }

.mechanism-grid {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  gap: 0;
}

.mechanism-step {
  background: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 1rem;
  padding-bottom: 1.5rem;
}
.mechanism-step:last-child { padding-bottom: 0; }

/* stagger: каждый чётный шаг чуть сдвинут вправо */
.mechanism-step:nth-child(even) { margin-left: 1.5rem; }

/* вертикальная линия */
.mechanism-step::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 1px;
  background: var(--primary);
  opacity: 0.2;
}
.mechanism-step:last-child::before { display: none; }

/* левая колонка */
.mechanism-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding-top: 0;
}

.mechanism-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.4;
  letter-spacing: 0.08em;
  line-height: 1;
}

.mechanism-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mechanism-icon svg {
  width: 20px; height: 20px;
  stroke: var(--foreground); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.75;
}

/* правая колонка */
.mechanism-right {
  padding-top: 0.15rem;
}

.mechanism-step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.2rem;
}

.mechanism-step p {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  line-height: 1.55;
  opacity: 0.85;
}

.flex-center { display: flex; justify-content: center; }
.mt-8 { margin-top: 2rem; }

/* ===== PENTRU CINE ===== */
.pentru-cine { padding: 4rem 0; }

.pentru-cine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.pentru-cine-card {
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
}

.pentru-cine-card--yes {
  background-color: var(--card);
  border: 1px solid rgba(192,171,116,0.25);
}

.pentru-cine-card--no {
  background-color: transparent;
  border: 1px solid var(--border);
}

.pentru-cine-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.pentru-cine-label--yes { color: var(--primary); opacity: 0.7; }
.pentru-cine-label--no  { color: var(--muted-foreground); opacity: 0.6; }

.pentru-cine-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0; margin: 0;
}

.pentru-cine-list {
  overflow: hidden;
}

.pentru-cine-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--foreground);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pentru-cine-list li.pc-visible {
  opacity: 1;
  transform: translateX(0);
}

.pentru-cine-list--no li { color: var(--muted-foreground); }

.pc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pc-dot--yes { background-color: var(--primary); opacity: 0.7; }
.pc-dot--no  { background-color: var(--muted-foreground); opacity: 0.4; }

/* ===== EXPERT SECTION ===== */
.expert-section { padding: 5rem 0; }

.expert-content { flex: 1; }

.expert-name--quote {
  font-size: 1.25rem !important;
  font-style: italic;
  font-weight: 600;
  color: var(--muted-foreground);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1rem;
  border-left: 3px solid var(--primary);
  padding-left: 0.875rem;
}

.expert-story-preview p,
.expert-story p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.expert-story strong { color: var(--foreground); }

.expert-result {
  font-weight: 500;
  color: var(--foreground) !important;
}

.kg-block {
  display: inline;
  line-height: 1.7;
}

.kg-counter {
  font-size: 1.2em;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--foreground);
  display: inline-block;
  min-width: 1.6ch;
  text-align: right;
  vertical-align: baseline;
  line-height: 1;
}

.expert-story-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s;
  opacity: 0;
}
.expert-story-full.open {
  max-height: 400px;
  opacity: 1;
}

/* ===== OBIECTII ===== */
.obiectii { padding: 5rem 0; }

/* ===== FINAL SECTION ===== */
.final-section { padding: 5rem 0; }

.final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.final-img {
  width: 240px;
  flex-shrink: 0;
}
.final-img img {
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  width: 100%;
  object-fit: cover;
}

.final-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.final-subtitle {
  font-size: 1.15rem;
  color: var(--foreground);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}

.final-text {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary--large {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.final-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .hero-card-wrap { margin-top: -8rem; padding: 0 2rem 4rem; }
  .hero-card { padding: 2.5rem 3rem 2rem; border-radius: 1.5rem 1.5rem 0 0; }

  .problems-duo { max-width: 640px; flex-direction: row; align-items: stretch; }
  .problems-duo-block { flex: 1; }
  .problems-intro { margin-left: 0; }

  .pillars-grid { grid-template-columns: repeat(4, 1fr); }

  .expert-inner { flex-direction: row; text-align: left; }
  .expert-photo { width: 160px; height: 160px; }

  .mechanism-grid { max-width: 640px; }
  .pentru-cine-grid { grid-template-columns: 1fr 1fr; }
  .final-inner { flex-direction: row; text-align: left; }
  .final-text { margin-left: 0; margin-right: 0; }

  .countdown-inner { flex-direction: row; text-align: left; }
  .countdown-content p { margin-left: 0; margin-right: 0; }
  .countdown-grid2 { justify-content: flex-start; }
  .countdown-content .btn-primary { align-self: flex-start; }

  .carousel-slide { flex: 0 0 calc(50% - 0.5rem); }
}

@media (min-width: 1024px) {
  .carousel-slide { flex: 0 0 calc(33.333% - 0.667rem); }
  .mechanism-grid { max-width: 720px; }
}

@media (max-width: 767px) {
  .countdown-section { text-align: center; }
  .countdown-grid2 { justify-content: center; }
}
