/* ============================================================
   GREENFIELD CAPITAL INVESTMENT — Master Stylesheet
   Brand: #1e5c52 (forest green), #fff (white), #f5f0e8 (cream)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --green:       #1e5c52;
  --green-mid:   #2d8b7a;
  --green-light: #3ab89e;
  --green-pale:  #e8f5f3;
  --green-dark:  #143d36;
  --cream:       #f5f0e8;
  --cream-dark:  #ede4d3;
  --white:       #ffffff;
  --text:        #1a2620;
  --text-mid:    #4a6360;
  --text-light:  #8aa8a4;
  --gold:        #d4a843;
  --gold-light:  #f0c96a;
  --error:       #c0392b;
  --success:     #27ae60;
  --warning:     #e67e22;

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

  --shadow-sm:   0 2px 12px rgba(30,92,82,0.08);
  --shadow-md:   0 8px 32px rgba(30,92,82,0.14);
  --shadow-lg:   0 20px 60px rgba(30,92,82,0.20);
  --shadow-xl:   0 32px 100px rgba(30,92,82,0.28);

  --transition:  cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --font-display:'DM Serif Display', Georgia, serif;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── INTRO SPLASH ────────────────────────────────────────── */
#intro-splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  animation: splashExit 0.6s ease 3s forwards;
}
@keyframes splashExit {
  to { opacity: 0; pointer-events: none; }
}
.splash-video-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.splash-video-bg video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.25;
}
.splash-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,61,54,0.92) 0%, rgba(30,92,82,0.85) 100%);
}
.splash-content {
  position: relative; z-index: 2;
  text-align: center; padding: 40px;
  animation: splashFadeIn 1s ease 0.3s both;
}
@keyframes splashFadeIn { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.splash-logo-ring {
  width: 100px; height: 100px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse { 0%,100%{box-shadow:0 0 0 0 rgba(212,168,67,0.4);} 50%{box-shadow:0 0 0 20px rgba(212,168,67,0);} }
.splash-logo-inner { font-size: 48px; }
.splash-company {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  animation: splashFadeIn 1s ease 0.8s both;
}
.splash-company span { color: var(--gold-light); }
.splash-tagline {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-top: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: splashFadeIn 1s ease 1.3s both;
}
.splash-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  margin: 30px auto 0;
  overflow: hidden;
}
.splash-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  animation: splashLoad 2s ease 0.5s forwards;
}
@keyframes splashLoad { to { width: 100%; } }
.splash-words {
  margin-top: 28px;
  min-height: 32px;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  letter-spacing: 1px;
  animation: splashFadeIn 0.5s ease 2s both;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: all 0.3s var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
#navbar.dark {
  background: rgba(20,61,54,0.95);
  backdrop-filter: blur(20px);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
}
.nav-logo-text strong { display: block; color: var(--green); }
.nav-logo-text span { font-size: 11px; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-body); font-weight: 400; }
#navbar.dark .nav-logo-text strong { color: var(--white); }
#navbar.dark .nav-logo-text span { color: rgba(255,255,255,0.5); }
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: all 0.2s;
}
#navbar.dark .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a:hover { background: var(--green-pale); color: var(--green); }
#navbar.dark .nav-links a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.nav-cta {
  display: flex; gap: 10px; align-items: center;
}
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; transition: all 0.25s var(--transition); cursor: pointer; font-family: var(--font-body); }
.btn-outline { border: 2px solid var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-primary { background: linear-gradient(135deg, var(--green), var(--green-mid)); color: var(--white); box-shadow: 0 4px 16px rgba(30,92,82,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,92,82,0.4); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--text); box-shadow: 0 4px 16px rgba(212,168,67,0.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,67,0.45); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-md); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
#navbar.dark .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
#navbar.dark .btn-outline:hover { background: rgba(255,255,255,0.15); }

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

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 50%, var(--green-mid) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 100px 5% 60px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-orb-1 { width: 600px; height: 600px; background: var(--green-light); top: -200px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--gold); bottom: -100px; left: -50px; animation-delay: 3s; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--green-mid); top: 30%; left: 30%; animation-delay: 6s; }
@keyframes orbFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,30px) scale(1.1); } }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--gold-light);
  padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px;
  animation: heroFade 0.6s ease 0.2s both;
}
@keyframes heroFade { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: heroFade 0.6s ease 0.4s both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-text {
  font-size: 18px; color: rgba(255,255,255,0.75);
  max-width: 500px; line-height: 1.7;
  margin-bottom: 40px;
  animation: heroFade 0.6s ease 0.6s both;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: heroFade 0.6s ease 0.8s both;
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 60px; flex-wrap: wrap;
  animation: heroFade 0.6s ease 1.0s both;
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 700; color: var(--white);
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 1px; }

.hero-card-stack {
  position: relative; height: 500px;
  animation: heroFade 0.8s ease 0.5s both;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
  transition: all 0.4s var(--transition);
}
.hero-card-main {
  width: 340px; top: 0; right: 0;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  box-shadow: var(--shadow-xl);
}
.hero-card-2 {
  width: 280px; bottom: 30px; left: 0;
  animation: cardFloat2 4s ease-in-out infinite alternate;
}
.hero-card-3 {
  width: 220px; top: 60px; left: 50px;
  animation: cardFloat3 5s ease-in-out infinite alternate;
}
@keyframes cardFloat2 { from { transform: translateY(0); } to { transform: translateY(-15px); } }
@keyframes cardFloat3 { from { transform: translateY(-10px) rotate(-3deg); } to { transform: translateY(10px) rotate(2deg); } }
.card-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.6; margin-bottom: 8px; }
.card-value { font-family: var(--font-heading); font-size: 32px; font-weight: 700; }
.card-value-green { color: var(--green); }
.card-tag { display: inline-block; background: var(--green-pale); color: var(--green); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-top: 8px; }
.card-mini-chart { display: flex; align-items: flex-end; gap: 4px; margin-top: 16px; height: 40px; }
.chart-bar { flex: 1; background: var(--green); opacity: 0.6; border-radius: 3px 3px 0 0; transition: all 0.3s; }
.chart-bar:hover { opacity: 1; }
.hero-card-2 .card-value { font-size: 22px; color: var(--white); }
.hero-card-3 .card-value { font-size: 20px; }

