/* CFE Campaign Landing Page Styles
   Mobile-first responsive design.
   83% of traffic is mobile. Must be flawless.
   Touch targets: 44x44px minimum.
   Load target: <3s, Lighthouse 90+ mobile.
*/

/* ---------- CSS Variables (overridden per-campaign via meta.json custom_css) ---------- */
:root {
  --brand-primary: #363636;
  --brand-accent: #E07070;
  --brand-bg: #FFFFFF;
  --brand-text: #363636;
  --brand-text-muted: #6B7280;
  --brand-surface: #F9FAFB;
  --brand-border: #E5E7EB;
  --brand-success: #10B981;
  --ll-charcoal: #363636;
  --ll-pink: #E07070;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--brand-text);
  background: var(--brand-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-accent);
  text-decoration: none;
}

/* ---------- Campaign Header ---------- */
.campaign-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.campaign-header__logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.campaign-header__logo {
  height: 28px;
  width: auto;
}

.campaign-header__divider {
  width: 1px;
  height: 20px;
  background: var(--brand-border);
}

.campaign-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 20px;
  background: var(--brand-accent);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.campaign-header__cta:hover {
  opacity: 0.9;
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 40px 20px 32px;
  text-align: center;
  background: var(--brand-surface);
}

.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--brand-success);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--brand-text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--brand-text-muted);
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto 24px;
}

.hero__image {
  max-width: 100%;
  border-radius: 12px;
  margin: 0 auto 24px;
  max-height: 300px;
  object-fit: cover;
}

/* ---------- Countdown Timer ---------- */
.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.countdown__block {
  text-align: center;
  min-width: 56px;
}

.countdown__number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-text);
  line-height: 1;
}

.countdown__label {
  display: block;
  font-size: 11px;
  color: var(--brand-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ---------- Social Proof Counter ---------- */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--brand-text-muted);
}

.social-proof__count {
  font-weight: 700;
  color: var(--brand-text);
  font-size: 18px;
}

.social-proof__avatars {
  display: flex;
  margin-right: 4px;
}

.social-proof__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--brand-bg);
  margin-left: -8px;
  background: var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-text-muted);
}

.social-proof__avatar:first-child {
  margin-left: 0;
}

/* ---------- Signup Form ---------- */
.signup {
  padding: 0 20px 32px;
  background: var(--brand-surface);
}

.signup__form {
  max-width: 420px;
  margin: 0 auto;
}

.signup__field {
  margin-bottom: 12px;
}

.signup__input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  background: var(--brand-bg);
  color: var(--brand-text);
  min-height: 48px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.signup__input:focus {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(224, 112, 112, 0.1);
}

.signup__input::placeholder {
  color: #9CA3AF;
}

.signup__button {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--brand-accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  min-height: 52px;
  transition: opacity 0.2s, transform 0.1s;
  -webkit-appearance: none;
}

.signup__button:hover {
  opacity: 0.92;
}

.signup__button:active {
  transform: scale(0.98);
}

