/* ============================================================
   FLEXO — Main Stylesheet
   Colors: Gold #F0C040 | Silver #C0C0C0 | Dark #0F0F1A | White #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --gold:    #F0C040;
  --gold-dk: #D4A820;
  --silver:  #C0C0C0;
  --dark:    #0F0F1A;
  --dark-2:  #161625;
  --dark-3:  #1E1E30;
  --dark-4:  #252538;
  --white:   #FFFFFF;
  --off-white: #F8F9FF;
  --text-muted: #8888AA;
  --text-light: #CCCCDD;
  --border-dark: rgba(255,255,255,.08);
  --border-light: rgba(0,0,0,.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --shadow-gold: 0 8px 32px rgba(240,192,64,.20);
  --transition: .22s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.12; letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1.05rem; line-height: 1.72; }

.text-gold   { color: var(--gold); }
.text-silver { color: var(--silver); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* ── Layout Helpers ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.section    { padding: clamp(60px, 8vw, 100px) 0; }
.section-dark  { background: var(--dark); color: var(--white); }
.section-dark-2 { background: var(--dark-2); color: var(--white); }
.section-light { background: var(--off-white); }
.section-white { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── Section Labels ─────────────────────────────────────────── */
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-kicker::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--gold); border-radius: 2px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .95rem; font-weight: 700; border-radius: var(--radius-md);
  padding: 14px 28px; min-height: 52px;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold); color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: #f5cc58; box-shadow: 0 12px 40px rgba(240,192,64,.35); }

.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: rgba(240,192,64,.08); }

.btn-dark {
  background: var(--dark-3); color: var(--white);
  border: 1px solid var(--border-dark);
}
.btn-dark:hover { background: var(--dark-4); }

