/* ============================================
   ROOT VARIABLES & RESET
   ============================================ */
:root {
  --bg:         #030712;
  --bg2:        #0d1117;
  --bg3:        #111827;
  --surface:    rgba(255,255,255,0.04);
  --surface2:   rgba(255,255,255,0.07);
  --border:     rgba(255,255,255,0.08);
  --border2:    rgba(255,255,255,0.12);
  --primary:    #10b981;
  --primary-d:  #059669;
  --primary-g:  linear-gradient(135deg, #10b981, #06b6d4);
  --purple:     #6366f1;
  --gold:       #f59e0b;
  --text:       #f1f5f9;
  --text-2:     #94a3b8;
  --text-3:     #64748b;
  --glow:       0 0 40px rgba(16,185,129,0.25);
  --radius:     16px;
  --radius-lg:  24px;
  --trans:      all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:  'Space Grotesk', sans-serif;
  --font-body:  'Inter', sans-serif;
    /* Theme-aware additions */
  --nav-bg:     rgba(3,7,18,0.85);
  --sticky-bg:  rgba(3,7,18,0.95);
  --overlay-bg: rgba(3,7,18,0.6);
  --panel-bg:   rgba(13,17,23,0.92);
  --faint:      rgba(255,255,255,0.015);
  --faint-2:    rgba(255,255,255,0.025);
  --shadow:     rgba(0,0,0,0.4);
  --av-border:  var(--bg);
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */
[data-theme="light"] {
  --bg:         #ffffff;
  --bg2:        #f8fafc;
  --bg3:        #f1f5f9;
  --surface:    rgba(15,23,42,0.03);
  --surface2:   rgba(15,23,42,0.06);
  --border:     rgba(15,23,42,0.10);
  --border2:    rgba(15,23,42,0.15);
  --text:       #0f172a;
  --text-2:     #475569;
  --text-3:     #64748b;
  --glow:       0 0 40px rgba(16,185,129,0.18);

  --nav-bg:     rgba(255,255,255,0.85);
  --sticky-bg:  rgba(255,255,255,0.95);
  --overlay-bg: rgba(15,23,42,0.35);
  --panel-bg:   rgba(255,255,255,0.92);
  --faint:      rgba(15,23,42,0.02);
  --faint-2:    rgba(15,23,42,0.03);
  --shadow:     rgba(15,23,42,0.12);
  --av-border:  #ffffff;
}

/* Smooth transition when toggling */
body, .navbar, .glass, .footer, .mobile-menu,
.faq-item, .benefit-card, .guarantee-card {
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ============================================
   CANVAS BACKGROUND
   ============================================ */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(16,185,129,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.hovered {
  width: 56px; height: 56px;
  border-color: rgba(16,185,129,0.8);
}

/* ============================================
   STICKY DISCLAIMER BAR
   ============================================ */
.sticky-disclaimer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--sticky-bg);
  border-top: 1px solid rgba(245,158,11,0.25);
  z-index: 490;
  transform: translateY(0);
  transition: transform 0.4s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sticky-disclaimer.hidden {
  transform: translateY(100%);
}

.sticky-disclaimer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: rgba(245,158,11,0.85);
}

.sticky-disclaimer-inner svg {
  flex-shrink: 0;
  color: #f59e0b;
}

.sticky-disclaimer-inner span {
  flex: 1;
  line-height: 1.5;
}

.sticky-disclaimer-inner a {
  color: var(--primary);
  text-decoration: underline;
  margin-left: 6px;
  white-space: nowrap;
}

.sticky-close {
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 4px 8px;
  flex-shrink: 0;
  transition: color 0.2s;
  line-height: 1;
}

.sticky-close:hover { color: var(--text); }

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  /* Sit above the accessibility widget trigger (64px wide) at bottom-right */
  bottom: 28px; right: 96px;
  background: var(--primary-g);
  color: #fff;
  display: flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 890;
  box-shadow: 0 8px 32px rgba(16,185,129,0.4);
  transition: var(--trans);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(16,185,129,0.55);
}

.pulse-ring {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50px;
  border: 2px solid rgba(16,185,129,0.6);
  animation: pulseOut 2s ease-out infinite;
}

@keyframes pulseOut {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: var(--bg2);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu-overlay.open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-close {
  background: none;
  border: none;
  color: var(--text-2);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.mobile-close:hover { color: var(--text); }

.mobile-nav {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 14px 16px;
  border-radius: 12px;
  transition: var(--trans);
  display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--surface2);
  color: var(--primary);
}

/* --- HAMBURGER MENU FOOTER STYLES --- */
.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Hamburger Social Icons */
.mobile-menu-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
}

.mobile-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: center;
}

