:root {
  --background: #0c101b;
  --foreground: #f7fafc;
  --card: #161e2e;
  --card-strong: rgba(22, 30, 46, 0.8);
  --card-soft: rgba(22, 30, 46, 0.4);
  --primary: #d2a750;
  --primary-foreground: #0c101b;
  --muted: #1a202c;
  --muted-foreground: #a0aec0;
  --border: #2d3748;
  --border-soft: rgba(45, 55, 72, 0.5);
  --border-faint: rgba(45, 55, 72, 0.4);
  --success: #25d366;
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.22);
  --shadow-hero: 0 28px 90px rgba(0, 0, 0, 0.45);
  --container: 1200px;
  --header-offset: 8.75rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 1rem);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

::selection {
  background: var(--primary);
  color: var(--background);
}

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

img,
iframe {
  display: block;
  max-width: 100%;
}

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(45, 55, 72, 0.4);
  background: rgba(12, 16, 27, 0.9);
  backdrop-filter: blur(14px);
}

.top-banner {
  position: relative;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(239, 68, 68, 0.7);
  background: #b91c1c;
  padding: 0.5rem 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.top-banner__icon {
  flex-shrink: 0;
  animation: pulse 1.4s ease-in-out infinite;
}

.navbar {
  border-bottom: 1px solid rgba(45, 55, 72, 0.4);
}

.navbar__bar {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
}

.navbar__logo {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

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

.desktop-nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: transparent;
  padding: 0.5rem;
  color: var(--primary);
  transition: background-color 0.2s ease;
}

.menu-toggle:hover {
  background: var(--card);
}

.menu-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle__icon--close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--close {
  display: inline-flex;
}

.mobile-nav {
  border-top: 1px solid rgba(45, 55, 72, 0.4);
  background: var(--background);
  padding: 1rem;
}

.mobile-nav__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav__content a {
  border: 1px solid rgba(45, 55, 72, 0.4);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.mobile-nav__content a:hover {
  color: #fff;
  border-color: rgba(210, 167, 80, 0.3);
  background: rgba(22, 30, 46, 0.6);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.button--primary:hover {
  background: #c79c42;
}

.button--sm {
  height: 1.75rem;
  padding: 0 0.875rem;
  font-size: 0.8rem;
}

.button--full {
  width: 100%;
  min-height: 3rem;
  height: auto;
  margin-top: 0.5rem;
  padding: 0.9rem 1rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: normal;
}

.button--hero {
  width: 100%;
  min-height: 3rem;
  height: auto;
  max-width: 32rem;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
  box-shadow: 0 20px 40px rgba(210, 167, 80, 0.2);
}

.button--hero:hover {
  transform: scale(1.02);
}

.button--footer {
  width: 100%;
  max-width: 24rem;
  min-height: 3rem;
  height: auto;
  padding: 0 2rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
}

.button--ghost {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: transparent;
  color: var(--foreground);
}

.button--ghost:hover {
  background: rgba(210, 167, 80, 0.1);
  color: var(--primary);
}

.button--icon {
  padding: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.badge--hero {
  margin-bottom: 1.25rem;
  max-width: 100%;
  border-color: rgba(210, 167, 80, 0.2);
  background: rgba(210, 167, 80, 0.05);
  padding: 0.45rem 1rem;
  font-size: 0.6875rem;
  color: var(--primary);
}

.badge--section {
  margin-bottom: 1rem;
  border-color: rgba(210, 167, 80, 0.2);
  background: rgba(210, 167, 80, 0.05);
  color: var(--primary);
}

.badge--secondary {
  margin-bottom: 0.75rem;
  border: 0;
  background: rgba(210, 167, 80, 0.1);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--primary);
}

.badge--outline {
  margin-bottom: 1rem;
  border-color: var(--border);
  color: var(--foreground);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 11rem 0 4rem;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(210, 167, 80, 0.18) 0%, transparent 70%);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__content {
  width: 100%;
  max-width: 80rem;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}

.hero__title-highlight {
  display: block;
  color: var(--primary);
}

.hero__description {
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
}

.hero__media {
  position: relative;
  width: 100%;
  max-width: 64rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  aspect-ratio: 16 / 9;
  box-shadow: inset 0 0 0 1px rgba(210, 167, 80, 0.2), var(--shadow-hero);
}

.hero__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 0.75rem 1rem;
}

.hero__caption p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
}

.hero__caption .lucide,
.hero__trust .lucide {
  color: var(--primary);
}

.hero__cta {
  width: 100%;
  max-width: 32rem;
  margin-top: 2.5rem;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 30rem;
  margin-top: 1.25rem;
  margin-inline: auto;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.stats-section {
  background: var(--background);
  padding: 2.5rem 0;
}

.stats-grid,
.testimonials-grid,
.method-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  background: var(--card-soft);
  padding: 1.25rem;
  text-align: center;
}

.stat-card__icon {
  flex-shrink: 0;
  color: var(--primary);
}

.stat-card__icon .lucide {
  width: 2.5rem;
  height: 2.5rem;
  stroke-width: 1.5;
}

.stat-card__icon--spin {
  animation: spin-slow 3s ease-in-out infinite;
}

.stat-card__icon--pulse {
  animation: pulse-scale 3s ease-in-out infinite 1s;
}

.stat-card__icon--float {
  animation: float-up 3s ease-in-out infinite 1s;
}

.stat-card__copy {
  display: flex;
  min-width: 0;
  width: 100%;
  flex-direction: column;
}

.stat-card__value {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.9rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}

.stat-card__value--compact {
  font-size: clamp(1.7rem, 5vw, 2.5rem);
}

.stat-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-top: 0.5rem;
}

