/* =============================================
   TRIONAIRE MEDIA — STYLES
   Dark premium design with orange accents
   ============================================= */

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

:root {
  --bg: #0A0A0A;
  --bg-dark: #050505;
  --bg-card: #141414;
  --bg-card-hover: #1A1A1A;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(251,146,60,0.3);
  --accent: #FB923C;
  --accent-dark: #EA7C1A;
  --accent-glow: rgba(251,146,60,0.15);
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --muted: rgba(255,255,255,0.5);
  --muted-2: rgba(255,255,255,0.3);
  --text: rgba(255,255,255,0.85);
  --text-light: rgba(255,255,255,0.6);
  --green: #22C55E;
  --red: rgba(255,255,255,0.3);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-accent: 0 0 40px rgba(251,146,60,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
.accent { color: var(--accent); }

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  background: rgba(251,146,60,0.08);
}

.section__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--bg-dark);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #000;
}

.btn--primary:hover {
  background: #FF9F50;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(251,146,60,0.35);
}

.btn--lg {
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 10px;
}

.btn--sm {
  font-size: 14px;
  padding: 10px 20px;
}

.btn--full {
  width: 100%;
  font-size: 16px;
  padding: 16px;
  border-radius: 10px;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__logo span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

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

.hero__bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at top, rgba(251,146,60,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.hero__content {
  text-align: left;
}

.hero__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero__headline {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-light);
  max-width: 500px;
  margin: 0 0 40px;
  line-height: 1.6;
}

.hero__actions {
  margin-bottom: 0;
}

.hero__size-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 420px;
}

/* Hero Visual (notification cards) */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.hv-card--call  { border-left: 3px solid var(--green); }
.hv-card--booked { border-left: 3px solid var(--accent); }
.hv-card--week  { border-left: 3px solid rgba(255,255,255,0.1); }

.hv-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.hv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hv-dot--green {
  background: var(--green);
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: hv-pulse 2s infinite;
}

@keyframes hv-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hv-check {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
}

.hv-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  flex: 1;
  letter-spacing: 0.01em;
}

.hv-time {
  font-size: 11px;
  color: var(--muted);
}

.hv-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.hv-detail {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-style: italic;
}

.hv-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 100px;
  padding: 3px 10px;
}

.hv-schedule {
  font-size: 12px;
  color: var(--accent);
  margin: 0;
}

.hv-week-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 10px;
}

.hv-week-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.hv-week-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hv-week-stat span {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hv-week-stat small {
  font-size: 11px;
  color: var(--muted);
}

.hv-bar {
  height: 4px;
  background: var(--border);
  border-radius: 100px;
  margin-bottom: 8px;
  overflow: hidden;
}

.hv-bar-fill {
  height: 100%;
  width: 86%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  border-radius: 100px;
}

.hv-revenue {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 28px 32px;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__stats-credit {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 140px;
}

.hero__stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}

.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  display: none;
}