.mobile-legal-links a {
  font-size: 0.75rem;
  color: var(--text-3);
  transition: color 0.2s;
  padding: 4px 8px;
}

.mobile-legal-links a:hover { 
  color: var(--primary); 
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: var(--trans);
}

.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* border-bottom: 1px solid rgba(16,185,129,0.25); */
  padding: 12px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;          /* prevents logo + links + right from touching */
  min-width: 0;       /* allows flex children to shrink below content size */
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}

.logo-badge {
  background: var(--primary-g);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.logo-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.nav-links {
  display: flex; align-items: center; gap: 28px;
  min-width: 0;    /* allows group to shrink; prevents silent overflow */
  flex-shrink: 1;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--trans);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--primary-g);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-right {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-g);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(16,185,129,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border2);
}

.btn-ghost:hover {
  background: var(--surface2);
  border-color: rgba(16,185,129,0.4);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--primary-g);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16,185,129,0.45);
}

.btn-xl { padding: 18px 40px; font-size: 1.1rem; }
.mt-24  { margin-top: 24px; }
.magnetic { transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease; }

/* ============================================
   ORBS
   ============================================ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 { width:500px; height:500px; background:rgba(16,185,129,0.12); top:-100px; left:-100px; }
.orb-2 { width:400px; height:400px; background:rgba(99,102,241,0.10); top:200px;  right:-100px; }
.orb-3 { width:300px; height:300px; background:rgba(245,158,11,0.06); bottom:100px; left:40%; }
.orb-cta1 { width:400px; height:400px; background:rgba(16,185,129,0.15); top:-50px;    right:10%; }
.orb-cta2 { width:300px; height:300px; background:rgba(99,102,241,0.12); bottom:-50px; left:10%; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 32px 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}

.gradient-text {
  background: var(--primary-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.7;
  margin: 0 auto 40px;
  max-width: 680px;
}

.hero-sub strong { color: var(--text); }

.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex; align-items: center; justify-content: center; gap: 14px;
}

.avatars { display: flex; }

.av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--av-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: #fff;
  margin-left: -10px;
}

.av:first-child { margin-left: 0; }

.hero-social-proof p  { font-size: 0.9rem; color: var(--text-2); }
.hero-social-proof strong { color: var(--primary); }

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-3);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1.5px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--primary));
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  position: relative; z-index: 2;
  background: var(--faint-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}

.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
}

.trust-item svg { color: var(--primary); flex-shrink: 0; }

.trust-divider { width: 1px; height: 24px; background: var(--border); }

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative; z-index: 2;
}

/* ============================================
   SECTION LABELS / TITLES
   ============================================ */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  transition: var(--trans);
}

.glass:hover {
  background: var(--surface2);
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--shadow);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  position: relative; z-index: 2;
  padding: 100px 32px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.stat-card {
  padding: 36px 28px;
  text-align: center;
}

.stat-icon { font-size: 2rem; margin-bottom: 16px; }

.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  background: var(--primary-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.stat-desc  { font-size: 0.82rem; color: var(--text-3); line-height: 1.6; }

.stats-disclaimer {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--text-3);
  font-style: italic;
  text-align: center;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
  position: relative; z-index: 2;
  padding: 100px 32px;
  background: var(--faint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits-section .container { text-align: center; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.benefit-card {
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--primary-g);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 52px; height: 52px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--trans);
}

.benefit-card:hover .benefit-icon {
  background: rgba(16,185,129,0.2);
  transform: scale(1.1);
}

.benefit-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem; color: var(--text-2);
  line-height: 1.65; margin-bottom: 16px;
}

