/* ═══════════════════════════════════════════
   БИЗНЕСПРОРЫВ 2026 — STYLESHEET
   Aesthetic: Dark luxury editorial
   Fonts: Cormorant Garamond + DM Sans + Bebas Neue
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --dark:       #0a0a0f;
  --dark-2:     #10101a;
  --dark-3:     #161625;
  --dark-card:  #13131e;
  --border:     rgba(255,255,255,0.07);
  --gold:       #c9a96e;
  --gold-light: #e4c89a;
  --gold-dim:   rgba(201,169,110,0.15);
  --white:      #f4f0ea;
  --white-dim:  rgba(244,240,234,0.55);
  --accent:     #7b6ef6;
  --accent-dim: rgba(123,110,246,0.12);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --transition: .45s cubic-bezier(.25,.46,.45,.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: default;
}

::selection { background: var(--gold); color: var(--dark); }

/* ── Scroll progress bar ── */
#progressBar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  z-index: 9999;
  transition: width .1s linear;
}

/* ── Reveal animations ── */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════
   NAVBAR
═══════════════════════════ */
.navbar {
  background: transparent;
  padding: 1.25rem 0;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}
.brand-icon {
  color: var(--gold);
  font-size: 1rem;
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .08em;
  color: var(--white);
}
.brand-text em {
  color: var(--gold);
  font-style: normal;
}
.nav-link {
  color: var(--white-dim) !important;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .5rem .75rem !important;
  transition: color .3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: .75rem; right: .75rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.nav-link:hover { color: var(--white) !important; }
.nav-link:hover::after { transform: scaleX(1); }

.btn-cta-nav {
  background: var(--gold);
  color: var(--dark) !important;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .55rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .3s, transform .3s;
}
.btn-cta-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

.toggler-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  margin: 4px 0;
  transition: var(--transition);
}
.navbar-toggler { border: none; background: none; padding: .25rem; }
.navbar-toggler:focus { box-shadow: none; }

/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,.12), transparent 70%);
  top: -150px; right: -100px;
}
.hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123,110,246,.1), transparent 70%);
  bottom: 0; left: -100px;
}

.hero-ticker {
  position: absolute;
  top: 80px;
  left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .45rem 0;
  background: rgba(201,169,110,.03);
}
.ticker-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem;
  letter-spacing: .12em;
  color: var(--gold);
}
.ticker-track span { flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.title-accent {
  color: var(--gold);
  font-style: italic;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--gold);
  color: var(--dark);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .3s;
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,169,110,.3);
}
.btn-hero-ghost {
  background: transparent;
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .9rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.btn-hero-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-arrow { transition: transform .3s; }
.btn-hero-ghost:hover .btn-arrow { transform: translateX(4px); }

/* Hero visual cards */
.hero-visual {
  position: relative;
  height: 480px;
}
.visual-card {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}
.vc-1 {
  top: 60px; left: 0;
  width: 220px;
  animation: float1 5s ease-in-out infinite;
}
.vc-2 {
  top: 0; right: 30px;
  width: 180px;
  animation: float2 6s ease-in-out infinite;
}
.vc-3 {
  bottom: 60px; right: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  animation: float1 7s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

.vc-label { display: block; font-size: .7rem; color: var(--white-dim); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .35rem; }
.vc-value { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--gold); }
.vc-bar { height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; margin-top: .75rem; }
.vc-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; animation: barGrow 1.5s .5s ease forwards; width: 0%; }
@keyframes barGrow { to { width: 78%; } }

.vc-dots { display: flex; gap: .4rem; margin-top: .75rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.dot.active { background: var(--gold); }

.vc-3 i { font-size: 1.5rem; color: var(--gold); }
.vc-3 p { font-size: .75rem; color: var(--white-dim); line-height: 1.5; }
.vc-3 strong { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--white); }

.big-number {
  position: absolute;
  bottom: 20px; left: 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9rem;
  color: rgba(201,169,110,.06);
  line-height: 1;
  pointer-events: none;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: var(--white-dim);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s;
}
.scroll-hint:hover { color: var(--gold); }
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.3;transform:scaleY(.6)} }

