:root {
  --fair-primary: #c8102e;
  --fair-primary-dark: #9b0d24;
  --fair-accent: #c9a227;
  --fair-accent-light: #f5e6b8;
  --fair-accent-pale: #fdf8eb;
  --fair-cream: #fffbf5;
  --fair-white: #ffffff;
  --fair-text: #1a1a2e;
  --fair-muted: #5c5c6d;
  --fair-border: #ede8dc;
  --fair-shadow: 0 12px 40px rgba(200, 16, 46, 0.08);
  --wa-green: #25d366;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--fair-text);
  background: var(--fair-cream);
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}
@media (max-width: 768px) {
  body { padding-bottom: 88px; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 10001;
  padding: 10px 16px;
  background: var(--fair-primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus {
  left: 12px;
  outline: 3px solid var(--fair-accent);
  outline-offset: 2px;
}

[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
a, button, .btn, .phase-tab {
  -webkit-tap-highlight-color: rgba(200, 16, 46, 0.15);
  touch-action: manipulation;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--fair-border);
  transition: box-shadow 0.35s var(--ease);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(26, 26, 46, 0.06); }
.nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 5%;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav__start {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.nav__hub {
  flex-shrink: 0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fair-primary);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--fair-border);
  background: var(--fair-white);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav__hub:hover {
  background: var(--fair-accent-pale);
  border-color: var(--fair-accent);
}
.nav__hub-short { display: none; }
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 800; font-size: 15px; color: var(--fair-text);
}
.nav__brand-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--fair-primary), var(--fair-accent));
  display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 900;
}
.nav__actions { display: flex; align-items: center; gap: 20px; }
.nav__countdown {
  display: flex; flex-direction: column; align-items: flex-end;
  padding-right: 20px; border-right: 1px solid var(--fair-border);
}
.nav__countdown span:first-child {
  font-size: 9px; font-weight: 700; letter-spacing: 1.2px; color: var(--fair-muted);
}
.nav__countdown strong { font-size: 20px; color: var(--fair-primary); line-height: 1.1; }
.nav__link {
  text-decoration: none; font-size: 14px; font-weight: 600; color: var(--fair-text);
  display: flex; align-items: center; gap: 6px; transition: color 0.25s;
}
.nav__link:hover { color: var(--fair-primary); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 8px; font-weight: 700; font-size: 14px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
}
.btn--wa { background: var(--wa-green); color: #fff; }
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35); }
.btn--primary { background: var(--fair-primary); color: #fff; }
.btn--primary:hover { background: var(--fair-primary-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200, 16, 46, 0.25); }
.btn--outline {
  background: transparent; color: var(--fair-primary); border: 2px solid var(--fair-primary);
}
.btn--outline:hover { background: var(--fair-primary); color: #fff; }
.btn--muted {
  color: var(--fair-text);
  border-color: var(--fair-border);
}
.btn--muted:hover {
  background: var(--fair-accent-pale);
  color: var(--fair-text);
  border-color: var(--fair-accent);
}
.btn--gold { background: linear-gradient(135deg, var(--fair-accent), #e8c547); color: var(--fair-text); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35); }
.btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; }

/* HERO */
.hero {
  position: relative; min-height: 100vh; padding-top: var(--nav-h);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  background: var(--fair-cream); overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 60%; height: 80%;
  background: radial-gradient(ellipse, var(--fair-accent-pale) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2; padding: 60px 5% 80px 8%;
  max-width: 640px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fair-white); border: 1px solid var(--fair-accent-light);
  padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 700;
  color: var(--fair-primary); margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--fair-accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 900; line-height: 1.05;
  margin: 0 0 16px; letter-spacing: -0.03em;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--fair-primary), var(--fair-accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--fair-muted); margin: 0 0 32px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 28px; margin-bottom: 36px;
  padding-top: 28px; border-top: 1px solid var(--fair-border);
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.hero__stat b { display: block; font-size: 1.05rem; color: var(--fair-text); }
.hero__stat span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--fair-muted); }
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}
.hero__visual {
  position: relative; height: 100%; min-height: 480px;
}
.hero__visual picture { display: block; width: 100%; height: 100%; }
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  background: linear-gradient(135deg, var(--fair-accent-pale) 0%, var(--fair-cream) 100%);
  transition: opacity 0.5s var(--ease), filter 0.5s var(--ease);
}
.hero__visual img.is-loading { opacity: 0; filter: blur(8px); }
.hero__visual img.is-loaded { opacity: 1; filter: none; }
.hero__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--fair-cream) 0%, transparent 35%);
}
.trade-route {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  animation: fadeUp 0.8s var(--ease) both;
}
.flag-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--fair-white); padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--fair-border); font-size: 13px; font-weight: 600;
}
.flag-chip__icon {
  width: 22px; height: 22px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
}
.flag-in .s { background: #ff9933; height: 33%; }
.flag-in .w { background: #fff; height: 34%; }
.flag-in .g { background: #138808; height: 33%; }
.flag-cn { background: #c8102e; display: grid; place-items: center; color: #ffde00; font-size: 10px; }
.route-arrow { color: var(--fair-accent); animation: nudge 1.8s ease infinite; }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* TRUST BAR */
.trust-bar {
  background: var(--fair-white); border-top: 1px solid var(--fair-border);
  border-bottom: 1px solid var(--fair-border); padding: 28px 5%;
}
.trust-bar__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.trust-bar__item strong {
  display: block; font-size: 1.5rem; color: var(--fair-primary); font-weight: 900;
}
.trust-bar__item span { font-size: 13px; color: var(--fair-muted); }

/* SECTIONS */
.section { padding: 100px 5%; }
.section--alt { background: var(--fair-white); }
.section--gold-wash {
  background: linear-gradient(180deg, var(--fair-accent-pale) 0%, var(--fair-cream) 100%);
}
.container { max-width: 1280px; margin: 0 auto; }
.section__eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--fair-primary); margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; margin: 0 0 16px;
  letter-spacing: -0.02em; line-height: 1.15;
}
.section__title span { color: var(--fair-primary); }
.section__desc { color: var(--fair-muted); font-size: 1.05rem; max-width: 620px; margin: 0 0 48px; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* PHASES + FORM */
.phases-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start;
}
.phase-card {
  background: var(--fair-white); border: 1px solid var(--fair-border);
  border-radius: 16px; padding: 28px 32px; margin-bottom: 20px;
  border-left: 4px solid var(--fair-primary);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.phase-card:hover {
  transform: translateX(6px);
  box-shadow: var(--fair-shadow);
}
.phase-card:nth-child(2) { border-left-color: var(--fair-accent); }
.phase-card:nth-child(3) { border-left-color: #d4a84b; }
.phase-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 12px; margin-bottom: 14px;
}
.phase-card__num { font-size: 13px; font-weight: 800; color: var(--fair-primary); letter-spacing: 1px; }
.phase-card__date { font-weight: 700; color: var(--fair-text); font-size: 15px; }
.phase-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.phase-card__tags span {
  font-size: 13px; padding: 6px 12px; border-radius: 100px;
  background: var(--fair-accent-pale); border: 1px solid var(--fair-accent-light); color: var(--fair-text);
  transition: background 0.25s, color 0.25s;
}
.phase-card__tags span:hover { background: var(--fair-primary); color: #fff; border-color: var(--fair-primary); }

.form-card {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: var(--fair-white); border-radius: 20px; padding: 36px;
  border: 1px solid var(--fair-border);
  box-shadow: var(--fair-shadow);
}
.form-card__ribbon {
  background: linear-gradient(90deg, var(--fair-primary), var(--fair-accent));
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 8px 16px; border-radius: 8px;
  display: inline-block; margin-bottom: 16px;
}
.form-card h2 { font-size: 1.5rem; margin: 0 0 8px; }
.form-card > p { color: var(--fair-muted); font-size: 14px; margin: 0 0 24px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--fair-primary); margin-bottom: 6px;
}
.field input, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--fair-border);
  border-radius: 10px; font-size: 15px; background: var(--fair-cream);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--fair-primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}
.form-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; color: var(--fair-muted); margin-top: 14px;
}