.benefit-tag {
  display: inline-block;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--primary);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  letter-spacing: 0.04em;
}

.green-tag {
  background: rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.35);
  color: #34d399;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.hiw-section {
  position: relative; z-index: 2;
  padding: 100px 32px;
  text-align: center;
}

.hiw-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 60px; flex-wrap: wrap;
}

.hiw-step {
  flex: 1; min-width: 220px; max-width: 320px;
}

.step-num {
  font-family: var(--font-head);
  font-size: 4rem; font-weight: 900;
  color: rgba(16,185,129,0.08);
  line-height: 1; margin-bottom: -16px;
  text-align: center;
}

.step-content { padding: 28px 24px; text-align: center; }

.step-icon {
  width: 56px; height: 56px;
  background: var(--primary-g);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(16,185,129,0.3);
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}

.step-content p {
  font-size: 0.87rem; color: var(--text-2); line-height: 1.65;
}

.hiw-connector {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  color: var(--text-3);
  padding: 0 16px; flex-shrink: 0;
}

.connector-line {
  width: 40px; height: 1.5px;
  background: linear-gradient(90deg, var(--primary), rgba(16,185,129,0.2));
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  position: relative; z-index: 2;
  padding: 100px 32px;
  background: var(--faint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px; align-items: center;
}

.about-card { padding: 36px 28px; text-align: center; }

.about-avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 12px 40px rgba(16,185,129,0.35);
  border: 3px solid rgba(16,185,129,0.4);
  overflow: hidden;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  display: grid; place-items: center;
  position: relative;
}

.about-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  position: absolute; top: 0; left: 0;
  border-radius: 50%;
}

.avatar-fallback {
  font-family: var(--font-head);
  font-size: 2.5rem; font-weight: 900;
  color: #fff; line-height: 1;
}

.about-name {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 800;
  color: var(--text); margin-bottom: 6px;
}

.about-title {
  font-size: 0.85rem; color: var(--primary);
  font-weight: 600; margin-bottom: 4px;
}

.about-reg {
  font-size: 0.75rem; color: var(--text-3);
  margin-bottom: 20px; font-family: monospace;
}

.about-badges {
  display: flex; flex-wrap: wrap;
  gap: 8px; justify-content: center; margin-bottom: 20px;
}

.a-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-2);
}

.about-insta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff; padding: 10px 20px;
  border-radius: 50px; font-size: 0.82rem;
  font-weight: 700; transition: var(--trans);
}

.about-insta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(131,58,180,0.4);
}

.about-text {
  font-size: 1rem; color: var(--text-2);
  line-height: 1.75; margin-bottom: 16px;
}

.about-features { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }

.af-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text-2);
}

.af-check {
  width: 22px; height: 22px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--primary);
  font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ============================================
   PREMIUM SECTION
   ============================================ */
.premium-section {
  position: relative; z-index: 2;
  padding: 100px 32px; text-align: center;
}

.premium-inner {
  padding: 56px 48px; max-width: 960px;
  margin: 0 auto; position: relative; overflow: hidden;
}

.premium-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.04), rgba(99,102,241,0.04));
  pointer-events: none;
}

.premium-badge-pill {
  display: inline-block;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.08));
  border: 1px solid rgba(245,158,11,0.3);
  color: #fbbf24; font-size: 0.82rem; font-weight: 700;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px; letter-spacing: 0.06em;
}

.premium-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin: 40px 0; text-align: left;
}

.pf-item {
  display: flex; gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 18px; align-items: flex-start;
  transition: var(--trans);
}

.pf-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(16,185,129,0.2);
  transform: translateY(-2px);
}

.pf-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }

.pf-item h4 {
  font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}

.pf-item p { font-size: 0.82rem; color: var(--text-2); line-height: 1.55; }

.premium-cta-group { margin-top: 8px; }

