/* ===== Variables (from original design) ===== */
:root {
  --background: hsl(40 20% 97%);
  --foreground: hsl(220 20% 10%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(220 20% 10%);
  --primary: hsl(32 95% 45%);
  --primary-foreground: hsl(0 0% 100%);
  --secondary: hsl(40 15% 92%);
  --secondary-foreground: hsl(220 15% 20%);
  --muted: hsl(40 10% 90%);
  --muted-foreground: hsl(220 10% 40%);
  --border: hsl(220 10% 88%);
  --radius: 0.75rem;
  --gradient-warm: linear-gradient(135deg, hsl(32 95% 45%), hsl(20 90% 38%));
  --gradient-glow: radial-gradient(ellipse at center, hsl(32 95% 45% / 0.1), transparent 70%);
  --shadow-primary: 0 10px 40px -10px hsl(32 95% 45% / 0.25);
  --link: hsl(32 95% 38%);
  --link-underline: hsl(32 95% 45% / 0.4);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Dark theme (matches Lovable: charcoal background + warm center glow) */
html.dark {
  --background: hsl(220 20% 4%);
  --foreground: hsl(40 20% 95%);
  --card: hsl(220 18% 8%);
  --card-foreground: hsl(40 20% 95%);
  --primary: hsl(32 95% 55%);
  --primary-foreground: hsl(220 20% 4%);
  --secondary: hsl(220 15% 14%);
  --secondary-foreground: hsl(40 20% 90%);
  --muted: hsl(220 15% 12%);
  --muted-foreground: hsl(220 10% 55%);
  --border: hsl(220 15% 15%);
  --gradient-warm: linear-gradient(135deg, hsl(32 95% 55%), hsl(20 90% 48%));
  --gradient-glow: radial-gradient(ellipse at center, hsl(32 95% 55% / 0.15), transparent 70%);
  --shadow-primary: 0 10px 40px -10px hsl(32 95% 55% / 0.3);
  --link: hsl(32 95% 60%);
  --link-underline: hsl(32 95% 60% / 0.5);
}

/* ===== Base ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Page ===== */
.page {
  min-height: 100vh;
}

/* ===== Sticky Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  backdrop-filter: blur(8px);
  background: hsl(40 20% 97% / 0.9);
}

html.dark .nav {
  background: hsl(220 20% 6% / 0.9);
}

.nav__inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  flex-shrink: 0;
}

.nav__links {
  display: none;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--primary);
}

.btn--nav {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ===== Theme toggle (top right) ===== */
.theme-toggle {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.theme-toggle:hover {
  background: var(--secondary);
  border-color: var(--border);
}

.theme-toggle:active {
  transform: scale(0.96);
}

.theme-toggle__icon {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
}

.theme-toggle__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.theme-toggle__icon.hidden {
  display: none;
}

/* ===== Utilities ===== */
.text-gradient {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hidden {
  display: none !important;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-primary);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ===== Icons (inline SVG) ===== */
.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Button icons inherit white from .btn--primary */
.btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer social icons – size and inherit link color */
.icon--social {
  width: 1rem;
  height: 1rem;
}

.footer__link .icon {
  width: 1rem;
  height: 1rem;
}

/* Feature card icon box + inner SVG */
.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: hsl(32 95% 45% / 0.1);
  flex-shrink: 0;
  transition: background 0.3s;
}

.feature-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.feature-card:hover .feature-card__icon {
  background: hsl(32 95% 45% / 0.2);
}

html.dark .feature-card__icon {
  background: hsl(32 95% 55% / 0.1);
}

html.dark .feature-card:hover .feature-card__icon {
  background: hsl(32 95% 55% / 0.2);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto 3rem;
  text-align: center;
  animation: fadeUp 0.6s ease-out;
}

.hero__badge {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 1.5rem;
  font-family: var(--font-body);
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
}

.hero__title-accent {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

a.hero__title-accent {
  text-decoration: none;
  line-height: 1;
  display: inline-block;
  padding-bottom: 1px;
  margin-bottom: -3px;
  position: relative;
  overflow: hidden;
}

a.hero__title-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--primary);
  animation: hero-underline-loop 2.5s ease-in-out infinite;
}

@keyframes hero-underline-loop {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  50.01% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-family: var(--font-body);
}

  .hero__content .btn {
    margin-top: 0.25rem;
  }

  a.hero__link {
    color: var(--link);
    text-decoration: underline;
    text-decoration-color: var(--link-underline);
    text-underline-offset: 0.25em;
    text-decoration-thickness: 2px;
    font-weight: 500;
  }
  a.hero__link:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
  }

  .feature-card__desc a,
  .how__step-desc a,
  .cta__text a {
    color: var(--link);
    text-decoration: underline;
    text-decoration-color: var(--link-underline);
    text-underline-offset: 0.25em;
    text-decoration-thickness: 2px;
    font-weight: 500;
  }
  .feature-card__desc a:hover,
  .how__step-desc a:hover,
  .cta__text a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
  }