/* BENEFITS */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.benefit {
  background: var(--fair-white); padding: 32px; border-radius: 16px;
  border: 1px solid var(--fair-border); transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--fair-shadow); }
.benefit__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--fair-accent-pale); color: var(--fair-primary);
  display: grid; place-items: center; margin-bottom: 18px; font-size: 22px;
}
.benefit h3 { margin: 0 0 10px; font-size: 1.15rem; }
.benefit p { margin: 0; color: var(--fair-muted); font-size: 14px; }

/* MEDIA HUB — YouTube + Instagram */
.media-hub { padding: 100px 5%; background: var(--fair-white); }
.media-hub__header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.media-hub__grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start;
  max-width: 1280px; margin: 0 auto;
}
.media-block {
  background: var(--fair-cream); border: 1px solid var(--fair-border);
  border-radius: 20px; padding: 28px; overflow: hidden;
}
.media-block__head {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; margin-bottom: 20px;
}
.media-block__head h3 { margin: 0; font-size: 1.2rem; font-weight: 800; }
.media-block__head a {
  font-size: 13px; font-weight: 700; color: var(--fair-primary); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.25s;
}
.media-block__head a:hover { gap: 10px; }
.yt-featured {
  position: relative; width: 100%; padding-bottom: 56.25%; height: 0;
  border-radius: 14px; overflow: hidden; background: #000;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.yt-featured iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.yt-featured iframe.lazy-embed:not([src]) {
  visibility: hidden;
}
.ig-embed-wrap iframe.lazy-embed:not([src]) {
  min-height: 200px;
  background: var(--fair-accent-pale);
}
.yt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px;
}
.yt-card {
  position: relative; padding-bottom: 56.25%; height: 0; border-radius: 12px;
  overflow: hidden; background: #111;
}
.yt-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ig-embed-wrap {
  position: relative; width: 100%; min-height: 520px;
  border-radius: 14px; overflow: hidden; background: var(--fair-white);
  border: 1px solid var(--fair-border);
}
.ig-embed-wrap iframe {
  width: 100%; min-height: 520px; border: 0; display: block;
}
.ig-loading {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--fair-muted); font-size: 14px; background: var(--fair-white);
}
.media-note {
  font-size: 12px; color: var(--fair-muted); margin-top: 14px; text-align: center;
}

