/* style.css — Pantera AI Design Tokens & Components */

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */

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

:root {
  /* Font families */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;

  /* Fluid type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.9rem  + 0.5vw,  1.125rem);
  --text-lg:   clamp(1.125rem, 0.95rem + 0.85vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1rem    + 1.5vw,  2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* 4px Spacing System */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ═══════════════════════════════════════
     PANTERA BRAND COLORS
     ═══════════════════════════════════════ */

  /* Primary Purple Palette */
  --color-purple-deep:    #6B21A8;
  --color-purple-mid:     #7C3AED;
  --color-purple-light:   #9333EA;
  --color-purple-bright:  #A855F7;
  --color-purple-surface: #F3E8FF;

  /* CTA Amber/Orange */
  --color-amber:          #F59E0B;
  --color-amber-hover:    #D97706;
  --color-amber-active:   #B45309;
  --color-amber-light:    #FCD34D;

  /* Dark sections */
  --color-dark:           #0F0A1A;
  --color-dark-surface:   #1A1230;
  --color-dark-lighter:   #2D2145;

  /* Light / Body sections */
  --color-bg:             #FFFFFF;
  --color-surface:        #F9FAFB;
  --color-surface-2:      #F3F4F6;
  --color-surface-offset: #E5E7EB;
  --color-divider:        #E5E7EB;
  --color-border:         #D1D5DB;

  /* Text */
  --color-text:           #1F2937;
  --color-text-muted:     #6B7280;
  --color-text-faint:     #9CA3AF;
  --color-text-inverse:   #FFFFFF;

  /* Semantic mapping */
  --color-primary:        var(--color-purple-mid);
  --color-primary-hover:  var(--color-purple-deep);
  --color-cta:            var(--color-amber);
  --color-cta-hover:      var(--color-amber-hover);
  --color-cta-active:     var(--color-amber-active);

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-8);
  }
}

.section-padding {
  padding-block: clamp(var(--space-12), 6vw, var(--space-24));
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */

.text-xs   { font-size: var(--text-xs); }
.text-sm   { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg   { font-size: var(--text-lg); }
.text-xl   { font-size: var(--text-xl); }
.text-2xl  { font-size: var(--text-2xl); }
.text-3xl  { font-size: var(--text-3xl); }

.font-medium  { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold    { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-center  { text-align: center; }
.text-muted   { color: var(--color-text-muted); }
.text-faint   { color: var(--color-text-faint); }
.text-purple  { color: var(--color-purple-mid); }
.text-inverse { color: var(--color-text-inverse); }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.5;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-cta {
  background: var(--color-cta);
  color: #FFFFFF;
}

.btn-cta:hover {
  background: var(--color-cta-hover);
}

.btn-cta:active {
  background: var(--color-cta-active);
}

.btn-cta-lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
  font-weight: 800;
}

.btn-outline {
  background: transparent;
  color: var(--color-text-inverse);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */

.card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-divider);
  transition: transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

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

/* ═══════════════════════════════════════════
   SECTION BACKGROUNDS
   ═══════════════════════════════════════════ */

.bg-white {
  background: var(--color-bg);
  color: var(--color-text);
}

.bg-gray {
  background: var(--color-surface);
  color: var(--color-text);
}

.bg-dark {
  background: var(--color-dark);
  color: var(--color-text-inverse);
}

.bg-purple-gradient {
  background: linear-gradient(135deg, var(--color-purple-deep) 0%, var(--color-purple-light) 50%, var(--color-purple-bright) 100%);
  color: var(--color-text-inverse);
}

.bg-purple-gradient-light {
  background: linear-gradient(135deg, var(--color-purple-mid) 0%, var(--color-purple-bright) 100%);
  color: var(--color-text-inverse);
}

.bg-purple-dark {
  background: linear-gradient(135deg, #1A0533 0%, var(--color-purple-deep) 100%);
  color: var(--color-text-inverse);
}

/* ═══════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-purple-mid);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

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

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #EF4444;
}

.form-error {
  font-size: var(--text-xs);
  color: #EF4444;
  display: none;
}

.form-error.visible {
  display: block;
}

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

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */

/* Fade animations: only activate when JS adds .js-ready to body */
body.js-ready .fade-in {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body.js-ready .fade-in.visible {
  opacity: 1;
}

body.js-ready .fade-in-stagger > * {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.js-ready .fade-in-stagger.visible > * {
  opacity: 1;
}

body.js-ready .fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
body.js-ready .fade-in-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
body.js-ready .fade-in-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
body.js-ready .fade-in-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
body.js-ready .fade-in-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }

/* ═══════════════════════════════════════════
   STICKY HEADER
   ═══════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background var(--transition-interactive),
              padding var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.site-header.scrolled {
  background: rgba(15, 10, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-2) 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .header-inner {
    padding-inline: var(--space-8);
  }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text-inverse);
}

.header-logo-text {
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.header-cta {
  display: none;
}

@media (min-width: 640px) {
  .header-cta {
    display: inline-flex;
  }
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3B0764 0%, var(--color-purple-deep) 30%, var(--color-purple-light) 70%, var(--color-purple-bright) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(147, 51, 234, 0.5) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(168, 85, 247, 0.4) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(107, 33, 168, 0.3) 0%, transparent 40%);
  animation: hero-glow 8s ease-in-out infinite alternate;
}

@keyframes hero-glow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-inline: var(--space-5);
}

.hero-logo-icon {
  margin: 0 auto var(--space-8);
}

.hero h1 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  color: var(--color-text-inverse);
}

.hero-subtitle {
  font-size: var(--text-lg);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto var(--space-10);
  line-height: 1.6;
}

.hero-small {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-4);
}

/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */

.trust-bar {
  padding: var(--space-10) 0;
}

.trust-bar-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: var(--space-8);
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.trust-logo {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   SECTION TITLES
   ═══════════════════════════════════════════ */

.section-title {
  font-size: var(--text-xl);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.section-title.text-purple {
  color: var(--color-purple-mid);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

/* Inverse section titles (on dark/purple bg) */
.bg-purple-gradient .section-title,
.bg-purple-gradient-light .section-title,
.bg-purple-dark .section-title,
.bg-dark .section-title {
  color: var(--color-text-inverse);
}

.bg-purple-gradient .section-subtitle,
.bg-purple-gradient-light .section-subtitle,
.bg-purple-dark .section-subtitle,
.bg-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════
   PAIN POINTS GRID
   ═══════════════════════════════════════════ */

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

.pain-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
}

.pain-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-6);
  background: var(--color-purple-surface);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-purple-mid);
}

.pain-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.pain-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS (STEPS)
   ═══════════════════════════════════════════ */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10);
  }
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-purple-mid), var(--color-purple-bright));
  color: #FFFFFF;
  font-size: var(--text-lg);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

