/* ==========================================================================
   ADELAIDE 🇦🇺 | FEARLESS CRYPTO MILLIONAIRE & INVESTOR
   CLEAN & SLEEK CYBER-LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
  --bg-dark: #07090e;
  --bg-card: rgba(15, 20, 30, 0.75);
  --bg-card-hover: rgba(22, 30, 46, 0.85);

  --emerald: #00ffa3;
  --emerald-glow: rgba(0, 255, 163, 0.3);
  
  --gold: #ffd700;
  --gold-glow: rgba(255, 215, 0, 0.35);
  --gold-grad: linear-gradient(135deg, #ffe57f 0%, #ffd700 45%, #f59e0b 100%);
  
  --telegram-blue: #229ed9;
  --telegram-grad: linear-gradient(135deg, #2cb5f6 0%, #1e88e5 100%);

  --cyan: #00e5ff;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(255, 215, 0, 0.3);
  --border-emerald: rgba(0, 255, 163, 0.3);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}

/* Ambient glow orbs */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
}

.orb-1 {
  top: -10%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: var(--gold);
}

.orb-2 {
  top: 50%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: var(--emerald);
}

/* Text styles */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.emerald-text {
  color: var(--emerald) !important;
}

.cyan-text {
  color: var(--cyan) !important;
}

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

/* Container */
.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section-title-wrap {
  margin-bottom: 3rem;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.btn-tg-nav {
  background: var(--telegram-grad);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(34, 158, 217, 0.35);
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
}

.btn-tg-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 158, 217, 0.5);
}

.btn-tg-hero {
  background: var(--gold-grad);
  color: #160e00;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  font-weight: 800;
  box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-tg-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.btn-secondary-hero {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid var(--border);
  padding: 1rem 1.8rem;
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shimmerAnim 3.5s infinite;
}

@keyframes shimmerAnim {
  0% { left: -100%; }
  35%, 100% { left: 200%; }
}

/* Sound button */
.sound-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 20, 30, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 99;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease;
}

.sound-fab:hover {
  transform: scale(1.1);
}

/* Ticker Bar */
.live-ticker-bar {
  background: #0a0e16;
  border-bottom: 1px solid var(--border);
  height: 38px;
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  overflow: hidden;
  position: relative;
  z-index: 50;
}

.ticker-tag {
  background: #10b981;
  color: #000;
  font-weight: 800;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  white-space: nowrap;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

.ticker-scroll {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: scrollTicker 30s linear infinite;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  gap: 0.4rem;
}

.ticker-item .coin { color: #fff; font-weight: 700; }
.ticker-item .val { color: var(--text-muted); }
.ticker-item .gain { color: var(--emerald); font-weight: 700; }
.ticker-item.highlight {
  color: var(--gold);
  font-weight: 700;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.1rem 0.6rem;
  border-radius: 4px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 40;
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Header */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-avatar-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gold-grad);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--gold-glow);
}

.brand-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.avatar-verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #1d9bf0;
  color: #fff;
  border: 2px solid var(--bg-dark);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  font-size: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-info .name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
}

.brand-info .sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

/* HERO SECTION - 2-COLUMN POWERHOUSE */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  position: relative;
  z-index: 1;
}

.hero-grid-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid var(--border-gold);
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.badge-tag {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.15);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.hero-heading {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

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

.tg-handle-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(34, 158, 217, 0.08);
  border: 1px solid rgba(34, 158, 217, 0.25);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 2.2rem;
}

.tg-handle-pill .tg-icon {
  color: var(--telegram-blue);
}

/* Hero Visual Card */
.hero-col-visual {
  position: relative;
}

.hero-visual-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 24px;
  padding: 0.85rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 215, 0, 0.2);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  backdrop-filter: blur(16px);
}

.hero-visual-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(255, 215, 0, 0.35);
}

.hero-card-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
  filter: blur(35px);
  pointer-events: none;
  z-index: 0;
}

.hero-img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 430px;
  background: #000;
  z-index: 1;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s ease;
}

