/* ============================================
   Jojobet - Proje Stil Dosyası (Zenith Theme)
   Dark Green & Gold
   ============================================ */

:root {
  /* Dark Green & Gold Theme */
  --zenith-dark-green: #1A300A;
  --zenith-green-header: #284414;
  --zenith-green-surface: #1E3A0E;
  --zenith-green-elevated: #2d5018;
  --zenith-gold: #FFD700;
  --zenith-gold-bright: #FFEB3B;
  --zenith-gold-muted: #B8860B;
  --zenith-gold-soft: #D4AF37;

  /* Background Colors */
  --zenith-bg-base: #1A300A;
  --zenith-bg-surface: #1E3A0E;
  --zenith-bg-elevated: #284414;
  --zenith-bg-overlay: rgba(26, 48, 10, 0.95);

  /* Text Colors */
  --zenith-text-bright: #FFFFFF;
  --zenith-text-soft: #F0F0F0;
  --zenith-text-muted: #B8C4A8;

  /* Accent & Borders */
  --zenith-accent-primary: var(--zenith-gold);
  --zenith-accent-secondary: var(--zenith-gold-bright);
  --zenith-border-subtle: rgba(255, 215, 0, 0.2);
  --zenith-border-visible: rgba(255, 215, 0, 0.45);

  /* Effects */
  --zenith-shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.35);
  --zenith-shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.4);
  --zenith-shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.5);
  --zenith-glow-gold: 0 0 20px rgba(255, 215, 0, 0.45);
  --zenith-glow-gold-strong: 0 0 28px rgba(255, 235, 59, 0.5);

  /* Neon Glow Variables */
  --neon-gold: 0 0 8px rgba(255, 215, 0, 0.9), 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.3), 0 0 80px rgba(255, 215, 0, 0.15);
  --neon-gold-pulse: 0 0 12px rgba(255, 235, 59, 1), 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4), 0 0 100px rgba(255, 215, 0, 0.2);
  --neon-green: 0 0 8px rgba(80, 200, 60, 0.8), 0 0 20px rgba(80, 200, 60, 0.5), 0 0 40px rgba(80, 200, 60, 0.25);
  --neon-border-gold: 0 0 6px rgba(255, 215, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.2);

  /* Spacing & Sizing */
  --zenith-radius-tight: 6px;
  --zenith-radius-normal: 12px;
  --zenith-radius-relaxed: 20px;
  --zenith-radius-round: 50px;

  /* Timing */
  --zenith-ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --zenith-ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--zenith-bg-base);
  background-image:
    linear-gradient(135deg, rgba(40, 68, 20, 0.4) 0%, transparent 50%),
    linear-gradient(225deg, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
  background-attachment: fixed;
  color: var(--zenith-text-soft);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animated Gradient Mesh Background */
.zenith-mesh-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(40, 68, 20, 0.3) 0%, transparent 40%);
  animation: mesh-shift 20s ease-in-out infinite alternate;
}

@keyframes mesh-shift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-2%, -2%) scale(1.05); }
  100% { transform: translate(2%, 2%) scale(1); }
}

/* Floating Orbs */
.zenith-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.zenith-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: orb-float 25s infinite ease-in-out;
}

.zenith-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--zenith-gold);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.zenith-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--zenith-gold-muted);
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.zenith-orb-3 {
  width: 350px;
  height: 350px;
  background: var(--zenith-gold-soft);
  bottom: 20%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Top Bar - Minimalist */
.zenith-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--zenith-bg-overlay);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--zenith-border-subtle);
  transition: all 0.3s var(--zenith-ease-smooth);
}

.zenith-topbar.scrolled {
  background: rgba(26, 48, 10, 0.98);
  box-shadow: var(--zenith-shadow-medium);
}

.zenith-topbar-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.zenith-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--zenith-text-bright);
  letter-spacing: -0.5px;
  transition: transform 0.3s var(--zenith-ease-smooth);
}

