/*
Theme Name: LeadForger
Theme URI: https://leadforger.co
Author: LeadForger
Description: Custom Emperor-palette theme for LeadForger — ICP-Matched. Waterfall-Verified. Ready to Close.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: leadforger
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0A0A0A;
  color: #FFFFFF;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 900;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4AF37;
}

/* ============================================================
   COLORS & TOKENS
   ============================================================ */
:root {
  --bg:          #0A0A0A;
  --surface:     #1A1020;
  --surface-2:   #120D1C;
  --purple:      #4A0E8F;
  --purple-mid:  #6B21C8;
  --purple-light:#7C3AED;
  --gold:        #D4AF37;
  --gold-light:  #F0D060;
  --text:        #FFFFFF;
  --muted:       #C8C0D8;
  --border:      rgba(124, 58, 237, 0.2);
  --border-gold: rgba(212, 175, 55, 0.3);
  --radius:      12px;
  --radius-sm:   8px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--sm {
  padding: 64px 0;
}

.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--muted); }
.text-purple  { color: var(--purple-light); }

.gradient-text {
  background: linear-gradient(135deg, #C084FC 0%, #7C3AED 40%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #6B21C8 0%, #4A0E8F 100%);
  color: #FFFFFF;
  box-shadow: 0 0 24px rgba(107, 33, 200, 0.4);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #6B21C8 100%);
  box-shadow: 0 0 36px rgba(124, 58, 237, 0.6);
  transform: translateY(-1px);
}

.btn--gold {
  background: linear-gradient(135deg, #D4AF37 0%, #8B6914 100%);
  color: #0A0A0A;
  font-weight: 700;
}

.btn--gold:hover {
  background: linear-gradient(135deg, #F0D060 0%, #D4AF37 100%);
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.5);
}

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

.btn--ghost:hover {
  border-color: var(--purple-light);
  color: #FFFFFF;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: rgba(124, 58, 237, 0.35);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img,
.nav-logo svg {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: #FFFFFF; }

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

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 160px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(74, 14, 143, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.08);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.hero-callout {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--gold);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(26, 16, 32, 0.6);
  overflow: hidden;
}

.trust-item {
  flex: 1;
  min-width: 160px;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.trust-item:last-child { border-right: none; }

.trust-item__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}

.trust-item__label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   PROBLEM STRIP
   ============================================================ */
.problem-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.problem-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.problem-card:last-child { border-right: none; }

.problem-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  font-size: 1.3rem;
}

.problem-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.problem-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-it-works .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 12px;
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light), var(--purple));
  opacity: 0.4;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-4px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple));
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   WHAT YOU GET
   ============================================================ */
.what-you-get {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.what-you-get .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.what-you-get .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 12px;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 8px 32px rgba(74, 14, 143, 0.2);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(107, 33, 200, 0.3), rgba(74, 14, 143, 0.3));
  border: 1px solid var(--border);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
}

/* ============================================================
   DATA SOURCES MARQUEE
   ============================================================ */
.data-sources {
  padding: 64px 0;
  overflow: hidden;
}

.data-sources .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.data-sources .section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-top: 12px;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #0A0A0A, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, #0A0A0A, transparent);
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.source-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  margin: 0 8px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.source-pill:hover {
  border-color: var(--purple-light);
  color: #FFFFFF;
}

.source-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-light);
  flex-shrink: 0;
}

.source-pill img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  padding: 2px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.comparison .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 12px;
}

.compare-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

.compare-table th {
  padding: 20px 28px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}

.compare-table th:first-child { text-align: left; }

.compare-table th.col-lf {
  background: rgba(74, 14, 143, 0.2);
  color: #FFFFFF;
  position: relative;
}

.compare-table th.col-lf::after {
  content: '✦ Best';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.compare-table th.col-other { color: var(--muted); }

.compare-table td {
  padding: 18px 28px;
  font-size: 0.875rem;
  text-align: center;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  vertical-align: middle;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--muted);
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table td.col-lf {
  background: rgba(74, 14, 143, 0.1);
  font-weight: 600;
}

.check { color: #4ADE80; font-size: 1.1rem; }
.cross { color: #F87171; font-size: 1.1rem; }
.partial { color: var(--gold); font-size: 0.85rem; font-style: italic; }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who-its-for {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.who-its-for .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.who-its-for .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 12px;
}

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

.persona-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.persona-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}

.persona-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.persona-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold);
}

.persona-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.persona-pains {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.persona-pains li {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.persona-pains li::before {
  content: '→';
  color: var(--purple-light);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 12px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s;
}

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

.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--border);
  transition: transform 0.3s, background 0.3s;
  color: var(--muted);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--purple);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

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

/* ============================================================
   FINAL CTA BAND
   ============================================================ */
.cta-band {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74, 14, 143, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-content {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.cta-band p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-band-risk {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-band-risk::before {
  content: '🔒';
  font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-logo img,
.footer-logo svg {
  height: 36px;
  width: auto;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: #FFFFFF; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section-header h2 { margin-top: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    z-index: 999;
  }

  .hero { padding: 120px 0 72px; }
  .hero h1 { font-size: 2.2rem; }

  .trust-strip { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }

  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { border-right: none; border-bottom: 1px solid var(--border); }
  .problem-card:last-child { border-bottom: none; }

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

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

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .compare-table th,
  .compare-table td { padding: 14px 16px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn--lg { width: 100%; }
  .btn { width: 100%; justify-content: center; }
}
