/* ==========================================================
   G3NE5IS INVESTIČNÍ SPOLEČNOST
   Brand System v3.0 — "Rooted Luxury"
   Deep Emerald + Matte Brass + Alabaster
   Brand motif: The Arc (zaoblení 20px everywhere)
========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&subset=latin,latin-ext&display=swap');

/* ===== BRAND DESIGN TOKENS ===== */
:root {
  /* === G3NE5IS Brand Palette === */
  --g-emerald:        #012B12;   /* Deep Forest — hero, primary dark */
  --g-emerald-2:      #023314;   /* Forest body */
  --g-emerald-3:      #04421C;   /* Hover states */
  --g-emerald-soft:   #1B5E35;   /* Lighter green for badges */
  --g-emerald-pale:   #EBF2ED;   /* Light tint backgrounds */
  --g-emerald-ultra:  #F4F8F5;   /* Section backgrounds */
  --g-gold:           #C8A96E;   /* Matte Brass — accent only */
  --g-gold-light:     #DFC090;   /* Hover gold */
  --g-gold-pale:      #F7F2E8;   /* Gold tint bg */
  --g-alabaster:      #FAFAF7;   /* Main page background */
  --g-paper:          #F3F3EE;   /* Alt section bg */
  --g-charcoal:       #111111;   /* Primary text */
  --g-ink:            #2A2A28;   /* Body text */
  --g-muted:          #6B6B65;   /* Secondary text */
  --g-light:          #A5A59F;   /* Placeholder text */
  --g-border:         #E2E2DC;   /* Dividers */
  --g-border-dark:    rgba(255,255,255,0.10); /* Dividers on dark */
  --g-white:          #FFFFFF;

  /* === Semantic Aliases (backward compat) === */
  --primary-bg:       var(--g-alabaster);
  --luxury-gray:      var(--g-paper);
  --brand-emerald:    var(--g-emerald-2);
  --accent-gold:      var(--g-gold);
  --emerald:          var(--g-emerald-2);
  --emerald-mid:      var(--g-emerald-3);
  --emerald-light:    var(--g-emerald-soft);
  --emerald-pale:     var(--g-emerald-pale);
  --emerald-ultra:    var(--g-emerald-ultra);
  --emerald-glow:     rgba(2, 51, 20, 0.08);
  --gold:             var(--g-gold);
  --gold-light:       var(--g-gold-light);
  --gold-pale:        var(--g-gold-pale);
  --white:            var(--g-alabaster);
  --gray-50:          var(--g-paper);
  --gray-100:         #E8E8E2;
  --gray-200:         var(--g-border);
  --gray-300:         #C0C0BA;
  --gray-500:         var(--g-muted);
  --gray-700:         var(--g-ink);
  --charcoal:         var(--g-charcoal);

  /* === Glass (used sparingly — nav only) === */
  --glass-bg:         rgba(250, 250, 247, 0.88);
  --glass-border:     rgba(0, 0, 0, 0.06);

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

  /* === Spacing === */
  --section-pad:      180px;   /* Increased for ultra-luxury gallery feel */
  --container-max:    1240px;
  --container-pad:    40px;

  /* === Brand Radius — "The Arc" motif === */
  --r-sm:    6px;
  --r-md:   12px;
  --r-lg:   20px;   /* PRIMARY brand radius — all cards */
  --r-xl:   32px;   /* Modals, large containers */
  --r-pill: 999px;

  /* === 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.18s;
  --duration-med:     0.4s;
  --duration-slow:    0.7s;
  --duration-cinema:  1.0s;

  /* === Shadows — Ultra Soft === */
  --shadow-sm:  0 4px 24px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.01);
  --shadow-md:  0 12px 48px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.02);
  --shadow-lg:  0 24px 80px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.03);
  --shadow-xl:  0 40px 120px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.04);
  --shadow-gld: 0 8px 32px rgba(200, 169, 110, 0.15);
  --shadow-grn: 0 8px 40px rgba(1, 43, 18, 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.75;
}
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; background: var(--g-alabaster); }
.section--paper { background: var(--g-paper); }
.section--dark { background: var(--g-emerald); color: white; }

