:root {
  --bg-dark: #0f1114;
  --bg-section: #161921;
  --bg-card: #1c2029;
  --fg: #e8e9ed;
  --fg-muted: #9499a8;
  --accent: #e8842c;
  --accent-glow: rgba(232, 132, 44, 0.15);
  --accent-bright: #f5a623;
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(232, 132, 44, 0.25);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 32px;
  width: fit-content;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

/* ── PROBLEM ── */
.problem {
  background: var(--bg-section);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.problem-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}

.pain-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 8px;
  flex-shrink: 0;
  color: var(--accent);
}

.pain-text {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.pain-text strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* ── HOW ── */
.how {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.how h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.how-sub {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 56px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.how-card {
  padding: 28px 24px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
}

.how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.how-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.how-card h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── NUMBERS ── */
.numbers {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}

.numbers-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.number-block {
  text-align: center;
  flex: 1;
}

.big-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
}

.num-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

.num-context {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 10px;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.number-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* ── CLOSING ── */
.closing {
  padding: 120px 24px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-text {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-legal {
  max-width: 1100px;
  margin: 16px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ══════════════════════════════════════════════
   SEO LANDING PAGE STYLES
   ══════════════════════════════════════════════ */

/* ── SEO NAV ── */
.seo-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.seo-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.seo-nav-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.seo-nav-brand span {
  color: var(--accent);
}

.seo-nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.seo-nav-links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.seo-nav-links a:hover,
.seo-nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.seo-nav-cta {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bg-dark) !important;
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.seo-nav-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

/* ── SEO HERO ── */
.seo-hero {
  padding: 72px 24px 56px;
  max-width: 860px;
  margin: 0 auto;
}

.seo-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.seo-hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  line-height: 1.12;
}

.seo-hero p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.seo-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg-dark);
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--accent-glow);
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

/* ── CONTENT SECTIONS ── */
.seo-section {
  padding: 72px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.seo-section--dark {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.seo-section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.seo-section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.seo-section p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
}

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(232, 132, 44, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  position: relative;
  padding: 28px 20px 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── FAQ ACCORDION ── */
.faq-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── HOW-TO STEPS ── */
.howto-steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.howto-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.howto-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  width: 48px;
  flex-shrink: 0;
  padding-top: 2px;
}

.howto-content h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}

.howto-content p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── EXAMPLE / TEMPLATE GRID ── */
.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.template-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.template-card:hover {
  border-color: rgba(232, 132, 44, 0.35);
  transform: translateY(-3px);
}

.template-preview {
  background: #fff;
  padding: 24px 20px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.template-preview h4 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.template-preview p {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  color: #666;
}

.template-tag {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.template-tag span {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.template-tag .badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(232, 132, 44, 0.2);
  padding: 3px 10px;
  border-radius: 4px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}

.cta-band-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-band p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ── INTERNAL LINK NAV ── */
.seo-links-bar {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 24px;
}

.seo-links-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.seo-links-inner span {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
  margin-right: 8px;
}

.seo-link-chip {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.seo-link-chip:hover {
  border-color: rgba(232, 132, 44, 0.4);
  color: var(--accent);
}

.seo-link-chip.current {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

/* ── PROSE CONTENT ── */
.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.prose p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.prose ul {
  color: var(--fg-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin: 0 0 20px 20px;
}

.prose li {
  margin-bottom: 8px;
}

.prose strong {
  color: var(--fg);
  font-weight: 600;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 20px 40px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .numbers-inner {
    flex-direction: column;
    gap: 40px;
  }

  .number-divider {
    width: 60px;
    height: 1px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* SEO mobile overrides */
  .seo-nav-links {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .template-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .how-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    flex-direction: column;
    gap: 4px;
  }
}

/* ── LEGAL PAGES ── */
.legal-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  background: var(--bg-section);
}

.legal-header-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.legal-logo:hover {
  color: var(--accent);
}

.legal-nav {
  display: flex;
  gap: 24px;
}

.legal-nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-nav a:hover {
  color: var(--accent);
}

.legal-main {
  padding: 60px 24px 80px;
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
}

.legal-container h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 40px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 8px;
  margin-top: 20px;
  letter-spacing: 0;
}

.legal-section p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-section li {
  margin-bottom: 6px;
}

.legal-section strong {
  color: var(--fg);
}

.disclaimer-callout {
  background: var(--bg-card);
  border: 1px solid rgba(232, 132, 44, 0.3);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.disclaimer-callout p {
  color: var(--fg);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.disclaimer-callout strong {
  color: var(--accent);
}

/* Legal page footer fix */
.legal-main ~ footer .footer-inner {
  max-width: 860px;
}

/* ── DISCLAIMER BANNER (reusable) ── */
.disclaimer-banner {
  background: var(--bg-section);
  border: 1px solid rgba(232, 132, 44, 0.25);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.disclaimer-banner-text {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.disclaimer-banner-text strong {
  color: var(--accent);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  flex: 1;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--accent-bright);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.cookie-btn-decline:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

@media (max-width: 600px) {
  .legal-nav {
    gap: 16px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}