/**
 * Made for One — Home Page Styles
 * File: assets/css/home.css
 *
 * Design reference:
 *   Typography  → Stripe (weight 300, tight tracking, progressive letter-spacing)
 *   Section rhythm → Apple (strict light/dark alternation)
 *   Hero layout → SpaceX (full-bleed, text over image, no split)
 *
 * CSS variables expected from style.css:
 *   --mfo-forest: #2D5A3D
 *   --mfo-linen:  #F7F5F0
 *   --mfo-dew:    #EFF0EC
 *   --mfo-ink:    #1A1A18
 */

/* ─────────────────────────────────────────────
   RESET
───────────────────────────────────────────── */
.mfo-home *, .mfo-home *::before, .mfo-home *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.mfo-home {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--mfo-ink, #1A1A18);
  background: var(--mfo-linen, #F7F5F0);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────────
   CONTAINER
───────────────────────────────────────────── */
.mfo-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* ─────────────────────────────────────────────
   SECTION BASE + RHYTHM
   Apple: strict light/dark alternation
───────────────────────────────────────────── */
.mfo-section {
  position: relative;
}

.mfo-section--light {
  background: var(--mfo-linen, #F7F5F0);
  color: var(--mfo-ink, #1A1A18);
}

.mfo-section--dark {
  background: var(--mfo-forest, #2D5A3D);
  color: #ffffff;
}

/* Inner padding for content sections */
.mfo-how,
.mfo-products,
.mfo-craft,
.mfo-pricing,
.mfo-reviews,
.mfo-final-cta {
  padding: clamp(80px, 11vw, 140px) 0;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY — Stripe system
   Weight 300 throughout, tightening with scale
───────────────────────────────────────────── */

/* Stripe: -1.4px at 56px, progressive relaxation */
.mfo-display {
  font-family: 'Lora', Georgia, serif;
  font-weight: 300;
  font-size: clamp(52px, 9vw, 112px);
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: #ffffff;
}

/* Stripe: -0.96px at 48px equiv */
.mfo-heading {
  font-family: 'Lora', Georgia, serif;
  font-weight: 300;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--mfo-ink, #1A1A18);
}

.mfo-heading--light {
  color: #ffffff;
}

/* Stripe: eyebrow = small, tracked out */
.mfo-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mfo-forest, #2D5A3D);
  margin-bottom: 20px;
}

.mfo-eyebrow--light {
  color: rgba(255,255,255,0.55);
}

/* Line mask for GSAP slide-in */
.mfo-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.mfo-line__inner {
  display: block;
}

/* ─────────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────────── */
.mfo-section-header {
  max-width: 680px;
  margin-bottom: clamp(48px, 7vw, 80px);
}

/* ─────────────────────────────────────────────
   ① HERO — SpaceX full-bleed
───────────────────────────────────────────── */
.mfo-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(64px, 8vw, 100px);
  overflow: hidden;
}

/* Background: CSS gradient placeholder — replace with real img */
.mfo-hero__bg {
  position: absolute;
  inset: 0;
  /* Replace this with: background-image: url('/path/to/hero.jpg'); background-size: cover; background-position: center; */
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(45,90,61,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(45,90,61,0.35) 0%, transparent 60%),
    linear-gradient(160deg, #1a2e20 0%, #0d1a12 50%, #091510 100%);
  z-index: 0;
}

/* Dark gradient overlay — SpaceX: ensures text legibility */
.mfo-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 21, 16, 0.85) 0%,
    rgba(9, 21, 16, 0.35) 50%,
    rgba(9, 21, 16, 0.15) 100%
  );
  z-index: 1;
}

/* Abstract shapes — art placeholder until product photo */
.mfo-hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.mfo-hero__bg-shape--1 {
  width: clamp(300px, 50vw, 700px);
  height: clamp(300px, 50vw, 700px);
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(72, 140, 96, 0.4) 0%, transparent 70%);
}

.mfo-hero__bg-shape--2 {
  width: clamp(200px, 35vw, 500px);
  height: clamp(200px, 35vw, 500px);
  bottom: 10%;
  right: 20%;
  background: radial-gradient(circle, rgba(45, 90, 61, 0.3) 0%, transparent 70%);
}

.mfo-hero__bg-shape--3 {
  width: clamp(150px, 25vw, 350px);
  height: clamp(150px, 25vw, 350px);
  top: 30%;
  left: 10%;
  background: radial-gradient(circle, rgba(100, 160, 120, 0.2) 0%, transparent 70%);
}

.mfo-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.mfo-hero__content .mfo-eyebrow {
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.mfo-hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
  margin-top: clamp(20px, 3vw, 32px);
  max-width: 480px;
}

.mfo-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(28px, 4vw, 44px);
}

