@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');

:root {
  --primary-accent: #ff8400;
  --primary-accent-glow: rgba(255, 132, 0, 0.35);
  --primary-accent-light: #ff9e30;
  --primary-accent-dark: #cc6900;
  
  --bg-dark: #08090d;
  --bg-darker: #040507;
  --bg-card: rgba(20, 22, 33, 0.7);
  --bg-card-hover: rgba(30, 33, 50, 0.85);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-focus: rgba(255, 132, 0, 0.35);
  
  --text-primary: #f5f6fa;
  --text-secondary: #9ea4b8;
  --text-muted: #5e6478;
  
  --success: #34c759;
  --success-glow: rgba(52, 199, 89, 0.2);
  --warning: #ff9500;
  --warning-glow: rgba(255, 149, 0, 0.2);
  --danger: #ff3b30;
  --danger-glow: rgba(255, 59, 48, 0.2);
  --info: #007aff;
  
  --font-main: 'Inter', sans-serif;
  --font-header: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-round: 50%;
  
  --shadow-main: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px 0 var(--primary-accent-glow);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #15192e 0%, var(--bg-dark) 70%);
  background-attachment: fixed;
  line-height: 1.6;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-accent);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 30%, #a5adb9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

a:hover {
  color: var(--primary-accent-light);
}

/* Layout Elements */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* Glassmorphism Cards */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-main);
  transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-focus);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 9, 13, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.logo-orange {
  color: var(--primary-accent);
}

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

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-medium);
  border: none;
}

.btn-primary {
  background: var(--primary-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 132, 0, 0.3);
}

.btn-primary:hover {
  background: var(--primary-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 132, 0, 0.45), var(--shadow-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* App Store Badge */
.app-store-badge {
  display: inline-flex;
  background: #000;
  border: 1px solid #333;
  padding: 10px 20px;
  border-radius: 12px;
  color: #fff;
  gap: 12px;
  align-items: center;
  transition: var(--transition-medium);
}

.app-store-badge:hover {
  border-color: var(--primary-accent);
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.app-store-badge svg {
  width: 24px;
  height: 24px;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.badge-text .small {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.badge-text .large {
  font-size: 1.05rem;
  font-weight: 700;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 132, 0, 0.1);
  border: 1px solid rgba(255, 132, 0, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--primary-accent-light);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-tag span {
  width: 8px;
  height: 8px;
  background: var(--primary-accent);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.hero-description {
  font-size: 1.2rem;
  margin: 24px 0 40px 0;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Phone Mockup Animation */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.phone-container {
  width: 300px;
  height: 600px;
  background: #000;
  border: 8px solid #222;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 40px rgba(255, 132, 0, 0.15);
  overflow: hidden;
  position: relative;
  transform: rotateY(-10deg) rotateX(10deg);
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: rotateY(-10deg) rotateX(10deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(5deg) translateY(-15px); }
}

/* Phone Interface Mock */
.phone-screen {
  width: 100%;
  height: 100%;
  background: #111;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-camera-view {
  flex: 1;
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="400" viewBox="0 0 300 400"><rect width="100%" height="100%" fill="%23222533"/><circle cx="150" cy="180" r="80" fill="%23ff8400" opacity="0.15"/><path d="M 80,180 A 70,70 0 0,1 220,180" fill="none" stroke="%23ff9500" stroke-width="2"/><circle cx="150" cy="180" r="10" fill="%23e53e3e"/></svg>');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-reticle {
  width: 90px;
  height: 90px;
  border: 2px dashed rgba(255,255,255,0.7);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateReticle 20s linear infinite;
}

@keyframes rotateReticle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.phone-reticle-inner {
  width: 60px;
  height: 60px;
  border: 3px solid var(--primary-accent);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--primary-accent-glow);
  animation: pulseInner 1.5s ease-in-out infinite alternate;
}

@keyframes pulseInner {
  0% { transform: scale(0.95); }
  100% { transform: scale(1.05); }
}

.phone-reticle-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-accent);
  border-radius: var(--radius-round);
  border: 2px solid #fff;
}

.phone-hud {
  height: 160px;
  background: rgba(20, 22, 33, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-glass);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.phone-color-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-color-swatch {
  width: 44px;
  height: 44px;
  background: var(--primary-accent);
  border-radius: var(--radius-round);
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.phone-color-details {
  display: flex;
  flex-direction: column;
}

.phone-color-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.phone-color-hex {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.phone-speak-btn {
  background: var(--primary-accent);
  color: #fff;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(255, 132, 0, 0.2);
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 132, 0, 0.1);
  border: 1px solid rgba(255, 132, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent-light);
  box-shadow: inset 0 0 12px rgba(255, 132, 0, 0.05);
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

/* CVD Simulator Interactive Widget */
.simulator-widget {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sim-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sim-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sim-mode-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.sim-mode-btn.active {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.sim-correction-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.1);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid var(--border-glass);
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-accent);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

.sim-image-container {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-main);
}

.sim-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sim-slider-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.swatch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.swatch-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  border: 2px solid rgba(255,255,255,0.2);
  transition: var(--transition-fast);
}

.swatch-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* WCAG Contrast Checker Demo styling */
.contrast-widget {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contrast-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.color-pickers-row {
  display: flex;
  gap: 20px;
}

.picker-box {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.picker-box label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.picker-box input[type="color"] {
  width: 100%;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.contrast-ratios {
  display: flex;
  gap: 16px;
}

.ratio-box {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.ratio-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.ratio-val {
  font-size: 2.25rem;
  font-family: var(--font-header);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.ratio-val.pass {
  color: var(--success);
}

.ratio-val.fail {
  color: var(--danger);
}

.ratio-status {
  font-size: 0.85rem;
  font-weight: 700;
}

.badge-row {
  display: flex;
  gap: 10px;
}

.compliance-badge {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  background: var(--danger-glow);
  color: var(--danger);
  border: 1px solid rgba(255, 59, 48, 0.15);
}

.compliance-badge.pass {
  background: var(--success-glow);
  color: var(--success);
  border: 1px solid rgba(52, 199, 89, 0.15);
}

.contrast-preview {
  height: 240px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  box-shadow: var(--shadow-main);
  border: 1px solid var(--border-glass);
}

.preview-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.preview-text {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* FAQ / Support Layout */
.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 132, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent-light);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-card-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: var(--transition-medium);
}

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

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
  color: var(--text-secondary);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium) cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height var(--transition-medium) cubic-bezier(0.9, 0, 0.1, 1);
  padding: 0 24px 20px 24px;
}

/* Privacy & Legal Document Layout */
.legal-container {
  padding-top: 140px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 40px;
  text-align: center;
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-content {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-main);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 8px;
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

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

.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* Footer styling */
footer {
  border-top: 1px solid var(--border-glass);
  background: var(--bg-darker);
  padding: 60px 0 30px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links-row {
  display: flex;
  gap: 60px;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.footer-col a {
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: #fff;
}

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

/* Intersection Observer entrance animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 132, 0, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 132, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 132, 0, 0); }
}

/* Responsive breakdowns */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  
  .hero-description {
    margin: 24px auto 40px auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .phone-container {
    transform: none;
    animation: floatPhoneMobile 5s ease-in-out infinite;
  }
  
  @keyframes floatPhoneMobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }
  
  .simulator-widget,
  .contrast-widget,
  .support-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-links-row {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .nav-links {
    display: none; /* simple nav for mobile */
  }
  
  section {
    padding: 60px 0;
  }
  
  .color-pickers-row {
    flex-direction: column;
  }
  
  .contrast-ratios {
    flex-direction: column;
  }
  
  .legal-content {
    padding: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
