/* ============================================
   MOTIVATION ROCKS — Global Stylesheet
   Earthy Neo-Brutal | Tactile & Bold
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Earth Palette — warm, raw, real */
  --stone-900: #1A1613;
  --stone-800: #2C2520;
  --stone-700: #4E4540;
  --stone-600: #6B5E54;
  --stone-500: #8B7D74;
  --stone-400: #A89B93;
  --stone-300: #C5BAB2;
  --stone-200: #DDD5CF;
  --stone-100: #EDE8E4;
  --stone-50:  #F7F4F1;

  --forest-700: #2D5016;
  --forest-600: #3B6B1E;
  --forest-500: #4A8527;
  --forest-400: #6BA34A;
  --forest-300: #8FBF72;

  --earth-700: #7A4A1E;
  --earth-600: #A0622A;
  --earth-500: #B87A3D;
  --earth-400: #D4994F;
  --earth-300: #E6B87A;

  --cream: #FAF7F2;
  --warm-white: #FDFCFA;
  --paper: #F5F0E8;
  --accent-red: #C4543A;
  --accent-gold: #C9A84C;
  --pop-yellow: #F2D024;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Borders — thick, structural, visible */
  --border: 2.5px solid var(--stone-900);
  --border-light: 2px solid var(--stone-200);
  --border-thick: 3.5px solid var(--stone-900);

  /* Shadows — solid offset, NO blur (neo-brutal) */
  --shadow-sm: 3px 3px 0 var(--stone-900);
  --shadow-md: 5px 5px 0 var(--stone-900);
  --shadow-lg: 8px 8px 0 var(--stone-900);
  --shadow-xl: 12px 12px 0 var(--stone-900);
  --shadow-color: 5px 5px 0 var(--forest-600);
  --shadow-warm: 5px 5px 0 var(--earth-500);

  /* Radius — tight or none, never blobby */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--stone-800);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--stone-900); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--forest-600); }

::selection {
  background: var(--pop-yellow);
  color: var(--stone-900);
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--stone-900);
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--stone-600);
  font-weight: 400;
  line-height: 1.7;
}

.accent-text {
  font-family: var(--font-accent);
  color: var(--earth-500);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-900);
  margin-bottom: 12px;
  display: inline-block;
  background: var(--pop-yellow);
  padding: 4px 14px;
  border: var(--border);
  box-shadow: 2px 2px 0 var(--stone-900);
}

