:root {
  /* Colors */
  --color-primary: #3A0CA3;
  --color-primary-dark: #2a0878;
  --color-primary-light: #a980ff;
  --color-secondary: #C7B8FF;
  --color-accent: #4C8DFF;
  --color-bg: #F8F7FC;
  --color-bg-alt: #f1e9f8;
  --color-bg-muted: #cac4d8;
  --color-text: #1a1a2e;
  --color-text-light: #5a5670;
  --color-text-muted: #8b85a0;
  --color-white: #ffffff;
  --color-off-white: #faf9fd;
  --color-border: #e4e0ef;
  --color-success: #22c55e;
  --color-error: #ef4444;

  /* Typography */
  --font-heading: 'Nunito Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Times New Roman', Times, serif;
  --font-weight-bold: 700;
  --font-weight-semibold: 600;
  --font-weight-normal: 400;

  /* Spacing (8px base) */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --grid-gap: var(--space-lg);
  --border-radius: 2px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(58, 12, 163, 0.06);
  --shadow-md: 0 4px 12px rgba(58, 12, 163, 0.08);
  --shadow-lg: 0 8px 24px rgba(58, 12, 163, 0.1);

  /* Nav height */
  --nav-height: 76px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  line-height: 1.2;
}

p {
  overflow-wrap: break-word;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../assets/fonts/NunitoSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-normal);
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-white);
}

/* Headings - Nunito Sans Bold CAPS for H1, Inter for H2-H6 */
h1 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 2.75rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-family: var(--font-body);
  font-weight: var(--font-weight-semibold);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

h3 {
  font-family: var(--font-body);
  font-weight: var(--font-weight-semibold);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

h4 {
  font-family: var(--font-body);
  font-weight: var(--font-weight-semibold);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

h5, h6 {
  font-family: var(--font-body);
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

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

/* Accent font utility */
.font-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: var(--font-weight-normal);
  text-transform: none;
  letter-spacing: 0;
}

/* Text utilities */
.text-primary { color: var(--color-primary); }
.text-light { color: var(--color-text-light); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }
.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

strong, b {
  font-weight: var(--font-weight-semibold);
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* Sections */
.section {
  padding: var(--space-4xl) 0;
}

.section--sm {
  padding: var(--space-2xl) 0;
}

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

.section--dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section--dark p {
  color: var(--color-secondary);
}

.section__header {
  margin-bottom: var(--space-2xl);
}

.section__header--center {
  text-align: center;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--grid-gap);
}

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

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

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--grid-gap);
}

/* Flex utilities */
.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

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

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

.flex--wrap {
  flex-wrap: wrap;
}

.flex--gap-sm { gap: var(--space-sm); }
.flex--gap-md { gap: var(--space-md); }
.flex--gap-lg { gap: var(--space-lg); }

/* Spacing utilities */
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

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

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--accent:hover {
  background-color: #3a7ae6;
  color: var(--color-white);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn--white:hover {
  background-color: var(--color-bg);
  color: var(--color-primary);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

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

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--color-bg);
  position: relative;
  cursor: pointer;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card__image:hover img {
  transform: scale(1.03);
}

.card__body {
  padding: var(--space-lg);
}

.card__category {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background-color: var(--color-bg);
  padding: 0.25rem 0.625rem;
  border-radius: var(--border-radius);
  margin-bottom: var(--space-sm);
}

.card__title-link {
  text-decoration: none;
  color: inherit;
}

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

.card__title {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.card__meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.card__price {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: var(--font-weight-semibold);
  font-size: 0.875rem;
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}

.card__link:hover {
  gap: var(--space-sm);
  color: var(--color-primary-dark);
}

.card__link svg {
  width: 16px;
  height: 16px;
}

/* Product card variant */
.card--product .card__body {
  display: flex;
  flex-direction: column;
}

.card--product .card__desc {
  flex: 1;
}

.card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

/* Collection card variant */
.card--collection {
  position: relative;
}

.card--collection .card__image {
  aspect-ratio: 16 / 7;
}

.card--collection .card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  color: var(--color-white);
}

.card--collection .card__title {
  color: var(--color-white);
  font-size: 1.5rem;
}

.card--collection .card__desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   CREDIBILITY BAR
   ============================================ */
.credibility-bar {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.credibility-bar__label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-lg);
  font-weight: var(--font-weight-semibold);
}

.credibility-bar__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.credibility-bar__logos img,
.credibility-bar__logos svg {
  height: 28px;
  width: auto;
  opacity: 0.5;
  transition: opacity var(--transition-base);
  filter: grayscale(100%);
}