.stat-card__text span:first-child {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.stat-card__text span:last-child {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(160, 174, 192, 0.8);
}

.testimonials-section,
.results-section,
.faq-section {
  background: var(--background);
}

.testimonials-section,
.results-section,
.method-section,
.faq-section {
  padding: 5rem 0;
}

.section-heading {
  margin: 0 auto 3.5rem;
  max-width: 42rem;
  text-align: center;
}

.section-heading--compact {
  max-width: 52rem;
}

.section-heading--faq {
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-heading p {
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted-foreground);
  text-wrap: pretty;
}

.text-highlight,
.text-primary,
.text-secondary {
  color: var(--primary);
}

.testimonial-card {
  position: relative;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
}

.testimonial-card__glow {
  position: absolute;
  inset: -0.25rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, rgba(210, 167, 80, 0.2), rgba(210, 167, 80, 0.2));
  filter: blur(16px);
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-card__glow {
  opacity: 0.75;
}

.testimonial-card__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.testimonial-card__topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(37, 211, 102, 0.2);
  background: rgba(37, 211, 102, 0.1);
  padding: 0.5rem;
  color: var(--success);
}

.testimonial-card__topbar span {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-card__image {
  width: 100%;
  aspect-ratio: 10 / 15;
  object-fit: cover;
}

.testimonial-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), transparent 60%);
  opacity: 0.6;
}

.testimonial-card__content {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
}

.testimonial-card__name {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.testimonial-card__result {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.results-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 0.75rem;
  background: var(--card-strong);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.results-card:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 167, 80, 0.3);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.results-card__body {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1.5rem;
}

.results-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.results-card__header > div {
  min-width: 0;
}

.results-card__header h3,
.method-card h3,
.footer-links h3,
.footer-cta h2 {
  margin: 0;
  font-family: "Hanken Grotesk", sans-serif;
}

.results-card__header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.results-card__header .lucide {
  flex-shrink: 0;
  color: var(--primary);
}

.results-card p,
.method-card p,
.faq-item__panel p,
.footer-brand p,
.footer-cta p {
  color: var(--muted-foreground);
}

.results-card p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.results-card__image {
  position: relative;
  margin-top: auto;
  overflow: hidden;
  border-radius: 0.75rem;
  min-height: 14rem;
}

.results-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.results-card:hover .results-card__image img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.results-card__image--tall {
  min-height: 18rem;
}

.results-card__metric {
  margin-top: auto;
}

.results-card__metric strong {
  display: block;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}

.results-card__metric span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--muted-foreground);
}

.method-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-faint);
  border-radius: 1rem;
  background: rgba(22, 30, 46, 0.3);
  padding: 1.5rem;
  text-align: center;
}

.method-card__icon {
  display: flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  background: var(--primary);
  box-shadow: 0 16px 30px rgba(210, 167, 80, 0.2);
  color: var(--primary-foreground);
  transition: transform 0.3s ease;
}

.method-card:hover .method-card__icon {
  transform: scale(1.1);
}

.method-card__icon .lucide {
  width: 2rem;
  height: 2rem;
}

.method-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.method-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-container {
  max-width: 52rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  background: var(--card);
  padding: 0 1rem;
}

.faq-item__trigger {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  padding: 1rem 0;
  text-align: left;
  color: #fff;
  transition: color 0.2s ease;
}

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

.faq-item__trigger span:first-child {
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-item__icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
}

.faq-item__icon--up {
  display: none;
}

.faq-item.is-open .faq-item__icon--down {
  display: none;
}

.faq-item.is-open .faq-item__icon--up {
  display: inline-flex;
}

.faq-item__panel {
  padding: 0 0 1rem;
}

.faq-item__panel p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid rgba(45, 55, 72, 0.4);
  background: var(--background);
}

.footer-cta {
  border-bottom: 1px solid rgba(45, 55, 72, 0.4);
  padding: 3rem 0;
}

.footer-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-cta h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.footer-cta p {
  margin: 0;
  color: #e9b958;
}