/* TIMELINE */
.timeline { display: flex; flex-direction: column; gap: 24px; max-width: 800px; margin: 0 auto; }
.timeline__item {
  display: flex; gap: 28px; padding: 32px; background: var(--fair-white);
  border-radius: 16px; border: 1px solid var(--fair-border);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.timeline__item:hover { border-color: var(--fair-accent); transform: translateX(8px); }
.timeline__step {
  font-size: 2.5rem; font-weight: 900; color: var(--fair-accent-light); line-height: 1;
  min-width: 56px; transition: color 0.35s;
}
.timeline__item:hover .timeline__step { color: var(--fair-primary); }
.timeline__item h3 { margin: 0 0 10px; font-size: 1.2rem; }
.timeline__item p { margin: 0; color: var(--fair-muted); font-size: 15px; }

/* FAQ */
.faq-section { padding-bottom: 48px; }
.faq-list {
  max-width: 800px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--fair-white);
  border: 1px solid var(--fair-border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.04);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 20px;
  list-style: none;
  color: var(--fair-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--fair-primary);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--fair-muted);
  line-height: 1.65;
}
.legal-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  font-size: 13px;
  font-weight: 600;
}
.legal-inline a {
  color: var(--fair-primary);
  text-decoration: none;
  padding: 8px 0;
}
.legal-inline a:hover { text-decoration: underline; }

