/* ================================
   AffiClip Landing Page Styles
   Based on UI_STYLE_GUIDE.md
================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Maitree:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ================================
   CSS Variables
================================ */
:root {
  /* Primary - Indigo */
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --primary-light: #818CF8;

  /* Secondary - Pink */
  --secondary: #EC4899;
  --secondary-dark: #DB2777;
  --secondary-light: #F472B6;

  /* Gray Scale (Dark Theme) */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --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 */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Maitree', Georgia, serif;
}

body {
  color: var(--gray-50);
  background: var(--gray-900);
  line-height: 1.8;
  font-size: 1.125rem;
  /* 18px mobile */
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Custom scrollbar - Dark theme */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-800);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-600);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* ================================
   Typography
================================ */
.gradient-text {
  background: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* ================================
   Layout
================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 6rem 0;
  }

  body {
    font-size: 1.25rem;
    /* 20px desktop */
  }
}

/* ================================
   Header
================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-700);
  z-index: 50;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: transparent;
  border: 1px solid var(--gray-600);
  border-radius: 0.5rem;
  color: var(--gray-300);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-btn:hover {
  background: var(--gray-800);
  border-color: var(--gray-500);
  color: white;
}

/* ================================
   Hero Section
================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  background: linear-gradient(180deg, var(--gray-900) 0%, #0D1117 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-2%, 2%);
  }
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero-title {
  font-size: 2.25rem;
  /* 36px mobile - H1 */
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
    /* 60px desktop - H1 */
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

.hero-bullets {
  list-style: none;
  text-align: left;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  padding: 0;
}

.hero-bullets li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero-bullets li {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

.hero-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ================================
   CTA Buttons
================================ */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  border-radius: 0.75rem;
  color: white;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.5);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px -10px rgba(99, 102, 241, 0.6);
}

.cta-hint {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  /* 14px mobile - Caption */
  font-weight: 400;
  color: var(--gray-400);
}

@media (min-width: 768px) {
  .cta-hint {
    font-size: 0.9375rem;
    /* 15px desktop - Caption */
  }
}

.cta-hint svg {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
  margin-right: 0.25rem;
}

/* ================================
   VSL Section
================================ */
.vsl-section {
  background: var(--gray-900);
}

.vsl-container {
  max-width: 350px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .vsl-container {
    max-width: 420px;
  }
}

.vsl-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 1rem;
  overflow: hidden;
}

.vsl-video-container {
  position: relative;
  padding-top: 177.78%;
  /* 9:16 aspect ratio */
  width: 100%;
}

.vsl-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--gray-800) 0%, var(--gray-900) 100%);
}

.vsl-placeholder svg {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.vsl-placeholder p {
  color: var(--gray-400);
  font-size: 1rem;
}

/* ================================
   Benefits Section
================================ */
.benefits-section {
  background: linear-gradient(180deg, var(--gray-900) 0%, #0A0D14 100%);
}

.section-title {
  text-align: center;
  font-size: 1.75rem;
  /* 28px mobile - H2 */
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    /* 40px desktop - H2 */
  }
}

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

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

.benefit-card {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gray-700);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(99, 102, 241, 0.3);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
}

.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-light);
}

.benefit-title {
  font-size: 1.25rem;
  /* 20px mobile - Card Title */
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .benefit-title {
    font-size: 1.5rem;
    /* 24px desktop - Card Title */
  }
}

.benefit-desc {
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .benefit-desc {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

/* ================================
   Process Section
================================ */
.process-section {
  background: var(--gray-900);
}

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

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  position: relative;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.process-card:hover {
  border-color: var(--secondary);
  background: rgba(31, 41, 55, 0.8);
}

.process-step {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.process-title {
  font-size: 1.25rem;
  /* 20px mobile - Card Title */
  font-weight: 600;
  color: white;
  margin: 1rem 0 0.5rem;
}

@media (min-width: 768px) {
  .process-title {
    font-size: 1.5rem;
    /* 24px desktop - Card Title */
  }
}

.process-desc {
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .process-desc {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

.process-optional {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  /* 14px - Caption */
  font-weight: 400;
  color: var(--primary-light);
}

/* ================================
   Trial Section
================================ */
.trial-section {
  background: linear-gradient(180deg, #0A0D14 0%, var(--gray-900) 100%);
}

.trial-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
}

.trial-title {
  font-size: 1.75rem;
  /* 28px mobile - H2 */
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .trial-title {
    font-size: 2.5rem;
    /* 40px desktop - H2 */
  }
}

.trial-subtitle {
  font-size: 1rem;
  /* 16px - Secondary */
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.trial-desc {
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .trial-desc {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

.trial-highlight {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 0.5rem;
  color: var(--success);
  font-weight: 600;
}

/* ================================
   Social Proof Section
================================ */
.social-proof-section {
  padding: 3rem 0;
  background: var(--gray-900);
}

.social-proof-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid var(--gray-700);
  border-radius: 1rem;
  padding: 2rem;
}

.social-proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  /* 14px mobile - Caption */
  font-weight: 400;
  color: var(--gray-400);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 0.9375rem;
    /* 15px desktop - Caption */
  }
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--gray-700);
}

@media (max-width: 480px) {
  .social-proof-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 4rem;
    height: 1px;
  }
}

/* ================================
   About Section
================================ */
.about-section {
  background: var(--gray-900);
}

.about-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.about-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
  border-radius: 50%;
}

.about-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--secondary);
}

