/* ==========================================================================
   S.E.E.D CARD SERVICES INC. — PREMIUM REDESIGN DESIGN SYSTEM v2.0
   ========================================================================== */

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

/* ===== PREMIUM CSS TOKENS v4.0 (Black & Yellow) ===== */
:root {
  /* Brand colors - Default Dark Theme */
  --primary:        #FACC15; /* Vibrant Yellow */
  --primary-deep:   #000000; /* Pure Black */
  --primary-light:  #1A1A1A;
  --primary-glow:   rgba(250, 204, 21, 0.2);

  --secondary:      #EAB308;
  --secondary-dark: #CA8A04;
  --secondary-glow: rgba(234, 179, 8, 0.4);
  --secondary-soft: rgba(250, 204, 21, 0.1);

  --accent:         #FFFFFF; /* White accents */
  --accent-dark:    #E5E5E5;
  --accent-glow:    rgba(255, 255, 255, 0.2);

  /* Semantic neutrals for Dark mode */
  --bg-main:        #000000;
  --bg-card:        rgba(255, 255, 255, 0.03);
  --bg-navbar:      rgba(5, 5, 5, 0.92);
  
  --text-main:      #FAFAFA;
  --text-muted:     #A3A3A3;
  --text-title:     #FACC15;
  
  --border-color:   rgba(250, 204, 21, 0.15);
  --border-soft:    rgba(255, 255, 255, 0.06);

  /* Neutral Palette */
  --white:          #FFFFFF;
  --off-white:      #050505;
  --gray-100:       #0A0A0A;
  --gray-200:       #E5E5E5;
  --gray-400:       #A3A3A3;
  --gray-600:       #737373;
  --gray-800:       #262626;
  --dark:           #050505; /* Black Background */

  /* Glass System - Refined for Dark Mode */
  --glass-bg:       rgba(0, 0, 0, 0.5);
  --glass-bg-light: rgba(10, 10, 10, 0.85);
  --glass-border:   rgba(250, 204, 21, 0.15);
  --glass-border-l: rgba(250, 204, 21, 0.3);

  /* Typography - Clean & Premium */
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;

  /* Radius - Sleek */
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --radius-xl:   40px;
  --radius-full: 9999px;

  /* Shadows - Buttery Smooth for Dark Theme */
  --shadow-sm:  0 4px 12px rgba(0,0,0,0.5);
  --shadow-md:  0 12px 32px rgba(0,0,0,0.7);
  --shadow-lg:  0 24px 48px rgba(0,0,0,0.8);
  --shadow-xl:  0 40px 80px rgba(0,0,0,0.9);
  --shadow-glow-green: 0 0 50px rgba(250, 204, 21, 0.35);
  --shadow-glow-gold:  0 0 50px rgba(255, 255, 255, 0.2);

  /* Animation */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-sharp:  cubic-bezier(0.77, 0, 0.18, 1);
  --duration-fast: 0.2s;
  --duration-base: 0.4s;
  --duration-slow: 0.8s;

  /* Nav */
  --nav-height: 85px;
}
/* ===== RESET & BASE ===== */
*, *::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);
  background: var(--dark);
  color: var(--gray-200);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

p { color: var(--gray-400); }
a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-display); border: none; outline: none; background: none; }

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #FACC15, #F59E0B, #EAB308);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 3px;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  transition: all 0.4s var(--ease-smooth);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  background: transparent;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled .navbar-inner {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(250, 204, 21, 0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin: 0 1rem;
  padding: 0 1.5rem;
  width: calc(100% - 2rem);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

.logo .dot { color: #FACC15; }
.logo .tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-left: 0.5rem;
  align-self: flex-end;
  margin-bottom: 3px;
}

