/* === MAIN.CSS ===
   fiifitonline.ro landing page
   Dark gold luxury aesthetic
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@400;500;600;700&family=Work+Sans:wght@400;500;600&display=swap');

/* === VARIABLES === */
:root {
  --gold: #E3D2B4;
  --gold-light: #F0E2C9;
  --gold-dark: #B89E78;
  --gold-muted: #4A3F2E;
  --dark-bg: #0a0a0a;
  --dark-surface: #141414;
  --dark-border: #262626;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-40: rgba(255,255,255,0.4);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Work Sans', sans-serif;
  background: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
.font-playfair { font-family: 'Playfair Display', serif; }
.font-montserrat { font-family: 'Montserrat', sans-serif; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* =============================================
   TOPBAR
   ============================================= */
#topbar {
  background: linear-gradient(to right, var(--dark-bg), #1a1a1a, var(--dark-bg));
  border-bottom: 1px solid rgba(227,210,180,0.3);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
#topbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.topbar-logo img { height: 32px; width: auto; }
.burger-btn {
  color: var(--gold);
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.burger-btn:hover { background: rgba(227,210,180,0.1); }
.burger-btn svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; }

/* Drawer menu */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.active { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed;
  top: 0; right: -320px; bottom: 0;
  width: 300px;
  background: linear-gradient(to bottom, var(--dark-bg), var(--dark-surface));
  border-left: 1px solid rgba(227,210,180,0.3);
  z-index: 101;
  padding: 1.5rem;
  transition: right 0.3s var(--ease-out-quart);
}
.drawer.active { right: 0; }
.drawer-title {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-close {
  color: var(--gold);
  padding: 0.25rem;
  border-radius: 0.25rem;
}
.drawer-close:hover { background: rgba(227,210,180,0.1); }
.drawer-close svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; }
.drawer-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.drawer-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  transition: color 0.2s, background 0.2s;
}
.drawer-nav a:hover { color: var(--gold); background: rgba(227,210,180,0.1); }

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #0d0d0d 0%, #0a0a0a 100%);
  padding-top: 56px;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-bg-blob-1 { top: 5rem; left: 2.5rem; width: 8rem; height: 8rem; background: rgba(227,210,180,0.05); }
.hero-bg-blob-2 { bottom: 5rem; right: 2.5rem; width: 10rem; height: 10rem; background: rgba(227,210,180,0.10); }
.hero-bg-blob-3 {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24rem; height: 24rem;
  background: rgba(227,210,180,0.05);
}
.hero-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .hero-inner { flex-direction: row; } }

.hero-image-col {
  width: 100%;
  padding-top: 1.5rem;
}
@media (min-width: 768px) { .hero-image-col { width: 50%; padding-top: 0; } }
.hero-image-col img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  object-position: top center;
}

.hero-text-col {
  width: 100%;
  padding: 1rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-text-col {
    width: 50%;
    padding: 3rem;
    align-items: flex-start;
  }
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .hero-headline { text-align: left; } }

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--dark-bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  height: 56px;
  width: 78%;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(227,210,180,0.3);
  transition: transform 0.2s, background 0.2s;
  animation: breathing 3s ease-in-out infinite;
}
@media (min-width: 768px) { .btn-gold { width: auto; min-width: 360px; font-size: 1.125rem; } }
.btn-gold:hover { background: var(--gold-dark); transform: scale(0.98); }

@keyframes breathing {
  0%, 100% { box-shadow: 0 8px 20px rgba(227,210,180,0.3); }
  50% { box-shadow: 0 12px 30px rgba(227,210,180,0.5); }
}

/* =============================================
   RECOGNITION INTRO (animated text slider)
   ============================================= */
#recognition {
  position: relative;
  background: var(--dark-bg);
  padding: 4rem 1rem;
  overflow: hidden;
}
.recognition-blob-1 {
  position: absolute;
  top: 25%; left: 25%;
  width: 16rem; height: 16rem;
  background: rgba(227,210,180,0.05);
  border-radius: 50%; filter: blur(80px);
}
.recognition-blob-2 {
  position: absolute;
  bottom: 25%; right: 25%;
  width: 18rem; height: 18rem;
  background: rgba(227,210,180,0.10);
  border-radius: 50%; filter: blur(80px);
}
.recognition-inner {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rec-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.rec-screen.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.rec-divider {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.rec-divider-line { width: 3rem; height: 1px; background: linear-gradient(to right, transparent, rgba(227,210,180,0.6)); }
.rec-divider-line.reverse { background: linear-gradient(to left, transparent, rgba(227,210,180,0.6)); }
.rec-divider-star { margin: 0 0.75rem; color: var(--gold); font-size: 1rem; }
.rec-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
}
.rec-headline span { display: block; }
.rec-headline .line-gold { color: var(--gold); }

/* =============================================
   STATS
   ============================================= */
#stats {
  background: var(--dark-bg);
  padding: 0.75rem 1rem 5rem;
}
@media (min-width: 768px) { #stats { padding-bottom: 4rem; } }
.stats-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
}
.stats-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  color: var(--white-60);
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.stat-card {
  background: var(--dark-surface);
  border: 1px solid rgba(227,210,180,0.3);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(2rem);
}
.stat-card.visible {
  animation: fadeUp 0.5s var(--ease-out-quart) forwards;
}
.stat-card:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(227,210,180,0.1); }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: var(--white-80);
  line-height: 1.3;
}
@media (min-width: 768px) { .stat-label { font-size: 1rem; } }

