/* ==========================================================
   GENESIS INVESTIČNÍ SPOLEČNOST
   Ultra-Luxury Web3 Design System v2.0
   Emerald + Champagne Gold + Glassmorphism
========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* Core palette & Client overrides */
  --primary-bg:       #FFFFFF;
  --luxury-gray:      #F9F9FB;
  --brand-emerald:    #044A22;
  --accent-gold:      #D4AF37;
  --success-green:    #2E7D32;
  --warning-orange:   #ED6C02;

  /* Aliases for existing */
  --emerald:          var(--brand-emerald);
  --emerald-mid:      #0D6B3A;
  --emerald-light:    #1A8A50;
  --emerald-pale:     #EAF4EE;
  --emerald-ultra:    #F0F8F3;
  --emerald-glow:     rgba(4, 74, 34, 0.10);

  --gold:             var(--accent-gold);
  --gold-light:       #E8CC6A;
  --gold-pale:        #FBF6E8;

  --white:            var(--primary-bg);
  --gray-50:          var(--luxury-gray);
  --gray-100:         #F2F2F6;
  --gray-200:         #E5E5EC;
  --gray-300:         #CBCBD8;
  --gray-500:         #7F7F9A;
  --gray-700:         #3D3D55;
  --charcoal:         #0E0E1A;

  /* Glass */
  --glass-bg:         rgba(255, 255, 255, 0.72);
  --glass-border:     rgba(255, 255, 255, 0.55);
  --glass-shadow:     0 8px 40px rgba(4, 74, 34, 0.08), 0 1px 0 rgba(255,255,255,0.9) inset;

  /* Typography */
  --font-display:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'Inter', system-ui, sans-serif;
  --font-mono:        'DM Mono', monospace;

  /* Spacing */
  --section-pad:      128px;
  --container-max:    1240px;
  --container-pad:    40px;

  /* Animation */
  --ease-luxury:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-fast:    0.2s;
  --duration-med:     0.45s;
  --duration-slow:    0.75s;
  --duration-cinema:  1.1s;

  /* Radii */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   36px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(4, 74, 34, 0.06);
  --shadow-md:  0 8px 40px rgba(4, 74, 34, 0.10);
  --shadow-lg:  0 20px 80px rgba(4, 74, 34, 0.14);
  --shadow-xl:  0 40px 120px rgba(4, 74, 34, 0.18);
  --shadow-gld: 0 8px 32px rgba(212, 175, 55, 0.25);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--emerald); color: white; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--luxury-gray); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--brand-emerald), var(--accent-gold)); border-radius: 3px; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.section { padding: var(--section-pad) 0; }
.section--gray { background: var(--luxury-gray); }
.section--dark { background: var(--brand-emerald); color: var(--white); }

