:root {
  --bg-dark: #09090b;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-main: #fcfcfc;
  --text-muted: #a1a1aa;
  --accent: #e4e4e7;
  --border-glow: rgba(255, 255, 255, 0.1);
  --primary: #ffffff;
  --fire-orange: #ff6b35;
  --fire-gold: #ffd700;
  --mystic-blue: #4a90d9;
  --arcane-purple: #9b59b6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.dark-theme {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background Particles */
body.dark-theme::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(155, 89, 182, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(74, 144, 217, 0.02) 0%, transparent 70%);
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Floating Particles - Stars of Upward Mobility */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, #ffffff 0%, rgba(255, 215, 0, 0.8) 50%, transparent 100%);
  border-radius: 50%;
  animation: float 12s infinite linear;
  box-shadow: 
    0 0 10px rgba(255, 215, 0, 0.8),
    0 0 20px rgba(255, 215, 0, 0.4),
    0 0 30px rgba(255, 107, 53, 0.2);
}

/* Larger twinkling stars */
.particle:nth-child(odd) {
  width: 4px;
  height: 4px;
  animation: floatTwinkle 15s infinite linear;
}

/* Golden stars */
.particle:nth-child(3n) {
  background: radial-gradient(circle, #ffd700 0%, rgba(255, 179, 0, 0.6) 50%, transparent 100%);
  box-shadow: 
    0 0 12px rgba(255, 215, 0, 1),
    0 0 25px rgba(255, 179, 0, 0.5);
}

/* Blue-white stars */
.particle:nth-child(5n) {
  background: radial-gradient(circle, #e0f7fa 0%, rgba(79, 195, 247, 0.6) 50%, transparent 100%);
  box-shadow: 
    0 0 10px rgba(79, 195, 247, 0.8),
    0 0 20px rgba(79, 195, 247, 0.4);
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 10s; }
.particle:nth-child(2) { left: 12%; animation-delay: 1.5s; animation-duration: 14s; }
.particle:nth-child(3) { left: 18%; animation-delay: 3s; animation-duration: 11s; }
.particle:nth-child(4) { left: 25%; animation-delay: 0.5s; animation-duration: 16s; }
.particle:nth-child(5) { left: 32%; animation-delay: 2.5s; animation-duration: 12s; }
.particle:nth-child(6) { left: 38%; animation-delay: 4s; animation-duration: 15s; }
.particle:nth-child(7) { left: 45%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(8) { left: 52%; animation-delay: 3.5s; animation-duration: 17s; }
.particle:nth-child(9) { left: 58%; animation-delay: 0.8s; animation-duration: 11s; }
.particle:nth-child(10) { left: 65%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(11) { left: 72%; animation-delay: 4.5s; animation-duration: 12s; }
.particle:nth-child(12) { left: 78%; animation-delay: 1.2s; animation-duration: 16s; }
.particle:nth-child(13) { left: 85%; animation-delay: 3s; animation-duration: 13s; }
.particle:nth-child(14) { left: 90%; animation-delay: 0.3s; animation-duration: 15s; }
.particle:nth-child(15) { left: 95%; animation-delay: 2.8s; animation-duration: 11s; }

@keyframes float {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  95% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-10vh) scale(1.2);
    opacity: 0;
  }
}

@keyframes floatTwinkle {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 0.6;
    transform: translateY(70vh) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(50vh) scale(1.1);
  }
  75% {
    opacity: 0.7;
    transform: translateY(25vh) scale(1);
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1.3);
    opacity: 0;
  }
}

/* Typography */
h1, h2, h3 {
  font-weight: 500;
  letter-spacing: -0.02em;
}

.italic-serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-muted);
  font-weight: 400;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section-padding {
  padding: 6rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-glow);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  letter-spacing: -0.05em;
  transition: text-shadow 0.3s ease;
}

.logo:hover {
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.logo .dot {
  color: var(--fire-orange);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; text-shadow: 0 0 10px var(--fire-orange); }
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.9rem;
  transition: all 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fire-gold), transparent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
}

/* Glassmorphism Utilities */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glow);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
}

.glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, rgba(255,107,53,0.04) 40%, rgba(0,0,0,0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: orbPulse 4s ease-in-out infinite;
}

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