.stats-cta-wrap {
  text-align: center;
  margin-top: 2rem;
}
.stats-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--dark-bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  min-width: 20rem;
  transition: background 0.2s;
}
.stats-cta:hover { background: var(--gold-dark); }
.stats-cta-text { display: inline-block; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SUCCESS STORIES (carousel)
   ============================================= */
#stories {
  background: var(--dark-bg);
  padding: 3rem 0;
}
.stories-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.4s var(--ease-out-quart);
}
.story-slide {
  flex: 0 0 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .story-slide { flex: 0 0 50%; }
}
@media (min-width: 1024px) {
  .story-slide { flex: 0 0 33.333%; }
}
.story-card {
  background: var(--dark-surface);
  border: 1px solid rgba(227,210,180,0.2);
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
}
.story-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.story-body { padding: 1.25rem; }
.story-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.story-weight {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white-60);
  margin-bottom: 0.75rem;
}
.story-text {
  font-size: 0.9rem;
  color: var(--white-80);
  line-height: 1.6;
  font-style: italic;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(227,210,180,0.4);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btn:hover { background: rgba(227,210,180,0.1); border-color: var(--gold); }
.carousel-btn svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.carousel-dots { display: flex; gap: 0.5rem; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(227,210,180,0.3);
  transition: background 0.2s, transform 0.2s;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* Marquee */
.marquee-wrap {
  background: var(--gold);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(227,210,180,0.5);
  border-bottom: 1px solid rgba(227,210,180,0.5);
  margin: 2rem 0;
}
.marquee-text {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-bg);
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Telegram bounce btn */
.tg-bounce {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #229ED9;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  padding: 0.875rem 1.75rem;
  box-shadow: 0 4px 15px rgba(34,158,217,0.4);
  animation: softBounce 2s ease-in-out infinite;
}
.tg-bounce:hover { background: #1a8bbf; }
.tg-bounce svg { width: 22px; height: 22px; fill: #fff; }
@keyframes softBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =============================================
   PODCAST SECTION
   ============================================= */
#podcast {
  position: relative;
  padding: 4rem 1rem;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(227,210,180,0.06), transparent);
  overflow: hidden;
}
.podcast-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.podcast-mic {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(227,210,180,0.4);
  position: relative;
  transition: border-color 0.3s;
}
.podcast-mic.playing {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(227,210,180,0.3);
}
.podcast-mic svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.podcast-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 0.75rem;
}
.podcast-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.podcast-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--white-60);
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

/* Waveform */
.waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 64px;
  margin: 0 auto 1.5rem;
  max-width: 28rem;
}
.wave-bar {
  width: 4px;
  border-radius: 2px;
  background: rgba(227,210,180,0.4);
  height: 6px;
  transition: height 0.08s ease-out;
}

.podcast-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  transition: background 0.3s, color 0.3s;
}
.podcast-btn:hover, .podcast-btn.playing {
  background: var(--gold);
  color: var(--dark-bg);
}
.podcast-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Speed controls */
.speed-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.speed-label { font-size: 0.75rem; color: var(--white-60); margin-right: 0.25rem; }
.speed-btn {
  background: #1f1f1f;
  color: rgba(255,255,255,0.65);
  border: 1px solid #333;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.speed-btn.active {
  background: var(--gold);
  color: var(--dark-bg);
  border-color: var(--gold);
}

/* =============================================
   EXPERT
   ============================================= */
#expert {
  padding: 1rem 1rem 3rem;
}
.expert-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}
.expert-card {
  max-width: 28rem;
  margin: 0 auto;
  background: var(--dark-surface);
  border: 1px solid rgba(227,210,180,0.2);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.expert-avatar-wrap {
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
}
.expert-avatar {
  width: 10rem; height: 10rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(227,210,180,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.expert-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transform: scale(1.05); }
.expert-body { padding: 1.5rem; }
.expert-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.expert-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.expert-desc { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.expert-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  transition: opacity 0.2s;
}
.expert-toggle:hover { opacity: 0.8; }
.expert-toggle svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; transition: transform 0.3s; }
.expert-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-quart);
  border-top: 1px solid rgba(227,210,180,0.1);
  margin-top: 0.75rem;
}
.expert-full.open { max-height: 600px; }
.expert-full-inner {
  padding-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-style: italic;
}

/* =============================================
   SUBSCRIPTIONS
   ============================================= */
#subscriptions {
  padding: 3rem 0;
  background: var(--dark-bg);
}
.subs-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.subs-coach-img {
  display: block;
  width: 15rem;
  margin: 0 auto -1.5rem;
  border-radius: 0.75rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}