.zenith-brand:hover { transform: translateX(4px); }

.zenith-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--zenith-gold), var(--zenith-gold-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--zenith-glow-gold);
  position: relative;
}

.zenith-brand-mark::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(135deg, var(--zenith-gold), var(--zenith-gold-muted), var(--zenith-gold-soft));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.6;
  animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.zenith-brand-mark i {
  font-size: 22px;
  color: #1A300A;
  position: relative;
  z-index: 1;
}

.zenith-nav-menu { display: flex; gap: 4px; align-items: center; }

.zenith-nav-item {
  padding: 10px 20px;
  text-decoration: none;
  color: var(--zenith-text-muted);
  font-weight: 500;
  border-radius: var(--zenith-radius-normal);
  transition: all 0.3s var(--zenith-ease-smooth);
  position: relative;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}

.zenith-nav-item::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--zenith-gold), var(--zenith-gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--zenith-ease-smooth);
}

.zenith-nav-item:hover::after { transform: scaleX(1); }

.zenith-nav-item:hover {
  color: var(--zenith-gold-bright);
  background: rgba(255, 215, 0, 0.08);
}

.zenith-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--zenith-border-visible);
  color: var(--zenith-text-bright);
  padding: 10px 14px;
  border-radius: var(--zenith-radius-normal);
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s var(--zenith-ease-smooth);
}

.zenith-mobile-toggle:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: var(--zenith-gold);
}

/* Hero Section - Editorial Style */
.zenith-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  z-index: 2;
}

.zenith-hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.zenith-hero-text {
  opacity: 1;
  animation: slide-in-left 0.8s var(--zenith-ease-smooth) both;
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

.zenith-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(184, 134, 11, 0.25);
  border: 1px solid var(--zenith-border-visible);
  border-radius: var(--zenith-radius-round);
  font-size: 12px;
  font-weight: 600;
  color: var(--zenith-gold-bright);
  margin-bottom: 28px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zenith-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--zenith-text-bright);
  letter-spacing: -1px;
}

.zenith-hero-title-accent {
  background: linear-gradient(135deg, var(--zenith-gold) 0%, var(--zenith-gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zenith-hero-description {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--zenith-text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 580px;
}

.zenith-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.zenith-button {
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--zenith-radius-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--zenith-ease-smooth);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zenith-button-primary {
  background: linear-gradient(135deg, var(--zenith-gold), var(--zenith-gold-muted));
  color: #1A300A;
  box-shadow: var(--zenith-shadow-medium), 0 0 12px rgba(255, 215, 0, 0.6), 0 0 25px rgba(255, 215, 0, 0.3);
}

.zenith-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--zenith-shadow-strong), 0 0 18px rgba(255, 235, 59, 0.9), 0 0 40px rgba(255, 215, 0, 0.5), 0 0 70px rgba(255, 215, 0, 0.2);
}

.zenith-button-secondary {
  background: transparent;
  border: 2px solid var(--zenith-border-visible);
  color: var(--zenith-text-bright);
}

.zenith-button-secondary:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: var(--zenith-gold);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.15), inset 0 0 15px rgba(255, 215, 0, 0.05);
}

/* Main Access Card - Large & Prominent */
.zenith-hero-visual {
  position: relative;
  opacity: 1;
  animation: slide-in-right 0.8s var(--zenith-ease-smooth) 0.2s both;
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.zenith-access-wrapper { position: relative; width: 100%; }

.zenith-access-card {
  width: 100%;
  padding: 60px 50px;
  background: linear-gradient(135deg, var(--zenith-bg-elevated) 0%, var(--zenith-bg-surface) 100%);
  border: 2px solid var(--zenith-border-visible);
  border-radius: var(--zenith-radius-relaxed);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--zenith-ease-smooth);
  box-shadow: var(--zenith-shadow-strong);
}

.zenith-access-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.08), transparent);
  transition: left 0.6s var(--zenith-ease-smooth);
}