@media (min-width: 640px) {
  .hero__stat-divider {
    display: block;
  }
  .hero__stats {
    gap: 0;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 40px;
  }
  .hero__visual {
    display: none;
  }
  .hero__content {
    text-align: center;
  }
  .hero__sub {
    margin: 0 auto 40px;
    max-width: 560px;
  }
  .problem__truths {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =============================================
   PAIN POINTS
   ============================================= */
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

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

.pain__card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.pain__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pain__card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* =============================================
   CORE PROBLEM
   ============================================= */
.problem__truths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  margin-bottom: 48px;
}

.problem__truth {
  display: flex;
  flex-direction: column;
}

.problem__truth-tag {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.8;
}

.problem__truth-title {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 14px;
}

.problem__truth-body {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.problem__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: auto;
}

.problem__stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.problem__stat-card--accent {
  border-color: var(--border-accent);
  background: rgba(251,146,60,0.07);
}

.problem__big-num {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.problem__stat-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.problem__bottom-line {
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-top: 0;
}

/* =============================================
   WHO'S LOSING
   ============================================= */
.losing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.losing__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: all 0.2s;
}

.losing__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.losing__card:hover::before {
  opacity: 1;
}

.losing__card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.losing__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.losing__card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* =============================================
   RESULTS
   ============================================= */
.results__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) {
  .results__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.results__desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.results__location {
  font-size: 14px;
  color: var(--muted);
}

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

.results__metric {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.results__metric--accent {
  border-color: var(--border-accent);
  background: rgba(251,146,60,0.08);
}

.results__num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.results__label {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.compare__table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare__table thead tr {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.compare__table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare__th--us {
  color: var(--accent) !important;
}

.compare__table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.compare__table tbody tr:last-child {
  border-bottom: none;
}

.compare__table tbody tr:hover {
  background: var(--bg-card);
}

.compare__table td {
  padding: 18px 24px;
  color: var(--text-light);
  vertical-align: top;
  line-height: 1.5;
}

.compare__table td:first-child {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.compare__td--us {
  color: var(--white) !important;
  background: rgba(251,146,60,0.04);
}

.check {
  color: var(--green);
  font-weight: 700;
  margin-right: 6px;
}

.cross {
  color: #EF4444;
  font-weight: 700;
  margin-right: 6px;
  opacity: 0.7;
}

/* =============================================
   PROCESS
   ============================================= */
.process__steps {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.process__step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.process__num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__num svg {
  width: 22px;
  height: 22px;
  stroke: #000;
}

.process__content {
  padding-top: 10px;
  padding-bottom: 40px;
}

.process__content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.process__content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

.process__connector {
  width: 52px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.process__connector::before {
  content: '';
  display: block;
  width: 2px;
  height: 100%;
  min-height: 32px;
  background: linear-gradient(to bottom, var(--accent), rgba(251,146,60,0.2));
}

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial__card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  position: relative;
}

.testimonial__card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 120px;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__stars {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 3px;
}

.testimonial__quote {
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 36px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FB923C, #EA7C1A);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(251,146,60,0.25);
}

.testimonial__avatar svg {
  width: 36px;
  height: 36px;
}

.testimonial__author strong {
  display: block;
  color: var(--white);
  font-size: 16px;
}

.testimonial__author span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

/* =============================================
   RESULTS DASHBOARD
   ============================================= */
.rdash {
  margin-top: 24px;
  background: #0E0E0E;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.rdash__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.rdash__live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

.rdash__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: hv-pulse 2s infinite;
}

.rdash__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  flex: 1;
}

.rdash__period {
  font-size: 11px;
  color: var(--muted);
}

.rdash__chart {
  padding: 16px 16px 0;
  height: 88px;
}

.rdash__chart svg {
  width: 100%;
  height: 100%;
}

.rdash__footer {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.rdash__stat {
  flex: 1;
  padding: 12px 14px;
  border-right: 1px solid var(--border);
}

.rdash__stat:last-child { border-right: none; }

.rdash__stat strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.rdash__stat span {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}

.rdash__stat em {
  color: var(--green);
  font-style: normal;
  font-weight: 600;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.cta__desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta__size-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  border-left: 2px solid var(--border-accent);
  padding-left: 12px;
}

.cta__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta__bullets li {
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta__bullets .check {
  font-size: 16px;
}

/* ---- CALENDLY CTA LAYOUT ---- */
.cta-calendly__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.cta-calendly__header {
  text-align: center;
  max-width: 640px;
}

.cta-calendly__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-light);
}

.cta-calendly__trust .check {
  margin-right: 5px;
}

.cta-calendly__embed {
  width: 100%;
  max-width: 1000px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-calendly__above {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}

.cta-calendly__embed .calendly-inline-widget {
  min-width: 320px;
  height: 900px !important;
}

/* ---- FORM CARD ---- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.form__group input,
.form__group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}

.form__group input::placeholder {
  color: rgba(255,255,255,0.25);
}

.form__group input:focus,
.form__group select:focus {
  border-color: var(--accent);
  background: rgba(251,146,60,0.04);
}

.form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form__group select option {
  background: #1A1A1A;
  color: var(--white);
}

.form__note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

/* Form success state */
.form__success {
  text-align: center;
  padding: 20px 0;
}

.form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  border: 2px solid var(--green);
  color: var(--green);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form__success h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.form__success p {
  font-size: 15px;
  color: var(--text-light);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: var(--muted);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__legal-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal-link:hover {
  color: var(--white);
}

.footer__legal-divider {
  font-size: 13px;
  color: var(--border);
}

/* =============================================
   ANIMATIONS
   ============================================= */

/* Elements are visible by default. JS adds .pre-animate before observing,
   then removes it (adds .did-animate) when in viewport. */
.pre-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.did-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 640px) {
  .section { padding: 72px 0; }

  .hero { padding: 120px 0 80px; }
  .hero__stats { padding: 24px 20px; }
  .hero__stat-num { font-size: 26px; }

  .losing__grid { grid-template-columns: 1fr; }
  .problem__truths { grid-template-columns: 1fr; gap: 40px; }
  .problem__stats { grid-template-columns: 1fr; }
  .results__right { grid-template-columns: 1fr 1fr; }

  .testimonial__card { padding: 36px 24px; }
  .form-card { padding: 24px; }

  .compare__table th,
  .compare__table td {
    padding: 14px 16px;
    font-size: 14px;
  }
}