/* ===========================
   TRUST STRIP — Brand Moment 2
=========================== */
.trust-strip {
  background: var(--g-charcoal);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-strip__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g-gold);
  font-weight: 600;
}
.trust-strip__val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #FFFFFF;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.trust-strip__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ===== 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 — Premium Always-Light Glassmorphic Bar
   G3NE5IS | holdingová společnost lockup
============================================================ */
.nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 1px 0 rgba(1,43,18,0.04), 0 6px 40px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 clamp(24px, 4vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}

/* ── LOGO LOCKUP ── */
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: 0;
  transition: opacity 0.25s ease;
}
.nav__logo:hover { opacity: 0.75; }

.nav__logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Wordmark: G3NE5IS */
.nav__logo-main {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--g-emerald-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
/* The "5" in G3NE5IS gets a gold colour */
.nav__logo-accent {
  color: var(--g-gold);
}

/* Vertical gold separator line */
.nav__logo-divider {
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--g-gold) 30%, var(--g-gold) 70%, transparent);
  opacity: 0.6;
  flex-shrink: 0;
}

/* Tagline: holdingová / společnost */
.nav__logo-sub {
  font-family: var(--font-body);
  font-size: clamp(0.48rem, 0.8vw, 0.58rem);
  font-weight: 500;
  color: var(--g-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
  white-space: nowrap;
}

/* ── DESKTOP LINKS ── */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}
.nav__close {
  display: none; /* hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--g-charcoal);
  padding: 4px;
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 12px;
}
.nav__link {
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g-ink);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--g-emerald-2);
  transition: width 0.35s var(--ease-luxury);
}
.nav__link:hover { color: var(--g-emerald-2); }
.nav__link:hover::after { width: 100%; }

.nav__link--featured {
  color: var(--g-emerald-2);
  font-weight: 600;
}
.nav__link--featured::after { display: none; }

/* CTA pill */
.nav__cta {
  padding: 9px 22px !important;
  background: var(--g-emerald-2) !important;
  color: white !important;
  border-radius: var(--r-pill);
  font-size: clamp(0.68rem, 1vw, 0.78rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-luxury);
  border: 1.5px solid var(--g-emerald-2);
}
.nav__cta:hover {
  background: var(--g-emerald-3) !important;
  border-color: var(--g-emerald-3) !important;
  box-shadow: var(--shadow-grn);
  transform: translateY(-1px);
  color: white !important;
}
.nav__cta::after { display: none !important; }

/* ── HAMBURGER ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--g-charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease-luxury);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── RESPONSIVE: 768px and below ── */
@media (max-width: 768px) {
  .nav__inner { height: 68px; }

  /* Show hamburger */
  .nav__hamburger { display: flex; }

  /* Logo: hide the tagline on very small screens to save space */
  .nav__logo-divider,
  .nav__logo-sub { display: none; }

  /* Full-screen overlay for mobile menu */
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(250, 250, 247, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
    padding: 32px 24px;
  }
  .nav__links.open {
    display: flex;
  }
  /* Show close button inside overlay */
  .nav__close {
    display: flex;
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    color: var(--g-charcoal);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin: 0;
    align-self: unset;
  }
  .nav__link {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--g-charcoal);
    padding: 12px 0;
    border-bottom: 1px solid var(--g-border);
    width: 100%;
    text-align: center;
  }
  .nav__link::after { display: none; }
  .nav__link--featured { color: var(--g-emerald-2); }
  .nav__cta {
    margin-top: 16px !important;
    padding: 14px 40px !important;
    font-size: 0.9rem !important;
    border-radius: var(--r-pill) !important;
    width: auto !important;
  }
}

/* ── On 480px: show divider and tagline again (if space allows) ── */
@media (min-width: 400px) {
  .nav__logo-divider,
  .nav__logo-sub { display: block; }
}
@media (max-width: 399px) {
  .nav__logo-divider,
  .nav__logo-sub { display: none; }
}