.zenith-access-card:hover::before { left: 100%; }

.zenith-access-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--zenith-radius-relaxed);
  padding: 2px;
  background: linear-gradient(135deg, var(--zenith-gold), var(--zenith-gold-muted), var(--zenith-gold-soft));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--zenith-ease-smooth);
}

.zenith-access-card:hover::after { opacity: 1; }

.zenith-access-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--zenith-shadow-strong), var(--neon-gold);
  border-color: rgba(255, 235, 59, 0.8);
  animation: neon-pulse 2s ease-in-out infinite;
}

.zenith-access-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zenith-gold), var(--zenith-gold-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #1A300A;
  position: relative;
  z-index: 1;
  box-shadow: var(--neon-gold);
  animation: icon-breathe 3s ease-in-out infinite;
}

@keyframes icon-breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.25);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 235, 59, 1), 0 0 35px rgba(255, 215, 0, 0.7), 0 0 70px rgba(255, 215, 0, 0.35);
  }
}

.zenith-access-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--zenith-text-bright);
  text-align: center;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.zenith-access-subtext {
  font-size: 14px;
  color: var(--zenith-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Content Sections */
.zenith-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 100px;
}

.zenith-section { margin-bottom: 100px; }

.zenith-section-header { text-align: center; margin-bottom: 60px; }

.zenith-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--zenith-text-bright);
  letter-spacing: -0.5px;
}

.zenith-section-subtitle {
  font-size: 1.2rem;
  color: var(--zenith-text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Feature Grid - Magazine Style */
.zenith-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 80px;
}

@keyframes neon-pulse {
  0%, 100% {
    box-shadow: var(--neon-gold);
    border-color: rgba(255, 215, 0, 0.6);
  }
  50% {
    box-shadow: var(--neon-gold-pulse);
    border-color: rgba(255, 235, 59, 0.9);
  }
}

@keyframes neon-border-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes neon-corner-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.zenith-feature-block {
  background: var(--zenith-bg-surface);
  border: 1px solid var(--zenith-border-subtle);
  border-radius: var(--zenith-radius-relaxed);
  padding: 40px;
  transition: all 0.4s var(--zenith-ease-smooth);
  position: relative;
  overflow: hidden;
}

.zenith-feature-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--zenith-gold), var(--zenith-gold-muted));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--zenith-ease-smooth);
}

.zenith-feature-block::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--zenith-radius-relaxed);
  background: radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--zenith-ease-smooth);
  pointer-events: none;
}

.zenith-feature-block:hover::before { transform: scaleY(1); }
.zenith-feature-block:hover::after { opacity: 1; }

.zenith-feature-block:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: var(--neon-gold);
  background: var(--zenith-bg-elevated);
  animation: neon-pulse 2.5s ease-in-out infinite;
}

.zenith-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--zenith-radius-normal);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(184, 134, 11, 0.2));
  border: 1px solid var(--zenith-border-visible);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--zenith-ease-smooth);
}

.zenith-feature-block:hover .zenith-feature-icon {
  background: linear-gradient(135deg, var(--zenith-gold), var(--zenith-gold-muted));
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 235, 59, 0.9);
}

.zenith-feature-icon i {
  font-size: 28px;
  color: var(--zenith-gold);
  transition: color 0.4s var(--zenith-ease-smooth);
}

.zenith-feature-block:hover .zenith-feature-icon i { color: #1A300A; }

.zenith-feature-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--zenith-text-bright);
  letter-spacing: -0.3px;
}

.zenith-feature-text {
  font-size: 1rem;
  color: var(--zenith-text-muted);
  line-height: 1.8;
  font-weight: 400;
}

.zenith-feature-text strong { color: var(--zenith-text-soft); font-weight: 600; }