.signup__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.signup__disclaimer {
  font-size: 12px;
  color: var(--brand-text-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

/* ---------- Thank-You Page (dedicated route) ---------- */
.thankyou-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 20px 0;
  text-align: center;
}

.thankyou-page__confirmation {
  margin-bottom: 32px;
}

.thankyou-page__check {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--brand-success, #10B981);
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  line-height: 56px;
  border-radius: 50%;
}

.thankyou-page__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.thankyou-page__position {
  font-size: 18px;
  color: var(--brand-text-muted);
  margin-bottom: 4px;
}

.thankyou-page__position strong {
  color: var(--brand-accent);
  font-size: 22px;
}

.thankyou-page__counter {
  font-size: 14px;
  color: var(--brand-text-muted);
}

.thankyou-page .vip__card {
  margin-bottom: 32px;
}

/* ---------- FB + IG comment-and-tag CTA (replaces .thankyou-page__share 2026-04-27) ---------- */
.campaign-fb-embed {
  max-width: 520px;
  margin: 0 auto 40px;
  padding: 0 4px;
  text-align: center;
}
.campaign-fb-embed__cta {
  font-size: 16px;
  line-height: 1.55;
  color: var(--brand-text);
  margin-bottom: 20px;
  padding: 18px 18px;
  background: var(--brand-surface);
  border-radius: 12px;
  border-left: 4px solid var(--brand-accent);
  text-align: left;
}
.campaign-fb-embed__cta .signoff {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: var(--brand-text-muted);
}

/* Static FB-style post card (no SDK loaded - privacy-safe, no cookie banner needed) */
.fb-static-card {
  display: block;
  max-width: 480px;
  margin: 0 auto 20px;
  background: #FFFFFF;
  border: 1px solid #DDDFE2;
  border-radius: 8px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
}
.fb-static-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.fb-static-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 8px;
}
.fb-static-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #FFFFFF;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fb-static-card__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #050505;
}
.fb-static-card__date {
  font-size: 13px;
  color: #65676B;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fb-static-card__globe {
  font-size: 11px;
  opacity: 0.85;
}
.fb-static-card__body {
  padding: 4px 16px 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #050505;
}
.fb-static-card__see-more {
  color: #65676B;
  cursor: pointer;
}
.fb-static-card__image {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #1a1a1a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.fb-static-card__link-block {
  background: #F0F2F5;
  padding: 12px 16px;
  border-top: 1px solid #DDDFE2;
  border-bottom: 1px solid #DDDFE2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fb-static-card__link-text {
  flex: 1;
  min-width: 0;
}
.fb-static-card__link-domain {
  font-size: 12px;
  color: #65676B;
  margin-bottom: 4px;
}
.fb-static-card__link-title {
  font-size: 16px;
  font-weight: 700;
  color: #050505;
  line-height: 1.3;
}
.fb-static-card__link-cta {
  flex-shrink: 0;
  padding: 8px 16px;
  background: #E4E6EB;
  color: #050505;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  pointer-events: none;
}
.fb-static-card__stats {
  padding: 10px 16px;
  font-size: 13px;
  color: #65676B;
  display: flex;
  gap: 4px;
  align-items: center;
}
.fb-static-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 24px;
  background: #1877F2;
  color: #FFFFFF !important;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.32);
  transition: opacity 0.2s, transform 0.1s;
  text-decoration: none;
}
.fb-static-card__cta:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}
.fb-static-card__cta--ig {
  margin-top: 12px;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  box-shadow: 0 6px 16px rgba(221, 42, 123, 0.32);
}
.fb-static-card__cta-divider {
  max-width: 480px;
  margin: 18px auto 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--brand-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.fb-static-card__cta-divider::before,
.fb-static-card__cta-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--brand-border);
}
.fb-static-card__cta-hint {
  max-width: 480px;
  margin: 12px auto 0;
  font-size: 13px;
  color: var(--brand-text-muted);
  line-height: 1.5;
}


/* ---------- Thank You State ---------- */
.thank-you {
  display: none;
  text-align: center;
  padding: 32px 20px;
  background: var(--brand-surface);
}

.thank-you__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.thank-you__position {
  font-size: 18px;
  color: var(--brand-text-muted);
  margin-bottom: 24px;
}

.thank-you__position strong {
  color: var(--brand-accent);
  font-size: 22px;
}

/* Share buttons CSS removed 2026-04-27 - replaced by .fb-static-card__cta + .campaign-fb-embed above. */

/* ---------- Content Sections ---------- */
.campaign-section {
  padding: 48px 20px;
  max-width: 640px;
  margin: 0 auto;
}

.campaign-section--alt {
  background: var(--brand-surface);
  max-width: 100%;
}

.campaign-section--alt > .campaign-section__inner {
  max-width: 640px;
  margin: 0 auto;
}

.campaign-section__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-accent);
  margin-bottom: 12px;
}

.campaign-section__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.campaign-section__text {
  font-size: 16px;
  color: var(--brand-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---------- Feature Cards ---------- */
.features {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.feature-card {
  padding: 20px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
}

.feature-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card__text {
  font-size: 14px;
  color: var(--brand-text-muted);
  line-height: 1.5;
}

/* ---------- Trust Signals ---------- */
.trust {
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

.trust__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}

.trust__logo {
  height: 24px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(1);
}

.trust__stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
}

.trust__stat {
  text-align: center;
}

.trust__stat-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-text);
}

.trust__stat-label {
  display: block;
  font-size: 12px;
  color: var(--brand-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- VIP Deposit Section ---------- */
.vip {
  padding: 48px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-surface) 0%, #FFF 100%);
}

.vip__card {
  max-width: 420px;
  margin: 0 auto;
  padding: 32px 24px;
  background: var(--brand-bg);
  border: 2px solid var(--brand-accent);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.vip__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--brand-accent);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.vip__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.vip__text {
  font-size: 15px;
  color: var(--brand-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.vip__perks {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.vip__perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--brand-text);
}

.vip__perk::before {
  content: "\2713";
  color: var(--brand-success);
  font-weight: 700;
  flex-shrink: 0;
}

.vip__price {
  font-size: 14px;
  color: var(--brand-text-muted);
  margin-bottom: 16px;
}

.vip__price strong {
  font-size: 28px;
  color: var(--brand-text);
  font-weight: 800;
}

.vip__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--brand-accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  min-height: 52px;
  transition: opacity 0.2s;
}

.vip__button:hover {
  opacity: 0.92;
}

.vip__refund {
  font-size: 12px;
  color: var(--brand-text-muted);
  margin-top: 10px;
}

/* ---------- Campaign Footer ---------- */
.campaign-footer {
  padding: 32px 20px;
  text-align: center;
  background: var(--ll-charcoal);
  color: #FFFFFF;
}

.campaign-footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.campaign-footer__logo {
  height: 24px;
  width: auto;
}

.campaign-footer__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.3);
}