/* ═══════════════════════════
   SECTION COMMONS
═══════════════════════════ */
.section-about, .section-pillars, .section-steps,
.section-trends, .section-testimonials, .section-contact {
  padding: 8rem 0;
}

.section-label {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-body {
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  max-width: 540px;
}

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

.about-image-wrap { position: relative; }

.about-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.img-placeholder {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-card));
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  text-align: center;
}
.img-placeholder p { color: var(--white-dim); font-size: .95rem; line-height: 1.6; }

.about-badge {
  position: absolute;
  top: 2rem; right: -1.5rem;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(201,169,110,.3);
}
.badge-year { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1; }
.badge-text { display: block; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-top: .2rem; }

.about-stat-pill {
  position: absolute;
  bottom: 2rem; left: -1rem;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
  color: var(--white-dim);
  max-width: 260px;
  backdrop-filter: blur(10px);
}
.about-stat-pill i { color: var(--gold); flex-shrink: 0; }

.about-features { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.af-item { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--white-dim); }
.af-item i { color: var(--gold); width: 18px; }

/* ═══════════════════════════
   STATS
═══════════════════════════ */
.section-stats {
  background: var(--dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 20vw, 16rem);
  color: rgba(201,169,110,.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .1em;
}
.stat-card {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--dark-card);
  transition: border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .4s;
}
.stat-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.stat-card:hover::before { transform: scaleX(1); }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
}
.stat-sym { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold-light); }
.stat-desc { color: var(--white-dim); font-size: .82rem; line-height: 1.6; margin-top: .75rem; max-width: 180px; margin-inline: auto; }

/* ═══════════════════════════
   PILLARS
═══════════════════════════ */
.section-pillars {
  background: var(--dark-2);
  padding: 8rem 0;
}
.pillar-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .4s;
}
.pillar-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.pillar-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.pillar-card:hover::after { opacity: 1; }

.pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(201,169,110,.12);
  line-height: 1;
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}
.pillar-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.pillar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.pillar-card p {
  color: var(--white-dim);
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.pillar-link {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: gap .3s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.pillar-link:hover { color: var(--gold-light); }
.pillar-link i { transition: transform .3s; }
.pillar-link:hover i { transform: translateX(4px); }

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

.steps-sticky {
  position: sticky;
  top: 120px;
}
.steps-sticky .section-body { max-width: 320px; }
.btn-gold {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  margin-top: .5rem;
  transition: all .3s;
}
.btn-gold:hover { background: var(--gold); color: var(--dark); }

.steps-list { display: flex; flex-direction: column; gap: 0; }

.step-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
}
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-marker span {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  z-index: 1;
}
.step-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-top: .5rem;
  min-height: 60px;
}
.step-content { padding-top: .5rem; }
.step-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .75rem;
}
.step-content p { color: var(--white-dim); font-size: .9rem; line-height: 1.8; margin-bottom: 1rem; }
.step-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.step-tags span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,110,.2);
  padding: .25rem .75rem;
  border-radius: 20px;
}

/* ═══════════════════════════
   TRENDS
═══════════════════════════ */
.section-trends { background: var(--dark-2); }

.trends-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.trend-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.trend-card:hover { border-color: rgba(201,169,110,.4); transform: translateY(-4px); }
.trend-card--large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 2rem;
  row-gap: .5rem;
}
.trend-card--large .trend-icon {
  grid-row: 1 / 2;
  align-self: start;
}
.trend-card--large h3 { grid-column: 2; grid-row: 1; }
.trend-card--large p  { grid-column: 2; grid-row: 2; }
.trend-card--large .trend-tag { grid-column: 2; grid-row: 3; }

.trend-icon {
  width: 52px; height: 52px;
  background: var(--gold-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.trend-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .75rem;
}
.trend-card p { color: var(--white-dim); font-size: .88rem; line-height: 1.75; }

.trend-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: .3rem .85rem;
  border-radius: 20px;
  margin-top: .5rem;
}