.hero__video-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px -12px hsl(32 95% 45% / 0.05);
  animation: fadeUp 0.6s 0.2s ease-out both;
}

.hero__video-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--card);
}

.hero__video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.hero__video-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero__video-play.is-hidden {
  display: none;
}

.hero__video-play img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__video-play-icon {
  position: relative;
  z-index: 1;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px -10px hsl(32 95% 45% / 0.3);
  transition: transform 0.2s;
}

.hero__video-play-icon svg {
  width: 2rem;
  height: 2rem;
  margin-left: 0.25rem;
}

.hero__video-play:hover .hero__video-play-icon {
  transform: scale(1.1);
}

/* ===== Section shared ===== */
.section-badge {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 1rem;
  font-family: var(--font-body);
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  text-align: center;
}

/* ===== Problem section ===== */
.problem {
  position: relative;
  padding: 3rem 1.5rem;
  background: var(--secondary);
}

.problem__inner {
  max-width: 64rem;
  margin: 0 auto;
}

.problem__inner > .section-badge,
.problem__inner > .section-title {
  text-align: center;
}

.problem__intro {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-family: var(--font-body);
}

.problem__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .problem__grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.problem__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problem__card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  font-family: var(--font-body);
}

.problem__card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--foreground);
}

.problem__card-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

.problem__card-desc a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: var(--link-underline);
  text-underline-offset: 0.25em;
  text-decoration-thickness: 2px;
  font-weight: 500;
}

.problem__card-desc a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.problem__chart-wrap {
  height: 8rem;
  margin-top: 1rem;
}

.problem__stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 12rem;
}

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

.problem__stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.problem__stat-label {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
}

.problem__stat-src {
  font-size: 0.75rem;
  color: var(--primary);
  font-family: var(--font-body);
}

.problem__stat-src:hover {
  text-decoration: underline;
}

/* ===== Features ===== */
.features {
  position: relative;
  padding: 2rem 1.5rem;
}

.features__inner {
  max-width: 64rem;
  margin: 0 auto;
}

.features__inner > .section-badge,
.features__inner > .section-title {
  text-align: center;
}

.features__intro {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
  font-family: var(--font-body);
}

.features__tab-bar {
  display: inline-flex;
  border-radius: 0.75rem;
  background: var(--secondary);
  padding: 0.25rem;
  gap: 0.25rem;
  margin: 0 auto 2.5rem;
  width: 100%;
  max-width: fit-content;
}

.features__tab-bar {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

.features__tab {
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
  border: none;
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.features__tab:hover {
  color: var(--foreground);
}

.features__tab.active {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-primary);
}

.features__subtitle {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0 0 2rem;
  font-family: var(--font-body);
}

.features__grid {
  /* wrapper only; panels are the grid containers */
}

.features__panel {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .features__panel {
    grid-template-columns: repeat(3, 1fr);
  }
}

.features__panel.hidden {
  display: none;
}

.feature-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: hsl(32 95% 45% / 0.3);
}

.feature-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}

.feature-card__desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-body);
}

.feature-card__icon {
  margin-bottom: 1rem;
}

/* ===== How It Works ===== */
.how {
  position: relative;
  padding: 2rem 1.5rem;
}

.how__inner {
  max-width: 56rem;
  margin: 0 auto;
}

