/* ============================================================
   AIQuickTest.org — styles.css
   Brand: #004A85 cobalt blue | #5B5A5D charcoal
   Tone: Clinical. Authoritative. Trustworthy.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cobalt:       #004A85;
  --cobalt-dark:  #003460;
  --cobalt-light: #1a6aad;
  --cobalt-tint:  #e8f1f9;
  --charcoal:     #5B5A5D;
  --ink:          #1a1a2e;
  --white:        #ffffff;
  --off-white:    #f7f8fa;
  --border:       #dde3ea;
  --success:      #1a7a4a;
  --warning:      #b45309;
  --danger:       #b91c1c;
  --shadow-sm:    0 1px 4px rgba(0,74,133,0.08);
  --shadow-md:    0 4px 16px rgba(0,74,133,0.12);
  --shadow-lg:    0 8px 32px rgba(0,74,133,0.16);
  --radius:       6px;
  --radius-lg:    12px;
  --font-display: 'Tinos', Georgia, serif;
  --font-body:    'Tinos', Georgia, serif;
  --transition:   0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--cobalt);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--cobalt-light);
}

/* --- Typography Scale --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Tinos', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p {
  color: var(--charcoal);
  line-height: 1.7;
}

/* --- Utility --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 580px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cobalt);
  color: var(--white);
  border-color: var(--cobalt);
}

.btn-primary:hover {
  background: var(--cobalt-dark);
  border-color: var(--cobalt-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cobalt);
  border-color: var(--cobalt);
}

.btn-outline:hover {
  background: var(--cobalt-tint);
  color: var(--cobalt-dark);
}

.btn-white {
  background: var(--white);
  color: var(--cobalt);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cobalt-tint);
  border-color: var(--cobalt-tint);
  color: var(--cobalt-dark);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 52, 96, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 24px;
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.navbar-brand:hover {
  color: var(--white);
  opacity: 0.9;
}

.navbar-brand img,
.navbar-brand svg {
  width: 32px;
  height: 32px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color var(--transition);
}

.navbar-nav a:hover {
  color: var(--white);
}

.navbar-nav a.nav-verify {
  color: #7ec8f5;
}

.navbar-nav a.nav-verify:hover {
  color: #a8dcfa;
}

.navbar-cta {
  display: flex;
  align-items: center;
}

/* ============================================================
   HERO — Parallax Metal Background
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* Parallax metal background layer */
.hero-bg {
  position: absolute;
  inset: -60px;
  background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(3px) brightness(0.35) saturate(0.6);
  transform: scale(1.05);
  z-index: 0;
}

/* Cobalt blue overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 52, 96, 0.72) 0%,
    rgba(0, 74, 133, 0.55) 50%,
    rgba(0, 30, 60, 0.80) 100%
  );
  z-index: 1;
}

/* Subtle scan-line texture for forensic feel */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,74,133,0.04) 3px,
    rgba(0,74,133,0.04) 4px
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ec8f5;
  box-shadow: 0 0 6px #7ec8f5;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: normal;
  color: #7ec8f5;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 12px;
  line-height: 1.65;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

/* Media type selector cards in hero */
.hero-media-types {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.media-type-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 16px 24px;
  min-width: 120px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.media-type-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(126,200,245,0.4);
  transform: translateY(-2px);
}

.media-type-card svg,
.media-type-card .icon {
  width: 24px;
  height: 24px;
  margin: 0 auto 8px;
  color: #7ec8f5;
}

.media-type-card .type-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}

.media-type-card .type-formats {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero stats strip */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
}

.hero-stat {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat .stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat .stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Trust strip below hero */
.hero-trust {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.03em;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  color: #7ec8f5;
  flex-shrink: 0;
}

/* ============================================================
   POWERED BY STRIP
   ============================================================ */
.powered-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  text-align: center;
}

.powered-strip p {
  font-size: 0.82rem;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}

.powered-strip strong {
  color: var(--cobalt);
  font-weight: 700;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 96px 24px;
  background: var(--white);
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.steps-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,74,133,0.2);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cobalt);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 0;
}

.step-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--cobalt-tint);
  color: var(--cobalt);
  border: 1px solid rgba(0,74,133,0.12);
}

/* ============================================================
   VERDICT EXAMPLES
   ============================================================ */
.verdict-examples {
  padding: 96px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.verdict-examples .section-header {
  text-align: center;
  margin-bottom: 52px;
}

.verdict-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 780px;
  margin: 0 auto;
}

.verdict-card {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.verdict-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 10px;
  border-radius: 100px;
}

.verdict-label.authentic {
  background: #ecfdf5;
  color: var(--success);
  border: 1px solid #a7f3d0;
}

.verdict-label.mixed {
  background: #fffbeb;
  color: var(--warning);
  border: 1px solid #fde68a;
}

.verdict-label.ai-generated {
  background: #fef2f2;
  color: var(--danger);
  border: 1px solid #fecaca;
}

.verdict-pct {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}

.verdict-sublabel {
  font-size: 0.8rem;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.verdict-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  overflow: hidden;
}

.verdict-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease;
}

.verdict-bar-fill.authentic { background: var(--success); }
.verdict-bar-fill.mixed     { background: var(--warning); }
.verdict-bar-fill.ai        { background: var(--danger); }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who-its-for {
  padding: 96px 24px;
  background: var(--white);
}

.who-its-for .section-header {
  text-align: center;
  margin-bottom: 52px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cobalt);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.audience-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,74,133,0.2);
  transform: translateY(-2px);
}

.audience-card:hover::before {
  transform: scaleX(1);
}

.audience-icon {
  width: 44px;
  height: 44px;
  background: var(--cobalt-tint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--cobalt);
}

.audience-icon svg {
  width: 22px;
  height: 22px;
}

.audience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 96px 24px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

/* Subtle cobalt glow behind pricing */
.pricing::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,74,133,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.pricing .section-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.pricing .section-eyebrow {
  color: #7ec8f5;
}

.pricing .section-title {
  color: var(--white);
}

.pricing .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.pricing-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.pricing-card.featured {
  background: var(--cobalt);
  border-color: var(--cobalt-light);
  box-shadow: 0 0 40px rgba(0,74,133,0.5), var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: translateY(-6px);
}

.pricing-badge {
  display: inline-block;
  padding: 3px 10px;
  background: #7ec8f5;
  color: var(--cobalt-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
}

.pricing-tier {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-tier {
  color: rgba(255,255,255,0.75);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.pricing-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg,
.check-icon {
  width: 16px;
  height: 16px;
  color: #7ec8f5;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}

.pricing-note a {
  color: #7ec8f5;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 96px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.faq .section-header {
  text-align: center;
  margin-bottom: 52px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--cobalt-tint);
}

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--cobalt);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 24px;
  background: var(--cobalt);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(4px) brightness(0.2) saturate(0.4);
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 52, 96, 0.75);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}

.cta-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.cta-icon svg {
  width: 26px;
  height: 26px;
  color: #7ec8f5;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-brand:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgba(255,255,255,0.8);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-media-types {
    gap: 8px;
  }

  .media-type-card {
    padding: 12px 16px;
    min-width: 100px;
  }

  .hero-stats {
    flex-direction: column;
    max-width: 300px;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .verdict-grid {
    flex-direction: column;
    align-items: center;
  }

  .verdict-card {
    max-width: 100%;
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg,
  .cta-section::before {
    background-attachment: scroll;
  }
}

:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 2px;
}