/* ===== ANTI-DEEPFAKE BANNER ===== */
.anti-deepfake-banner {
  background: var(--brand-emerald);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  z-index: 2000;
  letter-spacing: 0.02em;
}
.anti-deepfake-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.anti-deepfake-banner strong {
  color: var(--accent-gold);
  font-weight: 600;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ===========================
   NAVIGATION — GLASSMORPHIC
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--duration-med) var(--ease-luxury);
  padding: 0;
}
.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 rgba(4,74,34,0.06), 0 4px 24px rgba(4,74,34,0.04);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 48px;
  max-width: 1440px;
  margin: 0 auto;
}
/* Logo */
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  transition: opacity var(--duration-fast);
}
.nav__logo:hover { opacity: 0.8; }
.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 1px;
}
/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-700);
  transition: color var(--duration-fast);
  position: relative;
  padding: 4px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--duration-med) var(--ease-luxury);
}
.nav__link:hover { color: var(--emerald); }
.nav__link:hover::after { width: 100%; }
.nav__link--featured {
  color: var(--emerald);
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1.5px solid var(--gold);
}
.nav__link--featured::after { display: none; }
.nav__cta {
  padding: 10px 24px;
  background: var(--emerald);
  color: white !important;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--duration-med) var(--ease-luxury);
  border: 1px solid transparent;
}
.nav__cta:hover {
  background: transparent;
  color: var(--emerald) !important;
  border-color: var(--emerald);
  transform: translateY(-1px);
}
.nav__cta::after { display: none !important; }
/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--duration-med) var(--ease-luxury);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
/* Ambient gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -15%; right: -10%;
  width: 70vw; height: 70vw;
  background: radial-gradient(ellipse at center, rgba(4,74,34,0.055) 0%, transparent 65%);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -8%;
  width: 50vw; height: 50vw;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.06) 0%, transparent 65%);
  pointer-events: none;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(2%, -3%) scale(1.04); }
  66%       { transform: translate(-2%, 2%) scale(0.97); }
}
/* Gold line accent */
.hero__gold-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.6;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px var(--container-pad) 0;
}
/* Left content */
.hero__content {}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp var(--duration-cinema) var(--ease-luxury) 0.1s forwards;
}
.hero__eyebrow-line {
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp var(--duration-cinema) var(--ease-luxury) 0.25s forwards;
}
.hero__title strong {
  font-weight: 600;
  color: var(--emerald);
  display: block;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  animation: heroFadeUp var(--duration-cinema) var(--ease-luxury) 0.4s forwards;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp var(--duration-cinema) var(--ease-luxury) 0.55s forwards;
}
/* Stat row */
.hero__stats {
  display: flex;
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--gray-200);
  padding-top: 36px;
  opacity: 0;
  animation: heroFadeUp var(--duration-cinema) var(--ease-luxury) 0.7s forwards;
}
.hero__stat {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid var(--gray-200);
}
.hero__stat:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.hero__stat:nth-child(2) { padding-left: 32px; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--emerald);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 0.72rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}
/* Right: 3D Emblem */
.hero__emblem-wrap {
  position: relative;
  flex-shrink: 0;
  opacity: 0;
  animation: heroEmblemIn 1.4s var(--ease-luxury) 0.6s forwards;
}
@keyframes heroEmblemIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95) rotate(-3deg); }
  to   { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}
.hero__emblem {
  width: 420px; height: 420px;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.hero__emblem img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: emblemRotate 20s linear infinite;
  transform-origin: center;
}
@keyframes emblemRotate {
  0%, 100% { transform: rotate(-1deg) scale(1); filter: brightness(1); }
  25%       { transform: rotate(1deg) scale(1.015); filter: brightness(1.04); }
  50%       { transform: rotate(-0.5deg) scale(1.02); filter: brightness(1); }
  75%       { transform: rotate(1.5deg) scale(1.01); filter: brightness(1.03); }
}
/* Glass ring around emblem */
.hero__emblem-ring {
  position: absolute;
  inset: -20px;
  border-radius: calc(var(--r-xl) + 20px);
  border: 1px solid rgba(212,175,55,0.2);
  animation: ringPulse 4s ease-in-out infinite;
}
.hero__emblem-ring2 {
  position: absolute;
  inset: -40px;
  border-radius: calc(var(--r-xl) + 40px);
  border: 1px solid rgba(4,74,34,0.08);
  animation: ringPulse 4s ease-in-out 1.5s infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.02); }
}
/* Float badge on emblem */
.hero__emblem-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: badgeFloat 6s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.hero__emblem-badge-icon { font-size: 1.4rem; }
.hero__emblem-badge-text { display: flex; flex-direction: column; }
.hero__emblem-badge-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
}
.hero__emblem-badge-lbl {
  font-size: 0.65rem;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--duration-med) var(--ease-luxury);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
}
.btn--lg { padding: 18px 40px; font-size: 0.9rem; }
.btn--md { padding: 14px 28px; font-size: 0.85rem; }
.btn--sm { padding: 10px 20px; font-size: 0.78rem; }

