/* ============================================
   TRADING BILDUNG AT - Premium Editorial Design
   ============================================ */

/* CSS Variables - Premium Color Palette */
:root {
  --color-deep-dark: #0B0F14;
  --color-graphite: #111827;
  --color-graphite-light: #1a2332;
  --color-gold: #C8A76A;
  --color-gold-light: #d4b87a;
  --color-gold-dark: #a88b52;
  --color-accent: #6FA3B8;
  --color-accent-light: #8abbcf;
  --color-light: #F5F1E8;
  --color-light-secondary: #e8e4db;
  --color-text: #2d3748;
  --color-text-light: #4a5568;
  --color-text-muted: #718096;
  --color-border: rgba(200, 167, 106, 0.2);
  --color-success: #48bb78;
  --color-error: #f56565;
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-graphite);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--color-text-light);
}

a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold);
}

/* Grain Texture Overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 15, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.header-scrolled {
  background: rgba(11, 15, 20, 0.98);
  box-shadow: var(--shadow-lg);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-deep-dark);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-light);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--color-gold);
}

/* Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-light-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-light);
}

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

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-light);
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-graphite);
  padding: 6rem 2rem 2rem;
  transition: right var(--transition-slow);
  z-index: 999;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 998;
}

.nav-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile .nav-link {
  display: block;
  font-size: 1.125rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

/* Header Disclaimer */
.header-disclaimer {
  background: rgba(200, 167, 106, 0.1);
  padding: 0.5rem 0;
  border-top: 1px solid var(--color-border);
}

.header-disclaimer p {
  font-size: 0.75rem;
  color: var(--color-gold-light);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  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: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-deep-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 167, 106, 0.4);
  color: var(--color-deep-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--color-light);
  border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-deep-dark);
}

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

.btn-outline:hover {
  background: var(--color-graphite);
  color: var(--color-light);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-deep-dark);
  overflow: hidden;
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(200, 167, 106, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 167, 106, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--color-gold);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--color-accent);
  bottom: -100px;
  left: -100px;
  animation-delay: -4s;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(200, 167, 106, 0.1);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--color-light);
  margin-bottom: 1.5rem;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.hero h1 span {
  color: var(--color-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-light-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.8s forwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
}

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

/* ============================================
   SECTIONS GENERAL
   ============================================ */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background: var(--color-light-secondary);
}

.section-dark {
  background: var(--color-graphite);
  color: var(--color-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-light);
}

.section-dark p {
  color: var(--color-light-secondary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 800px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .content-block {
    grid-template-columns: 1fr 1fr;
  }
  
  .content-block.reverse {
    direction: rtl;
  }
  
  .content-block.reverse > * {
    direction: ltr;
  }
}

.content-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.content-image:hover img {
  transform: scale(1.05);
}

.content-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200, 167, 106, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

/* ============================================
   INFO GRID
   ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--color-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.info-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.info-card h3 {
  margin-bottom: 0.75rem;
}

.info-card p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* ============================================
   RISKS SECTION
   ============================================ */
.risks-list {
  display: grid;
  gap: 1rem;
}

.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(245, 241, 232, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-gold);
}

.risk-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 167, 106, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.risk-content h4 {
  color: var(--color-light);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.risk-content p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* Callout Box */
.callout {
  background: linear-gradient(135deg, rgba(200, 167, 106, 0.1) 0%, rgba(111, 163, 184, 0.05) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.callout-warning {
  border-left: 4px solid var(--color-gold);
}

.callout h4 {
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Video Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-graphite);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-graphite) 0%, var(--color-graphite-light) 100%);
  cursor: pointer;
  transition: all var(--transition-base);
}

.video-placeholder:hover {
  background: linear-gradient(135deg, var(--color-graphite-light) 0%, var(--color-graphite) 100%);
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-deep-dark);
  transition: all var(--transition-base);
}

.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(200, 167, 106, 0.5);
}