/* Scroll indicator */
.mfo-hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mfo-hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.45));
  animation: mfo-scroll-pulse 2s ease-in-out infinite;
}

@keyframes mfo-scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.2); }
}

/* ─────────────────────────────────────────────
   ② MARQUEE — infinite scroll trust strip
───────────────────────────────────────────── */
.mfo-marquee-section {
  background: var(--mfo-forest, #2D5A3D);
  padding: 18px 0;
  overflow: hidden;
}

.mfo-marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

.mfo-marquee-inner {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: mfo-marquee 40s linear infinite;
}

.mfo-marquee-item {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 28px;
  white-space: nowrap;
}

.mfo-marquee-dot {
  font-size: 8px;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

@keyframes mfo-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on hover */
.mfo-marquee-track:hover .mfo-marquee-inner {
  animation-play-state: paused;
}

/* ─────────────────────────────────────────────
   ③ HOW IT WORKS — 3-col steps
───────────────────────────────────────────── */
.mfo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.mfo-step {
  padding: clamp(28px, 3.5vw, 44px) clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(45,90,61,0.12);
  border-radius: 4px;
  background: rgba(239,240,236,0.5);
  /* Stripe standard card shadow */
  box-shadow:
    rgba(45,90,61,0.07) 0px 8px 24px -8px,
    rgba(0,0,0,0.04) 0px 4px 12px -4px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.mfo-step:hover {
  border-color: rgba(45,90,61,0.25);
  box-shadow:
    rgba(45,90,61,0.14) 0px 20px 40px -12px,
    rgba(0,0,0,0.06) 0px 8px 20px -8px;
}

.mfo-step__num {
  font-family: 'Lora', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: var(--mfo-forest, #2D5A3D);
  opacity: 0.6;
  margin-bottom: 20px;
}

.mfo-step__title {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--mfo-ink, #1A1A18);
  margin-bottom: 14px;
}

.mfo-step__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.70;
  color: rgba(26,26,24,0.58);
}

/* ─────────────────────────────────────────────
   ④ PRODUCTS — dark Forest
───────────────────────────────────────────── */
.mfo-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.mfo-product-card {
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  /* Stripe blue-tinted shadow — adapted to Forest dark context */
  box-shadow:
    rgba(0,0,0,0.25) 0px 20px 40px -12px,
    rgba(0,0,0,0.12) 0px 8px 16px -8px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.mfo-product-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
  box-shadow:
    rgba(0,0,0,0.35) 0px 32px 56px -12px,
    rgba(0,0,0,0.15) 0px 12px 24px -8px;
}

.mfo-product-card__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

/* CSS placeholder — remove when swapping in real <img> */
.mfo-product-card__img-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mfo-product-card__img-placeholder--candle {
  background:
    radial-gradient(ellipse 40% 60% at 50% 40%, rgba(255,240,200,0.25) 0%, transparent 70%),
    linear-gradient(160deg, rgba(45,90,61,0.4) 0%, rgba(20,45,30,0.8) 100%);
}

.mfo-product-card__img-placeholder--candle::after {
  content: '';
  width: 36px;
  height: 110px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
}

.mfo-product-card__img-placeholder--diffuser {
  background: linear-gradient(160deg, rgba(60,100,75,0.4) 0%, rgba(20,45,30,0.85) 100%);
}

.mfo-product-card__img-placeholder--diffuser::after {
  content: '';
  width: 24px;
  height: 90px;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 2px 2px 8px 8px;
  background: rgba(255,255,255,0.06);
}

.mfo-product-card__img-placeholder--set {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(45,90,61,0.35) 0%, transparent 70%),
    linear-gradient(160deg, rgba(30,65,45,0.5) 0%, rgba(15,35,22,0.9) 100%);
}

.mfo-product-card__img-placeholder--set::after {
  content: '';
  width: 80px;
  height: 60px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
}

.mfo-product-card__body {
  padding: clamp(18px, 2.5vw, 26px);
  color: #ffffff;
}

.mfo-product-card__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}

.mfo-product-card__name {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 10px;
}

.mfo-product-card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
  margin-bottom: 18px;
}

