/* StrangerLine Modern Design System - 2025 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Brand Colors */
  --primary: #604ddb;
  --primary-dark: #4a3ab0;
  --primary-light: #7c5ce0;
  --accent: #a78bfa;
  
  /* Neutrals */
  --gray-50: #fafbfc;
  --gray-100: #f4f5f7;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Semantic Colors */
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-tertiary: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #fafbfc;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Typography */
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-purple: 0 10px 40px -10px rgba(96, 77, 219, 0.3);
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-secondary);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   UNIVERSAL BUTTON STYLES
   ============================================ */
button,
.button,
.btn,
.cta-button,
.contact-email,
input[type="submit"],
input[type="button"],
a.button,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white !important;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 12px -4px rgba(96, 77, 219, 0.4);
  font-family: var(--font-sans);
}

button:hover,
.button:hover,
.btn:hover,
.cta-button:hover,
.contact-email:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
a.button:hover,
a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(96, 77, 219, 0.5);
  color: white !important;
  text-decoration: none;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* ============================================
   NAVIGATION - MODERN GLASSMORPHISM
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-700);
  transition: color var(--transition-base);
}

.mobile-menu-btn:hover {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--gray-700);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-nav-primary {
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
  color: white !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 12px -4px rgba(96, 77, 219, 0.4);
  border: none;
  text-decoration: none;
}

.btn-nav-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(96, 77, 219, 0.5);
  color: white !important;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
}

/* ============================================
   LEGAL PAGE - ULTRA MODERN DESIGN
   ============================================ */
.legal-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%);
  padding-top: 80px;
}

/* Hero Section - Gradient with Pattern */
.legal-hero {
  position: relative;
  background: linear-gradient(135deg, #5b45c9 0%, #7c5ce0 50%, #9d7ce8 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.legal-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, #fafbfc 100%);
}

.legal-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: white;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out;
}

.legal-meta {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.separator {
  color: rgba(255, 255, 255, 0.4);
}

/* Content Area */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 6rem;
}

/* Floating Intro Card */
.legal-intro {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 3rem;
  margin-top: -3rem;
  margin-bottom: 3rem;
  box-shadow: 0 20px 60px -15px rgba(91, 69, 201, 0.2),
              0 0 0 1px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 10;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
  border: 1px solid rgba(96, 77, 219, 0.08);
}

.legal-intro::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 2rem;
  right: 2rem;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary) 50%, 
    transparent 100%
  );
  border-radius: 2px 2px 0 0;
}

.legal-intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-700);
}

/* Content Sections */
.legal-section {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

.legal-section:hover {
  box-shadow: 0 8px 24px -8px rgba(96, 77, 219, 0.12);
  border-color: rgba(96, 77, 219, 0.2);
}

.legal-section h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.legal-section h2::before {
  content: '';
  width: 4px;
  height: 2rem;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.legal-section h3 {
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  font-size: 1.0625rem;
}

.legal-section ul, 
.legal-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  color: var(--gray-700);
  font-size: 1.0625rem;
}

.legal-section li::marker {
  color: var(--primary);
}

.legal-section strong {
  color: var(--gray-900);
  font-weight: 600;
}

.legal-section a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(96, 77, 219, 0.3);
  transition: all var(--transition-base);
}

.legal-section a:hover {
  text-decoration-color: var(--primary);
}

/* Final Acknowledgment Card */
.final-acknowledgment {
  background: linear-gradient(135deg, #f8f7ff 0%, #fff 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-acknowledgment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary) 0%, 
    var(--primary-light) 50%, 
    var(--primary) 100%
  );
}

.final-acknowledgment h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-acknowledgment p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 0;
}

/* ============================================
   MODERN FOOTER DESIGN - BEAUTIFUL & CLEAN
   ============================================ */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: var(--gray-300);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(124, 92, 224, 0.5) 50%, 
    transparent 100%
  );
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Main Footer Content */
.footer-main {
  padding: 4rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), transparent);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.875rem;
}