/* --- Layout --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.container--narrow { max-width: 800px; }
.container--wide { max-width: 1400px; }

.section { padding: var(--section-padding); }
.section--cream { background: var(--cream); }
.section--stone { background: var(--stone-100); }
.section--dark { background: var(--stone-900); color: var(--stone-200); }
.section--dark h2, .section--dark h3 { color: var(--warm-white); }
.section--dark .subtitle { color: var(--stone-400); }
.section--dark .section-label {
  background: var(--pop-yellow);
  color: var(--stone-900);
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--paper);
  border-bottom: var(--border-thick);
  transition: var(--transition);
}

.nav__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--stone-900);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo:hover { color: var(--stone-900); }

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--pop-yellow);
  border: var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 2px 2px 0 var(--stone-900);
}

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

.nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--stone-700);
  transition: var(--transition);
  position: relative;
}

.nav__links a:hover {
  color: var(--stone-900);
}

.nav__links a:hover::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--pop-yellow);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--stone-900);
  color: white !important;
  border: var(--border);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}

.nav__cta:hover {
  background: var(--forest-600);
  color: white !important;
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--stone-900);
  margin: 5px 0;
  transition: var(--transition);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: var(--border);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn--primary {
  background: var(--stone-900);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: var(--forest-600);
  color: white;
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: white;
  color: var(--stone-900);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  background: var(--pop-yellow);
  color: var(--stone-900);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--pop-yellow);
  color: var(--stone-900);
  box-shadow: var(--shadow-md);
}

.btn--accent:hover {
  background: var(--earth-400);
  color: var(--stone-900);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

.btn--large {
  padding: 20px 48px;
  font-size: 1rem;
}

.btn--shopify {
  background: #96BF48;
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.btn--shopify:hover {
  background: #7FA73C;
  color: white;
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

/* Shopify Buy Button placeholder */
.shopify-buy-button {
  display: inline-block;
  padding: 16px 36px;
  background: var(--stone-900);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: var(--border);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.shopify-buy-button:hover {
  background: var(--forest-600);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: var(--paper);
  overflow: hidden;
  position: relative;
}

/* Subtle grid texture on hero bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--stone-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--stone-200) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 580px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--pop-yellow);
  color: var(--stone-900);
  border: var(--border);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  box-shadow: 2px 2px 0 var(--stone-900);
}

.hero__title { margin-bottom: 24px; }
.hero__title em {
  font-style: normal;
  color: var(--forest-600);
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 12px;
  background: var(--pop-yellow);
  opacity: 0.5;
  z-index: -1;
  transform: rotate(-1deg);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: var(--stone-600);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: var(--border);
  background: white;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid white;
  margin-left: -10px;
  background: var(--stone-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--stone-700);
}

.hero__avatar:first-child { margin-left: 0; }

.hero__proof-text {
  font-size: 0.85rem;
  color: var(--stone-600);
}

.hero__proof-text strong { color: var(--stone-900); font-weight: 800; }

.hero__proof-stars { color: var(--accent-gold); font-size: 1rem; }

.hero__image {
  position: relative;
}

.hero__image-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cream);
  border: var(--border-thick);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.hero__image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(44,37,32,0.02) 8px,
    rgba(44,37,32,0.02) 16px
  );
}

.hero__float-card {
  position: absolute;
  background: white;
  border: var(--border);
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero__float-card--top { top: -20px; right: -20px; transform: rotate(2deg); }
.hero__float-card--bottom { bottom: -20px; left: -20px; transform: rotate(-1.5deg); }

.hero__float-card:hover {
  transform: translate(-2px, -2px) rotate(0deg);
  box-shadow: var(--shadow-lg);
}

.hero__float-icon {
  width: 36px;
  height: 36px;
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero__float-icon--green { background: #E8F5E9; }
.hero__float-icon--amber { background: #FFF8E1; }

/* No float animation — static, structural, intentional */

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--stone-900);
  border: var(--border-thick);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 48px;
}

.stat {
  text-align: center;
  padding: 36px 20px;
  border-right: 2.5px solid var(--stone-600);
}

.stat:last-child { border-right: none; }
.stat__number { font-family: var(--font-heading); font-size: 2.4rem; color: var(--pop-yellow); margin-bottom: 4px; }
.stat__label { font-size: 0.82rem; color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

/* --- How It Works (Steps) --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.step {
  text-align: left;
  padding: 36px 28px;
  background: white;
  border: var(--border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.step:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

.step:nth-child(2) {
  transform: rotate(0.5deg);
}
.step:nth-child(2):hover {
  transform: rotate(0deg) translate(-3px, -3px);
}
.step:nth-child(3) {
  transform: rotate(-0.3deg);
}
.step:nth-child(3):hover {
  transform: rotate(0deg) translate(-3px, -3px);
}

.step__number {
  width: 48px;
  height: 48px;
  background: var(--pop-yellow);
  border: var(--border);
  box-shadow: 2px 2px 0 var(--stone-900);
  color: var(--stone-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.step__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.step h3 { margin-bottom: 10px; }
.step p { color: var(--stone-600); font-size: 0.92rem; }

.step__arrow {
  display: none;
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--stone-400);
}

/* --- Product Cards --- */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  background: white;
  border: var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.product-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  aspect-ratio: 1;
  background: var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: var(--border);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: var(--accent-red);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid var(--stone-900);
  box-shadow: 2px 2px 0 var(--stone-900);
}