.premium-note {
  margin-top: 14px; font-size: 0.78rem; color: var(--text-3);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  position: relative; z-index: 2;
  padding: 100px 32px;
  background: var(--faint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
  display: flex; flex-direction: column; gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(16,185,129,0.25);
}

.faq-item.open {
  border-color: rgba(16,185,129,0.35);
}

.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none; border: none;
  cursor: pointer; text-align: left;
  font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--primary); }

.faq-question:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--primary);
  border-radius: var(--radius);
}

.faq-item.open .faq-question { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: transform 0.35s ease, background 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: rgba(16,185,129,0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem; color: var(--text-2);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-section {
  position: relative; z-index: 2;
  padding: 120px 32px;
  overflow: hidden;
  text-align: center;
  background: rgba(16,185,129,0.03);
  border-top: 1px solid rgba(16,185,129,0.1);
}

.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative; z-index: 2;
}

.final-badge {
  display: inline-block;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--primary);
  font-size: 0.82rem; font-weight: 700;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 24px;
}

.final-cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.03em;
  margin-bottom: 16px; color: var(--text);
}

.final-cta-inner > p {
  font-size: 1.05rem; color: var(--text-2);
  line-height: 1.7; margin-bottom: 40px;
}

.final-sub {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 20px;
  margin-top: 20px; font-size: 0.85rem;
  color: var(--text-2); font-weight: 500;
}

.final-disclaimer {
  margin-top: 32px;
  font-size: 0.72rem; color: var(--text-3);
  line-height: 1.7; max-width: 600px;
  margin-left: auto; margin-right: auto;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative; z-index: 2;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 32px 32px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.8rem; color: var(--text-3);
  line-height: 1.7; margin-bottom: 6px;
}

.footer-social {
  display: flex; gap: 10px; margin-top: 16px;
}

.social-link {
  width: 36px; height: 36px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: var(--trans);
}

.social-link:hover {
  background: rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.3);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 700;
  color: var(--text); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.footer-links a,
.footer-contact a {
  display: block;
  font-size: 0.85rem; color: var(--text-3);
  margin-bottom: 10px; transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--primary); }

.footer-sebi-note {
  margin-top: 16px;
  font-size: 0.72rem; color: var(--text-3);
  line-height: 1.6;
  padding: 12px;
  background: rgba(16,185,129,0.05);
  border: 1px solid rgba(16,185,129,0.1);
  border-radius: 8px;
}

.footer-sebi-note a { color: var(--primary); display: inline; }

.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto 32px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 14px;
  padding: 24px 28px;
}

.footer-disclaimer h4 {
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700;
  color: #fbbf24; margin-bottom: 14px;
}

.footer-disclaimer p {
  font-size: 0.77rem; color: var(--text-3);
  line-height: 1.75; margin-bottom: 10px;
}

.footer-disclaimer strong { color: var(--text-2); }
.footer-disclaimer a { color: var(--primary); text-decoration: underline; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  align-items: center;
}

.footer-bottom-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  
}

.footer-bottom-row p {
  font-size: 0.78rem;
  color: var(--text-3);
  margin: 0;
  white-space: nowrap;
  text-align: center;
  
}