.mfo-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.mfo-product-card__price {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
}

/* ─────────────────────────────────────────────
   ⑤ CRAFT — two-column editorial
───────────────────────────────────────────── */
.mfo-craft__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.mfo-craft__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mfo-craft__text .mfo-eyebrow { margin-bottom: 20px; }
.mfo-craft__text .mfo-heading { margin-bottom: clamp(22px, 3vw, 34px); }

.mfo-craft__body {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.78;
  color: rgba(26,26,24,0.65);
  margin-bottom: 14px;
}

.mfo-craft__text .mfo-btn {
  align-self: flex-start;
  margin-top: 10px;
}

.mfo-craft__visual {
  position: relative;
}

.mfo-craft__visual-inner {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 40% 35%, rgba(45,90,61,0.15) 0%, transparent 60%),
    var(--mfo-dew, #EFF0EC);
  border: 1px solid rgba(45,90,61,0.10);
  position: relative;
  /* Stripe elevated shadow */
  box-shadow:
    rgba(45,90,61,0.12) 0px 30px 60px -20px,
    rgba(0,0,0,0.06) 0px 12px 24px -8px;
}

.mfo-craft__visual-shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(45,90,61,0.18);
}

.mfo-craft__visual-shape--1 {
  width: 160px; height: 160px;
  top: 15%; left: 8%;
  background: rgba(45,90,61,0.04);
}

.mfo-craft__visual-shape--2 {
  width: 100px; height: 100px;
  bottom: 22%; right: 14%;
  background: rgba(45,90,61,0.06);
  border-style: dashed;
}

.mfo-craft__visual-caption {
  position: absolute;
  bottom: 28px;
  right: 24px;
  font-family: 'Lora', serif;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(45,90,61,0.55);
  text-align: right;
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────────
   ⑥ PRICING — dark Forest
───────────────────────────────────────────── */
.mfo-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.mfo-pricing-card {
  border-radius: 4px;
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 2.5vw, 32px);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.3s ease;
}

.mfo-pricing-card--featured {
  background: rgba(255,255,255,0.97);
  border-color: rgba(255,255,255,0.9);
  transform: scale(1.02);
  box-shadow:
    rgba(0,0,0,0.30) 0px 32px 64px -20px,
    rgba(0,0,0,0.12) 0px 10px 24px -8px;
}

.mfo-pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mfo-forest, #2D5A3D);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.mfo-pricing-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.mfo-pricing-card--featured .mfo-pricing-card__name {
  color: rgba(26,26,24,0.50);
}

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

.mfo-pricing-card__currency {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  align-self: flex-start;
  margin-top: 10px;
}

/* Stripe: Lora large price number */
.mfo-pricing-card__amount {
  font-family: 'Lora', serif;
  font-weight: 300;
  font-size: clamp(44px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.mfo-pricing-card--featured .mfo-pricing-card__currency,
.mfo-pricing-card--featured .mfo-pricing-card__amount {
  color: var(--mfo-forest, #2D5A3D);
}

.mfo-pricing-card__features {
  list-style: none;
  flex: 1;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mfo-pricing-card__features li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  padding-left: 16px;
  position: relative;
}

.mfo-pricing-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  font-size: 11px;
  top: 3px;
  color: rgba(255,255,255,0.3);
}

.mfo-pricing-card--featured .mfo-pricing-card__features li {
  color: rgba(26,26,24,0.72);
}

.mfo-pricing-card--featured .mfo-pricing-card__features li::before {
  color: rgba(45,90,61,0.4);
}

/* ─────────────────────────────────────────────
   ⑦ REVIEWS
───────────────────────────────────────────── */
.mfo-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  margin-bottom: clamp(36px, 5vw, 56px);
}

.mfo-review {
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(45,90,61,0.10);
  border-radius: 4px;
  background: rgba(239,240,236,0.5);
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* Stripe ambient shadow */
  box-shadow: rgba(26,26,24,0.05) 0px 8px 24px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.mfo-review:hover {
  border-color: rgba(45,90,61,0.20);
  box-shadow:
    rgba(45,90,61,0.10) 0px 20px 40px -12px,
    rgba(0,0,0,0.04) 0px 6px 16px -6px;
}

.mfo-review__stars {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--mfo-forest, #2D5A3D);
}

.mfo-review__text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.72;
  color: rgba(26,26,24,0.72);
  flex: 1;
}

.mfo-review__footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mfo-review__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--mfo-ink, #1A1A18);
}