.about-title {
  font-size: 1.75rem;
  /* 28px mobile - H2 */
  font-weight: 600;
  color: white;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 2.5rem;
    /* 40px desktop - H2 */
  }
}

.about-desc {
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.8;
  font-style: italic;
}

@media (min-width: 768px) {
  .about-desc {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

/* ================================
   FAQ Section
================================ */
.faq-section {
  background: linear-gradient(180deg, var(--gray-900) 0%, #0A0D14 100%);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid var(--gray-700);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.25rem;
  /* 20px mobile - Card Title */
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 1.5rem;
    /* 24px desktop - Card Title */
  }
}

.faq-question svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.faq-answer {
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1.8;
  padding-left: 2.25rem;
}

@media (min-width: 768px) {
  .faq-answer {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

/* ================================
   Final CTA Section
================================ */
.final-cta-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #0A0D14 0%, var(--gray-900) 100%);
}

.final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 1.75rem;
  /* 28px mobile - H2 */
  font-weight: 600;
  color: white;
  line-height: 1.4;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 2.5rem;
    /* 40px desktop - H2 */
  }
}

.cta-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 600;
}

@media (min-width: 768px) {
  .cta-large {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

/* ================================
   Footer
================================ */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--gray-800);
}

.footer-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-section {
  text-align: center;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section a {
  display: block;
  font-size: 1rem;
  color: var(--gray-400);
  transition: color 0.2s;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
  font-size: 1rem;
  color: var(--gray-500);
}

.footer p {
  font-size: 1rem;
  color: var(--gray-500);
}

/* ================================
   Social Proof Text Style
================================ */
.social-proof-text {
  text-align: center;
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .social-proof-text {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

.social-proof-text .highlight-number {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.2em;
}

/* ================================
   Benefits Grid 4 Columns
================================ */
.benefits-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cards per row on desktop */
  }
}

/* ================================
   Pay-As-You-Go Section
================================ */
.trial-payg {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.payg-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 0.5rem;
}

.payg-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--success);
}

.payg-content strong {
  display: block;
  font-size: 1.25rem;
  /* 20px mobile - Card Title */
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .payg-content strong {
    font-size: 1.5rem;
    /* 24px desktop - Card Title */
  }
}

.payg-content p {
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .payg-content p {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

/* ================================
   Final CTA Subtitle
================================ */
.final-cta-subtitle {
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .final-cta-subtitle {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

.final-cta-hint {
  margin-top: 1.5rem;
}

/* ================================
   Legal Pages
================================ */
.legal-page {
  padding-top: 100px;
  padding-bottom: 2rem;
  min-height: calc(100vh - 200px);
}

.legal-page section {
  padding: 0 !important;
}

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

.legal-title {
  font-size: 1.75rem;
  /* 28px mobile - H2 */
  font-weight: 600;
  color: white;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .legal-title {
    font-size: 2.5rem;
    /* 40px desktop - H2 */
  }
}

.legal-updated {
  font-size: 0.875rem;
  /* 14px mobile - Caption */
  font-weight: 400;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .legal-updated {
    font-size: 0.9375rem;
    /* 15px desktop - Caption */
  }
}

.legal-section {
  margin-bottom: 1rem;
  padding: 0;
}

.legal-section h2 {
  font-size: 1rem;
  /* 16px - Secondary */
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.legal-section p {
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .legal-section p {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: 1.125rem;
  /* 18px mobile - Body */
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .legal-section ul li {
    font-size: 1.25rem;
    /* 20px desktop - Body */
  }
}

.legal-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.contact-email {
  margin-top: 1rem;
}

.contact-email a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 0.5rem;
  color: var(--primary-light);
  font-weight: 500;
  transition: all 0.2s;
}

.contact-email a:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--primary);
}

.footer-legal {
  margin-top: auto;
}

/* ================================
   Animations
================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

/* Scroll reveal animation trigger via JS */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ================================
   Mobile Typography Enhancements
================================ */
/* Typography is now handled responsively via media queries in each element */