/* ── SECTIONS ────────────────────────────────────────────── */
section { padding: 100px 5%; }
.section-center { text-align: center; }
.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.section-title em { color: var(--green); font-style: italic; }
.section-sub { font-size: 18px; color: var(--text-mid); max-width: 600px; margin: 0 auto 60px; line-height: 1.7; }
.max-w { max-width: 1400px; margin: 0 auto; }

/* ── TRUST BAR ───────────────────────────────────────────── */
#trust-bar {
  background: var(--green-dark);
  padding: 24px 5%;
  overflow: hidden;
}
.trust-track {
  display: flex; gap: 60px; align-items: center;
  animation: scrollTrack 20s linear infinite;
  white-space: nowrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
  flex-shrink: 0;
}
.trust-item span:first-child { font-size: 20px; }
.trust-divider { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes scrollTrack { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── CATEGORIES ──────────────────────────────────────────── */
#categories { background: var(--white); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 32px; }
.cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--transition);
  cursor: pointer;
  position: relative;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.cat-card-img {
  height: 240px;
  background-size: cover; background-position: center;
  position: relative;
}
.cat-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,61,54,0.9) 0%, transparent 60%);
}
.cat-heat {
  position: absolute; top: 16px; right: 16px;
  padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
}
.heat-blazing { background: #ff4d2e; color: #fff; }
.heat-hot     { background: #ff8c42; color: #fff; }
.heat-warm    { background: var(--gold); color: var(--text); }
.heat-cool    { background: var(--green-pale); color: var(--green); }
.cat-pct {
  position: absolute; bottom: 16px; left: 16px;
  color: rgba(255,255,255,0.85); font-size: 13px;
}
.cat-pct strong { font-size: 22px; font-weight: 700; display: block; color: #fff; }
.cat-body { padding: 28px; }
.cat-type { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.cat-fixed { color: var(--green); }
.cat-flexible { color: var(--gold); }
.cat-name { font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin: 8px 0 12px; color: var(--text); }
.cat-desc { color: var(--text-mid); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.cat-plans-preview { display: flex; gap: 8px; flex-wrap: wrap; }
.plan-chip {
  background: var(--green-pale); color: var(--green);
  font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
}

/* ── PLANS TABLE ─────────────────────────────────────────── */
.plans-wrapper { overflow-x: auto; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; min-width: 900px; }
.plan-card {
  border-radius: var(--radius-lg);
  border: 2px solid var(--cream-dark);
  padding: 32px 24px;
  background: var(--white);
  transition: all 0.35s var(--transition);
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--transition);
}
.plan-card:hover { border-color: var(--green); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card:hover::before { transform: scaleX(1); }
.plan-card.featured {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  color: var(--white); border-color: var(--green);
}
.plan-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(1); }
.plan-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.badge-hot     { background: #ff4d2e; color: #fff; }
.badge-elite   { background: var(--gold); color: var(--text); }
.badge-popular { background: var(--green); color: #fff; }
.badge-starter { background: var(--green-pale); color: var(--green); }
.badge-alpha   { background: #6c3df4; color: #fff; }
.badge-titan   { background: #1a1a2e; color: #fff; }
.badge-entry   { background: var(--cream-dark); color: var(--text); }
.badge-premium { background: var(--gold); color: var(--text); }
.plan-icon { font-size: 36px; margin-bottom: 16px; }
.plan-name { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.plan-card.featured .plan-name { color: var(--white); }
.plan-min { font-size: 13px; color: var(--text-mid); margin-bottom: 20px; }
.plan-card.featured .plan-min { color: rgba(255,255,255,0.65); }
.plan-return { font-family: var(--font-heading); font-size: 42px; font-weight: 900; color: var(--green); line-height: 1; }
.plan-card.featured .plan-return { color: var(--gold-light); }
.plan-return-label { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.plan-card.featured .plan-return-label { color: rgba(255,255,255,0.6); }
.plan-features { list-style: none; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--cream-dark); }
.plan-card.featured .plan-features li { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.plan-features li:last-child { border-bottom: none; }
.plan-features .check { color: var(--green); font-size: 16px; }
.plan-card.featured .plan-features .check { color: var(--gold-light); }
.plan-cta { margin-top: 28px; width: 100%; text-align: center; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
#how-it-works { background: var(--green-pale); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.step-item { text-align: center; }
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white);
  font-family: var(--font-heading); font-size: 24px; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute; top: 50%; left: 100%; width: 100px; height: 2px;
  background: var(--green-light); opacity: 0.4;
  transform: translateY(-50%);
}
.step-item:last-child .step-num::after { display: none; }
.step-icon { font-size: 28px; margin-bottom: 16px; }
.step-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── STATS COUNTER ───────────────────────────────────────── */
#stats-section {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 80px 5%;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 56px; font-weight: 900; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 15px; color: rgba(255,255,255,0.7); margin-top: 8px; }
.stat-icon { font-size: 28px; margin-bottom: 12px; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
#testimonials { background: var(--white); }
.testimonials-track-wrapper { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex; gap: 24px;
  animation: testimonialScroll 30s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes testimonialScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testimonial-card {
  min-width: 340px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-shrink: 0;
}
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.testi-text { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
}
.testi-name { font-weight: 700; color: var(--text); font-size: 15px; }
.testi-country { font-size: 13px; color: var(--text-light); }

/* ── LEVELS ──────────────────────────────────────────────── */
#levels-section { background: var(--cream); }
.levels-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.level-card {
  border-radius: var(--radius-lg);
  border: 2px solid var(--cream-dark);
  padding: 28px 20px;
  background: var(--white);
  text-align: center;
  transition: all 0.35s var(--transition);
  position: relative;
  overflow: hidden;
}
.level-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.level-card.level-5 {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  color: var(--white); border-color: var(--gold);
}
.level-stars { font-size: 22px; margin-bottom: 10px; color: var(--gold); }
.level-num { font-family: var(--font-heading); font-size: 32px; font-weight: 900; color: var(--green); }
.level-card.level-5 .level-num { color: var(--gold-light); }
.level-name { font-weight: 700; font-size: 14px; margin: 8px 0; text-transform: uppercase; letter-spacing: 1px; }
.level-bonus { font-size: 22px; font-weight: 800; color: var(--gold); font-family: var(--font-heading); margin: 12px 0; }
.level-perk { font-size: 12px; color: var(--text-mid); line-height: 1.6; }
.level-card.level-5 .level-perk { color: rgba(255,255,255,0.7); }

/* ── FAQ ─────────────────────────────────────────────────── */
#faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer;
  font-weight: 600; font-size: 16px; color: var(--text);
  gap: 20px;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--green-pale); color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  transition: all 0.3s var(--transition);
}
.faq-item.open .faq-icon { background: var(--green); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--transition);
  color: var(--text-mid); font-size: 15px; line-height: 1.8;
}
.faq-a p { padding-bottom: 24px; }
.faq-item.open .faq-a { max-height: 500px; }

/* ── CHATBOT ─────────────────────────────────────────────── */
#chat-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
}
.chat-toggle {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: white; font-size: 26px;
  transition: all 0.3s var(--transition);
  border: none;
}
.chat-toggle:hover { transform: scale(1.1); }
.chat-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; background: var(--gold);
  border-radius: 50%; border: 2px solid white;
  font-size: 11px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; justify-content: center;
}
.chat-window {
  position: absolute; bottom: 80px; right: 0;
  width: 360px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 500px;
}
.chat-window.open { display: flex; }
.chat-header {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  padding: 16px 20px; color: white;
  display: flex; align-items: center; gap: 12px;
}
.chat-avatar { font-size: 28px; }
.chat-header-text h4 { font-weight: 700; font-size: 15px; }
.chat-header-text p { font-size: 12px; opacity: 0.75; margin-top: 2px; }
.chat-online { width: 8px; height: 8px; background: #4cff72; border-radius: 50%; margin-left: auto; }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  max-height: 300px;
}
.chat-msg { display: flex; gap: 10px; max-width: 85%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-msg-avatar {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--green-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.chat-msg.user .chat-msg-avatar { background: var(--green); color: white; font-size: 13px; font-weight: 700; }
.chat-bubble-text {
  background: var(--cream); border-radius: 12px 12px 12px 0;
  padding: 12px 16px; font-size: 14px; line-height: 1.5; color: var(--text);
}
.chat-msg.user .chat-bubble-text { background: var(--green); color: white; border-radius: 12px 12px 0 12px; }
.chat-quick { padding: 0 16px 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.quick-btn {
  background: var(--green-pale); color: var(--green);
  border: 1px solid var(--green); border-radius: 100px;
  padding: 6px 14px; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.quick-btn:hover { background: var(--green); color: white; }
.chat-input { display: flex; padding: 12px 16px; border-top: 1px solid var(--cream-dark); gap: 8px; }
.chat-input input {
  flex: 1; border: 1px solid var(--cream-dark); border-radius: 100px;
  padding: 10px 16px; font-size: 14px; outline: none; font-family: var(--font-body);
}
.chat-input input:focus { border-color: var(--green); }
.chat-send {
  width: 38px; height: 38px;
  background: var(--green); color: white;
  border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
#footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 5% 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand-text { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all 0.2s;
}
.social-link:hover { background: var(--green-mid); transform: translateY(-3px); }
.footer-col h4 { font-weight: 700; color: white; margin-bottom: 20px; font-size: 15px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-reg { display: flex; align-items: center; gap: 8px; }
.reg-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px; border-radius: 100px; font-size: 12px; color: rgba(255,255,255,0.7);
}

/* ── DASHBOARD LAYOUT ────────────────────────────────────── */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.dash-sidebar {
  background: var(--green-dark);
  padding: 24px;
  position: fixed; left: 0; top: 0; bottom: 0; width: 260px;
  overflow-y: auto; z-index: 100;
  display: flex; flex-direction: column;
}
.dash-main { margin-left: 260px; padding: 32px; min-height: 100vh; background: #f8faf9; }
.dash-sidebar-logo { padding: 0 0 30px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 30px; }
.dash-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
  transition: all 0.2s; cursor: pointer; margin-bottom: 4px;
}
.dash-nav-item:hover, .dash-nav-item.active { background: rgba(255,255,255,0.1); color: white; }
.dash-nav-item.active { background: var(--green-mid); }
.dash-nav-icon { font-size: 18px; }
.dash-user-card {
  margin-top: auto; background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 16px;
  display: flex; align-items: center; gap: 12px;
}
.dash-user-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; color: white;
}
.dash-user-name { font-weight: 700; font-size: 14px; color: white; }
.dash-user-level { font-size: 12px; color: var(--gold-light); }
.dash-stars { font-size: 14px; color: var(--gold); }
.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.dash-topbar h1 { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--text); }
.dash-page-tag { font-size: 14px; color: var(--text-mid); margin-top: 4px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: white; border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green);
  transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-card-label { font-size: 13px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.stat-card-value { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--text); }
.stat-card-sub { font-size: 12px; color: var(--success); margin-top: 4px; }
.dash-section { background: white; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.dash-section h2 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { text-align: left; padding: 12px 16px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); border-bottom: 2px solid var(--cream-dark); }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--cream-dark); color: var(--text); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--green-pale); }
.badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.badge-active { background: #e8faf0; color: var(--success); }
.badge-pending { background: #fff8e6; color: var(--warning); }
.badge-matured { background: var(--green-pale); color: var(--green); }
.badge-failed { background: #fef0ef; color: var(--error); }
.progress-bar { width: 100%; height: 8px; background: var(--cream-dark); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-light)); border-radius: 100px; transition: width 1s ease; }
.level-progress { background: white; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.lp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.lp-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; }
.lp-level-badge { background: var(--gold); color: var(--text); padding: 6px 16px; border-radius: 100px; font-weight: 700; font-size: 14px; }
.lp-item { margin-bottom: 16px; }
.lp-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.lp-label span:first-child { color: var(--text-mid); }
.lp-label span:last-child { font-weight: 600; color: var(--text); }
.notification-dot { width: 8px; height: 8px; background: var(--error); border-radius: 50%; display: inline-block; }

/* ── FORMS ───────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--cream-dark); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  background: var(--white); transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(30,92,82,0.08); }
.form-error { color: var(--error); font-size: 13px; margin-top: 4px; }
.form-hint { color: var(--text-light); font-size: 13px; margin-top: 4px; }
.auth-card {
  background: white; border-radius: var(--radius-xl);
  padding: 52px; max-width: 480px;
  box-shadow: var(--shadow-xl);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-title { font-family: var(--font-heading); font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 8px; color: var(--text); }
.auth-sub { font-size: 15px; color: var(--text-mid); text-align: center; margin-bottom: 32px; }
.divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; color: var(--text-light); font-size: 13px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--cream-dark); }

/* ── ALERTS & FLASH ──────────────────────────────────────── */
.alert { padding: 16px 20px; border-radius: var(--radius-md); font-size: 14px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 12px; }
.alert-success { background: #e8faf0; color: #1a7a3c; border-left: 4px solid var(--success); }
.alert-error   { background: #fef0ef; color: #a93226; border-left: 4px solid var(--error); }
.alert-info    { background: var(--green-pale); color: var(--green); border-left: 4px solid var(--green); }
.alert-warning { background: #fff8e6; color: #a87000; border-left: 4px solid var(--warning); }

/* ── UTILITIES ───────────────────────────────────────────── */
.text-green { color: var(--green); }
.text-gold  { color: var(--gold); }
.text-center { text-align: center; }
.mt-1  { margin-top: 8px; }
.mt-2  { margin-top: 16px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 32px; }
.mt-6  { margin-top: 48px; }
.mb-4  { margin-bottom: 32px; }
.gap-2 { gap: 16px; }
.flex  { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.gold { color: var(--gold); }
.empty { color: var(--cream-dark); }
.hidden { display: none !important; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-in { animation: fadeIn 0.6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 1; transform: translateY(0); transition: all 0.7s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.js-loaded .reveal { opacity: 0; transform: translateY(30px); }
.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.6;} }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card-stack { display: none; }
  .levels-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 5%; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { transform: translateX(-100%); transition: transform 0.3s; }
  .dash-sidebar.open { transform: translateX(0); }
  .dash-main { margin-left: 0; padding: 20px; }
  .levels-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 32px 24px; }
  .cat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .levels-grid { grid-template-columns: 1fr; }
}

/* ── GOOGLE TRANSLATE ────────────────────────────────────── */
#google_translate_element { margin-left: 12px; }
.goog-te-gadget { font-size: 0 !important; }
.goog-te-gadget select {
  font-size: 13px; border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm); padding: 6px 10px;
  background: white; color: var(--text); cursor: pointer;
  font-family: var(--font-body); outline: none;
}
.goog-te-gadget .goog-te-gadget-simple { border: none !important; padding: 0 !important; }
.goog-logo-link { display: none !important; }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ── CURRENCY SELECTOR ───────────────────────────────────── */
.currency-select {
  background: var(--green-pale); border: 1px solid var(--green);
  color: var(--green); border-radius: var(--radius-sm);
  padding: 6px 12px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body); outline: none;
}