.credibility-bar__logos img:hover,
.credibility-bar__logos svg:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.credibility-bar__brand {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
  color: var(--color-text);
  opacity: 0.4;
  transition: opacity var(--transition-base);
  letter-spacing: 0.02em;
}

.credibility-bar__brand:hover {
  opacity: 1;
}

/* ============================================
   LOGO CAROUSEL (animated credibility bar)
   ============================================ */
.logo-carousel {
  display: block;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-carousel__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-scroll 30s linear infinite;
  will-change: transform;
}

.logo-carousel:hover .logo-carousel__track {
  animation-play-state: paused;
}

.logo-carousel__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  margin-right: var(--space-3xl);
}

.logo-carousel__item img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: saturate(0);
  opacity: 0.35;
  transition: filter var(--transition-base), opacity var(--transition-base);
}

.logo-carousel__item:hover img {
  filter: saturate(1);
  opacity: 0.85;
}

@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-carousel__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    gap: var(--space-2xl);
  }

  .logo-carousel__item {
    margin-right: 0;
  }

  .logo-carousel {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section__eyebrow {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.category-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.category-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
}

.category-card__title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.category-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ============================================
   FILTER BAR
   ============================================ */
/* ============================================
   FILTER SYSTEM — Pills + Grid-aligned Labels
   ============================================ */
.filter-bar {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
}

.filter-bar__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  padding-right: var(--space-sm);
}

.filter-bar__pills {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  align-items: center;
}

/* When no __pills wrapper, buttons sit directly in grid col 2 */
.filter-bar .filter-btn:first-of-type {
  grid-column: 2;
}

