/* ============================================
   4J Holdings LLC - PREMIUM Executive Design 2026
   Dark Navy + Gold Accent Theme
   Enterprise Grade - Production Ready
   ============================================ */

/* CSS Custom Properties - Premium Design System */
:root {
  /* Core Colors - Dark Navy Theme */
  --navy-950: #0a0f1a;
  --navy-925: #0b111c;
  --navy-900: #0d1421;
  --navy-850: #0f1724;
  --navy-800: #111b2d;
  --navy-750: #151f33;
  --navy-700: #182436;
  --navy-600: #1e2d45;
  --navy-500: #253554;
  
  /* Gold/Amber Accents - Premium Palette */
  --gold-300: #ffd966;
  --gold-400: #ffd700;
  --gold-500: #ffb347;
  --gold-550: #ffc125;
  --gold-600: #ffcc33;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  
  /* Premium Gradients */
  --gradient-gold: linear-gradient(135deg, #ffb347 0%, #ffcc33 50%, #ffd700 100%);
  --gradient-gold-hover: linear-gradient(135deg, #ffcc33 0%, #ffd700 50%, #ffd966 100%);
  --gradient-gold-subtle: linear-gradient(135deg, rgba(255, 179, 71, 0.15) 0%, rgba(255, 204, 51, 0.05) 100%);
  --gradient-gold-glow: radial-gradient(ellipse at center, rgba(255, 179, 71, 0.25) 0%, transparent 70%);
  --gradient-hero: radial-gradient(ellipse at 20% 30%, rgba(255, 179, 71, 0.12) 0%, transparent 50%),
                    radial-gradient(ellipse at 80% 70%, rgba(255, 204, 51, 0.08) 0%, transparent 50%),
                    linear-gradient(180deg, #0a0f1a 0%, #0d1421 100%);
  
  /* Surface Colors */
  --surface-dark: rgba(17, 27, 45, 0.6);
  --surface-darker: rgba(13, 20, 33, 0.85);
  --glass-bg: rgba(17, 27, 45, 0.4);
  --glass-border: rgba(255, 179, 71, 0.15);
  --glass-border-hover: rgba(255, 179, 71, 0.35);
  
  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #b8c5d6;
  --text-muted: #64748b;
  --text-gold: #ffb347;
  
  /* Semantic */
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Premium Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px rgba(255, 179, 71, 0.2);
  --shadow-gold-lg: 0 0 60px rgba(255, 179, 71, 0.3);
  --shadow-gold-intense: 0 0 40px rgba(255, 179, 71, 0.4), 0 0 80px rgba(255, 179, 71, 0.2);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-premium: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--navy-950);
  overflow-x: hidden;
}

/* Selection */
::selection {
  background: rgba(255, 179, 71, 0.3);
  color: var(--text-primary);
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: var(--text-secondary);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.glow-gold {
  box-shadow: var(--shadow-gold);
}

/* Skip Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: var(--space-sm) var(--space-md);
  font-weight: 600;
  z-index: 10000;
  border-radius: var(--radius-md);
}

.skip-link:focus {
  left: var(--space-md);
  top: var(--space-md);
}

/* Navigation - Premium */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: var(--transition-base);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(10, 15, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--glass-border);
  padding: var(--space-sm) 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Premium Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.brand-mark {
  width: 44px;
  height: 44px;
  transition: transform var(--transition-slow);
  filter: drop-shadow(0 0 10px rgba(255, 179, 71, 0.3));
}

.brand:hover .brand-mark {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 0 20px rgba(255, 179, 71, 0.5));
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.brand-llc {
  font-size: 0.65em;
  font-weight: 500;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-xs) 0;
}

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

.nav-links a:hover {
  color: var(--text-primary);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
}

.lang-btn {
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  background: rgba(255, 179, 71, 0.2);
  color: var(--gold-500);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-base);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-gold);
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold-hover);
  opacity: 0;
  transition: var(--transition-base);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary span {
  position: relative;
  z-index: 1;
}