.navbar.scrolled .logo { color: #FACC15; }
.navbar.scrolled .logo .tagline { color: rgba(250, 204, 21, 0.5); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-full);
  transition: all 0.25s var(--ease-smooth);
  position: relative;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-link.active {
  color: #FACC15;
  background: rgba(250, 204, 21, 0.12);
}

.navbar.scrolled .nav-link { color: rgba(255,255,255,0.7); }
.navbar.scrolled .nav-link:hover { color: #FACC15; background: rgba(250, 204, 21, 0.08); }
.navbar.scrolled .nav-link.active { color: #FACC15; }

/* Nav Button Specificity Override */
.navbar .nav-links .nav-btn,
.navbar.scrolled .nav-links .nav-btn {
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, #FACC15, #EAB308) !important;
  color: #000000 !important;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(250, 204, 21, 0.3);
  transition: all 0.3s var(--ease-bounce);
  margin-left: 0.5rem;
  border: none;
}

.navbar .nav-links .nav-btn:hover,
.navbar.scrolled .nav-links .nav-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(250, 204, 21, 0.45) !important;
  background: linear-gradient(135deg, #EAB308, #FACC15) !important;
  color: #000000 !important;
}

.navbar .nav-links .nav-btn.active,
.navbar.scrolled .nav-links .nav-btn.active {
  background: linear-gradient(135deg, #FACC15, #EAB308) !important;
  color: #000000 !important;
  box-shadow: 0 4px 20px rgba(250, 204, 21, 0.3) !important;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled .hamburger span { background: #FACC15; }

.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); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: var(--primary-deep);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s var(--ease-smooth);
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu .nav-link {
  color: rgba(255,255,255,0.8);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.mobile-menu .nav-btn {
  text-align: center;
  margin-left: 0;
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide { max-width: 1400px; }

.section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.section-sm { padding: var(--space-lg) 0; }

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #FACC15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FACC15;
  animation: pulse-dot 2s infinite;
}

.section-header { text-align: center; max-width: 720px; margin: 0 auto 4rem auto; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1.1rem; color: #FFFFFF; }
.section-header p { font-size: 1.1rem; color: rgba(255,255,255,0.55); max-width: 600px; margin: 0 auto; }

.underline-green { text-decoration: none; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s var(--ease-bounce);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

/* Ripple effect */
.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s, opacity 0.5s;
}

.btn:active::after {
  width: 300px; height: 300px; opacity: 0;
}

.btn-gold { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #000; box-shadow: 0 6px 20px var(--primary-glow); font-weight: 800; }

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--accent-glow);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-primary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }

.btn-outline-primary:hover { background: var(--primary); color: #000; transform: translateY(-3px); box-shadow: 0 6px 20px var(--primary-glow); }

.btn-green { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #000; box-shadow: 0 6px 20px var(--primary-glow); font-weight: 800; }

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--secondary-glow);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-bounce);
}

.btn:hover .btn-icon { transform: translateX(4px); }

.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-main);
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 4rem;
}

/* Animated Gradient Mesh */
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(250, 204, 21, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(250, 204, 21, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 60% 80%, rgba(234, 179, 8, 0.03) 0%, transparent 60%);
  animation: mesh-shift 12s ease-in-out infinite alternate;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
}

/* Particles */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particle-rise var(--duration, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes particle-rise {
  0%   { opacity: 0; transform: translateY(100px) scale(0.5); }
  15%  { opacity: 0.6; }
  85%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-200px) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem 0.5rem 0.75rem;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #FACC15;
  margin-bottom: 1.75rem;
  letter-spacing: 0.3px;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: #FACC15;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.6);
  animation: pulse-dot 1.8s infinite;
}

.hero-badge-icon {
  width: 16px; height: 16px;
  stroke: #FACC15;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero h1 .highlight { background: linear-gradient(135deg, #FACC15, #F59E0B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 520px;
}

.hero-trust-strip {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

.trust-pill svg { width: 16px; height: 16px; stroke: #FACC15; }

/* Hero Card 3D Zone */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-3d-scene {
  perspective: 1200px;
  width: 380px;
  height: 240px;
}

.card-3d {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: card-float 6s ease-in-out infinite;
  transition: transform 0.1s ease;
}

.card-face {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #111111 50%, #0a0a0a 100%);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.2);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.8),
    0 0 0 1px rgba(250, 204, 21, 0.05),
    inset 0 1px 0 rgba(250, 204, 21, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Card shine effect */
.card-face::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0.04) 60deg, transparent 120deg);
  animation: card-shine 8s linear infinite;
}

.card-face::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

.card-row-top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 2; }
.card-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--white);
}
.card-logo-text span { color: #FACC15; }
.card-prepaid-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.card-chip-row { display: flex; align-items: center; gap: 1rem; position: relative; z-index: 2; }

.card-chip {
  width: 44px; height: 34px;
  background: linear-gradient(135deg, #f9d976, #f0a500);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.card-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(0,0,0,0.1) 10px, rgba(0,0,0,0.1) 11px),
    repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(0,0,0,0.1) 10px, rgba(0,0,0,0.1) 11px);
}

.card-contactless {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contactless-arc {
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  animation: contactless-pulse 2s ease-in-out infinite;
}

.contactless-arc:nth-child(1) { width: 10px; animation-delay: 0s; }
.contactless-arc:nth-child(2) { width: 16px; animation-delay: 0.15s; }
.contactless-arc:nth-child(3) { width: 22px; animation-delay: 0.3s; }

.card-number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 4px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.card-row-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.card-holder-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.card-holder-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.card-brand {
  text-align: right;
}

.powered-by-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 0.2rem;
}

.zum-rails {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.zum-rails em {
  color: #FACC15;
  font-style: normal;
}

/* Card glow ring */
.card-glow-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(250, 204, 21, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(250, 204, 21, 0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  animation: float-badge 4s ease-in-out infinite;
  white-space: nowrap;
}

.floating-badge-1 {
  top: -20px; right: -30px;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: -15px; left: -40px;
  animation-delay: 2s;
}

.badge-icon-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon-circle.green { background: rgba(250, 204, 21, 0.15); }
.badge-icon-circle.gold { background: rgba(250, 204, 21, 0.15); }
.badge-icon-circle svg { width: 18px; height: 18px; }
.badge-icon-circle.green svg { stroke: #FACC15; }
.badge-icon-circle.gold svg { stroke: #FACC15; }

.badge-text-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  display: block;
}

.badge-text-value {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(250, 204, 21, 0.08);
  border-top: 1px solid rgba(250, 204, 21, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: #FACC15;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-number .stat-suffix { color: #EAB308; }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ===== SEED PRINCIPLE SECTION ===== */
.seed-section { background: var(--bg-main); }

.seed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.seed-card {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  cursor: default;
}

.seed-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FACC15, #EAB308);
  transition: height 0.4s var(--ease-smooth);
}

.seed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(250, 204, 21, 0.1);
  border-color: rgba(250, 204, 21, 0.2);
  background: rgba(250, 204, 21, 0.04);
}

.seed-card:hover::before { height: 5px; background: linear-gradient(90deg, #FACC15, #F59E0B); }

.seed-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--ease-smooth);
}

.seed-card:hover .seed-letter { color: rgba(250, 204, 21, 0.3); }

.seed-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; color: #FACC15; }

.seed-card p { font-size: 0.925rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ===== TRUST SECTION ===== */
.trust-section {
  background: var(--bg-card);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.trust-text h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1.25rem; }
.trust-text p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 2rem; }

.trust-callout {
  background: rgba(250, 204, 21, 0.05);
  border: 1px solid rgba(250, 204, 21, 0.15);
  border-left: 4px solid #FACC15;
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.975rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.trust-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-smooth);
}

.trust-card:hover {
  background: rgba(250, 204, 21, 0.04);
  border-color: rgba(250, 204, 21, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(250, 204, 21, 0.08);
}

.trust-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.trust-card-icon svg { width: 22px; height: 22px; stroke: #FACC15; }
.trust-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 0.5rem; }
.trust-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ===== HOMEPAGE PREVIEW CARDS ===== */
.preview-section { background: var(--bg-main); }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.preview-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  text-decoration: none;
  display: block;
  background: rgba(255,255,255,0.02);
}

.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(250, 204, 21, 0.1);
  border-color: rgba(250, 204, 21, 0.2);
}

.preview-card-header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.preview-card-header.blue { background: linear-gradient(135deg, rgba(250, 204, 21, 0.15), rgba(250, 204, 21, 0.05)); }
.preview-card-header.green { background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(234, 179, 8, 0.08)); }
.preview-card-header.gold { background: linear-gradient(135deg, rgba(250, 204, 21, 0.25), rgba(245, 158, 11, 0.1)); }

.preview-card-header-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(250, 204, 21, 0.2);
}

.preview-card-header-icon svg { width: 32px; height: 32px; stroke: #FACC15; }

.preview-card-body {
  padding: 2rem;
}

.preview-card-body h3 { font-size: 1.25rem; margin-bottom: 0.65rem; color: #FFFFFF; }
.preview-card-body p { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }

.preview-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FACC15;
  font-family: var(--font-display);
  transition: gap 0.3s;
}

.preview-card:hover .preview-card-link { gap: 0.75rem; color: #F59E0B; }

.preview-card-link svg { width: 16px; height: 16px; }

/* ===== HOW IT WORKS PAGE ===== */
.timeline-wrapper { position: relative; }

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(250, 204, 21, 0.15) 10%, rgba(250, 204, 21, 0.15) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-step-content {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: none;
  transition: all 0.4s var(--ease-smooth);
}

.timeline-step-content:hover {
  box-shadow: 0 12px 40px rgba(250, 204, 21, 0.08);
  border-color: rgba(250, 204, 21, 0.2);
  transform: scale(1.02);
}

.timeline-step:nth-child(even) .timeline-step-content:last-of-type { grid-column: 3; }
.timeline-step:nth-child(even) .timeline-empty { grid-column: 1; }

.timeline-node {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FACC15, #EAB308);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  box-shadow: 0 0 0 8px rgba(250, 204, 21, 0.1), 0 8px 24px rgba(0,0,0,0.4);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(250, 204, 21, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-icon svg { width: 24px; height: 24px; stroke: #FACC15; }

.timeline-step-content h3 { font-size: 1.35rem; margin-bottom: 0.75rem; color: #FFFFFF; }
.timeline-step-content p { font-size: 0.95rem; color: rgba(255,255,255,0.55); }

/* ===== USE CASES PAGE ===== */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.usecase-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.usecase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(250, 204, 21, 0.1);
  border-color: rgba(250, 204, 21, 0.2);
}

.usecase-header {
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.usecase-header::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.1;
}

.usecase-card.blue .usecase-header { background: linear-gradient(135deg, rgba(250, 204, 21, 0.06), rgba(250, 204, 21, 0.02)); }
.usecase-card.blue .usecase-header::before { background: #FACC15; }
.usecase-card.green .usecase-header { background: linear-gradient(135deg, rgba(250, 204, 21, 0.08), rgba(250, 204, 21, 0.03)); }
.usecase-card.green .usecase-header::before { background: #EAB308; }
.usecase-card.gold .usecase-header { background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(250, 204, 21, 0.04)); }
.usecase-card.gold .usecase-header::before { background: #F59E0B; }

.usecase-icon-box {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.usecase-card.blue .usecase-icon-box { background: rgba(250, 204, 21, 0.1); }
.usecase-card.green .usecase-icon-box { background: rgba(250, 204, 21, 0.1); }
.usecase-card.gold .usecase-icon-box { background: rgba(250, 204, 21, 0.1); }

.usecase-card.blue .usecase-icon-box svg { stroke: #FACC15; }
.usecase-card.green .usecase-icon-box svg { stroke: #FACC15; }
.usecase-card.gold .usecase-icon-box svg { stroke: #FACC15; }
.usecase-icon-box svg { width: 28px; height: 28px; }

.usecase-header h3 { font-size: 1.35rem; margin-bottom: 0; color: #FFFFFF; }
.usecase-body { padding: 0 2rem 2.5rem; }
.usecase-body p { font-size: 0.925rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; line-height: 1.7; }

.usecase-tag {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.usecase-card.blue .usecase-tag { background: rgba(250, 204, 21, 0.1); color: #FACC15; }
.usecase-card.green .usecase-tag { background: rgba(250, 204, 21, 0.1); color: #FACC15; }
.usecase-card.gold .usecase-tag { background: rgba(250, 204, 21, 0.1); color: #FACC15; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--bg-main);
  padding: calc(var(--nav-height) + 4rem) 0 6rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.25rem; }
.about-hero p { color: rgba(255,255,255,0.65); font-size: 1.2rem; max-width: 680px; margin: 0 auto; }

.leadership-card {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.leadership-avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FACC15, #EAB308);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(250, 204, 21, 0.1), 0 12px 40px rgba(0,0,0,0.5);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: #000;
}

.leadership-info h2 { font-size: 2rem; margin-bottom: 0.35rem; color: #FFFFFF; }
.leadership-role {
  font-size: 1rem;
  color: #FACC15;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.leadership-info p { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.55); }

.mission-section { background: var(--bg-card); }

.mission-pull-quote {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(250, 204, 21, 0.05));
  border: 1px solid rgba(250, 204, 21, 0.15);
  border-radius: var(--radius-xl);
  padding: 4rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-pull-quote::before {
  content: '"';
  position: absolute;
  top: -1rem; left: 2rem;
  font-size: 12rem;
  font-family: serif;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}

.mission-pull-quote blockquote {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.mission-pull-quote cite {
  font-style: normal;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

.partner-highlight {
  background: rgba(255,255,255,0.02);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  transition: all 0.3s var(--ease-smooth);
}

.partner-highlight:hover { border-color: rgba(250, 204, 21, 0.2); box-shadow: 0 12px 40px rgba(250, 204, 21, 0.08); }

.partner-logo-box {
  flex-shrink: 0;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 3rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: #FACC15;
  letter-spacing: 0.5px;
}

.partner-logo-box em { color: #FFFFFF; font-style: normal; }
.partner-highlight-text h3 { font-size: 1.35rem; margin-bottom: 0.75rem; color: #FFFFFF; }
.partner-highlight-text p { color: rgba(255,255,255,0.55); }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: var(--bg-main);
  padding: calc(var(--nav-height) + 4rem) 0 6rem;
  text-align: center;
  color: var(--white);
}

.contact-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.contact-hero p { color: rgba(255,255,255,0.65); font-size: 1.15rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-info-card > p { color: rgba(255,255,255,0.55); margin-bottom: 2.5rem; }

.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.contact-info-item:hover { background: rgba(250, 204, 21, 0.04); border-color: rgba(250, 204, 21, 0.2); }

.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 20px; height: 20px; stroke: #FACC15; }
.contact-info-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.4); margin-bottom: 0.2rem; font-weight: 600; }
.contact-info-value { font-size: 0.975rem; font-weight: 600; color: var(--white); }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: none;
}

.contact-form-card h3 { font-size: 1.75rem; margin-bottom: 0.5rem; color: var(--white); }
.contact-form-card > p { color: var(--gray-400); margin-bottom: 2.5rem; }

/* Floating label inputs */
.field-group {
  position: relative;
  margin-bottom: 1.75rem;
}

.field-group label {
  position: absolute;
  top: 50%; left: 1.25rem;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: var(--gray-400);
  font-weight: 500;
  pointer-events: none;
  transition: all 0.25s var(--ease-smooth);
  background: var(--bg-card);
  padding: 0 0.25rem;
}

.field-group textarea ~ label { top: 1.25rem; transform: none; }

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--white);
  transition: all 0.25s var(--ease-smooth);
  outline: none;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: #FACC15;
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.08);
}

.field-group input:focus ~ label,
.field-group input:not(:placeholder-shown) ~ label,
.field-group textarea:focus ~ label,
.field-group textarea:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 0.8rem;
  color: #FACC15;
  font-weight: 700;
  transform: translateY(-50%);
}

.field-group textarea { resize: vertical; min-height: 130px; }

.fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-status-msg {
  display: none;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.form-status-msg.success { display: block; background: rgba(250, 204, 21, 0.08); border: 1px solid rgba(250, 204, 21, 0.2); color: #FACC15; }
.form-status-msg.error { display: block; background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.2); color: #EF4444; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg-main);
  padding: calc(var(--nav-height) + 5rem) 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 204, 21, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 204, 21, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 3.75rem); margin-bottom: 1.25rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.15rem; max-width: 640px; margin: 0 auto; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg-main);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(250, 204, 21, 0.08);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(250, 204, 21, 0.06) 0%, transparent 60%);
  animation: glow-rotate 15s linear infinite;
}

.cta-section h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .container { position: relative; z-index: 1; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-main);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(250, 204, 21, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo { color: var(--white); margin-bottom: 1.25rem; }
.footer-brand .logo .dot { color: #FACC15; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.4); max-width: 300px; line-height: 1.65; margin-bottom: 1.75rem; }

.footer-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(250, 204, 21, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #FACC15;
}

.footer-partner-badge em { color: #FFFFFF; font-style: normal; }

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FACC15;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.footer-links a:hover { color: #FACC15; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: #FACC15; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-bounce); }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

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

/* ===== PAGE TRANSITION ===== */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-main);
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease-sharp);
}

.page-transition-overlay.fade-in { opacity: 1; pointer-events: all; }

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes mesh-shift {
  0%   { opacity: 0.8; }
  100% { opacity: 1; }
}

@keyframes card-float {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  25%       { transform: translateY(-8px) rotateX(2deg) rotateY(-2deg); }
  75%       { transform: translateY(-4px) rotateX(-1deg) rotateY(2deg); }
}

@keyframes card-shine {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 150%; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.2); }
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes glow-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes contactless-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}

@keyframes counter-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { text-align: center; }
  .hero-trust-strip { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .floating-badge-1 { right: -10px; }
  .floating-badge-2 { left: -10px; }
  .trust-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .seed-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .leadership-card { grid-template-columns: 1fr; text-align: center; }
  .leadership-avatar { margin: 0 auto; }
  .partner-highlight { flex-direction: column; text-align: center; }
  .timeline-line { display: none; }
  .timeline-step { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.5rem; }
  .seed-grid { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .fields-row { grid-template-columns: 1fr; }
  .card-3d-scene { width: 320px; height: 200px; }
  .trust-cards { grid-template-columns: 1fr; }
  .contact-form-card { padding: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .hero { padding-top: calc(var(--nav-height) + 1rem); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0; }
  .stat-item:last-child { border-bottom: none; }
  .floating-badge { display: none; }
}