.product-card__rock {
  font-size: 5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.product-card__word {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 4px 16px;
  border: var(--border);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--stone-900);
  white-space: nowrap;
}

.product-card__body { padding: 20px; }
.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.product-card__placement {
  font-size: 0.82rem;
  color: var(--stone-500);
  margin-bottom: 16px;
}

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

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--stone-900);
}

.product-card__add {
  padding: 8px 20px;
  background: var(--stone-900);
  color: white;
  border: 2px solid var(--stone-900);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card__add:hover {
  background: var(--forest-600);
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 var(--stone-900);
}

/* --- Pricing Table --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.pricing-card {
  background: white;
  padding: 40px 32px;
  border: var(--border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--stone-900);
  border-width: 3.5px;
  box-shadow: var(--shadow-lg);
  background: var(--pop-yellow);
  transform: rotate(-0.5deg);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--stone-900);
  color: white;
  padding: 4px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--stone-900);
}

.pricing-card:hover:not(.pricing-card--featured) {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured:hover {
  transform: rotate(0deg) translate(-3px, -3px);
  box-shadow: var(--shadow-xl);
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-card__desc { color: var(--stone-600); font-size: 0.9rem; margin-bottom: 24px; }
.pricing-card--featured .pricing-card__desc { color: var(--stone-700); }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--stone-900);
}

.pricing-card__period { color: var(--stone-500); font-size: 0.9rem; }

.pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-card__features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--stone-700);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px dashed var(--stone-200);
}
.pricing-card--featured .pricing-card__features li {
  border-bottom-color: rgba(44,37,32,0.15);
}

.pricing-card__features li:last-child { border-bottom: none; }

.pricing-card__features li::before {
  content: '\2713';
  color: var(--forest-600);
  font-weight: 800;
  font-size: 0.88rem;
  margin-top: 2px;
}

.pricing-card .btn { width: 100%; }

/* --- Testimonials --- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.testimonial {
  background: white;
  padding: 32px;
  border: var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial:nth-child(2) { transform: rotate(0.4deg); }
.testimonial:nth-child(2):hover { transform: rotate(0deg) translate(-3px, -3px); }
.testimonial:nth-child(3) { transform: rotate(-0.3deg); }
.testimonial:nth-child(3):hover { transform: rotate(0deg) translate(-3px, -3px); }

.testimonial:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--stone-200);
  line-height: 1;
}

.testimonial__stars { color: var(--accent-gold); font-size: 1rem; margin-bottom: 16px; }
.testimonial__text { font-size: 0.95rem; color: var(--stone-700); margin-bottom: 20px; line-height: 1.8; font-style: italic; }

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 2px dashed var(--stone-200);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  background: var(--pop-yellow);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--stone-900);
}

.testimonial__name { font-weight: 700; font-size: 0.9rem; }
.testimonial__loc { font-size: 0.78rem; color: var(--stone-500); text-transform: uppercase; letter-spacing: 0.04em; }

/* --- FAQ --- */
.faq-list { max-width: 720px; margin: 48px auto 0; }

.faq-item {
  border: var(--border);
  margin-bottom: -2.5px;
  background: white;
}

.faq-item:first-child { }
.faq-item:last-child { }

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--stone-900);
  text-align: left;
  transition: var(--transition);
}

.faq-item__question:hover { background: var(--stone-50); }

.faq-item__icon {
  font-size: 1.4rem;
  color: var(--stone-900);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  font-weight: 800;
}