/* CTA BAND */
.cta-band {
  text-align: center; padding: 80px 5%;
  background: linear-gradient(135deg, var(--fair-primary) 0%, #a00d22 50%, var(--fair-accent) 150%);
  color: #fff;
}
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); margin: 0 0 12px; }
.cta-band p { opacity: 0.92; margin: 0 0 32px; font-size: 1.05rem; }
.cta-band .btn--outline { border-color: #fff; color: #fff; }
.cta-band .btn--outline:hover { background: #fff; color: var(--fair-primary); }
.cta-band__btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* Social pills (footer) */
.social-pill {
  padding: 10px 16px; border-radius: 100px; color: #fff; font-size: 13px;
  font-weight: 600; text-decoration: none; transition: transform 0.25s, filter 0.25s;
  display: inline-flex; align-items: center; justify-content: center;
}
.social-pill:hover { transform: translateY(-2px); filter: brightness(1.1); }
.social-pill--fb { background: #1877f2; }
.social-pill--ig { background: linear-gradient(45deg, #f09433, #dc2743); }
.social-pill--yt { background: #ff0000; }
.social-pill--x { background: #0f172a; }
.social-pill--threads { background: #1a1a1a; border: 1px solid #444; }

/* FOOTER */
.footer {
  background: linear-gradient(180deg, #f8f4ec 0%, #ebe4d4 100%);
  padding: 56px 5% 28px; border-top: 3px solid var(--fair-accent-light);
}
.footer__lead {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 24px; padding: 28px 32px; background: var(--fair-white);
  border-radius: 16px; margin-bottom: 40px; border: 1px solid var(--fair-border);
  box-shadow: var(--fair-shadow);
}
.footer__lead h3 { margin: 0 0 6px; font-size: 1.25rem; color: var(--fair-text); }
.footer__lead p { margin: 0; color: var(--fair-muted); font-size: 14px; }
.footer__form { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__form input {
  padding: 14px 18px; border-radius: 10px; border: 1px solid var(--fair-border);
  min-width: 260px; font-size: 15px; background: var(--fair-cream);
}

.footer__mega {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.95fr 0.95fr;
  gap: 36px 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
}
.footer__mega-brand .footer__brand-mark {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--fair-primary), var(--fair-accent));
  color: #fff; font-size: 14px; font-weight: 900;
  text-decoration: none; margin-bottom: 14px;
}
.footer__mega-brand h4 {
  margin: 0 0 10px; font-size: 1.15rem; color: var(--fair-text);
}
.footer__mega-brand > p {
  font-size: 14px; color: var(--fair-muted); line-height: 1.6;
  margin: 0 0 20px; max-width: 340px;
}
.footer__contact a,
.footer__contact .footer__address {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 0 0 10px; font-size: 13px; line-height: 1.5;
  text-decoration: none; color: var(--fair-text);
}
.footer__contact a:hover { color: var(--fair-primary); }
.footer__address { color: var(--fair-muted); margin-bottom: 0; }
.footer__contact-icon { flex-shrink: 0; width: 1.25em; text-align: center; }

.footer__mega-col h5 {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.6px; color: var(--fair-primary);
  margin: 0 0 8px; padding-bottom: 10px;
  border-bottom: 2px solid var(--fair-accent-light);
}
.footer__col-desc {
  font-size: 13px; color: var(--fair-muted); margin: 0 0 14px; line-height: 1.45;
}
.footer__social-pills {
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
}
.footer__social-pills .social-pill { width: 100%; max-width: 200px; text-align: center; }

.footer__link-list,
.footer__site-list {
  list-style: none; padding: 0; margin: 0;
}
.footer__link-list li { margin-bottom: 8px; }
.footer__link-list a {
  font-size: 14px; color: var(--fair-muted); text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer__link-list a:hover { color: var(--fair-primary); padding-left: 5px; }

.footer__site-list li { margin-bottom: 8px; }
.footer__site-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: var(--fair-white);
  border: 1px solid var(--fair-border); border-radius: 10px;
  text-decoration: none; color: var(--fair-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.footer__site-list a:hover {
  border-color: var(--fair-accent);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.12);
}
.footer__site-list img {
  width: 22px; height: 22px; object-fit: contain; flex-shrink: 0;
}
.footer__site-list span {
  display: flex; flex-direction: column; gap: 1px; min-width: 0;
}
.footer__site-list strong { font-size: 13px; font-weight: 700; }
.footer__site-list small { font-size: 11px; color: var(--fair-muted); font-weight: 500; }

.footer__quick {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 20px; padding: 20px 0; margin-bottom: 8px;
}
.footer__quick-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--fair-muted);
}
.footer__quick a {
  font-size: 13px; font-weight: 600; color: var(--fair-text);
  text-decoration: none; padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer__quick a:hover { color: var(--fair-primary); border-bottom-color: var(--fair-accent); }

.footer__legal {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 20px; margin-bottom: 16px;
}
.footer__legal a {
  font-size: 13px; color: var(--fair-muted); text-decoration: none;
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--fair-primary); }

.footer__bottom {
  text-align: center; padding-top: 8px; font-size: 13px; color: var(--fair-muted);
}
.footer__bottom strong { color: var(--fair-text); }
#subsMsg { font-size: 13px; margin-top: 8px; font-weight: 700; color: var(--fair-primary); }

/* FLOATING WA */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: var(--wa-green);
  color: #fff; display: grid; place-items: center; box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease);
}
.float-wa:hover { transform: scale(1.08); }

/* Below-fold sections: faster paint on scroll (mobile) */
@media (max-width: 768px) {
  .toolkit,
  .media-hub,
  .footer__mega {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
  }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { min-height: 42vh; order: -1; }
  .hero__visual img { clip-path: none; }
  .hero__visual::after {
    background: linear-gradient(180deg, transparent 50%, var(--fair-cream) 100%);
  }
  .hero__content { padding: 40px 5% 60px; max-width: none; }
  .phases-grid { grid-template-columns: 1fr; }
  .form-card { position: static; }
  .benefits-grid { grid-template-columns: 1fr; }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__mega {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
  .footer__mega-brand { grid-column: 1 / -1; }
  .footer__mega-col--social { grid-column: 1 / -1; }
  .footer__social-pills {
    flex-direction: row; flex-wrap: wrap;
  }
  .footer__social-pills .social-pill {
    width: auto; max-width: none; flex: 1 1 calc(50% - 4px);
    min-width: 140px;
  }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .footer__mega { grid-template-columns: 1fr; gap: 28px; }
  .footer__mega-brand,
  .footer__mega-col--social { grid-column: auto; }
  .footer__social-pills .social-pill { flex: 1 1 100%; max-width: none; }
  .footer__quick {
    flex-direction: column; align-items: stretch; text-align: center;
  }
  .footer__quick-label { width: 100%; }
  .nav__countdown, .nav__link--phone { display: none; }
  .nav__inner { padding: 0 16px; gap: 10px; }
  .nav__hub { padding: 6px 10px; font-size: 11px; }
  .nav__hub-long { display: none; }
  .nav__hub-short { display: inline; }
  .nav__brand-text { font-size: 13px; max-width: 32vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav .btn--wa { padding: 10px 12px; font-size: 12px; gap: 6px; min-height: 44px; }
  .nav__wa-text { display: none; }

  .trust-bar__inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-bar { padding: 20px 16px; }
  .media-hub__grid { grid-template-columns: 1fr; }
  .ig-embed-wrap, .ig-embed-wrap iframe { min-height: 420px; }
  .yt-grid { grid-template-columns: 1fr; }
  .media-hub, .toolkit { padding: 64px 16px; }
  .section { padding: 64px 16px; }

  .hero__visual { min-height: 36vh; max-height: 44vh; }
  .hero__content { padding: 24px 16px 40px; }
  .hero h1 { font-size: 2rem; letter-spacing: -0.02em; }
  .hero__stats { gap: 16px; flex-direction: column; }
  .hero__stat { width: 100%; }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; min-height: 48px; font-size: 15px; }

  .phases-grid { gap: 32px; }
  .phase-card { padding: 20px; }
  .form-card { padding: 24px; }
  .footer__lead { flex-direction: column; padding: 24px 16px; text-align: center; }
  .footer__form { width: 100%; flex-direction: column; }
  .footer__form input { width: 100%; min-width: 0; }
  .footer__form .btn { width: 100%; }

  .float-wa {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    right: max(16px, env(safe-area-inset-right, 16px));
    width: 52px;
    height: 52px;
  }
  .cta-band { padding: 56px 16px; }
  .cta-band__btns { flex-direction: column; align-items: stretch; }
  .cta-band__btns .btn { width: 100%; min-height: 48px; }

  .reveal { transform: translateY(12px); }
  .section__title { font-size: 1.65rem; }
  .section__desc { margin-bottom: 32px; font-size: 1rem; }

  .trade-route { flex-wrap: wrap; justify-content: center; }
  .toolkit__grid { gap: 20px; }
  .phase-finder__tabs { flex-direction: column; }
  .phase-tab { flex: 1 1 100%; width: 100%; min-height: 48px; }
  .product-list { grid-template-columns: 1fr; max-height: 280px; }
  .faq-item summary { font-size: 14px; padding: 16px; }
  .legal-inline { flex-direction: column; align-items: center; }
}

@media (hover: none) and (pointer: coarse) {
  .phase-card:hover,
  .benefit:hover,
  .timeline__item:hover,
  .network-link:hover,
  .btn--wa:hover,
  .btn--primary:hover {
    transform: none;
    box-shadow: none;
  }
  .phase-card__tags span:hover {
    background: var(--fair-accent-pale);
    color: var(--fair-text);
    border-color: var(--fair-accent-light);
  }
}
