/* ==========================================================================
   WearWise Try On - Modern Luxury Product Landing Page Stylesheet
   ========================================================================== */

:root {
  --primary: #e11d48;
  --primary-hover: #be123c;
  --primary-light: #fff1f2;
  --primary-gradient: linear-gradient(135deg, #f43f5e 0%, #e11d48 50%, #9f1239 100%);
  --primary-glow: rgba(225, 29, 72, 0.35);
  
  --emerald: #10b981;
  --emerald-hover: #059669;
  --emerald-light: #ecfdf5;
  --emerald-gradient: linear-gradient(135deg, #34d399 0%, #10b981 50%, #047857 100%);
  
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 25px var(--primary-glow);
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--slate-700);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-dark {
  background-color: var(--slate-900);
  color: var(--white);
}

.section-light {
  background-color: var(--slate-50);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-primary {
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(225, 29, 72, 0.2);
}

.badge-dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

/* Section Header */
.section-header {
  max-width: 720px;
  margin: 0 auto 56px auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.section-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: var(--slate-400);
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--slate-900);
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-600);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--slate-800);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.45);
}

.btn-outline {
  border: 1px solid var(--slate-300);
  color: var(--slate-700);
  background: var(--white);
}

.btn-outline:hover {
  background: var(--slate-50);
  border-color: var(--slate-400);
  color: var(--slate-900);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* Hero Section */
.hero {
  padding: 150px 0 90px 0;
  background: radial-gradient(circle at 50% 20%, rgba(225, 29, 72, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 52px;
  align-items: center;
}

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

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  margin: 20px 0;
}

.hero-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
}

.hero-stat-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
}

.hero-stat-item span {
  font-size: 0.85rem;
  color: var(--slate-500);
  font-weight: 600;
}

/* Interactive Split View Showcase Box (Compact & Polished) */
.hero-demo-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.demo-showcase-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.8);
  position: relative;
}

.split-viewport-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--slate-900);
  user-select: none;
  touch-action: pan-y;
}

.split-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.split-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-layer.layer-after {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  transition: clip-path 0.05s ease-out;
}

.split-divider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.split-pill-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  color: var(--slate-800);
}

.split-pill-knob svg {
  width: 15px;
  height: 15px;
}

/* Header above image (unobstructed view) */
.demo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 10px 6px;
  font-size: 0.78rem;
  font-weight: 700;
  border-bottom: 1px solid var(--slate-100);
  margin-bottom: 10px;
}

.demo-header-label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.before-label {
  color: var(--slate-500);
}

.after-label {
  color: var(--primary);
}

.label-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  display: inline-block;
}

.dot-before {
  background: var(--slate-400);
}

.dot-after {
  background: var(--primary);
  box-shadow: 0 0 6px var(--primary-glow);
}

.demo-action-bar {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

.demo-btn-cart {
  flex: 1;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px var(--primary-glow);
  transition: var(--transition);
}

.demo-btn-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(225, 29, 72, 0.45);
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(225, 29, 72, 0.3);
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-box svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* How It Works Steps */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: var(--slate-800);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--slate-400);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Layering / Chained Try-On Feature Highlight */
.highlight-box {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  color: var(--white);
}

.highlight-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 16px 0 20px 0;
  line-height: 1.2;
}

.highlight-content p {
  color: var(--slate-300);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-200);
}

.highlight-list li svg {
  color: var(--emerald);
  flex-shrink: 0;
}

.layer-visual-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.layer-step-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.layer-step-pill:last-child {
  margin-bottom: 0;
}

.layer-step-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

/* FAQ Accordions */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-question {
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate-900);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
  color: var(--slate-400);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 22px;
}

/* CTA Banner */
.cta-banner {
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 20px 40px var(--primary-glow);
}

.cta-banner h2 {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 36px auto;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--slate-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 64px 0 32px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Privacy Policy Page Specific Styles */
.legal-header {
  padding: 140px 0 60px 0;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}

.legal-content {
  padding: 64px 0;
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--slate-900);
  margin: 40px 0 16px 0;
}