.campaign-footer__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.campaign-footer__text a {
  color: var(--ll-pink);
}

.campaign-footer__disclaimer {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
  line-height: 1.5;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Inline CTA (sticky mobile) ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: var(--brand-bg);
  border-top: 1px solid var(--brand-border);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  z-index: 99;
}

.sticky-cta__btn {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--brand-accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  min-height: 48px;
  text-align: center;
}

/* ---------- Desktop Breakpoint (768px+) ---------- */
@media (min-width: 768px) {
  .hero {
    padding: 64px 40px 48px;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__subtitle {
    font-size: 19px;
  }

  .hero__image {
    max-height: 400px;
  }

  .countdown__number {
    font-size: 42px;
  }

  .countdown__block {
    min-width: 72px;
  }

  .signup {
    padding: 0 40px 48px;
  }

  .signup__form {
    max-width: 480px;
  }

  .campaign-section {
    padding: 64px 40px;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .trust__stats {
    gap: 48px;
  }

  .campaign-header {
    padding: 16px 40px;
  }

  .campaign-header__logo {
    height: 32px;
  }
}

/* ---------- Large Desktop (1024px+) ---------- */
@media (min-width: 1024px) {
  .hero {
    padding: 80px 40px 64px;
  }

  .hero__title {
    font-size: 48px;
    max-width: 700px;
  }

  .campaign-section {
    padding: 80px 40px;
    max-width: 720px;
  }
}

/* ---------- Mobile sticky CTA (shows when form scrolls out of view) ---------- */
@media (max-width: 767px) {
  .sticky-cta {
    display: block;
  }

  .sticky-cta.hidden {
    display: none;
  }

  .campaign-footer {
    padding-bottom: 100px;
  }
}

/* ---------- Variant hero: solid dark bg + form (B, C, D) ---------- */
.hero--dark {
  background: #1a2a1f;
  padding: 64px 24px 48px;
}

.hero--dark .hero__content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.hero--dark .hero__text {
  color: #fff;
}

.hero--dark .hero__text h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero--dark .hero__text p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.5;
  max-width: 500px;
  opacity: 0.85;
}

/* Light hero variant (E: Smart Money) */
.hero--light {
  background: linear-gradient(135deg, #f8faf9 0%, #eef5f0 100%);
  padding: 64px 24px 48px;
}

.hero--light .hero__content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.hero--light .hero__text h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.hero--light .hero__text p {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Process timeline (E) */
.process-timeline {
  display: flex;
  flex-direction: column;
}

.process-step {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--brand-border);
}

.process-step__num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--brand-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.process-step--highlight {
  background: rgba(46,139,87,0.08);
  border: 1px solid rgba(46,139,87,0.2);
  border-radius: 8px;
  padding: 16px;
  flex: 1;
}

.process-step--highlight .process-step__title {
  color: var(--brand-accent);
}

.process-step--highlight p {
  color: var(--brand-accent);
}

/* Full-width hero photo (shown below the dark hero text) */
.hero__photo {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}

.hero__photo img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Signup card within dark hero */
.signup-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  color: var(--brand-text);
}

.signup-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--brand-accent);
}

.signup-card .signup__input {
  margin-bottom: 12px;
}

.signup-card .note {
  font-size: 13px;
  color: var(--brand-text-muted);
  margin-top: 12px;
  text-align: center;
}

/* ---------- Variant B: Story section ---------- */
.story {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

.story__video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #1a1a1a;
}

.story__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--brand-text-muted);
}

.story blockquote {
  border-left: 4px solid var(--brand-accent);
  padding: 16px 24px;
  margin: 32px 0;
  font-size: 20px;
  font-style: italic;
  color: var(--brand-accent);
  background: rgba(46,139,87,0.06);
  border-radius: 0 8px 8px 0;
}

.story blockquote cite {
  display: block;
  font-size: 14px;
  font-style: normal;
  color: var(--brand-text-muted);
  margin-top: 8px;
}

