/* ============================================================
   ALMOTADAWIL ACADEMY — STYLES.CSS
   Premium Trading Academy Website
   Colors: #0a0d1a (deep navy), #c9a227 (gold), #1a2744 (dark blue)
   ============================================================ */

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

:root {
  --black:      #070a14;
  --navy:       #0a0d1a;
  --navy-mid:   #111827;
  --navy-light: #1a2744;
  --navy-card:  #0f1729;
  --gold:       #c9a227;
  --gold-light: #e8c547;
  --gold-pale:  #f0d98a;
  --gold-dim:   rgba(201,162,39,0.15);
  --green:      #22c55e;
  --red:        #ef4444;
  --white:      #ffffff;
  --text-light: #cbd5e1;
  --text-mid:   #94a3b8;
  --border:     rgba(201,162,39,0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(201,162,39,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }

/* ---- SECTION LABELS & HEADERS ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 18px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #a8821e);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(201,162,39,0.35);
}

.btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,162,39,0.5); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary.large { padding: 20px 40px; font-size: 1.05rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary svg { width: 18px; height: 18px; }
.btn-secondary:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.btn-outline-gold:hover { background: var(--gold-dim); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10,13,26,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 12px rgba(201,162,39,0.3));
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-light);
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px 10px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 99px;
  transition: all 0.2s;
}
.lang-btn.active { color: var(--gold); background: var(--gold-dim); }
.lang-sep { color: var(--border); font-size: 0.7rem; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), #a8821e);
  color: var(--black);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 6px;
  transition: all 0.3s;
  box-shadow: 0 2px 16px rgba(201,162,39,0.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 24px rgba(201,162,39,0.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, #1a2744 0%, var(--navy) 60%), var(--navy);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-1 { width: 600px; height: 600px; background: rgba(201,162,39,0.08); top: -200px; right: -200px; }
.glow-2 { width: 400px; height: 400px; background: rgba(26,39,68,0.6); bottom: -100px; left: -100px; }

/* Decorative candlesticks */
.candlestick-bg {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.06;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 18px;
  padding: 0 60px 60px;
  pointer-events: none;
}

.candle {
  border-radius: 3px;
  width: 28px;
  position: relative;
}
.candle::before, .candle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
}
.candle.green { background: var(--green); }
.candle.red { background: var(--red); }
.candle.green::before { background: var(--green); bottom: 100%; height: 24px; }
.candle.green::after { background: var(--green); top: 100%; height: 16px; }
.candle.red::before { background: var(--red); bottom: 100%; height: 16px; }
.candle.red::after { background: var(--red); top: 100%; height: 24px; }

.c1 { height: 80px; } .c2 { height: 50px; } .c3 { height: 110px; }
.c4 { height: 140px; } .c5 { height: 90px; } .c6 { height: 180px; }
.c7 { height: 220px; } .c8 { height: 160px; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.35);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border-radius: 99px;
  margin-bottom: 28px;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(201,162,39,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title span { display: block; }
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-size: 1.1em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 44px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-urgency {
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-mid);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fade-up 1s ease 2s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce-arrow 1.4s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ---- TICKER ---- */
.ticker-wrap {
  background: linear-gradient(90deg, var(--navy-light), #132040, var(--navy-light));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 64px;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- ABOUT ---- */
.about { background: var(--black); }

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

.about-visual {
  position: relative;
}

.about-logo-box {
  background: linear-gradient(135deg, var(--navy-card), var(--navy-light));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow), var(--shadow-gold);
}

.about-logo-box img { max-width: 280px; filter: drop-shadow(0 4px 24px rgba(201,162,39,0.3)); }

.about-badge-float {
  position: absolute;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
}

.badge-1 { bottom: -20px; left: -20px; animation-delay: 0s; }
.badge-2 { top: -20px; right: -20px; animation-delay: 1.5s; }

.about-badge-float .badge-icon { font-size: 1.5rem; }
.about-badge-float strong { display: block; color: var(--gold); font-size: 1.1rem; font-weight: 700; }
.about-badge-float span { font-size: 0.78rem; color: var(--text-mid); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
}
.pillar:hover { border-color: rgba(201,162,39,0.4); background: var(--gold-dim); }

.pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pillar strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.pillar span { font-size: 0.8rem; color: var(--text-mid); }

/* ---- BENEFITS ---- */
.benefits { background: var(--navy); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  position: relative;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(201,162,39,0.1);
}

.featured-benefit {
  background: linear-gradient(135deg, #0f1e3d, #1a2c50);
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201,162,39,0.15);
}

.benefit-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #a8821e);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---- PRICING ---- */
.pricing { background: var(--black); }

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

.price-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.best-value {
  background: linear-gradient(160deg, #0d1e42, #1a3060);
  border: 2px solid var(--gold);
  box-shadow: 0 0 60px rgba(201,162,39,0.2), var(--shadow);
  transform: scale(1.03);
}
.best-value:hover { transform: scale(1.03) translateY(-4px); }

.best-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #a8821e);
  color: var(--black);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 99px;
  white-space: nowrap;
}

.plan-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.currency { font-size: 1.4rem; color: var(--gold); margin-top: 10px; font-weight: 600; }
.amount { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.period { font-size: 0.88rem; color: var(--text-mid); align-self: flex-end; margin-bottom: 8px; }

.plan-save {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.6;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.plan-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.plan-features li.not-included {
  color: var(--text-mid);
  opacity: 0.5;
}
.plan-features li.not-included::before {
  content: '✕';
  color: var(--text-mid);
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), #a8821e);
  color: var(--black);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 16px;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,162,39,0.3);
}
.btn-plan:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,39,0.5); }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}

