/* =====================================================
   ФОРМУЛА УСПЕХА — style.css
   Aesthetic: Luxury Editorial / Dark Gold
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --bg-dark:      #0a0a0c;
  --bg-card:      #111116;
  --bg-elevated:  #16161d;
  --gold:         #c9a96e;
  --gold-light:   #f0d898;
  --gold-dim:     rgba(201,169,110,0.15);
  --text-primary: #f0ede8;
  --text-muted:   #8a8590;
  --text-faint:   #45434a;
  --border:       rgba(201,169,110,0.15);
  --border-soft:  rgba(255,255,255,0.06);
  --accent:       #c9a96e;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 24px 60px rgba(0,0,0,0.6);
  --shadow-sm:    0 8px 24px rgba(0,0,0,0.4);
  --transition:   .45s cubic-bezier(.22,1,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ---------- Intersection Observer Reveal ---------- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .8s var(--transition), transform .8s var(--transition);
}
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX( 48px); }

.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .34s; }
.delay-4 { transition-delay: .46s; }

/* ---------- Typography ---------- */
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: .02em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.section-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section-subtitle,
.section-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
}
.section-subtitle { margin-bottom: 0; }
.section-text { margin-bottom: 1rem; }

/* ======================================================
   NAVBAR
   ====================================================== */
#mainNav {
  background: transparent;
  padding: 1.4rem 0;
  transition: background .4s, padding .4s, backdrop-filter .4s;
  z-index: 999;
}
#mainNav.scrolled {
  background: rgba(10,10,12,.88);
  backdrop-filter: blur(18px);
  padding: .8rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.navbar-brand {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.45rem;
  letter-spacing: .06em;
  color: var(--text-primary) !important;
}
.brand-icon { color: var(--gold); margin-right: .25rem; }
.brand-accent { color: var(--gold); }

.nav-link {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-muted) !important;
  transition: color .25s;
  padding: .4rem .1rem !important;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-link:hover { color: var(--text-primary) !important; }
.nav-link:hover::after { width: 100%; }

.btn-cta-nav {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: .5rem 1.3rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: var(--radius-sm);
  transition: background .3s, color .3s;
}
.btn-cta-nav:hover {
  background: var(--gold);
  color: var(--bg-dark) !important;
}

/* Toggler */
.navbar-toggler { border: none; background: none; padding: 4px 0; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: .3s;
}

/* ======================================================
   HERO
   ====================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

/* Animated grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
  0%,100% { opacity: .6; }
  50% { opacity: 1; }
}

/* Orbs */
.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,.18) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,.1) 0%, transparent 70%);
  bottom: 0; left: -80px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-40px) scale(1.05); }
}

/* Hero content */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .4rem 1rem;
  margin-bottom: 1.5rem;
  background: var(--gold-dim);
}
.dot-pulse {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,169,110,.6); }
  50% { box-shadow: 0 0 0 8px rgba(201,169,110,0); }
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: .98;
  letter-spacing: .02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.hero-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05em;
  color: var(--gold);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: .02em;
}
.btn-primary-hero:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,169,110,.35);
}
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 500;
  padding: .85rem 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-ghost-hero:hover {
  color: var(--text-primary);
  border-color: var(--gold);
}

/* Proof bar */
.hero-proof {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.proof-avatars {
  display: flex;
}
.proof-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -8px;
  object-fit: cover;
}
.proof-avatars img:first-child { margin-left: 0; }
.proof-text {
  font-size: .85rem;
  color: var(--text-muted);
}
.proof-text strong { color: var(--text-primary); }

/* Hero card stack */
.hero-visual { display: flex; justify-content: center; }
.hero-card-stack {
  position: relative;
  width: 320px; height: 340px;
}
.hcard {
  position: absolute;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
}
.hcard-back {
  width: 260px; height: 260px;
  bottom: 0; right: 10px;
  background: linear-gradient(135deg, rgba(201,169,110,.06), transparent);
  transform: rotate(8deg);
}
.hcard-mid {
  width: 280px; height: 200px;
  bottom: 30px; left: 0;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border-color: var(--border);
  transform: rotate(-4deg);
  transition: transform .5s;
}
.hcard-mid:hover { transform: rotate(-2deg) scale(1.02); }
.hcard-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.hcard-chart { margin-bottom: .75rem; }
.hcard-chart svg { width: 100%; }
.hcard-stat {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: .04em;
}
.hcard-stat span { font-family: 'DM Sans'; font-size: .9rem; color: var(--text-muted); font-weight: 400; }

.hcard-front {
  width: 240px;
  top: 0; right: 0;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: var(--bg-elevated);
  border-color: var(--border);
}
.hcard-icon {
  font-size: 1.4rem;
  color: var(--gold);
}
.hcard-meta strong { display: block; font-size: .9rem; color: var(--text-primary); }
.hcard-meta span { font-size: .78rem; color: var(--text-muted); }
.hcard-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--gold);
  padding: .2rem .6rem;
  border-radius: 4px;
  width: fit-content;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .45rem 1rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  animation: badgeFloat 4s ease-in-out infinite;
}
.badge-1 { top: 50px; left: -30px; animation-delay: .5s; }
.badge-2 { bottom: 0; right: -10px; animation-delay: 1.5s; }
.floating-badge i { color: var(--gold); }

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

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-faint);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ======================================================
   LOGOS
   ====================================================== */
.logos-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.logos-eyebrow {
  text-align: center;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
}
.logos-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.logo-item {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.25rem;
  letter-spacing: .08em;
  color: var(--text-faint);
  transition: color .3s;
  cursor: default;
}
.logo-item:hover { color: var(--gold); }