.btn-white {
  background: var(--white); color: var(--dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { box-shadow: var(--shadow-lg); }

.btn-sm { padding: 10px 20px; min-height: 42px; font-size: .88rem; }
.btn-lg { padding: 18px 36px; min-height: 60px; font-size: 1.05rem; border-radius: var(--radius-lg); }

/* ── Badge / Chip ────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.badge-gold    { background: rgba(240,192,64,.15); color: var(--gold); border: 1px solid rgba(240,192,64,.3); }
.badge-green   { background: rgba(16,185,129,.12); color: #10b981;    border: 1px solid rgba(16,185,129,.25); }
.badge-silver  { background: rgba(192,192,192,.12); color: var(--silver); border: 1px solid rgba(192,192,192,.25); }
.badge-muted   { background: rgba(136,136,170,.1); color: var(--text-muted); border: 1px solid rgba(136,136,170,.2); }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,15,26,.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  height: 68px;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(15,15,26,.98);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.navbar-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; min-width: 0; }
.navbar-logo img { height: 92px; max-width: min(42vw, 390px); width: auto; filter: brightness(0) invert(1); }
.navbar-logo span { font-size: 1.4rem; font-weight: 900; letter-spacing: -.04em; color: var(--white); }

.navbar-nav { display: flex; align-items: center; gap: 2px; flex: 1 1 auto; justify-content: flex-end; min-width: 0; }
.navbar-nav a {
  padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600; color: var(--text-light);
  transition: color var(--transition), background var(--transition);
}
.navbar-nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.navbar-nav a.active { color: var(--gold); }

.navbar-cta { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto;
  margin-left: 8px; padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06);
  white-space: nowrap;
}
.lang-switch a {
  font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-light); padding: 4px 2px; border-radius: 999px;
}
.lang-switch a + a::before {
  content: '|'; color: rgba(255,255,255,.38); margin-right: 8px;
}
.lang-switch a.active, .lang-switch a:hover { color: var(--gold); background: transparent; }
.lang-switch-mobile {
  display: flex; align-items: center; gap: 8px; margin: 0 0 14px 0;
  padding: 10px 14px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.04); border: 1px solid var(--border-dark);
}
.lang-switch-mobile span { font-size: .82rem; font-weight: 700; color: var(--silver); text-transform: uppercase; letter-spacing: .08em; }
.lang-switch-mobile a {
  font-size: .84rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-light); padding: 6px 8px; border-radius: 999px;
}
.lang-switch-mobile a.active, .lang-switch-mobile a:hover { color: var(--dark); background: var(--gold); }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: none;
  padding: 8px; border-radius: var(--radius-sm); cursor: pointer;
}
.hamburger span {
  display: block; height: 2px; width: 100%; background: var(--white);
  border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--dark-2); z-index: 999; overflow-y: auto;
  padding: 24px clamp(16px,4vw,40px);
}
.nav-mobile.open { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a {
  display: block; padding: 14px 16px; border-radius: var(--radius-md);
  font-size: 1.1rem; font-weight: 600; color: var(--text-light);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-mobile .btn { margin-top: 16px; width: 100%; }

body.nav-open { overflow: hidden; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  padding-top: calc(68px + clamp(34px, 7vw, 72px));
  padding-bottom: clamp(56px, 9vw, 108px);
  color: var(--white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(240,192,64,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192,192,192,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,192,64,.1); border: 1px solid rgba(240,192,64,.25);
  color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { margin-bottom: 18px; max-width: 780px; font-size: clamp(2.3rem, 5.4vw, 4.4rem); }
.hero h1 span { color: var(--gold); }
.hero p.lead {
  font-size: clamp(1.06rem, 2.1vw, 1.24rem); color: var(--text-light); max-width: 720px;
  margin-bottom: 18px; line-height: 1.68;
}
.hero-proof {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
  color: var(--silver); font-size: .92rem; font-weight: 700; letter-spacing: .02em;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: clamp(16px, 3vw, 24px); margin-top: 42px;
  flex-wrap: wrap; padding: 18px 22px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
}
.hero-stat { min-width: 180px; }
.hero-stat strong {
  display: block; font-size: clamp(1rem, 1.8vw, 1.12rem); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 6px;
}
.hero-stat span { font-size: .92rem; color: var(--text-light); font-weight: 500; line-height: 1.45; }
.hero-separator { width: 1px; background: rgba(255,255,255,.08); align-self: stretch; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-dark {
  background: var(--dark-3); border-color: var(--border-dark); color: var(--white);
}
.card-dark:hover { box-shadow: 0 16px 48px rgba(0,0,0,.4); }

.card-gold-border {
  border-color: rgba(240,192,64,.3);
}
.card-gold-border:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }

.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(240,192,64,.12); border: 1px solid rgba(240,192,64,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}

/* Product cards */
.product-card {
  background: var(--dark-3); border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 40px);
  color: var(--white); position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dk));
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(240,192,64,.25); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.product-card:hover::before { opacity: 1; }
.product-card .product-emoji { font-size: 2.8rem; margin-bottom: 20px; display: block; }
.product-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.product-card p { color: var(--text-light); font-size: .95rem; line-height: 1.65; margin-bottom: 20px; }
.product-card .product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.product-card .product-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,.06); color: var(--text-muted); border: 1px solid var(--border-dark);
}