.btn--glow {
  animation: glow-pulse 3s ease-in-out infinite;
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn--secondary:hover {
  border-color: var(--gold-500);
  box-shadow: 0 0 20px rgba(255, 179, 71, 0.15);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
}

.btn--outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

/* Hero Section - Premium */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 179, 71, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 204, 51, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(90deg, rgba(255, 179, 71, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 179, 71, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 179, 71, 0.08);
  top: -150px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.hero-orb--2 {
  width: 500px;
  height: 500px;
  background: rgba(255, 204, 51, 0.06);
  bottom: -150px;
  left: -150px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--gradient-gold-subtle);
  border: 1px solid rgba(255, 179, 71, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  margin-bottom: var(--space-lg);
}

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

.hero-title {
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

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

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-trust span::before {
  content: '✓';
  color: var(--gold-500);
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.hero-stat {
  padding: var(--space-md);
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  text-align: center;
}

.hero-stat:hover {
  border-color: rgba(255, 179, 71, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.hero-stat-value {
  display: inline;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-suffix {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-500);
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-xs);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-image:hover img {
  transform: scale(1.02);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 15, 26, 0.8) 100%);
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: 20px;
  padding: var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  animation: float-card 6s ease-in-out infinite;
}

.hero-float-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hero-float-card h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.hero-float-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Logo Cloud - Premium */
.logo-cloud {
  padding: var(--space-2xl) 0;
  background: var(--navy-900);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.logo-cloud-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.logo-cloud-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.logo-ticker {
  position: relative;
}

.logo-ticker::before,
.logo-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logo-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-900) 0%, transparent 100%);
}

.logo-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy-900) 0%, transparent 100%);
}

.logo-track {
  display: flex;
  gap: var(--space-lg);
  animation: ticker 40s linear infinite;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-pill {
  padding: var(--space-sm) var(--space-xl);
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: var(--transition-base);
}

.logo-pill:hover {
  border-color: var(--gold-500);
  color: var(--text-primary);
  background: rgba(255, 179, 71, 0.1);
}

/* Section Styles - Premium */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section--alt {
  background: var(--navy-900);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-3xl);
}

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

.section-title {
  margin-bottom: var(--space-md);
}

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

/* Services Grid - Premium */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  padding: var(--space-xl);
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-gold);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold-subtle);
  border: 1px solid rgba(255, 179, 71, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-500);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Playbook Section - Premium */
.playbook-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.playbook-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.playbook-item:nth-child(even) {
  direction: rtl;
}

.playbook-item:nth-child(even) > * {
  direction: ltr;
}

.playbook-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.playbook-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.playbook-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 15, 26, 0.6) 100%);
  pointer-events: none;
}

.playbook-number {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold-500);
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.playbook-content h3 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.playbook-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.playbook-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.playbook-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.playbook-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffb347' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* Stats Section - Premium */
.stats-section {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 179, 71, 0.05) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-gold);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-value span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Process Timeline - Premium */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500) 0%, rgba(255, 179, 71, 0.1) 100%);
}

.process-step {
  display: flex;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  position: relative;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step-number {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-950);
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold-500);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(255, 179, 71, 0.25);
  transition: var(--transition-base);
}

.process-step:hover .process-step-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-gold-intense);
}

.process-step-content {
  flex: 1;
  padding-top: var(--space-xs);
}

.process-step-content h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.process-step-content p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* Integrations Section - Premium */
.integrations-section {
  background: var(--navy-925);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.integration-card {
  padding: var(--space-xl);
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  text-align: center;
}

.integration-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-gold);
}

.integration-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
}

.integration-icon svg {
  width: 100%;
  height: 100%;
}

.integration-card h4 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.integration-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Testimonials - Premium */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  padding: var(--space-xl);
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  color: var(--gold-500);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--glass-border);
  transition: var(--transition-base);
}

.testimonial-card:hover .testimonial-avatar {
  border-color: var(--gold-500);
}

.testimonial-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Pricing - Premium */
.pricing-section {
  background: var(--navy-900);
}