.footer-column ul li a {
  color: var(--gray-400);
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

/* Newsletter Column */
.footer-newsletter p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

.newsletter-form input {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  color: white;
  transition: all var(--transition-base);
}

.newsletter-form input::placeholder {
  color: var(--gray-500);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(124, 92, 224, 0.15);
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white !important;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 12px -4px rgba(96, 77, 219, 0.4);
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(96, 77, 219, 0.6);
}

/* Footer Illustration Section */
.footer-illustration-section {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0 2rem;
  text-align: center;
  position: relative;
}

.footer-brand-large {
  margin-bottom: 2rem;
}

.footer-brand-large .brand-text {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), #a78bfa, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.footer-illustration {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
  margin: 0 auto 2rem;
  max-height: 200px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin: 0.5rem 0;
}

.footer-tagline {
  margin-top: 0.5rem;
}

.footer-tagline a {
  color: var(--primary-light) !important;
  font-weight: 600;
  transition: color var(--transition-base);
}

.footer-tagline a:hover {
  color: white !important;
}

/* Footer Illustration Section Styles */
.brand-tagline {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer-illustration {
  margin: 2rem auto 3rem;
  max-width: 100%;
  height: auto;
}

/* Footer CTA Section - Start Chat Button */
.footer-cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  border-radius: 2rem;
  margin: 0 auto 3rem;
  max-width: 800px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.footer-cta-subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  font-weight: 400;
}

.footer-start-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  color: white !important;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px -10px rgba(139, 92, 246, 0.6),
              0 0 0 0 rgba(139, 92, 246, 0.5);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.footer-start-chat-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.footer-start-chat-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 60px -10px rgba(139, 92, 246, 0.8),
              0 0 0 8px rgba(139, 92, 246, 0.2);
  color: white !important;
  text-decoration: none;
}

.footer-start-chat-btn:hover::before {
  left: 100%;
}

.footer-start-chat-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.btn-icon {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.btn-text {
  font-weight: 700;
}

.btn-arrow {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.footer-start-chat-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.footer-cta-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

.footer-cta-note::before {
  content: '✓ ';
  color: #8b5cf6;
  font-weight: bold;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    display: none;
    gap: 1rem;
    animation: fadeIn 0.2s ease-out;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .legal-hero {
    padding: 4rem 0 3rem;
  }
  
  .legal-title {
    font-size: 2.25rem;
  }
  
  .legal-meta {
    font-size: 0.875rem;
  }
  
  .legal-intro {
    padding: 2rem;
    margin-top: -2rem;
  }
  
  .legal-intro p {
    font-size: 1rem;
  }
  
  .legal-section {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-section h2::before {
    height: 1.5rem;
  }
  
  .legal-section h3 {
    font-size: 1.25rem;
  }
  
  .legal-section p,
  .legal-section li {
    font-size: 1rem;
  }
  
  .final-acknowledgment {
    padding: 2rem;
  }
  
  .final-acknowledgment h2 {
    font-size: 1.625rem;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-main {
    padding: 3rem 0 2rem;
  }
  
  .footer-brand-large .brand-text {
    font-size: 2rem;
  }
  
  .footer-illustration {
    max-height: 150px;
  }
  
  /* Footer CTA Mobile */
  .footer-cta-section {
    padding: 2rem 1.5rem;
  }
  
  .footer-cta-title {
    font-size: 1.5rem;
  }
  
  .footer-cta-subtitle {
    font-size: 1rem;
  }
  
  .footer-start-chat-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .legal-hero {
    padding: 3rem 0 2.5rem;
  }
  
  .legal-title {
    font-size: 1.875rem;
  }
  
  .legal-intro {
    padding: 1.5rem;
  }
  
  .legal-section {
    padding: 1.5rem;
  }
  
  .legal-section h2 {
    font-size: 1.375rem;
  }
  
  .final-acknowledgment {
    padding: 1.5rem;
  }

  .footer-illustration {
    max-height: 120px;
  }
  
  .footer-brand-large .brand-text {
    font-size: 1.75rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  .footer {
    display: none;
  }
  
  .legal-page {
    background: white;
  }
  
  .legal-section {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}