@media (min-width: 768px) { .subs-coach-img { width: 20rem; } }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 2rem auto 0;
  padding: 0 1rem;
}
@media (min-width: 768px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }

.plan-card {
  background: var(--dark-surface);
  border: 1px solid rgba(227,210,180,0.3);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(227,210,180,0.1); }
.plan-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(227,210,180,0.15);
}
.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark-bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.25rem;
}
.plan-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--white-60);
  text-align: center;
  margin-bottom: 1.5rem;
}
.plan-price-wrap { text-align: center; margin-bottom: 0.5rem; }
.plan-original {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--white-40);
  text-decoration: line-through;
}
.plan-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.plan-discount {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4ade80;
  text-align: center;
  margin-bottom: 1.5rem;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  margin-bottom: 1.5rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--white-80);
  line-height: 1.4;
}
.plan-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: var(--dark-bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.75rem;
  padding: 0.875rem;
  transition: background 0.2s, transform 0.2s;
}
.plan-btn:hover { background: var(--gold-dark); transform: scale(0.98); }

/* =============================================
   COMPARISON TABLE
   ============================================= */
#comparison {
  padding: 2rem 1rem 4rem;
  background: #000;
}
.comparison-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
.comp-table-wrap { overflow-x: auto; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--gold);
  min-width: 500px;
}
.comp-table th, .comp-table td {
  padding: 0.625rem 0.5rem;
  border-top: 1px solid rgba(227,210,180,0.2);
  font-size: 0.8rem;
}
@media (min-width: 768px) { .comp-table th, .comp-table td { padding: 0.75rem 1rem; font-size: 0.9rem; } }
.comp-table thead th {
  background: #1a1a1a;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.comp-table thead th:last-child { border-right: none; }
.comp-table tbody td { border-right: 2px solid var(--gold); text-align: center; }
.comp-table tbody td:first-child { text-align: left; color: var(--white); }
.comp-table tbody td:last-child { border-right: none; }
.comp-table tbody tr:nth-child(even) { background: #000; }
.comp-table tbody tr:nth-child(odd) { background: var(--dark-bg); }
.comp-check { color: var(--gold); font-size: 1.1rem; }
.comp-x { color: #555; font-size: 1.1rem; }
.comp-val { color: var(--white); font-weight: 500; font-size: 0.8rem; }

/* =============================================
   VIDEO SLIDER
   ============================================= */
#videos {
  padding: 3rem 0;
  background: linear-gradient(to bottom right, #f3e8ff08, #fce7f308);
}
.videos-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.videos-carousel { position: relative; overflow: hidden; }
.videos-track {
  display: flex;
  transition: transform 0.4s var(--ease-out-quart);
}
.video-slide {
  flex: 0 0 100%;
  padding: 0 1rem;
}
@media (min-width: 640px) { .video-slide { flex: 0 0 50%; } }
@media (min-width: 1024px) { .video-slide { flex: 0 0 33.333%; } }

.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #000;
}
.video-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: var(--white-80);
  margin-top: 0.75rem;
  line-height: 1.4;
  padding: 0 0.5rem;
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  padding: 2rem 1rem 4rem;
  background: #000;
  border-top: 2px solid var(--gold);
}
.footer-inner { max-width: 56rem; margin: 0 auto; text-align: center; }
.footer-quote {
  background: rgba(227,210,180,0.1);
  border: 1px solid rgba(227,210,180,0.3);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-quote p:first-child {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-quote p:last-child { color: var(--white-80); font-size: 0.9rem; }
.footer-logo { height: 36px; margin: 0 auto 1.25rem; }
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-socials a {
  color: rgba(227,210,180,0.7);
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--gold); }
.footer-socials svg { width: 24px; height: 24px; }
.footer-tagline {
  color: var(--white-80);
  margin-bottom: 0.5rem;
}
.footer-tagline-it {
  color: rgba(227,210,180,0.8);
  font-style: italic;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(227,210,180,0.3);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.footer-links a { font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-links .sep { color: var(--gold); opacity: 0.6; }

/* Partnership block */
.footer-partner {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(227,210,180,0.4);
  border-radius: 1rem;
  background: rgba(227,210,180,0.05);
}
.footer-partner-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.footer-partner-desc { font-size: 0.875rem; color: var(--white-80); margin-bottom: 1rem; }
.footer-partner-desc span { color: var(--gold); font-weight: 600; }
.partner-btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  transition: background 0.2s;
}
.partner-btn:hover { background: var(--gold-dark); }
.footer-partner-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-style: italic; margin-top: 0.75rem; }

.footer-address { font-size: 0.875rem; color: rgba(255,255,255,0.6); font-weight: 600; margin-bottom: 1.5rem; }
.footer-address p { margin-bottom: 0.2rem; }
.footer-copy { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

/* =============================================
   UTILS
   ============================================= */
.hidden { display: none !important; }
.text-center { text-align: center; }