.filter-btn {
  padding: 0.375rem 1rem;
  font-family: var(--font-body);
  font-weight: var(--font-weight-semibold);
  font-size: 0.8125rem;
  border: none;
  border-radius: 100px;
  background: var(--color-bg);
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-btn:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.filter-btn.is-active {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(58, 12, 163, 0.25);
}

/* Vendor row — same grid, slightly smaller pills */
.filter-bar--vendor .filter-btn {
  font-size: 0.75rem;
  padding: 0.3125rem 0.875rem;
}

/* Type toggle — segmented control style, no grid */
.filter-bar--type {
  display: flex;
  gap: 0.25rem;
  background: var(--color-bg);
  border-radius: 100px;
  padding: 3px;
}

.filter-bar--type .filter-btn {
  font-size: 0.8125rem;
  padding: 0.4375rem 1.25rem;
  font-weight: var(--font-weight-bold);
  background: transparent;
}

.filter-bar--type .filter-btn:first-of-type {
  grid-column: auto;
}

.filter-bar--type .filter-btn:hover {
  background: var(--color-bg-alt);
}

.filter-bar--type .filter-btn.is-active {
  background: var(--color-primary);
  box-shadow: 0 1px 4px rgba(58, 12, 163, 0.3);
}

/* Sort bar — no special treatment, inherits grid */
.filter-bar--sort {
  /* inherits grid layout */
}

/* Search bar */
.search-bar {
  margin-bottom: 0;
}

.search-bar__input {
  width: 100%;
  padding: 0.4375rem 1rem 0.4375rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: var(--color-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%238b85a0'%3E%3Cpath d='M8.5 3a5.5 5.5 0 014.38 8.82l4.15 4.15a.75.75 0 01-1.06 1.06l-4.15-4.15A5.5 5.5 0 118.5 3zm0 1.5a4 4 0 100 8 4 4 0 000-8z'/%3E%3C/svg%3E") no-repeat 0.625rem center / 15px 15px;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.search-bar__input:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(58, 12, 163, 0.08);
}

.search-bar__input::placeholder {
  color: var(--color-text-muted);
}

/* ============================================
   REVIEWS FILTER WRAPPER (sticky on scroll)
   ============================================ */
.reviews-filters {
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  background: var(--color-white);
  padding: var(--space-md) 0 var(--space-md);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(58, 12, 163, 0);
  transition: box-shadow var(--transition-base);
}

/* Top row: search + type toggle side-by-side */
.reviews-filters__row--top {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

/* Override spacing when filters live inside the sticky wrapper */
.reviews-filters .search-bar {
  flex: 1;
  min-width: 200px;
}

.reviews-filters .filter-bar--type {
  margin-bottom: 0;
}

.reviews-filters .filter-bar {
  margin-bottom: var(--space-sm);
}

.reviews-filters .filter-bar:last-child {
  margin-bottom: 0;
}

/* ---- Mobile filter collapse toggle ---- */
.reviews-filters__toggle {
  display: none;
}

.reviews-filters__body {
  display: contents;
}

@media (max-width: 767px) {
  .reviews-filters {
    padding: var(--space-xs) 0;
  }

  .reviews-filters__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: none;
    border: none;
    font-family: var(--font-body);
    font-weight: var(--font-weight-bold);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-primary);
    cursor: pointer;
  }

  .reviews-filters__toggle svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
  }

  .reviews-filters.is-expanded .reviews-filters__toggle svg {
    transform: rotate(180deg);
  }

  .reviews-filters__body {
    display: none;
  }

  .reviews-filters.is-expanded .reviews-filters__body {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--color-white);
    padding: var(--space-md) var(--space-md) var(--space-lg);
    border-bottom: 2px solid var(--color-primary);
    box-shadow: var(--shadow-lg);
    z-index: 51;
    max-height: 60vh;
    overflow-y: auto;
  }

  /* Stack type toggle full width on mobile */
  .reviews-filters__row--top {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-bar--type {
    justify-content: center;
  }

  /* Collapse grid to stacked on mobile */
  .filter-bar {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .filter-bar__label {
    margin-bottom: 0.125rem;
  }

  .filter-bar__pills {
    gap: 0.3125rem;
  }
}

/* ============================================
   FEATURED DUO (video + short side by side)
   ============================================ */
.featured-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

.featured-duo__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.featured-duo__title {
  margin-top: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}

.featured-duo__short {
  text-align: center;
}

.featured-duo__short .youtube-lite--short {
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.featured-duo__short .youtube-lite--short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

  .featured-duo__short .youtube-lite--short {
    max-width: 220px;
  }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  padding: var(--space-2xl) 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__number {
  display: flex;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Counter Roll Animation ---- */
.stat-roll {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  line-height: 1;
}

.stat-roll__strip {
  display: block;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-roll__strip span {
  display: block;
  height: 1em;
  line-height: 1;
}

.stat-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.25em);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat__number.is-counted .stat-char {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: var(--font-weight-semibold);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(58, 12, 163, 0.1);
}

.form-input.is-error,
.form-textarea.is-error {
  border-color: var(--color-error);
}

.form-error {
  font-size: 0.8125rem;
  color: var(--color-error);
  margin-top: var(--space-xs);
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============================================
   YOUTUBE LITE EMBED
   ============================================ */
.youtube-lite {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #000;
  cursor: pointer;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.youtube-lite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-lite__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(58, 12, 163, 0.9);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.youtube-lite:hover .youtube-lite__play {
  background: var(--color-primary);
}

.youtube-lite__play svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
  margin-left: 3px;
}

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

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding: var(--space-4xl) 0 var(--space-2xl);
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  font-size: 1.125rem;
  max-width: 600px;
}

/* ============================================
   VALUE PROP
   ============================================ */
.value-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.value-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  margin-top: 2px;
}

.value-item__text {
  font-size: 1.0625rem;
  color: var(--color-text-light);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
}

.cta-banner h2 {
  margin-bottom: var(--space-md);
}

.cta-banner p {
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

/* ============================================
   FUEL THE REVIEWS MODAL
   ============================================ */
.fuel-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fuel-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.fuel-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fuel-modal__dialog {
  position: relative;
  background: var(--color-white);
  border-radius: 16px;
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  max-width: 460px;
  width: calc(100% - var(--space-2xl));
  text-align: center;
  box-shadow: 0 24px 64px rgba(58, 12, 163, 0.18), 0 8px 20px rgba(26, 26, 46, 0.08);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fuel-modal.is-open .fuel-modal__dialog {
  transform: translateY(0) scale(1);
}

.fuel-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.fuel-modal__close:hover {
  background: var(--color-border);
  color: var(--color-text);
}

.fuel-modal__title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 1.375rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.fuel-modal__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}

.fuel-modal__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.fuel-modal__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.fuel-modal__option:hover {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(58, 12, 163, 0.12);
  transform: translateY(-3px);
}

.fuel-modal__option-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 12px;
  padding: 8px;
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(58, 12, 163, 0.08);
}

.fuel-modal__option:hover .fuel-modal__option-icon {
  background: var(--color-bg);
}

.fuel-modal__option-icon svg {
  width: 100%;
  height: 100%;
}

.fuel-modal__option-label {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 1.0625rem;
  color: var(--color-text);
}

.fuel-modal__option-desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Hover text swap: "Fuel the Reviews" → "Donate" */
[data-fuel-modal] {
  position: relative;
  overflow: hidden;
}

[data-fuel-modal] span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.15s ease;
}

[data-fuel-modal]::after {
  content: 'Donate';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-fuel-modal]:hover span {
  transform: translateY(-100%);
  opacity: 0;
}

[data-fuel-modal]:hover::after {
  transform: translateY(0);
}

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

  .fuel-modal__dialog {
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    border-radius: 12px;
  }
}