.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.pricing-toggle-wrapper span {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.pricing-toggle-wrapper span.active {
  color: var(--text-primary);
  font-weight: 500;
}

.save-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.toggle-switch {
  position: relative;
  width: 56px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  top: 3px;
  background: var(--gradient-gold);
  border-radius: 50%;
  transition: var(--transition-base);
  box-shadow: 0 2px 8px rgba(255, 179, 71, 0.5);
}

.toggle-switch input:checked + .toggle-slider {
  background: rgba(255, 179, 71, 0.1);
  border-color: rgba(255, 179, 71, 0.4);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(26px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

.pricing-card {
  padding: var(--space-xl);
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
}

.pricing-card--featured {
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.08) 0%, var(--surface-dark) 100%);
  border-color: rgba(255, 179, 71, 0.4);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold-intense);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-xs) var(--space-md);
  background: var(--gradient-gold);
  color: var(--navy-950);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.pricing-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-price span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* FAQ - Premium */
.faq-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(255, 179, 71, 0.25);
}

.faq-item.active {
  border-color: rgba(255, 179, 71, 0.4);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact Section - Premium */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 179, 71, 0.08) 0%, transparent 50%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  position: relative;
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info > p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-2xl);
}

.contact-card {
  padding: var(--space-xl);
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

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

.contact-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--gold-500);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-detail-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-item span,
.contact-detail-item a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-detail-item a:hover {
  color: var(--gold-500);
}

/* Form Styles - Premium */
.contact-form-wrapper {
  padding: var(--space-2xl);
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
}

.contact-form-wrapper:hover {
  border-color: var(--glass-border-hover);
}

.contact-form-wrapper h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--navy-800);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.15);
}

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

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

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-wrapper input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  accent-color: var(--gold-500);
}

.checkbox-wrapper label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

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

.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: var(--space-xs);
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--error);
}

.form-success {
  padding: var(--space-md);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  color: var(--success);
  font-size: 0.9rem;
  display: none;
}

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

/* Footer - Premium */
.footer {
  padding: var(--space-4xl) 0 var(--space-xl);
  background: var(--navy-900);
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 300px;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: var(--transition-base);
}

.social-link:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.footer-col a:hover {
  color: var(--gold-500);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

/* Cookie Banner - Premium */
.cookie-banner {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-lg);
  background: var(--surface-darker);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(150%);
  transition: transform var(--transition-slow);
}

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

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

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

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8rem;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

.btn--ghost:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-panel {
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl);
  background: var(--surface-darker);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transform: scale(0.95);
  transition: transform var(--transition-base);
}

.cookie-modal.show .cookie-panel {
  transform: scale(1);
}

.cookie-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.cookie-panel-header h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
}

.cookie-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.cookie-close:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.cookie-panel > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--glass-border);
}

.cookie-option:last-of-type {
  border-bottom: none;
  margin-bottom: var(--space-lg);
}

.cookie-option-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cookie-option-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-500);
}

.cookie-option input[type="checkbox"]:disabled {
  opacity: 0.5;
}