.legal-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-800);
  margin: 24px 0 12px 0;
}

.legal-content p, .legal-content li {
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1rem;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 24px;
}

.legal-callout {
  padding: 20px 24px;
  background: var(--slate-100);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
}

.legal-callout strong {
  color: var(--slate-900);
  display: block;
  margin-bottom: 4px;
}

/* ==========================================================================
   Comprehensive Responsive & Mobile Optimization System
   ========================================================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .hero-grid, 
  .highlight-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-ctas, 
  .hero-stats {
    justify-content: center;
  }

  .features-grid, 
  .steps-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 56px 0;
  }

  /* Mobile Navigation Drawer */
  .navbar-inner {
    height: 68px;
  }

  .brand {
    font-size: 1.1rem;
    gap: 8px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 24px 28px 24px;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.12);
    gap: 14px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--slate-100);
    display: block;
    width: 100%;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-actions .btn {
    padding: 8px 14px;
    font-size: 0.85rem;
    gap: 6px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--slate-200);
    background: var(--white);
    font-size: 1.25rem;
    color: var(--slate-800);
    cursor: pointer;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 96px 0 44px 0;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
    margin: 14px 0;
    letter-spacing: -0.02em;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 18px;
  }

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

  .hero-stat-item strong {
    font-size: 1.25rem;
  }

  .hero-stat-item span {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  /* Split View Slider Mobile */
  .demo-showcase-card {
    max-width: 320px;
    margin: 0 auto;
    padding: 10px;
    border-radius: var(--radius-md);
  }

  .split-pill-knob {
    width: 32px;
    height: 32px;
  }

  .split-pill-knob svg {
    width: 13px;
    height: 13px;
  }

  .demo-card-header {
    padding: 2px 4px 8px 4px;
    font-size: 0.72rem;
  }

  .demo-btn-cart {
    font-size: 0.85rem;
    padding: 11px 14px;
    background: var(--primary-gradient);
    color: var(--white);
  }

  /* Section Headings */
  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.25;
    margin: 12px 0;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Feature & Step Cards */
  .features-grid, 
  .steps-container, 
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-card h3 {
    font-size: 1.15rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .step-card {
    padding: 24px 20px;
  }

  .highlight-box {
    padding: 26px 18px;
    border-radius: var(--radius-lg);
  }

  .highlight-content h2 {
    font-size: 1.55rem;
    line-height: 1.25;
  }

  .highlight-content p {
    font-size: 0.92rem;
  }

  .highlight-list li {
    font-size: 0.88rem;
  }

  .layer-visual-card {
    padding: 16px;
  }

  .layer-step-pill {
    padding: 12px;
    gap: 12px;
  }

  .layer-step-pill strong {
    font-size: 0.88rem;
  }

  .layer-step-pill span {
    font-size: 0.78rem;
  }

  /* FAQ Accordion */
  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 16px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 36px 20px;
    border-radius: var(--radius-lg);
  }

  .cta-banner h2 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .cta-banner p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .cta-banner .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  /* Footer */
  .footer {
    padding: 48px 0 24px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Legal / Privacy Page */
  .legal-header {
    padding: 96px 0 36px 0;
  }

  .legal-content {
    padding: 36px 0;
  }

  .legal-content h2 {
    font-size: 1.35rem;
    margin: 28px 0 12px 0;
  }

  .legal-content h3 {
    font-size: 1.05rem;
  }

  .legal-content p, 
  .legal-content li {
    font-size: 0.92rem;
  }
}

/* Extra Small Phones (420px and below) */
@media (max-width: 420px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .demo-showcase-card {
    max-width: 100%;
  }

  .hero-stat-item strong {
    font-size: 1.1rem;
  }

  .hero-stat-item span {
    font-size: 0.68rem;
  }

  .nav-actions .btn span {
    display: none;
  }
}