/* ---------- Variant C: Farm cards ---------- */
.farm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.farm-card {
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.farm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.farm-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

.farm-card__info {
  padding: 20px;
}

.farm-card__info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.farm-card__loc {
  font-size: 13px;
  color: var(--brand-accent);
  margin-bottom: 8px;
}

.farm-card__info p {
  font-size: 14px;
  color: var(--brand-text-muted);
  line-height: 1.5;
}

/* Supply chain visual (C) */
.supply-chain {
  padding: 80px 24px;
  background: var(--brand-surface);
}

.supply-chain__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.supply-chain__img {
  border-radius: 12px;
  overflow: hidden;
}

.supply-chain__img img {
  width: 100%;
  display: block;
}

.supply-chain__text h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.supply-chain__text p {
  font-size: 16px;
  color: var(--brand-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ---------- Variant D: Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.product-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--brand-surface);
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.product-card__info {
  padding: 16px;
}

.product-card__info h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.product-card__info p {
  font-size: 13px;
  color: var(--brand-text-muted);
}

/* Comparison panel (D) */
.comparison {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 24px;
}

.comparison__inner {
  max-width: 900px;
  margin: 0 auto;
}

.comparison h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 48px;
}

.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.compare-col {
  padding: 32px;
  border-radius: 12px;
}

.compare-col--super {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.compare-col--farm {
  background: rgba(46,139,87,0.15);
  border: 1px solid rgba(46,139,87,0.3);
}

.compare-col h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  opacity: 0.7;
}

.compare-col ul {
  list-style: none;
  font-size: 16px;
  line-height: 2;
}

.compare-col--super ul li::before { content: '\2715 '; color: #e07070; }
.compare-col--farm ul li::before { content: '\2713 '; color: #5dbc8b; }

/* ---------- Variant E: Smart Money ---------- */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.fact-card {
  background: var(--brand-surface);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.fact-card__value {
  font-size: 36px;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 4px;
}

.fact-card__label {
  font-size: 14px;
  color: var(--brand-text-muted);
  margin-bottom: 8px;
}

.fact-card__source {
  font-size: 11px;
  color: var(--brand-text-muted);
  opacity: 0.6;
}

.trust-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--brand-text-muted);
}

.trust-chip .icon {
  color: var(--brand-accent);
  font-weight: 700;
}

.honesty-section {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 24px;
}

.honesty-section__inner {
  max-width: 700px;
  margin: 0 auto;
}

.honesty-section h2 {
  font-size: 28px;
  margin-bottom: 32px;
  text-align: center;
}

.honesty-section__item {
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 3px solid rgba(255,255,255,0.15);
}

.honesty-section__item p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

.honesty-section__item strong {
  color: #fff;
}

.honesty-section__cta {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: rgba(46,139,87,0.15);
  border: 1px solid rgba(46,139,87,0.3);
  border-radius: 12px;
}

.honesty-section__cta p {
  font-size: 16px;
  color: #5dbc8b;
}

/* ---------- Certification Badges ---------- */
.cert-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #666;
}

.cert-badge svg {
  width: 20px;
  height: 20px;
  fill: #257a47;
}

/* ---------- Light Background Section ---------- */
.campaign-section--light {
  background: #FAF8F5;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.campaign-section--light > .campaign-section__title,
.campaign-section--light > .campaign-section__label,
.campaign-section--light > .campaign-section__text,
.campaign-section--light > .trust__stats,
.campaign-section--light > .cert-badges,
.campaign-section--light > .how-it-works {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.campaign-section--light > .campaign-section__label,
.campaign-section--light > .campaign-section__title {
  text-align: center;
}

/* ---------- How It Works ---------- */
.how-it-works {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  justify-content: center;
}

.how-it-works__step {
  flex: 1;
  max-width: 200px;
  text-align: center;
}

.how-it-works__num {
  width: 40px;
  height: 40px;
  background: var(--brand-accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 12px;
}

.how-it-works__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.how-it-works__text {
  font-size: 14px;
  color: var(--brand-text-muted);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .how-it-works {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .how-it-works__step {
    max-width: 280px;
  }
}


/* ---------- Instagram embeds ---------- */
.ig-embed {
  max-width: 540px;
  margin: 24px auto;
}

.ig-embed .instagram-media {
  margin: 0 auto !important;
}

/* ---------- Variant responsive overrides ---------- */
@media (max-width: 767px) {
  .hero--dark {
    padding: 40px 20px 32px;
  }

  .hero--dark .hero__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero--dark .hero__text h1 {
    font-size: 28px;
  }

  .hero--light {
    padding: 40px 20px 32px;
  }

  .hero--light .hero__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero--light .hero__text h1 {
    font-size: 28px;
  }

  .hero__photo {
    max-height: 300px;
  }

  .story {
    padding: 48px 20px;
  }

  .farm-grid {
    grid-template-columns: 1fr;
  }

  .supply-chain__inner {
    grid-template-columns: 1fr;
  }

  .comparison__grid {
    grid-template-columns: 1fr;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }
}
