/* ====================================================
   BanoVano - Landing Page Styles
   ==================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --gold:        #F5C842;
  --gold-light:  #F0D663;
  --gold-pale:   #FFF1A8;
  --cream:       #FFF6CC;
  --dark:        #2D2418;
  --muted:       #7A6A50;
  --gray:        #9C9A8C;
  --green:       #4CAF50;
  --black:       #111111;
  --white:       #FFFFFF;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(45, 36, 24, 0.08);
  --shadow-md:   0 8px 24px rgba(45, 36, 24, 0.12);
  --shadow-lg:   0 16px 48px rgba(45, 36, 24, 0.16);

  --transition:  0.3s ease;
  --transition-slow: 0.5s ease;

  --container:   1200px;
  --gap:         24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

section[id] {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-width: 320px;
}

/* Skip link: доступность и лучшие практики (WCAG), косвенно полезно для SEO */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: 3px solid var(--dark);
  outline-offset: 2px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover { opacity: 0.8; }

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ====================================================
   NAVBAR
   ==================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: var(--gold);
  overflow: visible;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.text-center {
  text-align: center !important;
}

.navbar__drip {
  position: absolute;
  top: 87px;
  left: 0;
  right: 0;
  height: 40px;
  line-height: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.navbar__drip svg {
  width: 120%;
  margin-left: -10%;
  height: 40px;
  display: block;
}

.navbar.scrolled {
  background: var(--gold);
  box-shadow: 0 2px 12px rgba(45,36,24,0.15);
}

.navbar.scrolled .navbar__drip {
  opacity: 0;
  pointer-events: none;
}

/* Шапка шире основного .container (1200px), иначе 8+ пунктов ломаются в две строки */
.navbar .container {
  max-width: min(100%, 1440px);
  margin-left: auto;
  margin-right: auto;
  padding-left: max(12px, env(safe-area-inset-left));
  padding-right: max(12px, env(safe-area-inset-right));
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  height: 92px;
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__logo img {
  height: 68px;
  width: auto;
}

.navbar__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 2px;
  margin-left: auto;
  min-width: 0;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  flex-shrink: 0;
}

.navbar__lang {
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  margin-left: 10px;
  border: 1.5px solid rgba(45, 36, 24, 0.25);
  border-radius: var(--radius-sm);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity var(--transition), background var(--transition);
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.navbar__lang:hover {
  opacity: 1;
  background: rgba(45, 36, 24, 0.08);
}

.navbar__link {
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  opacity: 0.92;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar__link--accent {
  background: rgba(45, 36, 24, .10);
  border: 1px solid rgba(45, 36, 24, .18);
  opacity: 1;
}

.navbar__link--accent:hover {
  background: rgba(45, 36, 24, .20);
  opacity: 1;
}

/* Десктоп: одна строка, удобнее нажимать */
@media (min-width: 1121px) {
  .navbar__link {
    white-space: nowrap;
    font-size: clamp(0.82rem, 0.95vw, 0.9375rem);
    padding: 10px clamp(4px, 0.55vw, 10px);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navbar__nav {
    gap: 0;
  }
}

.navbar__link:hover {
  background: rgba(45,36,24,0.1);
  opacity: 1;
}

.navbar__cta {
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar__mobile-cta {
  display: none;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger.active span:nth-child(2) {
  opacity: 0;
}
.navbar__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Планшет и уже: выезжающее меню (на главной много пунктов — иначе снова переносы) */
@media (max-width: 1120px) {
  .navbar__nav {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    background: var(--gold);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 16px 24px 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .navbar__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .navbar__link {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .navbar__actions {
    display: none;
  }
  
  .navbar__mobile-cta {
    display: none;
  }

  .navbar__burger {
    display: flex;
    margin-left: auto;
  }
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition),
              border-color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: #1a0f08;
  border-color: #1a0f08;
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #E8B820;
  border-color: #E8B820;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* ====================================================
   SECTION COMMON
   ==================================================== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-label--dark { color: rgba(45,36,24,0.6); }
.section-label--light { color: rgba(255,255,255,0.5); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle--light { color: rgba(255,255,255,0.65); }

/* ====================================================
   DRIP DIVIDERS — purely decorative, never blocks content
   ==================================================== */
.drip {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.drip--top {
  bottom: auto;
  top: -5px;
}

.drip--top svg {
  transform: scaleY(-1);
}

.drip svg {
  width: 120%;
  margin-left: -10%;
  height: 70px;
  display: block;
}

/* Bottom drips that need flipping are handled by viewBox orientation.
   No scaleY(-1) needed --- prevents upward overlap into content. */

.drip--header {
  top: 0;
  z-index: 3;
}

.drip--header svg {
  height: 40px;
}

/* ====================================================
   WAVE ANIMATIONS v2
   3 стиля: drift (дрейф), pulse (дыхание), rock (покачивание)
   SVG шире контейнера на 20% — края не обрезаются при движении
   ==================================================== */

/* --- Navbar drip --- */
.navbar__drip svg {
  animation: waveRock 10s ease-in-out infinite alternate;
  will-change: transform;
}

/* ── DRIFT: плавное скольжение влево-вправо ── */
.wave-drift svg {
  animation: waveDrift 7s ease-in-out infinite alternate;
  will-change: transform;
}
.wave-drift.drip--top:not([class*="target"]) svg {
  animation: waveDriftFlip 7s ease-in-out infinite alternate;
}
.wave-drift.drip--top[class*="target"] svg {
  animation: waveDrift 7s ease-in-out infinite alternate;
}

@keyframes waveDrift {
  0%   { transform: translateX(-3%); }
  100% { transform: translateX(3%); }
}
@keyframes waveDriftFlip {
  0%   { transform: scaleY(-1) translateX(-3%); }
  100% { transform: scaleY(-1) translateX(3%); }
}

/* ── PULSE: вертикальное дыхание + лёгкий сдвиг ── */
.wave-pulse svg {
  animation: wavePulse 9s ease-in-out infinite alternate;
  transform-origin: center bottom;
  will-change: transform;
}
.wave-pulse.drip--top:not([class*="target"]) svg {
  animation: wavePulseFlip 9s ease-in-out infinite alternate;
  transform-origin: center top;
}
.wave-pulse.drip--top[class*="target"] svg {
  animation: wavePulse 9s ease-in-out infinite alternate;
  transform-origin: center top;
}

@keyframes wavePulse {
  0%   { transform: translateX(-2%) scaleY(1); }
  50%  { transform: translateX(2%) scaleY(1.12); }
  100% { transform: translateX(-1%) scaleY(0.95); }
}
@keyframes wavePulseFlip {
  0%   { transform: scaleY(-1) translateX(-2%); }
  50%  { transform: scaleY(-1.12) translateX(2%); }
  100% { transform: scaleY(-0.95) translateX(-1%); }
}

/* ── ROCK: покачивание (наклон + сдвиг) ── */
.wave-rock svg {
  animation: waveRock 10s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}
.wave-rock.drip--top:not([class*="target"]) svg {
  animation: waveRockFlip 10s ease-in-out infinite alternate;
  transform-origin: center center;
}
.wave-rock.drip--top[class*="target"] svg {
  animation: waveRock 10s ease-in-out infinite alternate;
}

@keyframes waveRock {
  0%   { transform: translateX(-2%) rotate(-0.3deg); }
  50%  { transform: translateX(2%) rotate(0.3deg); }
  100% { transform: translateX(-1%) rotate(-0.15deg); }
}
@keyframes waveRockFlip {
  0%   { transform: scaleY(-1) translateX(-2%) rotate(0.3deg); }
  50%  { transform: scaleY(-1) translateX(2%) rotate(-0.3deg); }
  100% { transform: scaleY(-1) translateX(-1%) rotate(0.15deg); }
}

/* Отключаем анимации волн для пользователей с reduced motion */
@media (prefers-reduced-motion: reduce) {
  .navbar__drip svg,
  .wave-drift svg, .wave-pulse svg, .wave-rock svg {
    animation: none !important;
  }
}

/* ====================================================
   SCROLL REVEAL ANIMATIONS
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

.reveal--left {
  opacity: 0;
  transform: translateX(-32px);
}

.reveal--right {
  opacity: 0;
  transform: translateX(32px);
}

.reveal--left.visible,
.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  background: var(--cream);
  padding: 160px 0 120px;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

/* Subtle background blobs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at 45% 50%, rgba(245,200,66,0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: heroFloat 7s ease-in-out infinite alternate;
}

.hero::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at 55% 50%, rgba(245,200,66,0.15) 0%, transparent 70%);
  bottom: 80px;
  left: -80px;
  animation: heroFloat 9s ease-in-out infinite alternate-reverse;
}

@keyframes heroFloat {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(10px, 14px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(245,200,66,0.25);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title .highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--gold) 0%, #FFE082 40%, var(--gold) 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 100% 0; }
  50%      { background-position: -100% 0; }
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--white);
  border: 1.5px solid rgba(232,217,138,0.5);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.hero__stat-value {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
  max-width: 80px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(232,217,138,0.7);
  flex-shrink: 0;
}

/* ====================================================
   ABOUT
   ==================================================== */
.about {
  position: relative;
  background: var(--gold);
  padding: 140px 0 120px;
  text-align: center;
  overflow: hidden;
}

.about .section-title,
.about .section-subtitle,
.about .section-label {
  color: var(--dark);
}

.about .section-subtitle { color: rgba(45,36,24,0.7); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  text-align: left;
}

.feature-card {
  background: var(--cream);
  border: 1.5px solid rgba(45,36,24,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ====================================================
   HOW-TO
   ==================================================== */
.howto {
  position: relative;
  background: var(--cream);
  padding: 140px 0 120px;
  text-align: center;
  overflow: hidden;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  position: relative;
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid rgba(232,217,138,0.6);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Connector line between steps (desktop) */
.step-connector {
  display: none;
  position: absolute;
  top: 64px;
  left: 100%;
  width: var(--gap);
  height: 2px;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
  z-index: 1;
}

@media (min-width: 768px) {
  .step-connector { display: block; }
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.step-desc a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ====================================================
   PRICING
   ==================================================== */
.pricing {
  position: relative;
  background: var(--gold);
  padding: 150px 0 120px;
  text-align: center;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--cream);
  border: 1.5px solid rgba(45,36,24,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 24px rgba(245, 200, 66, .20);
}

.pricing-card--popular {
  background: var(--dark);
  border-color: var(--dark);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  animation: popularFloat 3.5s ease-in-out infinite;
}

.pricing-card--popular:hover {
  transform: scale(1.04) translateY(-8px);
  animation: none;
}

@keyframes popularFloat {
  0%, 100% { transform: scale(1.04) translateY(0); }
  50%      { transform: scale(1.04) translateY(-5px); }
}

.pricing-card--popular .pricing-tier,
.pricing-card--popular .pricing-amount,
.pricing-card--popular .pricing-currency,
.pricing-card--popular .pricing-period,
.pricing-card--popular .pricing-features li {
  color: var(--white);
}

.pricing-grid .pricing-card--popular .btn-dark {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

.pricing-grid .pricing-card--popular .btn-dark:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.pricing-card--popular .pricing-features li.muted {
  color: rgba(255,255,255,0.35);
}

.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.pricing-tier {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li.muted {
  color: var(--gray);
}

.pricing-note {
  font-size: 0.85rem;
  color: rgba(45,36,24,0.6);
  margin-top: 32px;
}

/* ====================================================
   ROADMAP / TIMELINE
   ==================================================== */
.roadmap {
  position: relative;
  background: var(--cream);
  padding: 140px 0 120px;
  text-align: center;
  overflow: hidden;
}

.roadmap__header {
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.roadmap .section-label,
.roadmap .section-title,
.roadmap .section-subtitle {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(245,200,66,0.2) 100%);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 48px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border: 3px solid var(--dark);
  border-radius: 50%;
  z-index: 1;
}

.timeline-dot--pulse {
  animation: timeline-pulse 2s ease-in-out infinite;
}

@keyframes timeline-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,200,66,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(245,200,66,0); }
}

.timeline-dot--future {
  background: var(--cream);
  border-color: var(--gold);
  border-style: dashed;
}

.timeline-content {
  background: var(--white);
  border: 1.5px solid rgba(232,217,138,0.6);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.timeline-content:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.timeline-date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.timeline-subtitle {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.timeline-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(232,217,138,0.6);
}

.timeline-stat {
  font-size: 0.85rem;
  color: var(--muted);
}

.timeline-stat strong {
  color: var(--dark);
  font-weight: 700;
}

.timeline-plans {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.timeline-plans li {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-plans li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.timeline-item--current .timeline-content {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,246,204,0.5) 100%);
}

.timeline-item--future .timeline-content {
  border-style: dashed;
  background: rgba(255,246,204,0.4);
}

/* ====================================================
   REFERRAL
   ==================================================== */
.referral {
  position: relative;
  background: var(--gold);
  padding: 140px 0 120px;
  overflow: hidden;
}

.referral__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.referral__left .section-subtitle {
  color: rgba(45,36,24,0.7);
}

.referral__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.referral-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition);
}

.referral-card:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.85);
  box-shadow: var(--shadow-md);
}

.referral-card__icon {
  width: 52px;
  height: 52px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
}

.referral-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.referral-card__body strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.referral-card__body span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ====================================================
   FAQ
   ==================================================== */
.faq {
  position: relative;
  background: var(--cream);
  padding: 150px 0 120px;
  text-align: center;
  overflow: hidden;
}

.faq .section-subtitle a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(232,217,138,0.6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(245,200,66,0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(245,200,66,0.06);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding var(--transition);
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ====================================================
   COMMUNITY
   ==================================================== */
.community {
  position: relative;
  background: var(--dark);
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  max-width: 820px;
  margin: 0 auto;
}

.community-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}

.community-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,200,66,0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.community-card__icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.community-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.community-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 260px;
}

.community-card__handle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--dark);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo img {
  /* logo-footer.svg already has correct colors for dark bg - no filter needed */
  height: 36px;
  width: auto;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--white);
  opacity: 1;
}

.footer__bottom {
  padding: 20px 0;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

.footer__legal {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.footer__legal-link {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: rgba(255,255,255,0.65);
  opacity: 1;
}

/* ====================================================
   RESPONSIVE - TABLET (768–1024px)
   ==================================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card--popular {
    grid-column: span 2;
    transform: none;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .pricing-card--popular:hover {
    transform: translateY(-8px);
  }

  .referral__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

/* ====================================================
   RESPONSIVE - MOBILE (< 768px)
   ==================================================== */
@media (max-width: 768px) {
  .drip svg {
    height: 45px;
  }

  .navbar__drip {
    display: none;
  }

  .hero {
    padding: 120px 0 100px;
  }

  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
    gap: 0;
  }

  .hero__stat {
    width: 50%;
    padding: 12px 16px;
  }

  .hero__stat-divider {
    display: none;
  }

  .features-grid,
  .steps-grid,
  .pricing-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--popular {
    grid-column: 1;
    transform: none;
    max-width: 100%;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-item {
    padding-left: 44px;
  }

  .timeline-dot {
    left: 2px;
    width: 20px;
    height: 20px;
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
  }

  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

/* ====================================================
   RESPONSIVE - SMALL MOBILE (< 480px)
   ==================================================== */
@media (max-width: 480px) {
  .drip svg {
    height: 35px;
  }

  .container {
    padding: 0 14px;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero__stats {
    padding: 16px;
    border-radius: var(--radius-lg);
  }

  .hero__stat {
    width: 50%;
    padding: 10px 12px;
  }

  .hero__stat-value {
    font-size: 1.8rem;
  }

  .hero__stat-label {
    font-size: 0.7rem;
  }

  .feature-card {
    padding: 20px;
  }

  .step-card {
    padding: 24px 20px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-amount {
    font-size: 2.8rem;
  }

  .timeline-content {
    padding: 20px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 18px 16px;
    font-size: 0.88rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.95rem;
    min-height: 48px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: 1;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .referral-card {
    flex-direction: column;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   RESPONSIVE - ULTRAWIDE (> 1600px)
   ==================================================== */
@media (min-width: 1600px) {
  .container {
    max-width: 1320px;
  }

  .navbar .container {
    max-width: min(100%, 1600px);
  }

  .hero {
    padding: 180px 0 140px;
  }

  .hero__title {
    font-size: 5rem;
  }

  .hero__stats {
    max-width: 820px;
    padding: 32px 48px;
  }

  .hero__stat-value {
    font-size: 2.8rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .pricing-grid {
    gap: 28px;
  }

  .timeline {
    max-width: 820px;
  }

  .faq-list {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 2000px) {
  .container {
    max-width: 1440px;
  }

  .hero__title {
    font-size: 5.5rem;
  }

  .section-title {
    font-size: 3.2rem;
  }
}