.btn--emerald {
  background: var(--emerald);
  color: white;
  border-color: var(--emerald);
  box-shadow: 0 4px 20px rgba(4,74,34,0.25);
}
.btn--emerald:hover {
  background: var(--emerald-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(4,74,34,0.35);
}
.btn--gold {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  box-shadow: var(--shadow-gld);
}
.btn--gold:hover {
  background: #C09A2A;
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(212,175,55,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}
.btn--outline:hover {
  background: var(--emerald);
  color: white;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn--ghost:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===========================
   SECTION HEADINGS
=========================== */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.sec-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.sec-title strong { font-weight: 600; color: var(--emerald); }
.sec-title em { font-style: italic; color: var(--gold); }
.sec-title--white { color: white; }
.sec-title--white strong { color: var(--gold-light); }
.sec-desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-top: 16px;
  font-weight: 300;
  max-width: 560px;
}
.sec-header { margin-bottom: 72px; }
.sec-header--center { text-align: center; }
.sec-header--center .sec-eyebrow { justify-content: center; }
.sec-header--center .sec-desc { margin-left: auto; margin-right: auto; }

/* ===========================
   O NÁS — ABOUT
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92);
}
/* Gold corner accent */
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 4px 0 0 0;
  opacity: 0.7;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 4px 0;
  opacity: 0.7;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--emerald);
  line-height: 1;
}
.about-badge-lbl {
  font-size: 0.65rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.about-content {}
.about-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--emerald);
  line-height: 1.6;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  margin-bottom: 32px;
}
.about-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}
.about-text strong { font-weight: 600; color: var(--charcoal); }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.about-feature {
  padding: 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: all var(--duration-med) var(--ease-luxury);
}
.about-feature:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.about-feature-icon { font-size: 1.5rem; margin-bottom: 10px; }
.about-feature-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.about-feature-desc {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===========================
   ROZVOJ — GROWTH CHART
=========================== */
.growth-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.growth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald) 0%, var(--emerald-light) 60%, var(--gold) 100%);
}
/* Background emerald radial */
.growth-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(ellipse, rgba(4,74,34,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.growth-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.growth-value {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--emerald);
  line-height: 1;
  letter-spacing: -0.03em;
}
.growth-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--emerald-pale);
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-top: 8px;
}
.growth-legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.growth-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 400;
}
.growth-legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.chart-canvas { width: 100%; height: 340px; }
.growth-disclaimer {
  margin-top: 20px;
  font-size: 0.68rem;
  color: var(--gray-300);
  font-style: italic;
  line-height: 1.6;
}

/* ===========================
   INVESTMENT CARDS — 3D DECK
=========================== */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.invest-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--duration-med) var(--ease-luxury);
  box-shadow: var(--shadow-sm);
}
.invest-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}
/* Gold top accent */
.invest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--duration-med) var(--ease-luxury);
  transform-origin: left;
}
.invest-card:hover::before { transform: scaleX(1); }
/* Card image area */
.invest-card-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  padding: 32px;
  background: var(--gray-50);
  transition: transform var(--duration-slow) var(--ease-luxury), filter var(--duration-slow) var(--ease-luxury);
}
.invest-card:hover .invest-card-img {
  transform: scale(1.04) translateY(-4px);
  filter: drop-shadow(0 20px 40px rgba(4,74,34,0.12));
}
/* Shimmer overlay on strategic card */
.invest-card--shimmer .invest-card-img {
  animation: shimmerGlow 3s ease-in-out infinite;
}
@keyframes shimmerGlow {
  0%, 100% { filter: drop-shadow(0 0 0px transparent) brightness(1); }
  50%       { filter: drop-shadow(0 0 24px rgba(212,175,55,0.5)) brightness(1.08); }
}
.invest-card-body { padding: 28px 32px 36px; }
.invest-card-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.invest-card-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}
.invest-card-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 300;
}
.invest-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.invest-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-pale);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.invest-card-arrow {
  width: 32px; height: 32px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--duration-med) var(--ease-luxury);
}
.invest-card:hover .invest-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
/* Coming soon pulse */
.invest-card--locked .invest-card-img {
  filter: saturate(0.6) brightness(1.05);
}
.coming-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.coming-pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(212,175,55,0); }
}