/* ============================================
   UNDER BUILD / COMING SOON
   ============================================ */
.under-build {
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  max-width: 520px;
  margin: 0 auto;
}

.under-build__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-xl);
  color: var(--color-primary-light);
}

.under-build__icon svg {
  width: 100%;
  height: 100%;
}

.under-build__title {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

.under-build__desc {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

/* ============================================
   PARTNER GRID
   ============================================ */
.partner-grid {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.partner-grid img {
  height: 36px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
}

/* ============================================
   SERVICES LIST
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.service-item {
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: border-color var(--transition-base);
}

.service-item:hover {
  border-color: var(--color-primary);
}

.service-item__title {
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
}

.service-item__desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* ============================================
   LOADING STATE
   ============================================ */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: var(--space-md);
  grid-column: 1 / -1;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-state__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-text);
  color: var(--color-white);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: 0 -8px 32px rgba(26, 26, 46, 0.35);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner__text a {
  color: var(--color-primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: var(--color-white);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  line-height: 1;
}

.cookie-banner__btn--accept {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.cookie-banner__btn--accept:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: var(--color-text);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--decline:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 767px) {
  .cookie-banner {
    padding: var(--space-md) var(--space-lg);
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
  }

  .cookie-banner__text {
    font-size: 0.8125rem;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__btn {
    flex: 1;
    padding: 0.75rem 1rem;
  }
}
/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  border-bottom: 1px solid var(--color-border);
}

/* backdrop-filter on a pseudo-element so it doesn't create a
   containing block that traps .main-nav's position:fixed */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 32px;
  width: auto;
  max-width: none;
}

/* Nav toggle (hamburger) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Main nav */
.main-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
  overflow-y: auto;
  z-index: 1000;
}

.main-nav.is-open {
  display: block;
}


.main-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.main-nav__link {
  display: block;
  padding: var(--space-md) var(--space-sm);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  transition: color var(--transition-fast);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.main-nav__link:hover,
.main-nav__link.is-active {
  color: var(--color-primary);
}

.main-nav__link--cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.625rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: var(--space-md);
}

.main-nav__link--cta:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

.main-nav__link--cta.is-active {
  color: var(--color-white);
}

/* Dropdown */
.main-nav__item--dropdown {
  position: relative;
}

.main-nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.main-nav__dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.main-nav__dropdown-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.main-nav__dropdown {
  display: none;
  padding-left: var(--space-lg);
}

.main-nav__dropdown.is-open {
  display: block;
}

.main-nav__dropdown a {
  display: block;
  padding: var(--space-sm) var(--space-sm);
  font-family: var(--font-body);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9375rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text-light);
}

.main-nav__dropdown a:hover {
  color: var(--color-primary);
}

/* Desktop nav overrides in responsive.css */

/* Body padding to account for fixed nav */
.has-nav {
  padding-top: var(--nav-height);
}
.site-footer {
  background-color: var(--color-text);
  color: var(--color-white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.site-footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  margin-top: var(--space-md);
  max-width: 300px;
}

.site-footer__brand .site-logo img {
  height: 24px;
  width: auto;
  max-width: none;
  filter: brightness(10);
}

.site-footer h4 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  color: var(--color-white);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.site-footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.site-footer__links a:hover {
  color: var(--color-white);
}

.site-footer__social {
  display: flex;
  gap: var(--space-md);
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.site-footer__social a:hover {
  border-color: var(--color-primary-light);
  color: var(--color-white);
  background-color: var(--color-primary);
}

.site-footer__social svg {
  width: 18px;
  height: 18px;
}

.site-footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.site-footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}
.hero {
  padding: var(--space-4xl) 0;
  background-color: var(--color-bg);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}

.hero__actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: var(--space-md);
  width: fit-content;
}

.hero__actions .btn--accent {
  grid-column: 1 / -1;
  justify-self: center;
}