/* Info Panel */
.zenith-info-panel {
  background: var(--zenith-bg-surface);
  border-left: 4px solid var(--zenith-gold-muted);
  border-radius: var(--zenith-radius-relaxed);
  padding: 40px;
  margin: 40px 0;
  position: relative;
  box-shadow: var(--zenith-shadow-medium), -4px 0 20px rgba(255, 215, 0, 0.25), -4px 0 40px rgba(255, 215, 0, 0.1);
  transition: all 0.4s var(--zenith-ease-smooth);
}

.zenith-info-panel:hover {
  box-shadow: var(--zenith-shadow-medium), -4px 0 25px rgba(255, 215, 0, 0.45), -4px 0 50px rgba(255, 215, 0, 0.2);
  border-left-color: var(--zenith-gold);
}

.zenith-info-panel ul { list-style: none; padding: 0; margin: 0; }

.zenith-info-panel li {
  padding: 14px 0 14px 36px;
  position: relative;
  color: var(--zenith-text-muted);
  font-weight: 400;
  font-size: 1.05rem;
}

.zenith-info-panel li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--zenith-gold);
  font-size: 16px;
}

.zenith-info-panel strong { color: var(--zenith-text-bright); font-weight: 600; }

/* Accordion */
.zenith-accordion-item {
  background: var(--zenith-bg-surface);
  border: 1px solid var(--zenith-border-subtle);
  border-radius: var(--zenith-radius-normal);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s var(--zenith-ease-smooth);
}

.zenith-accordion-item:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.2), 0 0 25px rgba(255, 215, 0, 0.08);
}

.zenith-accordion-item[open] {
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3), 0 0 35px rgba(255, 215, 0, 0.12), var(--zenith-shadow-soft);
}

.zenith-accordion-trigger {
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--zenith-text-bright);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: all 0.3s var(--zenith-ease-smooth);
  font-family: 'Poppins', sans-serif;
}

.zenith-accordion-trigger::-webkit-details-marker { display: none; }

.zenith-accordion-trigger::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  color: var(--zenith-gold);
  transition: transform 0.3s var(--zenith-ease-smooth);
}

.zenith-accordion-item[open] .zenith-accordion-trigger::after { transform: rotate(180deg); }

.zenith-accordion-trigger:hover {
  background: rgba(255, 215, 0, 0.06);
  color: var(--zenith-gold-bright);
}

.zenith-accordion-content {
  padding: 0 28px 24px;
  color: var(--zenith-text-muted);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 400;
}

/* Footer */
.zenith-footer {
  position: relative;
  z-index: 2;
  background: var(--zenith-bg-surface);
  border-top: 1px solid var(--zenith-border-subtle);
  padding: 60px 32px;
  margin-top: 100px;
}

.zenith-footer-container { max-width: 1400px; margin: 0 auto; text-align: center; }

.zenith-footer-text { color: var(--zenith-text-muted); font-size: 15px; font-weight: 400; }

.zenith-footer-disclaimer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--zenith-border-subtle);
  color: var(--zenith-text-muted);
  font-size: 13px;
  line-height: 1.7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.zenith-footer-disclaimer p { margin-bottom: 12px; }
.zenith-footer-disclaimer p:last-child { margin-bottom: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .zenith-hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    align-content: start;
    padding-top: 20px;
  }
  .zenith-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
  }
  .zenith-hero-visual {
    order: -1;
    opacity: 1;
  }
  .zenith-hero-description { max-width: 100%; }
  .zenith-nav-menu { display: none; }
  .zenith-mobile-toggle { display: block; }
  .zenith-feature-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
}

@media (max-width: 768px) {
  .zenith-hero {
    padding: 88px 20px 48px;
    min-height: auto;
    align-items: flex-start;
  }
  .zenith-hero-container { gap: 32px; padding-top: 0; }
  .zenith-access-card { padding: 40px 24px; }
  .zenith-hero-cta { flex-direction: column; width: 100%; }
  .zenith-button { width: 100%; justify-content: center; }
  .zenith-feature-grid { grid-template-columns: 1fr; }
  .zenith-feature-block { padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