.how__inner > .section-badge,
.how__inner > .section-title {
  text-align: center;
}

.how__inner > .section-title {
  margin-bottom: 4rem;
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.how__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  animation: fadeUp 0.5s ease-out both;
}

.how__step:nth-child(1) { animation-delay: 0s; }
.how__step:nth-child(2) { animation-delay: 0.1s; }
.how__step:nth-child(3) { animation-delay: 0.2s; }
.how__step:nth-child(4) { animation-delay: 0.3s; }

.how__step-num {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: hsl(32 95% 45% / 0.3);
  flex-shrink: 0;
}

.how__step-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
}

.how__step-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-body);
}

/* ===== ROI Charts ===== */
.roi {
  position: relative;
  padding: 2rem 1.5rem;
}

.roi__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.roi__inner > .section-badge,
.roi__inner > .section-title {
  text-align: center;
}

.roi__intro {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-family: var(--font-body);
}

.roi__intro a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: var(--link-underline);
  text-underline-offset: 0.25em;
  text-decoration-thickness: 2px;
  font-weight: 500;
}
.roi__intro a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.roi__chart {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
}

.roi__chart-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  min-height: 260px;
}

.roi__chart-canvas-wrap canvas {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: 280px;
}

.roi__chart-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
}

.roi__chart-note strong {
  color: var(--foreground);
}

.roi__value-callout {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.roi__value-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--foreground);
}

.roi__value-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0 0 1rem;
  font-family: var(--font-body);
}

.roi__value-desc a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: var(--link-underline);
  text-underline-offset: 0.25em;
  text-decoration-thickness: 2px;
  font-weight: 500;
}

.roi__value-desc a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.roi__value-chart-wrap {
  height: 10rem;
  margin-bottom: 1rem;
}

.roi__value-note {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin: 0;
  font-family: var(--font-body);
}

/* ===== Why me ===== */
.why-me {
  position: relative;
  padding: 3rem 1.5rem;
  background: var(--secondary);
}

.why-me__inner {
  max-width: 64rem;
  margin: 0 auto;
}

.why-me__inner > .section-badge,
.why-me__inner > .section-title {
  text-align: center;
}

.why-me__intro {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-family: var(--font-body);
}

.why-me__grid {
  display: grid;
  gap: 1.5rem;
}

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

.why-me__card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
}

.why-me__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  color: var(--foreground);
}

.why-me__card-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-body);
}

.why-me__footer {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
  margin: 2rem 0 0;
  font-family: var(--font-body);
}

.why-me__footer a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: var(--link-underline);
  text-underline-offset: 0.25em;
  text-decoration-thickness: 2px;
  font-weight: 500;
}

.why-me__footer a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

/* ===== Testimonial ===== */
.testimonial {
  position: relative;
  padding: 3rem 1.5rem;
}

.testimonial > .section-badge,
.testimonial > .section-title {
  text-align: center;
}

.testimonial > .section-title {
  margin-bottom: 2rem;
}

.testimonial__inner {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: none;
  border-left: 4px solid var(--primary);
  text-align: left;
}

.testimonial__quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--foreground);
  line-height: 1.6;
  margin: 0 0 1rem;
  font-family: var(--font-body);
}

.testimonial__author {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--foreground);
  margin: 0 0 0.25rem;
}

.testimonial__role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
  font-family: var(--font-body);
  text-align: left;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 2rem 1.5rem;
}

.cta__inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta__card {
  position: relative;
  padding: 3rem;
  border-radius: 1.5rem;
  background: transparent;
  border: none;
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.5;
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 10;
}

.cta__title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  font-family: var(--font-display);
}

.cta__text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 0 auto 2rem;
  font-family: var(--font-body);
}

.cta__trust {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 1.5rem 0 0;
  font-family: var(--font-body);
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
  }
}

.footer__copy {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
  font-family: var(--font-body);
}

.footer__links {
  display: flex;
  gap: 1rem;
}

.footer__link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: color 0.2s, background 0.2s;
}

.footer__link:hover {
  color: var(--foreground);
  background: hsl(40 15% 92% / 0.8);
}

html.dark .footer__link:hover {
  background: hsl(220 15% 14% / 0.8);
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