/* ======================================================
   ABOUT
   ====================================================== */
.about-section { background: var(--bg-dark); }

.about-image-block {
  position: relative;
}
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: brightness(.85) saturate(.8);
}
.about-img-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .6rem 1rem;
  font-size: .82rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.pill {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .3rem .9rem;
  background: var(--gold-dim);
  transition: background .3s;
}
.pill:hover { background: rgba(201,169,110,.25); }

/* ======================================================
   PILLARS
   ====================================================== */
.pillars-section { background: var(--bg-card); }

.pillar-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .4s, border-color .4s, box-shadow .4s;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.pillar-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--shadow-sm); }
.pillar-card:hover::before { opacity: 1; }

.pillar-card--accent {
  background: linear-gradient(145deg, rgba(201,169,110,.1), var(--bg-elevated));
  border-color: var(--border);
}

.pillar-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: .5rem;
  filter: blur(0px);
}
.pillar-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.pillar-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: var(--text-primary);
  margin-bottom: .75rem;
}
.pillar-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.pillar-link {
  font-size: .82rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .3s;
}
.pillar-link:hover { gap: .7rem; }

/* ======================================================
   STATS
   ====================================================== */
.stats-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0e10 100%);
}
.stats-inner {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.stats-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(201,169,110,.08), transparent);
}

.stat-item { position: relative; }
.stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  display: inline;
}
.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .5rem;
  letter-spacing: .03em;
}

/* ======================================================
   STEPS
   ====================================================== */
.steps-section { background: var(--bg-dark); }

.steps-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
}
.step-item:last-child .step-body { padding-bottom: 0; }

.step-num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.step-item:hover .step-num {
  background: var(--gold);
  color: var(--bg-dark);
}
.step-line {
  width: 1px;
  flex: 1;
  background: var(--border-soft);
  margin-top: .75rem;
  min-height: 40px;
}

.step-body {
  padding-top: .5rem;
}
.step-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: .2rem .7rem;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: .75rem;
}
.step-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  letter-spacing: .04em;
  color: var(--text-primary);
  margin-bottom: .6rem;
}
.step-text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.step-tools {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.step-tools span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-faint);
  border: 1px solid var(--border-soft);
  padding: .25rem .7rem;
  border-radius: 99px;
}

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testimonials-section { background: var(--bg-card); }

.tcard {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .4s, box-shadow .4s;
}
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }

.tcard--featured {
  background: linear-gradient(145deg, rgba(201,169,110,.12), var(--bg-elevated));
  border-color: var(--border);
}

.tcard-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.tcard-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  color: var(--text-primary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.tcard-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.tcard-author strong { display: block; font-size: .9rem; color: var(--text-primary); }
.tcard-author span { font-size: .78rem; color: var(--text-muted); }
.tcard-result {
  margin-top: 1rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: .08em;
  color: var(--gold);
  border-top: 1px solid var(--border-soft);
  padding-top: .75rem;
}

/* ======================================================
   CTA
   ====================================================== */
.cta-section { background: var(--bg-dark); }
.cta-inner {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,.15), transparent 70%);
  pointer-events: none;
}

.cta-eyebrow { margin-bottom: .75rem; }
.cta-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: .02em;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}
.cta-text {
  font-size: .98rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.cta-list li {
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.cta-list i { color: var(--gold); }

/* Form card */
.cta-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
}
.cta-form-card h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.cta-input {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--border-soft) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-sm) !important;
  padding: .7rem 1rem !important;
  font-size: .9rem;
  transition: border-color .3s;
}
.cta-input::placeholder { color: var(--text-faint) !important; }
.cta-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,169,110,.15) !important;
  outline: none !important;
}
.btn-cta-submit {
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: .92rem;
  padding: .85rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.btn-cta-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201,169,110,.3);
}
.cta-disclaimer {
  font-size: .72rem;
  color: var(--text-faint);
  text-align: center;
  margin-top: .75rem;
  margin-bottom: 0;
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
  padding: 72px 0 0;
}
.footer-brand {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.45rem;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: .87rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-socials {
  display: flex;
  gap: .75rem;
}
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: color .3s, border-color .3s;
}
.footer-socials a:hover { color: var(--gold); border-color: var(--gold); }

.footer-heading {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links a {
  font-size: .87rem;
  color: var(--text-muted);
  transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-newsletter-text {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-subscribe {
  display: flex;
  gap: .5rem;
}
.footer-email-input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: .6rem 1rem;
  font-size: .87rem;
  outline: none;
  transition: border-color .3s;
}
.footer-email-input::placeholder { color: var(--text-faint); }
.footer-email-input:focus { border-color: var(--gold); }
.footer-subscribe-btn {
  width: 42px; height: 42px;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background .3s;
  flex-shrink: 0;
}
.footer-subscribe-btn:hover { background: var(--gold-light); }

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid var(--border-soft);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: var(--text-faint);
}
.footer-bottom a { color: var(--text-faint); transition: color .3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 991.98px) {
  .hero-visual { margin-top: 3rem; }
  .hero-card-stack { width: 280px; height: 300px; }
  .cta-inner { padding: 40px 30px; }
  .stats-inner { padding: 40px 20px; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 72px 0; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .hero-actions { flex-direction: column; }
  .btn-primary-hero, .btn-ghost-hero { width: 100%; justify-content: center; }
  .step-item { gap: 1rem; }
  .cta-inner { padding: 32px 20px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