.footer-main {
  padding: 3.5rem 0 4rem;
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand__logo img {
  height: 5rem;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 18rem;
  margin: 0;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-links h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
}

.footer-links ul {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  margin-top: 3rem;
  border-top: 1px solid rgba(45, 55, 72, 0.4);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-copy p {
  max-width: 34rem;
  margin: 0 auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lucide {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 1.8;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse-scale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes float-up {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 479px) {
  :root {
    --header-offset: 8rem;
  }

  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .top-banner {
    gap: 0.35rem 0.5rem;
    padding: 0.5rem;
    font-size: 0.6875rem;
  }

  .navbar__bar {
    height: 4.5rem;
  }

  .navbar__logo {
    height: 2.5rem;
  }

  .menu-toggle {
    padding: 0.4rem;
  }

  .hero-section {
    padding: 9.75rem 0 3.5rem;
  }

  .badge--hero {
    margin-bottom: 1rem;
    padding: 0.4rem 0.75rem;
  }

  .hero__description {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .hero__caption {
    padding: 0.625rem 0.75rem;
  }

  .hero__caption p {
    font-size: 0.6875rem;
  }

  .hero__cta {
    margin-top: 2rem;
  }

  .button--hero,
  .button--footer,
  .button--full {
    font-size: 0.9375rem;
  }

  .stats-section {
    padding: 2rem 0;
  }

  .testimonials-section,
  .results-section,
  .method-section,
  .faq-section {
    padding: 4rem 0;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .results-card__body {
    padding: 1.125rem;
  }

  .results-card__image {
    min-height: 12rem;
  }

  .results-card__image--tall {
    min-height: 16rem;
  }

  .method-card {
    padding: 1.25rem;
  }

  .footer-cta {
    padding: 2.5rem 0;
  }

  .footer-main {
    padding: 3rem 0 3.5rem;
  }
}

@media (min-width: 640px) {
  :root {
    --header-offset: 9.75rem;
  }

  .top-banner {
    padding-inline: 1rem;
    font-size: 0.875rem;
  }

  .navbar__logo {
    height: 3.5rem;
  }

  .hero-section {
    padding-top: 12rem;
    padding-bottom: 5rem;
  }

  .hero__media {
    border-width: 4px;
    border-radius: 1.25rem;
  }

  .hero__caption {
    padding: 1rem;
  }

  .hero__caption p {
    font-size: 0.875rem;
  }

  .hero__cta {
    margin-top: 3rem;
  }

  .hero__trust {
    flex-direction: row;
    margin-top: 1.5rem;
  }

  .stats-section {
    padding: 3rem 0;
  }

  .stat-card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .stat-card__icon .lucide {
    width: 3rem;
    height: 3rem;
  }

  .testimonial-card__image {
    aspect-ratio: 9 / 16;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }

  .button--hero,
  .button--footer {
    height: 3.5rem;
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  :root {
    --header-offset: 10.5rem;
  }

  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .top-banner {
    padding-block: 0.75rem;
    font-size: 1rem;
  }

  .navbar__bar {
    height: 5.5rem;
  }

  .navbar__logo {
    height: 4rem;
  }

  .hero-section {
    padding-top: 12rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .stats-grid .stat-card:last-child {
    grid-column: 1 / -1;
  }

  .stat-card__icon .lucide {
    width: 4rem;
    height: 4rem;
  }

  .stat-card__text span:first-child,
  .stat-card__text span:last-child {
    font-size: 0.875rem;
  }

  .testimonials-section,
  .results-section,
  .method-section,
  .faq-section {
    padding: 6rem 0;
  }

  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .results-card--large {
    grid-column: 1 / -1;
  }

  .results-card--small {
    grid-column: span 1;
  }

  .results-card--medium {
    grid-column: 1 / -1;
  }

  .results-card__body {
    padding: 1.75rem;
  }

  .results-card__image--tall {
    min-height: 20rem;
  }

  .footer-cta__content {
    max-width: 40rem;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .desktop-nav {
    display: flex;
    gap: 1.5rem;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .footer-cta__content {
    max-width: none;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .button--footer {
    width: auto;
    max-width: none;
    padding: 0.95rem 2.5rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.8fr) repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .footer-brand {
    grid-column: auto;
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-links ul {
    justify-items: start;
  }
}

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

  .stats-grid .stat-card:last-child {
    grid-column: auto;
  }

  .desktop-nav {
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (min-width: 1100px) {
  .results-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }

  .results-card--large {
    grid-column: span 8;
    grid-row: span 2;
  }

  .results-card--small {
    grid-column: span 4;
    grid-row: span 1;
  }

  .results-card--medium {
    grid-column: span 12;
    grid-row: span 2;
  }

  .results-card__image--tall {
    min-height: 28rem;
  }

  .method-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