.faq-item.active .faq-item__icon { transform: rotate(45deg); color: var(--accent-red); }
.faq-item.active { background: var(--pop-yellow); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer { max-height: 300px; }

.faq-item__answer p {
  padding: 0 24px 24px;
  color: var(--stone-700);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--stone-900);
  border: var(--border-thick);
  box-shadow: var(--shadow-xl);
  padding: 64px 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-banner h2 { color: white; margin-bottom: 16px; position: relative; }
.cta-banner p { color: var(--stone-400); max-width: 600px; margin: 0 auto 32px; font-size: 1.05rem; position: relative; }
.cta-banner .btn { position: relative; }
.cta-banner .btn--primary {
  background: var(--pop-yellow);
  color: var(--stone-900);
  border-color: var(--pop-yellow);
}
.cta-banner .btn--primary:hover {
  background: white;
  color: var(--stone-900);
  border-color: white;
}

/* --- Footer --- */
.footer {
  background: var(--stone-900);
  color: var(--stone-400);
  padding: 60px 0 32px;
  border-top: var(--border-thick);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 12px;
}

.footer__brand-desc { font-size: 0.88rem; color: var(--stone-500); max-width: 280px; line-height: 1.7; }

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pop-yellow);
  margin-bottom: 20px;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: var(--stone-500); font-size: 0.88rem; transition: var(--transition); }
.footer__links a:hover { color: white; }

.footer__bottom {
  padding-top: 24px;
  border-top: 2px solid var(--stone-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

/* --- Live Purchase Feed --- */
.live-feed {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  background: white;
  border: var(--border);
  box-shadow: var(--shadow-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  max-width: 320px;
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

.live-feed.show { transform: translateY(0); }

.live-feed__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.live-feed__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--forest-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.live-feed__fssp {
  font-size: 0.65rem;
  color: var(--stone-400);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.live-feed__fssp:hover {
  color: var(--stone-600);
  text-decoration: underline;
}

.live-feed__close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  color: var(--stone-400);
  cursor: pointer;
  font-size: 1rem;
}

/* --- Page Hero (subpages) --- */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-bottom: var(--border-thick);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--stone-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--stone-200) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}

.page-hero h1 { margin-bottom: 20px; position: relative; }
.page-hero .subtitle { max-width: 600px; margin: 0 auto; position: relative; }

/* --- Quiz Styles --- */
.quiz-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 40px;
  background: white;
  border: var(--border-thick);
  box-shadow: var(--shadow-xl);
}

.quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
}

.quiz-progress__bar {
  flex: 1;
  height: 6px;
  background: var(--stone-200);
  border: 1.5px solid var(--stone-300);
  overflow: hidden;
}

.quiz-progress__bar.active { background: var(--pop-yellow); border-color: var(--stone-900); }
.quiz-progress__bar.completed { background: var(--forest-500); border-color: var(--stone-900); }

.quiz-question {
  display: none;
  animation: fadeIn 0.3s ease;
}

.quiz-question.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question h3 { margin-bottom: 24px; text-align: center; }

.quiz-options { display: grid; gap: 12px; }

.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: white;
  border: var(--border);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  font-weight: 500;
}

.quiz-option:hover {
  background: var(--stone-50);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
}

.quiz-option.selected {
  background: var(--pop-yellow);
  box-shadow: var(--shadow-md);
  font-weight: 700;
}

.quiz-option__icon { font-size: 1.5rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__content { max-width: 100%; order: 2; }
  .hero__image { max-width: 500px; margin: 0 auto; order: 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px;
    gap: 16px;
    border-bottom: var(--border-thick);
  }

  .nav__links.open a:hover::after { display: none; }

  .steps { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .step, .step:nth-child(2), .step:nth-child(3) { transform: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 2px solid var(--stone-600); }
  .pricing-card--featured { transform: none; }
  .hero__float-card { display: none; }
  .hero__image-main { aspect-ratio: 3/2; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .stats-section-mobile-hide { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .live-feed { display: none; }
  .testimonial, .testimonial:nth-child(2), .testimonial:nth-child(3) { transform: none; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .quiz-container { padding: 32px 20px; }
  h1 { font-size: 2.2rem; }
}