/* Feature grid */
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-sm);
  background: rgba(240,192,64,.12); border: 1px solid rgba(240,192,64,.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.feature-item h4 { margin-bottom: 4px; }
.feature-item p  { font-size: .9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── Section Intro ───────────────────────────────────────────── */
.section-intro { max-width: 600px; margin: 0 auto 56px; text-align: center; }
.section-intro p { color: var(--text-muted); margin-top: 12px; font-size: 1.05rem; }
.section-dark .section-intro p { color: var(--text-light); }

/* ── Comparison Table ────────────────────────────────────────── */
.comparison-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-light); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.comparison-table th, .comparison-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border-light); white-space: nowrap; }
.comparison-table th { background: var(--off-white); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.comparison-table th:first-child, .comparison-table td:first-child { font-weight: 600; white-space: normal; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .col-flexo { background: rgba(240,192,64,.04); }
.comparison-table .col-flexo th { color: var(--gold-dk); }
.check  { color: #10b981; font-weight: 700; }
.cross  { color: #ef4444; }
.partial { color: #f59e0b; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-card {
  background: var(--dark-3); border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl); padding: 40px; text-align: center; color: var(--white);
}
.pricing-card.featured {
  border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
}
.pricing-price { font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; margin: 16px 0 4px; }
.pricing-price sup { font-size: 1.4rem; vertical-align: super; margin-right: 2px; }
.pricing-price sub { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.pricing-features { list-style: none; text-align: left; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--text-light); }
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
  border: 1px solid rgba(240,192,64,.2);
  border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 64px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(240,192,64,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); position: relative; margin-bottom: 14px; }
.cta-banner p  { color: var(--text-light); margin-bottom: 32px; position: relative; font-size: 1.08rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { position: relative; }

/* ── Why Flexo ───────────────────────────────────────────────── */
.why-item { text-align: center; padding: 32px 24px; }
.why-icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  border-radius: 50%; background: rgba(240,192,64,.1); border: 1px solid rgba(240,192,64,.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.why-item h3 { margin-bottom: 10px; color: var(--white); }
.why-item p  { color: var(--text-muted); font-size: .95rem; }

/* ── Blog Cards ──────────────────────────────────────────────── */
.blog-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-meta {
  background: var(--dark); padding: 28px 28px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.blog-card-category { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); }
.blog-card-title { font-size: 1.15rem; font-weight: 700; color: var(--white); line-height: 1.4; }
.blog-card-body { padding: 20px 28px 28px; }
.blog-card-excerpt { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.blog-card-date { font-size: .78rem; color: var(--text-muted); }
.blog-card-link { font-size: .85rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 4px; }
.blog-card-link:hover { gap: 8px; }

/* ── Coming Soon ─────────────────────────────────────────────── */
.coming-soon-hero {
  min-height: 100vh; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: clamp(80px, 10vw, 120px) clamp(16px, 4vw, 40px);
  position: relative; overflow: hidden; color: var(--white);
}
.coming-soon-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(240,192,64,.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(192,192,192,.06) 0%, transparent 50%);
  pointer-events: none;
}
.coming-soon-inner { position: relative; z-index: 1; max-width: 640px; }
.coming-soon-inner h1 { margin-bottom: 16px; }
.coming-soon-inner h1 span { color: var(--gold); }
.coming-soon-inner p.lead { color: var(--text-light); margin-bottom: 40px; font-size: 1.1rem; }
.waitlist-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; flex-wrap: wrap; }
.waitlist-form input {
  flex: 1; min-width: 0; padding: 14px 18px; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06);
  color: var(--white); font-size: .95rem; font-family: var(--font);
  outline: none; transition: border-color var(--transition);
}
.waitlist-form input::placeholder { color: var(--text-muted); }
.waitlist-form input:focus { border-color: var(--gold); }
.waitlist-success { display: none; margin-top: 14px; color: #10b981; font-size: .9rem; font-weight: 600; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--dark); color: var(--text-light);
  padding: clamp(48px, 6vw, 72px) 0 clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--border-dark);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 32px; width: auto; }
.footer-brand .footer-logo span { font-size: 1.3rem; font-weight: 900; letter-spacing: -.04em; color: var(--white); }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: var(--text-muted); max-width: 240px; }

.footer-col h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--silver); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-dark); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copyright { font-size: .82rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .82rem; color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-up  { animation: fadeInUp .7s ease both; }
.animate-fade-up-2 { animation: fadeInUp .7s .15s ease both; }
.animate-fade-up-3 { animation: fadeInUp .7s .3s ease both; }
.animate-fade     { animation: fadeIn .6s ease both; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Gold gradient text ─────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, #fff7c0 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ── Divider ─────────────────────────────────────────────────── */
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 3px; margin: 0 auto 20px; }

/* ── Verifactu Banner ────────────────────────────────────────── */
.verifactu-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25);
  color: #10b981; font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
}
.verifactu-badge::before { content: '✓'; font-weight: 900; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-2, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-proof { font-size: .88rem; }
  .navbar-nav, .navbar-cta, .lang-switch { display: none; }
  .hamburger { display: flex; }
  .navbar-logo { flex: 0 1 auto; }
  .navbar-logo img { height: 62px; max-width: 72vw; }
  .comparison-table th, .comparison-table td { padding: 10px 14px; font-size: .82rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 14px; padding: 16px; }
  .hero-stat { min-width: 100%; }
  .hero-separator { display: none; }
  .grid-4 { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input, .waitlist-form .btn { width: 100%; }
}