/* ===========================
   CALCULATOR
=========================== */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}
.calc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 52px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.calc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
}
.calc-group { margin-bottom: 36px; }
.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.calc-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.calc-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--emerald);
}
/* Range input */
input[type=range].calc-range {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--gray-200);
  outline: none;
  cursor: pointer;
}
input[type=range].calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--emerald);
  box-shadow: 0 2px 12px rgba(4,74,34,0.3);
  cursor: pointer;
  transition: all var(--duration-fast);
}
input[type=range].calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}
input[type=range].calc-range::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--emerald);
  box-shadow: 0 2px 12px rgba(4,74,34,0.3);
  cursor: pointer;
}
.calc-range-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--gray-300);
  margin-top: 8px;
  font-family: var(--font-mono);
}
.calc-divider { height: 1px; background: var(--gray-100); margin: 32px 0; }
/* Result box */
.calc-result {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-mid) 100%);
  border-radius: var(--r-lg);
  padding: 36px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.calc-result::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 140px; height: 140px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.calc-result::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 100px; height: 100px;
  background: rgba(212,175,55,0.06);
  border-radius: 50%;
}
.calc-result-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.calc-result-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.calc-result-gain {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
.calc-tax-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.tooltip {
  position: relative;
  display: inline-flex;
  cursor: help;
}
.tooltip-icon {
  font-size: 0.8rem;
  opacity: 0.8;
}
.tooltip-text {
  visibility: hidden;
  width: 260px;
  background-color: var(--charcoal);
  color: var(--white);
  text-align: left;
  border-radius: var(--r-sm);
  padding: 12px;
  position: absolute;
  z-index: 10;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.75rem;
  line-height: 1.5;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}
.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--charcoal) transparent transparent transparent;
}
.tooltip:hover .tooltip-text,
.tooltip:focus .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.calc-bonus {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--r-pill);
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  animation: bonusPop 0.5s var(--ease-luxury);
}
@keyframes bonusPop {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.calc-bonus.visible { display: flex; }
.calc-params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.calc-param {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 16px 18px;
  text-align: center;
}
.calc-param-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--emerald);
  line-height: 1;
}
.calc-param-lbl {
  font-size: 0.65rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.calc-fee {
  background: var(--gold-pale);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: 0.8rem;
  color: var(--gray-700);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.calc-fee-icon { color: var(--gold); flex-shrink: 0; font-size: 1rem; margin-top: 1px; }
/* Info side */
.calc-info { padding: 8px 0; }
.calc-info-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.3;
}
.calc-info-text {
  font-size: 0.925rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}
.calc-rates {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 32px;
}
.calc-rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--duration-fast);
}
.calc-rate-row:last-child { border-bottom: none; }
.calc-rate-row:hover { background: var(--gray-50); }
.calc-rate-row--special {
  background: var(--emerald-ultra);
  border-top: 1px solid var(--emerald-pale);
  border-bottom: none;
}
.calc-rate-row--special:hover { background: var(--emerald-pale); }
.calc-rate-year { color: var(--gray-500); font-size: 0.85rem; }
.calc-rate-val { font-weight: 700; color: var(--emerald); font-family: var(--font-display); font-size: 1.05rem; }
.calc-rate-val--gold { color: var(--gold); }

/* Gold dust canvas (loyalty bonus animation) */
#gold-dust-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  display: none;
}

/* ===========================
   FORM MODAL
=========================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-med) var(--ease-luxury);
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 12, 0.65);
  backdrop-filter: blur(6px);
}
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 52px;
  max-width: 660px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(32px) scale(0.97);
  transition: transform var(--duration-slow) var(--ease-luxury);
}
.modal-backdrop.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-500);
  font-size: 1.1rem;
  transition: all var(--duration-fast);
  border: none;
}
.modal-close:hover { background: var(--gray-200); color: var(--charcoal); }
.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
}
.f-toggle {
  display: flex;
  background: var(--gray-100);
  border-radius: var(--r-md);
  padding: 4px;
  margin-bottom: 28px;
}
.f-toggle-btn {
  flex: 1;
  padding: 10px;
  border-radius: calc(var(--r-md) - 4px);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: all var(--duration-med) var(--ease-luxury);
  text-align: center;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.f-toggle-btn.active {
  background: var(--white);
  color: var(--emerald);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.f-sec-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--emerald-pale);
}
.f-group { margin-bottom: 18px; }
.f-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.f-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: all var(--duration-fast);
}
.f-input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px var(--emerald-glow);
}
.f-input::placeholder { color: var(--gray-300); }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-hint { font-size: 0.68rem; color: var(--gray-300); margin-top: 5px; line-height: 1.5; }
.f-submit {
  width: 100%;
  padding: 18px;
  background: var(--emerald);
  color: white;
  border: none;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 8px;
  transition: all var(--duration-med) var(--ease-luxury);
  font-family: inherit;
}
.f-submit:hover {
  background: var(--emerald-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(4,74,34,0.3);
}

.f-submit:disabled {
  background: var(--gray-300);
  color: var(--white);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.legal-checkbox-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 16px;
  margin-bottom: 24px;
}
.legal-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.legal-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--brand-emerald);
}
.legal-checkbox-text {
  font-size: 0.85rem;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ===========================
   SCORECARD 2.0
=========================== */
.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.scorecard-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-med) var(--ease-luxury);
}
.scorecard-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-emerald);
  transform: translateY(-4px);
}
.scorecard-num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gray-200);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  transition: color var(--duration-fast);
}
.scorecard-item:hover .scorecard-num {
  color: var(--emerald-glow);
}
.scorecard-item-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 12px;
  padding-right: 40px;
}
.scorecard-item-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.scorecard-item-desc strong {
  color: var(--brand-emerald);
  font-weight: 600;
}