.footer-bottom-love {
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-love-name {
  color: var(--primary);
  font-weight: 600;
  transition: opacity 0.2s;
}

.footer-love-name:hover { opacity: 0.75; }

@media (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer-bottom-row p  { white-space: normal; }
  .footer-bottom-love   { white-space: normal; font-size: 0.72rem; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   THE GOWTHAM GUARANTEE SECTION
   ============================================ */
.guarantee-section {
  position: relative;
  z-index: 2;
  padding: 100px 32px;
  background: var(--faint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center; /* ← Centers the label and title */
}

.guarantee-section .section-desc {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ← Forces 4 columns on desktop */
  gap: 20px;
  margin-top: 48px;
}

.guarantee-card {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--trans);
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-g);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.guarantee-card:hover::before {
  transform: scaleX(1);
}

.guarantee-card:hover {
  background: rgba(16,185,129,0.04);
  border-color: rgba(16,185,129,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(16,185,129,0.15);
}

.guarantee-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1;
  filter: grayscale(0.3);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.guarantee-card:hover .guarantee-icon {
  filter: grayscale(0);
  transform: scale(1.1);
}

.guarantee-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.guarantee-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.guarantee-card p strong {
  color: var(--primary);
  font-weight: 700;
}

.guarantee-tag {
  display: inline-block;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guarantee-footer {
  margin-top: 48px;
  text-align: center;
  padding: 24px 32px;
  background: rgba(16,185,129,0.05);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 14px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-footer p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}

.guarantee-footer strong {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr); /* ← 2 columns on tablet */
  }
}

@media (max-width: 768px) {
  .guarantee-section {
    padding: 60px 20px;
  }

  .guarantee-grid {
    grid-template-columns: 1fr; /* ← 1 column on mobile */
    gap: 16px;
  }

  .guarantee-card {
    padding: 28px 20px;
  }

  .guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .guarantee-card h3 {
    font-size: 1.1rem;
  }

  .guarantee-card p {
    font-size: 0.88rem;
  }

  .guarantee-footer {
    padding: 20px 18px;
    margin-top: 32px;
  }

  .guarantee-footer p {
    font-size: 0.9rem;
  }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-card  { max-width: 380px; margin: 0 auto; }
  .footer-top  { grid-template-columns: 1fr 1fr; gap: 32px; }
  /* Nav already hidden at 1100px; these only apply 1024–1100px if breakpoint is ever lowered */
  .nav-links   { gap: 16px; }
  .nav-link    { font-size: 0.82rem; }
  .logo-name   { font-size: 1rem; }
  .btn-nav     { padding: 8px 14px; font-size: 0.78rem; }
}

/* Navbar collapses to hamburger at 1170px to eliminate the dead zone
   where nav items overflow and get clipped without a scrollbar */
@media (max-width: 1175px) {
  .nav-links  { display: none; }
  .btn-nav    { display: none; }
  .hamburger  { display: flex; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {

  /* Navbar — already handled above at 900px,
     these rules are kept for any overrides below */
  .nav-links  { display: none; }
  .btn-nav    { display: none; }
  .hamburger  { display: flex; }

  /* Sections padding */
  .stats-section,
  .benefits-section,
  .hiw-section,
  .about-section,
  .premium-section,
  .faq-section,
  .final-cta-section { padding: 56px 20px; }

  .hero { padding: 100px 20px 72px; }

  /* Hero */
  .hero-ctas  { flex-direction: column; }
  .scroll-hint { display: none; }

  /* Trust bar */
  .trust-bar {
    padding: 14px 20px;
    text-align: center;
  }
  .trust-divider { display: none; }
  .trust-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
  .trust-item {
    justify-content: center;
    width: 100%;
    font-size: 0.8rem;
  }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card  { padding: 22px 16px; }
  .stat-number { font-size: 2rem; }
  .stat-desc  { display: none; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .benefit-card  { padding: 22px 20px; }
  .benefit-card:nth-child(n+5) { display: none; }

  /* How It Works */
  .hiw-steps    { flex-direction: column; gap: 16px; }
  .hiw-connector { transform: rotate(90deg); margin: -4px 0; }
  .step-num     { font-size: 2.5rem; margin-bottom: -10px; }
  .step-content { padding: 20px 18px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-card  { max-width: 100%; padding: 24px 20px; }
  .about-badges { display: none; }

  /* Premium */
  .premium-inner    { padding: 28px 20px; }
  .premium-features { grid-template-columns: 1fr; gap: 10px; }
  .pf-item { padding: 14px 12px; }

  /* FAQ */
  .faq-question { font-size: 0.88rem; padding: 16px 18px; }
  .faq-answer   { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }

  /* Final CTA */
  .final-sub  { gap: 12px; font-size: 0.78rem; }
  .btn-xl     { padding: 15px 24px; font-size: 0.95rem; }

  /* ==================== 
     FOOTER FIXES (UPDATED) 
     ==================== */
  .footer     { padding: 40px 20px 64px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  
  /* Fix the Social Icons Stacking */
  .footer-social {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
  }

  .footer-social .social-link {
    width: 44px;
    height: 44px;
  }

  /* Improve Mobile Link Spacing (Touch Targets) */
  .footer-links a,
  .footer-contact a {
    display: block;
    padding: 8px 0; 
    margin-bottom: 4px;
    border-bottom: 1px solid var(--border); 
  }

  /* Contain the Massive Disclaimer */
  .footer-disclaimer { 
    padding: 18px 16px; 
    max-height: 220px; 
    overflow-y: auto;  
    margin-bottom: 32px;
  }

  /* Customize scrollbar inside disclaimer */
  .footer-disclaimer::-webkit-scrollbar {
    width: 4px;
  }
  .footer-disclaimer::-webkit-scrollbar-track {
    background: transparent;
  }
  .footer-disclaimer::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.3); 
    border-radius: 4px;
  }

  /* Center bottom credits */
  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
  }
  .footer-bottom-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Floating CTA — left of accessibility widget */
  .floating-cta { bottom: 20px; right: 76px; padding: 11px 16px; font-size: 0.8rem; }

  /* Sticky disclaimer */
  .sticky-disclaimer-inner { font-size: 0.68rem; padding: 8px 16px; }

  /* Move close button to the left on mobile — the a11y trigger
     floats at bottom-right and would otherwise sit on top of it */
  .sticky-disclaimer-inner { flex-wrap: nowrap; }
  .sticky-close { order: -1; }

  .container { padding: 0 20px; }
  
  .cursor-dot,
  .cursor-ring {
    display: none;
  }	
}

@media (max-width: 480px) {
  .hero-title  { font-size: 2.1rem; }
  .hero-sub    { font-size: 0.95rem; }
  .stat-number { font-size: 1.8rem; }
  .section-title { font-size: 1.65rem; }
  .logo-name   { font-size: 0.9rem; }
  .logo-badge  { font-size: 0.55rem; padding: 3px 6px; }
  .stats-grid  { grid-template-columns: 1fr; }
}

/* ============================================
   ABOUT TEASER SECTION (index.html)
   ============================================ */
.about-teaser-section {
  position: relative;
  z-index: 2;
  padding: 100px 32px;
  background: var(--faint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ---- Left: Text ---- */
.about-teaser-left .section-label,
.about-teaser-left .section-title {
  text-align: left;
}

.about-teaser-text {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.82;
  margin-bottom: 28px;
}

.about-teaser-text strong { color: var(--text); }

/* ---- Right: Member Cards ---- */
.teaser-avatars-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.teaser-member {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.teaser-member::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--primary-g);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.teaser-member:hover::before  { transform: scaleY(1); }

.teaser-member:hover {
  background: var(--surface2);
  border-color: rgba(16,185,129,0.25);
  transform: translateX(4px);
}

.teaser-photo {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 2px solid rgba(16,185,129,0.25);
  overflow: hidden;
  position: relative;
}

.teaser-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  position: absolute; top: 0; left: 0;
  border-radius: 50%;
}

.teaser-fallback {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 900;
  color: #fff; line-height: 1;
}

.teaser-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.teaser-name {
  font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 700;
  color: var(--text);
}

.teaser-role {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
}

.teaser-sebi-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about-teaser-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-teaser-left .section-label,
  .about-teaser-left .section-title {
    text-align: center;
  }
  .about-teaser-text { text-align: center; }
  .about-teaser-left { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .about-teaser-section { padding: 60px 20px; }
  .teaser-sebi-badge    { display: none; }
}

.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-2);
  cursor: pointer;
  transition: var(--trans);
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--primary);
  border-color: rgba(16,185,129,0.4);
  transform: translateY(-2px);
}
/* Show the correct icon per theme */
.theme-icon-sun  { display: none; }
.theme-icon-moon { display: block; }
[data-theme="light"] .theme-icon-sun  { display: block; }
[data-theme="light"] .theme-icon-moon { display: none; }


/* ============================================
   CUSTOM ACCESSIBILITY WIDGET
   Self-contained — no CDN dependency.
   Trigger sits bottom-right; panel opens above it.
   ============================================ */

/* ── Trigger button ───────────────────────── */
.a11y-trigger {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary-g);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(16,185,129,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: #fff;
}

/* Hide Accessibility Widget when Mobile Menu is Open */
body:has(.mobile-menu-overlay.open) .a11y-trigger,
body:has(.mobile-menu-overlay.open) .a11y-panel {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: scale(0.8); /* Adds a smooth shrink-away effect */
}

.a11y-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(16,185,129,0.6);
}
.a11y-trigger:focus-visible {
  outline: 3px solid #10b981;
  outline-offset: 3px;
}
.a11y-trigger svg { pointer-events: none; }

/* ── Panel ────────────────────────────────── */
.a11y-panel {
  position: fixed;
  bottom: 88px; right: 24px;
  width: 300px;
  background: var(--panel-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 18px 16px;
  z-index: 901;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.a11y-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* ── Panel header ─────────────────────────── */
.a11y-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.a11y-panel-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.a11y-reset {
  font-size: 0.72rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(16,185,129,0.3);
  transition: var(--trans);
}
.a11y-reset:hover { background: rgba(16,185,129,0.1); }

/* ── Section label ────────────────────────── */
.a11y-section-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 12px 0 6px;
}

/* ── Toggle rows ──────────────────────────── */
.a11y-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
  gap: 10px;
}
.a11y-row:hover { background: var(--surface2); }
.a11y-row-info {
  display: flex; align-items: center; gap: 10px;
  flex: 1; min-width: 0;
}
.a11y-row-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(16,185,129,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1rem;
}
.a11y-row-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Toggle switch ────────────────────────── */
.a11y-switch {
  position: relative;
  width: 36px; height: 20px;
  flex-shrink: 0;
}
.a11y-switch input { opacity: 0; width: 0; height: 0; }
.a11y-switch-track {
  position: absolute; inset: 0;
  background: var(--border);
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.a11y-switch-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}
.a11y-switch input:checked + .a11y-switch-track {
  background: var(--primary);
}
.a11y-switch input:checked + .a11y-switch-track::after {
  transform: translateX(16px);
}
.a11y-switch input:focus-visible + .a11y-switch-track {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ── Font size stepper ────────────────────── */
.a11y-stepper {
  display: flex; align-items: center; gap: 6px;
}
.a11y-stepper button {
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
  line-height: 1;
}
.a11y-stepper button:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.a11y-stepper-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  min-width: 30px;
  text-align: center;
}

/* ── Divider ──────────────────────────────── */
.a11y-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}

/* ── Mobile adjustments ───────────────────── */
@media (max-width: 480px) {
  .a11y-trigger { bottom: 18px; right: 18px; width: 46px; height: 46px; }
  .a11y-panel   { bottom: 76px; right: 18px; width: calc(100vw - 36px); }
  /* Align floating CTA bottom with a11y trigger on small screens */
  .floating-cta { bottom: 18px; }
}


/* ============================================
   ACCESSIBILITY FEATURE CLASSES
   Applied to <html> by the widget JS below.
   The existing feature classes (high-contrast,
   grayscale, etc.) remain intact further down.
   ============================================ */

/* (UX4G bridge rules removed — widget is now self-contained) */


/* ============================================================
   UX4G ACCESSIBILITY WIDGET — FULL FEATURE SUPPORT
   The widget adds classes to <html> (and sometimes <body>).
   These rules make every widget option visually effective.
   ============================================================ */

/* ── FONT SIZE SCALING ─────────────────────────────────────── */
/* UX4G sets html font-size directly; rem units in your CSS
   already scale with it. These classes are extra safety nets
   in case the widget uses class-based sizing instead. */

html.increase-font-size,
html.increase-font {
  font-size: 120% !important;
}

html.decrease-font-size,
html.decrease-font {
  font-size: 85% !important;
}

/* ── HIGH CONTRAST ─────────────────────────────────────────── */
html.high-contrast,
body.high-contrast {
  filter: contrast(1.5) !important;
}

html.high-contrast body,
body.high-contrast {
  background: #000 !important;
  color: #fff !important;
}

html.high-contrast a,
body.high-contrast a {
  color: #ffff00 !important;
}

html.high-contrast button,
html.high-contrast .btn,
body.high-contrast button,
body.high-contrast .btn {
  border: 2px solid #ffff00 !important;
}

/* ── NEGATIVE / INVERTED CONTRAST ──────────────────────────── */
html.negative-contrast,
body.negative-contrast {
  filter: invert(1) hue-rotate(180deg) !important;
}

/* Re-invert images & videos so they look normal */
html.negative-contrast img,
html.negative-contrast video,
html.negative-contrast canvas,
body.negative-contrast img,
body.negative-contrast video,
body.negative-contrast canvas {
  filter: invert(1) hue-rotate(180deg) !important;
}

/* ── LIGHT BACKGROUND (Smart Invert for dark sites) ────────── */
html.light-background body,
body.light-background {
  background: #ffffff !important;
  color: #000000 !important;
}

html.light-background .navbar,
body.light-background .navbar {
  background: rgba(255,255,255,0.95) !important;
}

/* ── GRAYSCALE ──────────────────────────────────────────────── */
html.grayscale,
body.grayscale {
  filter: grayscale(1) !important;
}

/* ── HIGHLIGHT / UNDERLINE LINKS ───────────────────────────── */
html.links-underline a,
html.highlight-links a,
body.links-underline a,
body.highlight-links a {
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

html.links-underline a:not(.btn):not(.nav-link),
body.links-underline a:not(.btn):not(.nav-link) {
  background: rgba(16,185,129,0.15) !important;
  border-radius: 2px !important;
  padding: 0 2px !important;
}

/* ── READABLE / DYSLEXIA FONT ──────────────────────────────── */
/* UX4G switches to a readable font; we map it to a system
   stack that aids readability when its CDN font is unavailable */
html.readable-font *,
body.readable-font * {
  font-family: 'Arial', 'Helvetica Neue', sans-serif !important;
  letter-spacing: 0.03em !important;
  word-spacing: 0.1em !important;
}

/* ── DARK MODE (class on <html> in some widget versions) ────── */
html.dark-mode body {
  background: #030712 !important;
  color: #f1f5f9 !important;
}

html.dark-mode .navbar {
  background: rgba(3,7,18,0.92) !important;
}

html.dark-mode .footer {
  background: #030712 !important;
  color: #94a3b8 !important;
}

/* ── CURSOR: BIG / LARGE ───────────────────────────────────── */
html.big-cursor *,
body.big-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='8' cy='8' r='7' fill='%2310b981' stroke='white' stroke-width='2'/%3E%3C/svg%3E") 8 8, auto !important;
}

/* ── HIDE IMAGES ───────────────────────────────────────────── */
html.hide-images img,
body.hide-images img {
  visibility: hidden !important;
}

/* ── PAUSE ANIMATIONS ──────────────────────────────────────── */
html.pause-animation *,
body.pause-animation * {
  animation: none !important;
  transition: none !important;
}

/* ── LINE HEIGHT INCREASE ──────────────────────────────────── */
html.reading-guide *,
html.increase-line-height *,
body.increase-line-height * {
  line-height: 2 !important;
}

/* ── LETTER SPACING ────────────────────────────────────────── */
html.increase-letter-spacing *,
body.increase-letter-spacing * {
  letter-spacing: 0.12em !important;
}

/* ── FOCUS INDICATOR (keyboard nav) ───────────────────────── */
html.focus-visible *:focus,
body.focus-visible *:focus {
  outline: 3px solid #10b981 !important;
  outline-offset: 3px !important;
}

/* ============================================
   KEYBOARD NAVIGATION — Baseline focus styles
   ============================================ */

/* Baseline visible focus ring for ALL interactive elements */
:focus-visible {
  outline: 2px solid var(--primary, #10b981);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip-to-content link */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 99999;
  background: var(--primary, #10b981);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
  white-space: nowrap;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}