/* ---- TELEGRAM SECTION ---- */
.telegram-section { background: var(--navy); }

.telegram-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628, #0f2040);
  border: 1px solid rgba(41,182,246,0.2);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
}

.tg-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(41,182,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.tg-icon {
  width: 72px;
  height: 72px;
  background: #229ED9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 40px rgba(34,158,217,0.4);
}
.tg-icon svg { width: 36px; height: 36px; color: white; }

.telegram-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.telegram-card p {
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.tg-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #229ED9;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(34,158,217,0.35);
}
.btn-telegram svg { width: 20px; height: 20px; }
.btn-telegram:hover { background: #1a8fbe; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(34,158,217,0.5); }

.tg-stats {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}

.tg-stats span {
  font-size: 0.88rem;
  color: var(--text-mid);
}
.tg-stats strong { color: var(--white); }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--black); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,39,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.featured-testimonial {
  background: linear-gradient(135deg, #0d1e42, #182d50);
  border-color: rgba(201,162,39,0.5);
  grid-column: span 1;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author strong { display: block; color: var(--white); font-size: 0.92rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-mid); }

/* Last 2 testimonials span to fill 2 cols + 1 more */
.testimonials-grid .testimonial-card:nth-child(4),
.testimonials-grid .testimonial-card:nth-child(5) {
  /* Let them flow naturally in grid */
}

/* ---- FAQ ---- */
.faq { background: var(--navy); }

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

.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(201,162,39,0.5); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }

.faq-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ---- FINAL CTA ---- */
.final-cta { background: var(--black); }

.final-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1e40, #1a2c55);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px;
  text-align: center;
}

.final-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta-card p {
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all 0.3s;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--gold-dim); border-color: var(--border); color: var(--gold); transform: translateY(-2px); }

.footer-links h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-tg-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #229ED9;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.footer-tg-btn svg { width: 16px; height: 16px; }
.footer-tg-btn:hover { background: #1a8fbe; }

.footer-vip-btn {
  display: block;
  background: linear-gradient(135deg, var(--gold), #a8821e);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
}
.footer-vip-btn:hover { box-shadow: 0 4px 20px rgba(201,162,39,0.4); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-mid);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-mid);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ---- SCROLL ANIMATIONS ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:nth-child(2) { transition-delay: 0.1s; }
.benefit-card:nth-child(3) { transition-delay: 0.2s; }
.benefit-card:nth-child(4) { transition-delay: 0.3s; }
.benefit-card:nth-child(5) { transition-delay: 0.4s; }
.benefit-card:nth-child(6) { transition-delay: 0.5s; }

.price-card:nth-child(2) { transition-delay: 0.15s; }
.price-card:nth-child(3) { transition-delay: 0.3s; }

.testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card:nth-child(3) { transition-delay: 0.2s; }
.testimonial-card:nth-child(4) { transition-delay: 0.3s; }
.testimonial-card:nth-child(5) { transition-delay: 0.4s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 80px 24px 24px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links a::after { display: none; }

  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero { padding: 120px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .pricing-grid { grid-template-columns: 1fr; }
  .best-value { transform: scale(1); order: -1; }

  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .telegram-card { padding: 48px 24px; }
  .final-cta-card { padding: 48px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-pillars { grid-template-columns: 1fr; }
  .tg-ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-stats { padding: 16px; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
  .lang-toggle { display: none; }
}