/* ===========================
   QR CONFIRM MODAL
=========================== */
.qr-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-med) var(--ease-luxury);
}
.qr-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.qr-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 12, 0.7);
  backdrop-filter: blur(8px);
}
.qr-box {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.93);
  transition: transform var(--duration-slow) var(--ease-luxury);
}
.qr-modal-backdrop.open .qr-box { transform: scale(1); }
.qr-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.qr-icon {
  width: 68px; height: 68px;
  background: var(--emerald-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}
.qr-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.qr-sub {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}
.qr-wrap {
  display: inline-block;
  padding: 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.qr-vs {
  background: var(--emerald-ultra);
  border-radius: var(--r-md);
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--emerald);
  margin-bottom: 24px;
}
.qr-vs-lbl { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); font-family: var(--font-body); margin-bottom: 4px; }
.qr-alert {
  background: var(--gold-pale);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.7;
  text-align: left;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.qr-alert-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.qr-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--gray-300);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ===========================
   CONTACT
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all var(--duration-med) var(--ease-luxury);
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.contact-card-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--gray-50);
}
.contact-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.contact-card-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-card-val {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.contact-card-desc { font-size: 0.78rem; color: var(--gray-500); line-height: 1.5; }
/* CTA block */
.contact-cta {
  background: var(--emerald);
  border-radius: var(--r-xl);
  padding: 64px 52px;
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.contact-cta::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 180px; height: 180px;
  background: rgba(212,175,55,0.06);
  border-radius: 50%;
}
.contact-cta-eye {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.contact-cta-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.contact-cta-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.04em;
}
.footer-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand-desc { font-size: 0.85rem; line-height: 1.75; margin-bottom: 24px; font-weight: 300; }
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--duration-fast);
}
.footer-col-link:hover { color: white; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 28px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}
.cnb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cnb-item {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.cnb-item::before {
  content: '✓';
  color: var(--accent-gold);
}
.footer-legal {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.65;
  margin-top: 16px;
}
.footer-gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.25;
  margin-bottom: 56px;
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--duration-slow) var(--ease-luxury), transform var(--duration-slow) var(--ease-luxury);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity var(--duration-slow) var(--ease-luxury), transform var(--duration-slow) var(--ease-luxury);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity var(--duration-slow) var(--ease-luxury), transform var(--duration-slow) var(--ease-luxury);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__emblem { width: 340px; height: 340px; margin: 0 auto; }
  .hero__emblem-wrap { order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .calc-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 80px; --container-pad: 24px; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 999;
  }
  .nav__links.open .nav__link { font-size: 1.1rem; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 0 24px; }
  .hero__title { font-size: 3rem; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .hero__stat { border-right: none !important; padding-left: 0 !important; border-bottom: 1px solid var(--gray-200); padding-bottom: 16px; }
  .hero__stat:last-child { border-bottom: none; padding-bottom: 0; }
  .hero__emblem { width: 280px; height: 280px; }
  .invest-grid { grid-template-columns: 1fr; }
  .calc-card { padding: 32px 24px; }
  .about-features { grid-template-columns: 1fr; }
  .modal-box { padding: 36px 24px; }
  .f-grid { grid-template-columns: 1fr; }
  .qr-box { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-cta { padding: 44px 32px; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 2.5rem; }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; }
  .growth-card { padding: 28px 20px; }
  .calc-result-amount { font-size: 2.4rem; }
}