/* ===========================
   HERO
=========================== */
/* ===================================
   HERO — Full Dark Emerald Immersion
   The G3NE5IS Brand Moment
=================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--g-emerald);
}
/* Topographic / organic texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(27,94,53,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(200,169,110,0.08) 0%, transparent 55%);
  pointer-events: none;
}
/* Subtle arc/circle decorative element — brand signature */
.hero::after {
  content: '';
  position: absolute;
  right: -120px; bottom: -120px;
  width: 640px; height: 640px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.12);
  pointer-events: none;
}
/* Gold line accent — top micro detail */
.hero__gold-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--g-gold) 40%, var(--g-gold-light) 60%, transparent 100%);
  opacity: 0.5;
}
.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: 100px var(--container-pad) 80px;
}
/* Left content */
.hero__content {}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g-gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp var(--duration-cinema) var(--ease-luxury) 0.1s forwards;
}
.hero__eyebrow-line {
  display: block;
  width: 28px; height: 1px;
  background: var(--g-gold);
  opacity: 0.7;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp var(--duration-cinema) var(--ease-luxury) 0.25s forwards;
}
.hero__title strong {
  font-weight: 800;
  color: #FFFFFF;
  display: block;
  line-height: 1.08;
}
.hero__title-line {
  display: block;
  line-height: 1.08;
}
.hero__title em {
  font-style: italic;
  color: var(--g-gold);
  font-weight: 400;
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 44px;
  font-weight: 300;
  opacity: 0;
  animation: heroFadeUp var(--duration-cinema) var(--ease-luxury) 0.4s forwards;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp var(--duration-cinema) var(--ease-luxury) 0.55s forwards;
}
/* Stat row — on dark (clean, no harsh borders) */
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
  opacity: 0;
  animation: heroFadeUp var(--duration-cinema) var(--ease-luxury) 0.7s forwards;
}
.hero__stat {
  flex: 1;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  font-weight: 400;
}
/* 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(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__emblem {
  width: 420px; height: 420px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}
.hero__emblem img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(80%) contrast(1.1);
}
/* Rings removed for clean luxury */
.hero__emblem-ring, .hero__emblem-ring2 {
  display: none;
}
@keyframes ringPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.02); }
}
/* Hero badge — on dark bg */
.hero__emblem-badge {
  position: absolute;
  bottom: -12px; left: -20px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  box-shadow: 0 12px 40px rgba(1,43,18,0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,169,110,0.2);
}
.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(--g-emerald);
  line-height: 1;
}
.hero__emblem-badge-lbl {
  font-size: 0.63rem;
  color: var(--g-muted);
  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 0.3s var(--ease-luxury);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
}
.btn--lg { padding: 16px 36px; font-size: 0.88rem; }
.btn--md { padding: 13px 26px; font-size: 0.85rem; }
.btn--sm { padding: 9px 18px; font-size: 0.78rem; }

.btn--emerald {
  background: var(--g-emerald-2);
  color: white;
  border-color: var(--g-emerald-2);
  box-shadow: var(--shadow-grn);
}
.btn--emerald:hover {
  background: var(--g-emerald-3);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(1,43,18,0.5);
}
/* Gold = primary hero CTA on dark backgrounds */
.btn--gold {
  background: var(--g-gold);
  color: var(--g-emerald);
  border-color: var(--g-gold);
  box-shadow: var(--shadow-gld);
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--g-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,169,110,0.45);
}
/* Outline = secondary on dark hero */
.btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}
/* Ghost = tertiary */
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-color: transparent;
}
.btn--ghost:hover {
  color: rgba(255,255,255,0.9);
}
.btn--white {
  background: white;
  color: var(--g-emerald-2);
  border-color: white;
}
.btn--white:hover {
  background: var(--g-alabaster);
  transform: translateY(-1px);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===========================
   SECTION HEADINGS
=========================== */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g-emerald-soft);
  margin-bottom: 18px;
}
.sec-eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--g-gold);
  border-radius: 2px;
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--g-charcoal);
  margin-top: 12px;
}
.sec-title strong { font-weight: 600; color: var(--g-emerald-2); }
.sec-title em { font-style: italic; color: var(--g-gold); }
.sec-title--white { color: white; }
.sec-title--white strong { color: var(--g-gold-light); }
.sec-desc {
  font-size: 1rem;
  color: var(--g-muted);
  line-height: 1.8;
  margin-top: 16px;
  font-weight: 400;
  max-width: 540px;
}
.sec-header { margin-bottom: 64px; }
.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: 22px;
  background: var(--g-alabaster);
  border: 1px solid var(--g-border);
  border-radius: var(--r-lg);  /* 20px brand arc */
  transition: all 0.3s var(--ease-luxury);
}
.about-feature:hover {
  border-color: var(--g-emerald-pale);
  background: var(--g-emerald-ultra);
  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(--g-charcoal);
  margin-bottom: 4px;
}
.about-feature-desc {
  font-size: 0.78rem;
  color: var(--g-muted);
  line-height: 1.55;
}