.badge-pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border-glow);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.badge-pill:hover {
  border-color: var(--fire-gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  color: var(--fire-gold);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary);
  color: black;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.2), 0 0 20px rgba(255,215,0,0.2);
}

.btn-outline {
  border: 1px solid var(--border-glow);
  color: white;
  background: transparent;
  padding: 0.6rem 1.5rem;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 0 20px rgba(255,215,0,0.15);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Cards with Mystical Fire Effect */
.card {
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-glow);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before,
.card.in-view::before {
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.8) 0%, 
    rgba(255, 215, 0, 0.6) 25%,
    rgba(155, 89, 182, 0.4) 50%,
    rgba(74, 144, 217, 0.6) 75%,
    rgba(255, 107, 53, 0.8) 100%
  );
  opacity: 1;
  animation: fireRotate 3s linear infinite;
}

@keyframes fireRotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.card:hover,
.card.in-view {
  transform: translateY(-8px) scale(1.02);
  border-color: transparent;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.4),
    0 0 30px rgba(255, 107, 53, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.card-image {
  width: 100%;
  height: 180px;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.card:hover .card-image img,
.card.in-view .card-image img {
  animation: floatImage 2s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(255,107,53,0.3));
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(2deg); }
  50% { transform: translateY(-5px) rotate(0deg); }
  75% { transform: translateY(-15px) rotate(-2deg); }
}

.card-image-icon {
  font-size: 4rem;
  transition: all 0.5s ease;
}

.card:hover .card-image-icon,
.card.in-view .card-image-icon {
  animation: floatIcon 2s ease-in-out infinite;
  text-shadow: 0 0 30px currentColor;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.1); }
}

.premium {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 215, 0, 0.03) 50%,
    transparent 60%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}

.premium-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--fire-gold), var(--fire-orange));
  color: black;
  padding: 0.2rem 0.8rem;
  font-size: 0.7rem;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.eyebrow {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 1rem 0;
}

.price-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
}

.feature-list li {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: white;
  transition: all 0.3s ease;
}

.card:hover .feature-list li {
  color: rgba(255,255,255,0.8);
}

.card:hover .feature-list li::before {
  color: var(--fire-gold);
  text-shadow: 0 0 10px var(--fire-gold);
}

/* Module Cards */
.module-card {
  text-align: center;
  padding: 2rem;
  cursor: pointer;
}

.module-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.module-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.module-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.module-accent {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  display: block;
  color: var(--accent);
  letter-spacing: 0.2em;
  transition: opacity 0.3s ease;
}

.module-card:hover .module-accent,
.module-card.in-view .module-accent {
  opacity: 0.7;
}

.module-card:hover h4,
.module-card.in-view h4 {
  color: var(--fire-gold);
}

.module-card:hover .module-price,
.module-card.in-view .module-price {
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
}

@keyframes moduleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.1); }
}

/* Application Form */
.application {
  padding: 6rem 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 16px;
  transition: all 0.4s ease;
}

.form-container:hover {
  border-color: rgba(255,215,0,0.2);
  box-shadow: 0 0 40px rgba(255,215,0,0.05);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fire-gold);
  box-shadow: 0 0 15px rgba(255,215,0,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.submit-note {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Form Success State */
.form-success {
  text-align: center;
  padding: 3rem;
}

.form-success.hidden {
  display: none;
}

.success-icon {
  font-size: 3rem;
  color: var(--fire-gold);
  margin-bottom: 1rem;
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 20px rgba(255,215,0,0.4); }
  50% { transform: scale(1.1); text-shadow: 0 0 40px rgba(255,215,0,0.8); }
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-muted);
}

/* Footer */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-email {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: var(--text-primary);
}

.footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--border-glow);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fire-gold), transparent);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* FAQ Accordion */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-primary);
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::after {
  content: '+';
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
}

/* Hero privacy line */
.hero-privacy {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.pricing-transparency {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
}

/* Trust Section */
.trust-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 2.5rem 3rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.trust-callout-text {
  flex: 1;
}

.trust-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.trust-desc {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
}

.trust-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}

.privacy-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.privacy-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-callout {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
  }
  .trust-stats {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .card,
  .card-image img,
  .module-accent,
  .success-icon,
  .particle,
  .glow-orb {
    animation: none !important;
    transition: none !important;
  }
}

/* Selection Color */
::selection {
  background: rgba(255, 215, 0, 0.3);
  color: white;
}