@media (max-width: 768px) {
  .trends-grid { grid-template-columns: 1fr; }
  .trend-card--large { grid-column: 1; display: block; }
}

/* ═══════════════════════════
   TESTIMONIALS
═══════════════════════════ */
.section-testimonials { background: var(--dark); }

.testi-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.testi-card:hover { transform: translateY(-6px); border-color: rgba(201,169,110,.3); }
.testi-card--featured {
  background: linear-gradient(135deg, rgba(201,169,110,.08), var(--dark-card));
  border-color: rgba(201,169,110,.3);
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: .7;
  margin-bottom: 1rem;
  opacity: .5;
}
.testi-card > p { color: var(--white-dim); font-size: .92rem; line-height: 1.8; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,110,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--white); font-size: .9rem; }
.testi-author span { display: block; color: var(--white-dim); font-size: .78rem; }
.testi-stars { color: var(--gold); font-size: .8rem; display: flex; gap: .2rem; }

/* ═══════════════════════════
   CTA BANNER
═══════════════════════════ */
.section-cta-banner {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,169,110,.12), transparent),
    linear-gradient(135deg, var(--dark-3), var(--dark));
}
.cta-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.cta-banner-title em { color: var(--gold); font-style: italic; }
.cta-banner-lead { color: var(--white-dim); font-size: 1rem; margin-bottom: 2.5rem; }

.btn-cta-banner {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 0 40px rgba(201,169,110,.25);
}
.btn-cta-banner:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(201,169,110,.4);
}

/* ═══════════════════════════
   CONTACT
═══════════════════════════ */
.section-contact { background: var(--dark-2); }

.contact-info { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.ci-item { display: flex; align-items: center; gap: 1rem; color: var(--white-dim); font-size: .9rem; }
.ci-item i { color: var(--gold); width: 18px; }

.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.form-label { color: var(--white-dim); font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem; }
.cf-input {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: .85rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  width: 100%;
  transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none;
}
.cf-input::placeholder { color: rgba(244,240,234,.25); }
.cf-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.1);
  background: rgba(255,255,255,.06);
  color: var(--white);
}
select.cf-input option { background: var(--dark-2); }
textarea.cf-input { resize: none; }

.btn-submit {
  background: var(--gold);
  color: var(--dark);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  transition: all .3s;
  cursor: pointer;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

.form-success {
  display: none;
  align-items: center;
  gap: .75rem;
  color: var(--gold);
  font-size: .9rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(201,169,110,.3);
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.2rem; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer-brand { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.footer-desc { color: var(--white-dim); font-size: .85rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: .9rem;
  text-decoration: none;
  transition: all .3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-heading { font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { color: rgba(244,240,234,.45); font-size: .88rem; text-decoration: none; transition: color .3s; }
.footer-links a:hover { color: var(--gold); }

.footer-sub-text { color: var(--white-dim); font-size: .82rem; margin-bottom: 1rem; }
.footer-subscribe { display: flex; gap: 0; }
.footer-input {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: .7rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
}
.footer-input:focus { outline: none; border-color: var(--gold); }
.footer-input::placeholder { color: rgba(244,240,234,.25); }
.footer-sub-btn {
  background: var(--gold);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .7rem 1rem;
  color: var(--dark);
  cursor: pointer;
  transition: background .3s;
}
.footer-sub-btn:hover { background: var(--gold-light); }

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(244,240,234,.3); font-size: .8rem; margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(244,240,234,.3); font-size: .8rem; text-decoration: none; transition: color .3s; }
.footer-legal a:hover { color: var(--gold); }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 991px) {
  .steps-sticky { position: static; margin-bottom: 3rem; }
  .about-badge { right: 0; }
}

@media (max-width: 767px) {
  .hero-ticker { top: 68px; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trends-grid { grid-template-columns: 1fr; }
  .about-badge { display: none; }
  .about-stat-pill { display: none; }
}