.mfo-review__location {
  font-size: 12px;
  color: rgba(26,26,24,0.40);
}

.mfo-reviews-aggregate {
  text-align: center;
}

.mfo-reviews-aggregate__stars {
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--mfo-forest, #2D5A3D);
  margin-bottom: 8px;
}

.mfo-reviews-aggregate__text {
  font-size: 13px;
  color: rgba(26,26,24,0.48);
}

/* ─────────────────────────────────────────────
   ⑧ FINAL CTA — dark Forest, centered
───────────────────────────────────────────── */
.mfo-final-cta__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.mfo-final-cta__heading {
  font-family: 'Lora', serif;
  font-weight: 300;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.mfo-final-cta__sub {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.70;
  color: rgba(255,255,255,0.58);
  margin-bottom: clamp(28px, 4vw, 44px);
}

.mfo-final-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   BUTTONS — Stripe precision: 4px radius
───────────────────────────────────────────── */
.mfo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.2s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}

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

/* Forest fill — for light sections */
.mfo-btn--primary {
  background: var(--mfo-forest, #2D5A3D);
  color: #ffffff;
  border-color: var(--mfo-forest, #2D5A3D);
}
.mfo-btn--primary:hover {
  background: #245032;
  border-color: #245032;
  box-shadow: rgba(45,90,61,0.22) 0px 8px 20px -4px, rgba(0,0,0,0.08) 0px 4px 10px -4px;
}

/* White fill — for dark sections */
.mfo-btn--light {
  background: #ffffff;
  color: var(--mfo-forest, #2D5A3D);
  border-color: #ffffff;
}
.mfo-btn--light:hover {
  background: rgba(255,255,255,0.93);
  box-shadow: rgba(0,0,0,0.18) 0px 8px 20px -4px;
}

/* Outline for dark sections */
.mfo-btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.80);
  border-color: rgba(255,255,255,0.32);
}
.mfo-btn--ghost-light:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.58);
  color: #ffffff;
}

/* Outline for dark sections — product cards */
.mfo-btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.28);
  padding: 8px 16px;
  font-size: 13px;
}
.mfo-btn--outline-light:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.55);
  color: #ffffff;
}

/* Full-width for pricing cards */
.mfo-btn--full {
  width: 100%;
  justify-content: center;
}

/* ─────────────────────────────────────────────
   GSAP ANIMATION INITIAL STATES
───────────────────────────────────────────── */
.mfo-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.mfo-card-reveal {
  opacity: 0;
  transform: translateY(56px);
}

.mfo-line { overflow: hidden; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .mfo-steps          { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .mfo-products-grid  { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .mfo-pricing-grid   { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .mfo-pricing-card--featured { transform: none; order: -1; }
  .mfo-reviews-grid   { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto clamp(36px, 5vw, 56px); }
  .mfo-craft__inner   { grid-template-columns: 1fr; }
  .mfo-craft__visual  { display: none; }
}

@media (max-width: 600px) {
  .mfo-hero__actions  { flex-direction: column; }
  .mfo-hero__actions .mfo-btn { width: 100%; justify-content: center; }
  .mfo-final-cta__actions { flex-direction: column; align-items: center; }
  .mfo-final-cta__actions .mfo-btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mfo-reveal, .mfo-card-reveal, .mfo-line__inner { opacity: 1 !important; transform: none !important; }
  .mfo-marquee-inner { animation: none; }
  .mfo-hero__scroll-line { animation: none; opacity: 0.4; }
  .mfo-btn:hover { transform: none; }
}