.hero-visual-card:hover .hero-main-img {
  transform: scale(1.04);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-visual-card:hover .hero-img-overlay {
  opacity: 1;
}

.zoom-hint {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.floating-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(10, 14, 22, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 0.6rem 0.9rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.chip-top-right {
  top: -16px;
  right: -16px;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.chip-bottom-left {
  bottom: 60px;
  left: -20px;
  border-color: var(--border-emerald);
  animation: floatSlow 4.5s ease-in-out infinite alternate-reverse;
}

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

.chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.chip-icon.gold {
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold);
}
.chip-icon.emerald {
  background: rgba(0, 255, 163, 0.15);
  color: var(--emerald);
}

.chip-text {
  display: flex;
  flex-direction: column;
}
.chip-text strong {
  font-size: 0.82rem;
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1.2;
}
.chip-text span {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.5rem 0.3rem;
  z-index: 1;
  position: relative;
}

.card-author .author-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.verified-blue {
  color: #1d9bf0;
  font-size: 0.85rem;
}
.card-author .author-status {
  font-size: 0.72rem;
  color: var(--emerald);
  font-weight: 600;
  display: block;
}

.hero-card-tg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--telegram-grad);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.hero-card-tg-btn:hover {
  transform: scale(1.05);
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 0.8rem;
  backdrop-filter: blur(12px);
  transition: transform 0.2s, border-color 0.2s;
  text-align: center;
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 0.2rem;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* $100M GOAL CARD */
.goal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 22px;
  padding: 2.2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 215, 0, 0.15);
}

.goal-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.goal-sub {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
}

.goal-numbers {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-family: var(--font-mono);
}

.goal-total {
  font-size: 1.2rem;
  color: var(--text-dim);
}

.goal-percent-badge {
  text-align: right;
}

.goal-percent-badge .pct {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.goal-percent-badge .pct-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.progress-bar-bg {
  width: 100%;
  height: 18px;
  background: #0c1017;
  border-radius: 999px;
  padding: 2px;
  border: 1px solid var(--border);
  position: relative;
  margin-bottom: 2rem;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #10b981 0%, #ffd700 80%, #f59e0b 100%);
  position: relative;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.progress-bar-glow {
  position: absolute;
  top: -3px;
  right: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px #ffd700, 0 0 20px #ffd700;
}

.milestone-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.step.done .step-dot {
  background: rgba(0, 255, 163, 0.15);
  border-color: var(--emerald);
  color: var(--emerald);
}

.step.current .step-dot.active {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.step.target .step-dot.gold {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.step-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}

.step-info {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* RESULTS & RECEIPTS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trade-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
  transition: transform 0.2s, border-color 0.2s;
}

.trade-card:hover {
  transform: translateY(-4px);
  border-color: var(--emerald);
}

.trade-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.trade-pair {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.9rem;
}

.trade-tag {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.trade-pnl {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.trade-profit {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.trade-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-dim);
}

.trade-meta .verified {
  color: var(--emerald);
  font-weight: 700;
}

/* STRATEGY 3-COLUMN PILLARS */
.pillars-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
}

.pillar-box:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.pillar-box h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.pillar-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA BANNER */
.cta-section {
  padding: 3rem 0 5rem;
}

.cta-box {
  background: linear-gradient(135deg, rgba(20, 26, 38, 0.95) 0%, rgba(10, 14, 22, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.15);
}

.cta-top-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-link-text {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.cta-link-text a {
  color: var(--telegram-blue);
  text-decoration: none;
  font-weight: 600;
}

.cta-link-text a:hover {
  text-decoration: underline;
}

/* FOOTER */
.footer {
  background: #040508;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.footer-brand .f-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
}

.footer-brand .f-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.tg-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(34, 158, 217, 0.1);
  border: 1px solid rgba(34, 158, 217, 0.3);
  color: #ffffff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tg-footer-link i {
  color: var(--telegram-blue);
  font-size: 1.1rem;
}

.tg-footer-link:hover {
  background: rgba(34, 158, 217, 0.2);
  border-color: var(--telegram-blue);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* LIFESTYLE & PROOF SECTION */
.lifestyle-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0) 0%, rgba(12, 17, 28, 0.45) 50%, rgba(7, 9, 14, 0) 100%);
  position: relative;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.lifestyle-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.lifestyle-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(255, 215, 0, 0.18);
}

.lifestyle-img-wrap {
  position: relative;
  width: 100%;
  height: 330px;
  background: #000;
  overflow: hidden;
}

.lifestyle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.55s ease;
}

.lifestyle-card:hover .lifestyle-img-wrap img {
  transform: scale(1.08);
}

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lifestyle-card:hover .lifestyle-overlay {
  opacity: 1;
}

.lifestyle-zoom-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.6);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.lifestyle-card:hover .lifestyle-zoom-btn {
  transform: scale(1);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

.gold-badge {
  background: rgba(255, 215, 0, 0.25);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

.emerald-badge {
  background: rgba(0, 255, 163, 0.25);
  color: var(--emerald);
  border: 1px solid var(--border-emerald);
}

.cyan-badge {
  background: rgba(0, 229, 255, 0.25);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.4);
}

.lifestyle-info {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lifestyle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.lifestyle-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.lifestyle-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.lifestyle-desc strong {
  color: #fff;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.92);
  backdrop-filter: blur(18px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: popIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popIn {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-gold);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.1);
}

.lightbox-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(255, 215, 0, 0.25);
  max-height: 75vh;
  display: flex;
  background: #000;
}

.lightbox-img-wrap img {
  max-width: 85vw;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--text-main);
  font-size: 0.92rem;
  text-align: center;
  max-width: 700px;
  background: rgba(15, 20, 30, 0.9);
  border: 1px solid var(--border);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-grid-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-col-content .hero-actions {
    justify-content: center;
  }
  .hero-col-visual {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-img-frame {
    height: 380px;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .lifestyle-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-3-grid {
    grid-template-columns: 1fr;
  }
  .milestone-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .milestone-steps {
    grid-template-columns: 1fr;
  }
  .goal-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .goal-percent-badge {
    text-align: left;
  }
  .chip-top-right {
    top: -10px;
    right: -10px;
  }
  .chip-bottom-left {
    bottom: 50px;
    left: -10px;
  }
  .hero-img-frame {
    height: 320px;
  }
  .lightbox-caption {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
  }
}