/* ===========================
   ROZVOJ — GROWTH CHART
=========================== */
.growth-card {
  background: var(--g-alabaster);
  border: 1px solid var(--g-border);
  border-radius: var(--r-lg);  /* 20px brand arc */
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.growth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--g-emerald) 0%, var(--g-emerald-soft) 60%, var(--g-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: 100%; }
.growth-disclaimer {
  margin-top: 20px;
  font-size: 0.68rem;
  color: var(--gray-300);
  font-style: italic;
  line-height: 1.6;
}

/* =============================
   INVESTMENT CARDS — Brand Arc
============================= */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.invest-card {
  position: relative;
  background: #FFFFFF;
  border: none;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
  box-shadow: 0 12px 48px rgba(0,0,0,0.03), 0 2px 8px rgba(0,0,0,0.01);
}
.invest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.02);
}
/* Emerald top line — brand signature arc accent */
.invest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g-emerald-2), var(--g-gold));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-luxury);
  transform-origin: left;
  z-index: 10;
}
.invest-card:hover::before { transform: scaleX(1); }
/* Card image area */
.invest-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #FFFFFF;
  transition: all 0.6s var(--ease-luxury);
}
.invest-card:hover .invest-card-img {
  transform: scale(1.03);
}
/* 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: 40px 40px 16px; }
.invest-card-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--g-gold);
  margin-bottom: 12px;
}
.invest-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--g-charcoal);
  margin-bottom: 16px;
  line-height: 1.25;
}
.invest-card-desc {
  font-size: 0.9rem;
  color: var(--g-ink);
  line-height: 1.8;
  font-weight: 300;
}
.invest-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 40px;
  background: transparent;
  border: none;
}
.invest-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--g-muted);
  background: transparent;
  padding: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.invest-card-tag::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--g-gold);
}
.invest-card-arrow {
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g-emerald-2);
  opacity: 0;
  transform: translateX(-12px);
  transition: all 0.4s var(--ease-luxury);
}
.invest-card:hover .invest-card-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--g-emerald-2);
  border-color: var(--g-emerald-2);
  color: white;
}
/* 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 — Premium FinTech
=============================== */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.calc-card {
  background: var(--g-alabaster);
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: var(--r-lg);   /* Brand arc: 20px */
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.calc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--g-emerald), var(--g-emerald-soft) 60%, var(--g-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(--g-emerald-2);
}
/* Range input — FinTech style */
input[type=range].calc-range {
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: rgba(0,0,0,0.06);
  outline: none;
  cursor: pointer;
}
input[type=range].calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--g-emerald-2);
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(1,43,18,0.35), 0 0 0 1px rgba(1,43,18,0.15);
  cursor: pointer;
  transition: all 0.18s var(--ease-luxury);
}
input[type=range].calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  background: var(--g-emerald-3);
  box-shadow: 0 4px 16px rgba(1,43,18,0.45), 0 0 0 4px rgba(200,169,110,0.15);
}
input[type=range].calc-range::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--g-emerald-2);
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(1,43,18,0.35);
  cursor: pointer;
}
.calc-range-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  color: var(--g-light);
  margin-top: 8px;
  font-family: var(--font-mono);
}
.calc-divider { height: 1px; background: rgba(0,0,0,0.03); margin: 40px 0; }
/* Result box — deep emerald brand */
.calc-result {
  background: var(--g-emerald);
  border-radius: var(--r-lg); /* Brand 20px arc */
  padding: 48px 36px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.calc-result::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(27,94,53,0.7) 0%, transparent 60%);
  pointer-events: none;
}
.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(--g-emerald-ultra);
  border: 1px solid var(--g-emerald-pale);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  text-align: center;
}
.calc-param-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--g-emerald-2);
  line-height: 1;
}
.calc-param-lbl {
  font-size: 0.65rem;
  color: var(--g-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.calc-fee {
  background: var(--g-gold-pale);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  font-size: 0.8rem;
  color: var(--g-ink);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.calc-fee-icon { color: var(--g-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-top: 1px solid var(--g-border);
  border-bottom: 1px solid var(--g-border);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 32px;
}
.calc-rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 8px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--g-border);
  transition: background 0.15s var(--ease-luxury);
}
.calc-rate-row:last-child { border-bottom: none; }
.calc-rate-row:hover { background: var(--g-emerald-ultra); }
.calc-rate-row--special {
  background: var(--g-emerald-ultra);
  border-top: 1px solid var(--g-emerald-pale);
  border-bottom: none;
}
.calc-rate-row--special:hover { background: var(--g-emerald-pale); }
.calc-rate-year { color: var(--g-muted); font-size: 0.85rem; }
.calc-rate-val { font-weight: 700; color: var(--g-emerald-2); font-family: var(--font-display); font-size: 1.05rem; }
.calc-rate-val--gold { color: var(--g-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(--g-alabaster);
  border-radius: var(--r-xl);  /* 28px brand 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 0.7s 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: 2px;
  background: linear-gradient(90deg, var(--g-emerald), var(--g-emerald-soft) 60%, var(--g-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: 15px 18px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-lg);
  font-size: 0.95rem;
  color: var(--g-charcoal);
  background: var(--g-white);
  box-shadow: none;
  outline: none;
  transition: all 0.3s var(--ease-luxury);
}
.f-input:focus {
  border-color: var(--g-emerald-soft);
  box-shadow: 0 0 0 3px rgba(2,51,20,0.07);
}
.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 — Brand Arc Cards
================================ */
.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.scorecard-item {
  background: var(--g-alabaster);
  border: 1px solid var(--g-border);
  border-radius: var(--r-lg);  /* 20px brand arc */
  padding: 36px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-luxury);
  overflow: hidden;
}
.scorecard-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--g-emerald), var(--g-emerald-soft));
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-luxury);
  transform-origin: left;
}
.scorecard-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--g-emerald-pale);
  transform: translateY(-4px);
}
.scorecard-item:hover::after {
  transform: scaleX(1);
}
.scorecard-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--g-gold);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.scorecard-item-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--g-charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}
.scorecard-item-desc {
  font-size: 0.85rem;
  color: var(--g-muted);
  line-height: 1.75;
}
.scorecard-item-desc strong {
  color: var(--g-emerald-2);
  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: #FFFFFF;
  border: none;
  border-radius: var(--r-xl);
  padding: 32px 36px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.02);
  display: flex;
  gap: 24px;
  align-items: center;
  transition: all 0.4s var(--ease-luxury);
}
.contact-card:hover {
  transform: translateX(8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.05);
}
.contact-card-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g-alabaster);
  border: 1px solid rgba(0,0,0,0.04);
}
.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;
  display: block;
  text-decoration: none;
}
.contact-card-desc { font-size: 0.78rem; color: var(--gray-500); line-height: 1.5; }
/* CTA block */
.contact-cta {
  background: var(--g-emerald);
  border-radius: var(--r-xl);  /* 28px brand xl */
  padding: 60px 48px;
  color: white;
  position: relative;
  overflow: hidden;
}
/* Arc decoration inside CTA — brand signature */
.contact-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.contact-cta::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(27,94,53,0.5);
  border-radius: 50%;
  pointer-events: none;
}
.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: 40px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* ===========================
   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.85rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cnb-item::before {
  content: '✓';
  color: var(--accent-gold);
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g-gold) 30%, var(--g-gold) 70%, transparent);
  opacity: 0.2;
  margin-bottom: 56px;
}

/* ===========================
   SCROLL REVEAL — Cinematic
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity var(--duration-cinema) var(--ease-luxury), transform var(--duration-cinema) 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(-40px);
  transition: opacity var(--duration-cinema) var(--ease-luxury), transform var(--duration-cinema) var(--ease-luxury);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--duration-cinema) var(--ease-luxury), transform var(--duration-cinema) 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.15rem; 
    color: var(--g-charcoal); 
  }
  .nav__links.open .nav__link--featured { 
    color: var(--g-emerald); 
  }
  .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; }
  .scorecard-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .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; }
}