.step-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-purple-deep);
  margin-bottom: var(--space-3);
}

.step-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   METRICS SECTION
   ═══════════════════════════════════════════ */

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

.metric-card {
  text-align: center;
  padding: var(--space-10) var(--space-6);
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-purple-surface);
}

.metric-value {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-purple-mid);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
}

.metric-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}

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

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: var(--color-text);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  font-size: var(--text-base);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.testimonial-quote::before {
  content: '\201C';
  font-size: var(--text-2xl);
  color: var(--color-purple-mid);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: var(--space-1);
}

.testimonial-author {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-purple-mid);
}

.testimonial-company {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.testimonial-note {
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-8);
}

/* ═══════════════════════════════════════════
   COMPATIBILITY
   ═══════════════════════════════════════════ */

.compat-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.compat-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.compat-logo-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-divider);
}

.compat-logo-name {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
}

.compat-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   POC OFFER
   ═══════════════════════════════════════════ */

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

.poc-checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-8) 0;
  text-align: left;
  display: inline-block;
}

.poc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
}

.poc-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.poc-check svg {
  width: 14px;
  height: 14px;
  color: #FFFFFF;
}

/* ═══════════════════════════════════════════
   LEAD FORM
   ═══════════════════════════════════════════ */

.form-section {
  max-width: 600px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid .form-group.full-width {
    grid-column: 1 / -1;
  }
}

.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  margin-top: var(--space-4);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-10);
}

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

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: #10B981;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
}

.form-success h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-purple-mid);
  margin-bottom: var(--space-3);
}

.form-success p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-divider);
}

.faq-question {
  width: 100%;
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-interactive);
}

.faq-question:hover {
  color: var(--color-purple-mid);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.site-footer {
  padding: var(--space-12) 0 var(--space-8);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text-inverse);
}

.footer-logo-text {
  font-size: var(--text-lg);
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

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

.footer-email {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.footer-email a {
  color: var(--color-amber);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.footer-email a:hover {
  color: var(--color-amber-light);
}

.footer-bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-attribution a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.footer-attribution a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════
   MOBILE ADJUSTMENTS
   ═══════════════════════════════════════════ */

@media (max-width: 639px) {
  .hero h1 {
    font-size: var(--text-2xl);
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .trust-logos {
    gap: var(--space-6);
  }

  .compat-logos {
    gap: var(--space-6);
  }

  .section-title {
    font-size: var(--text-lg);
  }

  .metric-value {
    font-size: var(--text-xl);
  }
}