/* Reveal Animations - Premium */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--transition-premium), transform var(--transition-premium);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(30px);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Keyframes */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

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

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

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 179, 71, 0.2);
  }
  50% {
    box-shadow: 0 0 50px rgba(255, 179, 71, 0.4);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive - Premium */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-stats {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .services-grid,
  .stats-grid,
  .integrations-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .playbook-item {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .playbook-item:nth-child(even) {
    direction: ltr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 70px 16px auto;
    flex-direction: column;
    padding: var(--space-lg);
    background: var(--surface-darker);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transform: translateY(-150%);
    transition: transform var(--transition-base);
  }
  
  .nav-links.open {
    transform: translateY(0);
  }
  
  .nav-actions {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-image img {
    height: 350px;
  }
  
  .hero-float-card {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: var(--space-md);
  }
  
  .services-grid,
  .stats-grid,
  .integrations-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card--featured {
    transform: none;
  }
  
  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-actions .btn {
    width: 100%;
  }
  
  .brand-text {
    font-size: 1rem;
  }
  
  .brand-mark {
    width: 36px;
    height: 36px;
  }
}

/* ============================================
   POLICY PAGES STYLES
   Consistent design for all legal/policy pages
   ============================================ */

/* Policy Page Layout */
.policy-page {
  padding-top: 100px;
  background: var(--navy-950);
  min-height: 100vh;
}

/* Policy Hero Section */
.policy-hero {
  padding: var(--space-4xl) 0 var(--space-2xl);
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}

.policy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 179, 71, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.policy-hero .container {
  position: relative;
  z-index: 1;
}

.policy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.policy-hero h1 em {
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-date {
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.policy-date::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Policy Content Section */
.policy-content {
  padding: var(--space-3xl) 0 var(--space-5xl);
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Policy Sidebar (Table of Contents) */
.policy-sidebar {
  position: sticky;
  top: 120px;
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.policy-sidebar h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--glass-border);
}

.policy-toc {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.policy-toc li {
  display: flex;
}

.policy-toc a {
  display: block;
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  width: 100%;
}

.policy-toc a:hover {
  color: var(--text-primary);
  background: rgba(255, 179, 71, 0.1);
}

.policy-toc a.active {
  color: var(--gold-500);
  background: rgba(255, 179, 71, 0.15);
  font-weight: 500;
}

/* Policy Article */
.policy-article {
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
}

.policy-article section {
  margin-bottom: var(--space-2xl);
}

.policy-article section:last-child {
  margin-bottom: 0;
}

.policy-article h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--glass-border);
  scroll-margin-top: 120px;
}

.policy-article h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: var(--space-xl) 0 var(--space-md);
}

.policy-article p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.policy-article ul,
.policy-article ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.policy-article li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  color: var(--text-secondary);
}

.policy-article a {
  color: var(--gold-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-article a:hover {
  color: var(--gold-400);
}

.policy-article strong {
  color: var(--text-primary);
  font-weight: 600;
}

.policy-article table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: 0.9rem;
}

.policy-article th,
.policy-article td {
  padding: var(--space-md);
  text-align: left;
  border: 1px solid var(--glass-border);
}

.policy-article th {
  background: rgba(255, 179, 71, 0.1);
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-body);
}

.policy-article td {
  color: var(--text-secondary);
}

.policy-article tr:hover td {
  background: rgba(255, 179, 71, 0.05);
}

/* Policy Highlight Box */
.policy-highlight {
  background: var(--gradient-gold-subtle);
  border: 1px solid rgba(255, 179, 71, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.policy-highlight strong {
  color: var(--gold-500);
}

/* Policy Footer Links */
.policy-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  padding-top: var(--space-xl);
  margin-top: var(--space-xl);
  border-top: 1px solid var(--glass-border);
}

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

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

/* Language Switch in Header */
.lang-switch-page {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  margin-left: var(--space-md);
}

.lang-switch-page a {
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.lang-switch-page a:hover {
  color: var(--text-primary);
}

.lang-switch-page a.active {
  background: rgba(255, 179, 71, 0.2);
  color: var(--gold-500);
}

/* Responsive Policy Pages */
@media (max-width: 1024px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }
  
  .policy-sidebar {
    position: relative;
    top: 0;
    max-height: none;
    order: -1;
  }
  
  .policy-toc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
  }
}

@media (max-width: 768px) {
  .policy-page {
    padding-top: 80px;
  }
  
  .policy-hero {
    padding: var(--space-3xl) 0 var(--space-xl);
  }
  
  .policy-hero h1 {
    font-size: 1.75rem;
  }
  
  .policy-article {
    padding: var(--space-xl);
  }
  
  .policy-article h2 {
    font-size: 1.375rem;
  }
  
  .policy-toc {
    grid-template-columns: 1fr;
  }
  
  .policy-sidebar {
    padding: var(--space-lg);
  }
}