/* ============================================
   GLOSSARY GRID
   ============================================ */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.glossary-card {
  background: var(--color-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.glossary-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.glossary-term {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 0.5rem;
}

.glossary-definition {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   KNOWLEDGE BASE
   ============================================ */
.kb-section {
  background: var(--color-light-secondary);
}

.kb-item {
  background: var(--color-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.kb-item:hover {
  box-shadow: var(--shadow-md);
}

.kb-item h3 {
  color: var(--color-graphite);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.kb-item h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--color-gold);
  border-radius: 2px;
}

.kb-item p {
  margin-bottom: 0;
}

.kb-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(200, 167, 106, 0.1);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gold-dark);
  margin-bottom: 0.75rem;
}

/* ============================================
   TIMELINE / STEPPER
   ============================================ */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-accent) 100%);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.timeline-item.active {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    width: 50%;
  }
  
  .timeline-item:nth-child(odd) {
    padding-right: 3rem;
    margin-left: 0;
    text-align: right;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 3rem;
    margin-left: 50%;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    left: auto;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--color-light);
  }
}

.timeline-dot {
  position: absolute;
  left: 10px;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--color-gold);
  border-radius: 50%;
  border: 4px solid var(--color-light);
  box-shadow: 0 0 0 2px var(--color-gold);
  z-index: 2;
}

@media (min-width: 768px) {
  .timeline-dot {
    left: auto;
    right: -12px;
  }
  
  .timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -12px;
  }
}

.timeline-content {
  background: var(--color-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 8px;
  border-width: 10px 10px 10px 0;
  border-style: solid;
  border-color: transparent var(--color-light) transparent transparent;
}

.timeline-step {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  margin-bottom: 0.75rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-graphite);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-base);
}

.faq-question:hover {
  background: rgba(200, 167, 106, 0.05);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-gold);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin-bottom: 0;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-section {
  background: var(--color-graphite);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-light);
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: var(--color-gold);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-light);
  background: rgba(245, 241, 232, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(245, 241, 232, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.form-checkbox-text {
  font-size: 0.875rem;
  color: var(--color-light-secondary);
  line-height: 1.5;
}

.form-checkbox-text a {
  color: var(--color-gold);
  text-decoration: underline;
}

.form-error {
  color: var(--color-error);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-submit {
  width: 100%;
  position: relative;
}

.form-submit .spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.form-submit.loading .spinner {
  display: inline-block;
}

.form-submit.loading .btn-text {
  opacity: 0.7;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(72, 187, 120, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-success);
  display: none;
}

.form-success.visible {
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-deep-dark);
  color: var(--color-light);
  padding: 4rem 0 2rem;
}

.footer-disclaimer {
  background: rgba(200, 167, 106, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 3rem;
  border: 1px solid var(--color-border);
}

.footer-disclaimer p {
  font-size: 0.8125rem;
  color: var(--color-gold-light);
  text-align: center;
  margin-bottom: 0;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-deep-dark);
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-light);
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  max-width: 300px;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-light);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

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

.footer-contact a {
  color: var(--color-gold);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-graphite);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--color-light-secondary);
  margin-bottom: 0;
}

.cookie-text a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding-top: 140px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border);
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.legal-content address {
  font-style: normal;
  background: var(--color-light-secondary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.legal-date {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-deep-dark);
  padding: 2rem;
}

.thank-you-content {
  text-align: center;
  max-width: 500px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
}

.thank-you-content h1 {
  color: var(--color-light);
  margin-bottom: 1rem;
}

.thank-you-content p {
  color: var(--color-light-secondary);
  margin-bottom: 2rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
  .section {
    padding: 4rem 0;
  }
  
  .hero {
    padding-top: 140px;
    min-height: auto;
  }
  
  .hero-content {
    padding: 2rem 1.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
  }
}

/* Print Styles */
@media print {
  .header,
  .cookie-banner,
  .nav-mobile,
  .menu-toggle {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
  
  .section {
    padding: 2rem 0;
    page-break-inside: avoid;
  }
}