.hero__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-bg-alt) 100%);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-image {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-bg-alt));
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: var(--space-lg);
}

.about-text p {
  font-size: 1.0625rem;
  margin-bottom: var(--space-lg);
}

/* ============================================
   WORK WITH ME PAGE
   ============================================ */
.wwm-intro {
  max-width: 700px;
  margin-bottom: var(--space-2xl);
}

.wwm-intro p {
  font-size: 1.125rem;
}

.platforms-list {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9375rem;
}

.platform-badge svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   SHOP PAGES
   ============================================ */
.shop-section {
  margin-bottom: var(--space-3xl);
}

.shop-section:last-child {
  margin-bottom: 0;
}

.shop-section h2 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

.contact-info h3 {
  margin-bottom: var(--space-md);
}

.contact-info p {
  margin-bottom: var(--space-lg);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.contact-method svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-intro {
  max-width: 600px;
  margin-bottom: var(--space-2xl);
}

.blog-intro p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
}

/* ============================================
   HUBSPOT FORM EMBED
   ============================================ */
.hs-form-frame {
  min-height: 400px;
}

.hs-form-frame iframe {
  min-height: 400px;
}
/* ============================================
   TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }

  .container { padding-inline: var(--space-xl); }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr 1.5fr;
  }

  .contact-layout {
    grid-template-columns: 1fr 1.5fr;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .stats-bar {
    gap: var(--space-4xl);
  }
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  h1 { font-size: 3.25rem; }

  /* Desktop nav */
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    position: static;
    padding: 0;
    overflow: visible;
    background: none;
  }

  .main-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .main-nav__link {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8125rem;
  }

  .main-nav__link--cta {
    margin-top: 0;
    margin-left: var(--space-sm);
    padding: 0.5rem 1.25rem;
  }

  /* Desktop dropdown */
  .main-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    padding: var(--space-sm) 0;
    padding-left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-primary);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    z-index: 100;
  }

  .main-nav__dropdown a {
    padding: var(--space-sm) var(--space-lg);
    white-space: nowrap;
  }

  .main-nav__item--dropdown:hover .main-nav__dropdown {
    display: block;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero {
    padding: var(--space-5xl) 0;
  }

  /* Footer */
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  /* Grid overrides */
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   LARGE DESKTOP (1200px+)
   ============================================ */
@media (min-width: 1200px) {
  h1 { font-size: 3.5rem; }

  .hero h1 {
    font-size: 3.5rem;
  }
}

/* ============================================
   MOBILE OVERRIDES (below 768px)
   ============================================ */
@media (max-width: 767px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .site-logo img {
    height: 24px;
  }

  .credibility-bar__logos {
    gap: var(--space-xl);
  }

  .stats-bar {
    gap: var(--space-xl);
  }

  .stat__number {
    font-size: 2rem;
  }

  .hero__actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__actions .btn--accent {
    justify-self: stretch;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .page-header {
    padding: var(--space-2xl) 0 var(--space-xl);
  }
}
/* ============================================
   SCROLL ANIMATIONS
   Lightweight scroll-triggered reveals using
   Intersection Observer. No external libraries.
   ============================================ */

:root {
  --anim-duration: 0.6s;
  --anim-easing: cubic-bezier(0.16, 1, 0.3, 1);
  --anim-stagger: 0.1s;
  --anim-distance: 24px;
}

/* ---- Scroll Reveal ----
   .reveal is added by JS only to elements below the fold.
   If JS fails, nothing is hidden — fully graceful. */
.reveal {
  opacity: 0;
  transform: translateY(var(--anim-distance));
  transition:
    opacity var(--anim-duration) var(--anim-easing),
    transform var(--anim-duration) var(--anim-easing);
}

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

/* Staggered children get incremental delay via CSS custom property */
.reveal-stagger > .reveal {
  transition-delay: calc(var(--stagger-index, 0) * var(--anim-stagger));
}

/* ---- Hero Entrance (CSS keyframe, plays on page load) ---- */
.hero__content {
  animation: hero-enter 0.8s var(--anim-easing) both;
}

.hero__image {
  animation: hero-enter 0.8s var(--anim-easing) 0.2s both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Hero Parallax ---- */
.hero__image > * {
  transform: translateY(var(--parallax-y, 0px));
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .reveal-stagger > .reveal {
    transition-delay: 0s;
  }

  .hero__content,
  .hero__image {
    animation: none;
  }

  .hero__image > * {
    transform: none !important;
  }
}
