/* ============================================================
   Freshdi · Supplier Sourcing Service — landing page styles
   Palette & type per PRD §6 (supplier = deep-green + amber tone)
   ============================================================ */

:root {
  /* Brand */
  --green:       #1D9E75;
  --green-700:   #178560;
  --green-dark:  #085041;
  --green-darker:#063b30;
  --amber:       #EF9F27;
  --amber-700:   #cf8413;

  /* Warm dark band (supplier tone) */
  --warm-1:      #1a1208;
  --warm-2:      #3d2505;
  --warm-3:      #5a3608;
  --warm-grad:   linear-gradient(135deg, #1a1208 0%, #3d2505 45%, #5a3608 100%);

  /* Neutrals / text */
  --ink:         #2C2C2A;
  --ink-soft:    #5F5E5A;
  --line:        #E7E4DD;
  --line-soft:   #EFEDE7;

  /* Surfaces */
  --bg:          #FFFFFF;
  --bg-alt:      #F8F7F4;

  /* Tints */
  --green-tint:  #EAF6F0;
  --green-tint2: #DCEFE6;
  --amber-tint:  #FCF1DC;
  --amber-tint2: #FBE8C6;

  /* Radii */
  --r-card: 16px;
  --r-card-sm: 12px;
  --r-btn: 8px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 1px 2px rgba(8,80,65,.06), 0 1px 3px rgba(8,80,65,.05);
  --sh-md: 0 6px 18px rgba(8,80,65,.08), 0 2px 6px rgba(8,80,65,.05);
  --sh-lg: 0 22px 48px rgba(8,80,65,.14), 0 8px 18px rgba(8,80,65,.08);
  --sh-amber: 0 16px 34px rgba(239,159,39,.28);

  --maxw: 1100px;
  --pad-y: 88px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; scroll-snap-type: y proximity; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: "Inter", system-ui, sans-serif; font-weight: 700; line-height: 1.08; color: var(--ink); margin: 0; letter-spacing: -0.022em; }

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--amber-tint2); color: var(--green-dark); }

/* ---------- layout primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; width: 100%; }
.section { padding: 40px 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; scroll-snap-align: start; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--warm-grad); color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-700); font-family: "Inter", sans-serif;
}
.section--dark .eyebrow { color: var(--amber); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }

.section-head { max-width: 680px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 12px 0 0; }
.section-head p { margin-top: 12px; color: var(--ink-soft); font-size: 16px; }
.section--dark .section-head p { color: rgba(255,255,255,.78); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: 16px;
  padding: 14px 24px; border-radius: var(--r-btn); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .16s ease, background .16s ease, box-shadow .16s ease, color .16s ease, border-color .16s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--amber); color: #3a2602; box-shadow: var(--sh-amber); }
.btn-primary:hover { background: var(--amber-700); transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 12px 26px rgba(29,158,117,.28); }
.btn-green:hover { background: var(--green-700); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.32); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); }
.btn-outline { background: #fff; color: var(--green-dark); border-color: var(--line); }
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 14.5px; }
.btn:focus-visible { outline: 3px solid rgba(29,158,117,.45); outline-offset: 3px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.nav-logo img { height: 30px; }
.nav-links { display: flex; gap: 4px; margin-left: 18px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft); padding: 9px 14px; border-radius: var(--r-btn);
  transition: color .15s, background .15s; position: relative;
}
.nav-links a:hover { color: var(--green-dark); background: var(--green-tint); }
.nav-links a.active { color: var(--green-dark); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  border-radius: 2px; background: var(--green); animation: navUnderline .25s ease;
}
@keyframes navUnderline { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }
.nav-spacer { flex: 1; }
.nav-badge {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600;
  color: var(--amber-700); background: var(--amber-tint); border: 1px solid var(--amber-tint2);
  padding: 7px 13px; border-radius: var(--r-pill);
}
.nav-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; color: var(--ink); }
.nav-signup .signup-short { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--warm-grad); color: #fff; overflow: hidden; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; scroll-snap-align: start; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 88% -8%, rgba(239,159,39,.34), transparent 60%),
    radial-gradient(720px 620px at -6% 112%, rgba(133,79,11,.55), transparent 64%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
  padding: 40px 0 48px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); color: #fff;
  padding: 8px 15px; border-radius: var(--r-pill); margin-bottom: 26px;
}
.hero-badge .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(239,159,39,.25); }
.hero h1 { color: #fff; font-size: clamp(40px, 5.6vw, 62px); line-height: 1.04; }
.hero h1 .amber { color: var(--amber); font-style: italic; }
.hero-sub { margin-top: 24px; font-size: 19px; line-height: 1.6; color: rgba(255,255,255,.82); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 12px; margin-top: 40px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.9); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 14px; border-radius: var(--r-pill);
}
.trust-chip svg { width: 16px; height: 16px; color: var(--amber); }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(150deg, #5a3608, #1a1208);
  box-shadow: 0 40px 80px rgba(0,0,0,.34); border: 1px solid rgba(255,255,255,.12);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; background: #fff; color: var(--ink); border-radius: 14px; padding: 14px 16px;
  box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 12px;
}
.hero-float--tl { top: 22px; left: -26px; animation: floaty 5.5s ease-in-out infinite; }
.hero-float--br { bottom: 26px; right: -22px; animation: floaty 6.5s ease-in-out infinite; animation-delay: -2.2s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-float .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.hero-float .ic.green { background: var(--green-tint); color: var(--green-700); }
.hero-float .ic.amber { background: var(--amber-tint); color: var(--amber-700); }
.hero-float .ic svg { width: 20px; height: 20px; }
.hero-float .ft-k { display: block; font-size: 18px; font-weight: 700;  line-height: 1.1; }
.hero-float .ft-l { display: block; font-size: 12.5px; color: var(--ink-soft); }

/* ---------- generic cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px;
  background: var(--green-tint); color: var(--green-700);
}
.card-icon.amber { background: var(--amber-tint); color: var(--amber-700); }
.card-icon svg { width: 26px; height: 26px; }
.card-label { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-700); margin-bottom: 10px; }
.card-label.amber { color: var(--amber-700); }
.card h3 {  font-weight: 700; font-size: 17.5px; letter-spacing: -.01em; }
.card p { margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; }

/* 3 highlight cards — varied / staggered */
.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.highlight-grid .card:nth-child(2) { transform: none; }
.highlight-grid .card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.highlight-grid .card:nth-child(1):hover,
.highlight-grid .card:nth-child(3):hover { transform: translateY(-8px); }
.lead-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: start; margin-bottom: 26px; }

/* service: 2-column — text left, stacked cards right */
.service-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.service-text { position: sticky; top: 96px; }
.service-text p { margin-top: 18px; color: var(--ink-soft); font-size: 16px; }
.service-cards { display: grid; gap: 18px; }
.service-cards .card { display: flex; gap: 18px; align-items: flex-start; }
.service-cards .card-icon { margin-bottom: 0; flex: none; }
.service-cards .card-body { flex: 1; }
.service-cards .card-label { margin-bottom: 6px; }
.lead-row .lead-copy p { color: var(--ink-soft); font-size: 16px; }
.steps-inline { margin-top: 16px; display: grid; gap: 10px; padding-left: 0; list-style: none; }
.steps-inline li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; }
.steps-inline .n { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--green-dark); color: #fff; font-size: 13px; font-weight: 700; display: grid; place-items: center;  margin-top: 2px; }

/* ---------- AM profile ---------- */
.am-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
.am-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 22px; justify-items: start; padding-left: 0; list-style: none; }
.am-bullets li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.am-bullets .tick { flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--green-tint); color: var(--green-700); display: grid; place-items: center; margin-top: 1px; }
.am-bullets .tick svg { width: 15px; height: 15px; }
.am-bullets strong { color: var(--ink); font-weight: 600; }

.am-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px; box-shadow: var(--sh-md);
  position: relative; transition: transform .25s ease, box-shadow .25s ease;
}
.am-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.am-head { display: flex; align-items: center; gap: 16px; }
.am-avatar {
  width: 76px; height: 76px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); box-shadow: var(--sh-sm);
  background: var(--green-tint);
}
.am-name {  font-weight: 700; font-size: 20px; }
.am-role { color: var(--ink-soft); font-size: 14.5px; margin-top: 2px; }
.am-status {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--green-700);
  background: var(--green-tint); padding: 5px 11px; border-radius: var(--r-pill); margin-top: 14px;
}
.am-status .live { width: 8px; height: 8px; border-radius: 50%; background: var(--green); position: relative; }
.am-status .live::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--green); opacity: .5; animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .6; } 100% { transform: scale(1.6); opacity: 0; } }
.am-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.am-skills span { font-size: 12.5px; font-weight: 500; color: var(--green-dark); background: var(--green-tint); border: 1px solid var(--green-tint2); padding: 5px 11px; border-radius: var(--r-pill); }
.am-meta { display: grid; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.am-meta div { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--ink-soft); }
.am-meta svg { width: 17px; height: 17px; color: var(--green-700); flex: none; }

/* ---------- benefits (numbered) ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.benefit {
  background: #fff; padding: 26px 26px; transition: background .2s ease;
}
.benefit:hover { background: var(--green-tint); }
.benefit .num { font-family: "Inter", sans-serif; font-weight: 800; font-size: 26px; color: var(--amber); line-height: 1; letter-spacing: -0.02em; }
.benefit h3 {  font-weight: 700; font-size: 17px; margin-top: 10px; }
.benefit p { margin-top: 7px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- why freshdi (dark, 4 cards) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-card);
  padding: 28px 24px; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: rgba(239,159,39,.5); }
.why-card .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: rgba(239,159,39,.16); color: var(--amber); margin-bottom: 18px; }
.why-card .ic svg { width: 25px; height: 25px; }
.why-card h3 { color: #fff;  font-weight: 700; font-size: 18px; }
.why-card p { color: rgba(255,255,255,.74); font-size: 15px; margin-top: 9px; }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: stretch; }
.pkg {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px 26px; box-shadow: var(--sh-md);
}
.pkg-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green-700); background: var(--green-tint); padding: 6px 12px; border-radius: var(--r-pill); }
.pkg h3 {  font-weight: 700; font-size: 22px; margin-top: 14px; }
.pkg-features { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px; margin-top: 16px; padding-left: 0; list-style: none; }
.pkg-features li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.pkg-features .tick { flex: none; width: 22px; height: 22px; border-radius: 6px; background: var(--green-tint); color: var(--green-700); display: grid; place-items: center; margin-top: 1px; }
.pkg-features .tick svg { width: 14px; height: 14px; }

.price-card { background: linear-gradient(160deg, var(--green-dark), var(--green-darker)); color: #fff; border-radius: 20px; padding: 26px; box-shadow: var(--sh-lg); display: flex; flex-direction: column; justify-content: center; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.price-row:last-of-type { border-bottom: 0; }
.price-row .lbl { font-size: 14.5px; color: rgba(255,255,255,.78); }
.price-row .lbl small { display: block; font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }
.price-row .val {  font-weight: 700; font-size: 22px; text-align: right; white-space: nowrap; }
.price-row .val .per { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6); }
.price-row .val a { color: var(--amber); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.price-row .val a svg { width: 13px; height: 13px; }
.price-callout {
  margin-top: 18px; background: rgba(239,159,39,.16); border: 1px solid rgba(239,159,39,.4); border-radius: 13px;
  padding: 14px 16px; font-size: 14px; line-height: 1.45; display: flex; gap: 12px; align-items: flex-start;
}
.price-callout svg { width: 20px; height: 20px; color: var(--amber); flex: none; margin-top: 1px; }

/* ---------- commission industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px 24px; text-align: left;
  transition: transform .2s ease, box-shadow .2s ease; position: relative; overflow: hidden;
}
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.ind-emoji { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--amber-tint); color: var(--amber-700); }
.ind-emoji svg { width: 26px; height: 26px; }
.ind-card h3 {  font-weight: 700; font-size: 18px; margin-top: 12px; }
.ind-card p { color: var(--ink-soft); font-size: 14px; margin-top: 7px; }
.ind-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.ind-extra .ind-card { display: flex; align-items: center; gap: 18px; }
.ind-extra .ind-emoji { font-size: 28px; }
.ind-extra h3 { margin-top: 0; }
.ind-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 18px; padding: 14px 18px; background: var(--amber-tint); border: 1px solid var(--amber-tint2); border-radius: 13px; font-size: 14px; color: #6b4d12; }
.ind-note svg { width: 19px; height: 19px; color: var(--amber-700); flex: none; margin-top: 2px; }

/* ---------- AM capabilities (8) ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card-sm); padding: 24px 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.cap:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--green-tint2); }
.cap .ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--green-tint); color: var(--green-700); margin-bottom: 15px; }
.cap .ic svg { width: 22px; height: 22px; }
.cap h3 {  font-weight: 700; font-size: 16px; }
.cap p { color: var(--ink-soft); font-size: 13.5px; margin-top: 6px; }

/* ---------- accordion ---------- */
.acc { display: grid; grid-template-columns: repeat(2, 1fr); align-items: start; gap: 14px; max-width: none; }
.acc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card-sm); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.acc-item.open { box-shadow: var(--sh-md); border-color: var(--green-tint2); }
.acc-btn {
  width: 100%; display: flex; align-items: center; gap: 13px; text-align: left; cursor: pointer;
  background: none; border: 0; padding: 18px 18px;  font-size: 15.5px; font-weight: 600; color: var(--ink);
}
.acc-btn .idx { flex: none; width: 28px; height: 28px; border-radius: 8px; background: var(--green-tint); color: var(--green-700); font-size: 13px; font-weight: 700; display: grid; place-items: center; }
.acc-item.open .acc-btn .idx { background: var(--green-dark); color: #fff; }
.acc-btn .ttl { flex: 1; }
.acc-btn .chev { flex: none; transition: transform .25s ease; color: var(--green-700); }
.acc-item.open .acc-btn .chev { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-panel-inner { padding: 0 18px 18px 18px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- how to join (timeline) ---------- */
.join { max-width: 820px; margin: 4px auto 0; display: block;}
.join-step { display: flex; gap: 24px; }
.join-rail { display: flex; flex-direction: column; align-items: center; flex: none; }
.join-circle {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  background: var(--green-dark); color: #fff;  font-weight: 700; font-size: 19px;
  display: grid; place-items: center; box-shadow: 0 6px 14px rgba(8,80,65,.22);
  position: relative; transition: transform .35s ease;
}
.join-circle::before {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--green); opacity: 0; transform: scale(.6);
  transition: opacity .4s ease, transform .4s ease;
}
.join-step.in .join-circle { transform: scale(1.06); }
.join-step.in .join-circle::before { opacity: .5; transform: scale(1); }
.join-circle.amber { background: var(--amber); color: #3a2602; box-shadow: 0 6px 16px rgba(239,159,39,.32); }
.join-step.in .join-circle.amber::before { border-color: var(--amber); }
.join-vline { flex: 1; width: 2px; background: var(--line); margin: 6px 0; min-height: 26px; position: relative; overflow: hidden; }
.join-vline::after {
  content: ""; position: absolute; inset: 0; background: var(--green);
  transform: scaleY(0); transform-origin: top; transition: transform .7s ease;
}
.join-step.in .join-vline::after { transform: scaleY(1); }
.join-body {
  flex: 1; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 22px 24px; box-shadow: var(--sh-sm); margin-bottom: 22px;
}
.join-step:last-child .join-body { margin-bottom: 0; }
.join-title {  font-weight: 700; font-size: 18px; }
.join-desc { margin-top: 8px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.join-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.join-tag {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500;
  color: var(--green-dark); background: var(--green-tint); border: 1px solid var(--green-tint2);
  padding: 6px 12px; border-radius: var(--r-pill);
}
.join-tag svg { width: 14px; height: 14px; color: var(--green-700); flex: none; }
.join-tag.amber { color: #6b4d12; background: var(--amber-tint); border-color: var(--amber-tint2); }
.join-tag.amber svg { color: var(--amber-700); }

.join-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-top: 36px; padding: 26px 32px; border-radius: 20px;
  background: linear-gradient(160deg, var(--green-dark), var(--green-darker)); color: #fff; box-shadow: var(--sh-lg);
}
.join-cta-title {  font-weight: 700; font-size: 20px; }
.join-cta-sub { margin-top: 5px; color: rgba(255,255,255,.78); font-size: 15px; }

/* ---------- form ---------- */
.form-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.form-aside h2 { font-size: clamp(30px, 4vw, 42px); }
.form-aside p { margin-top: 18px; color: rgba(255,255,255,.8); font-size: 17px; }
.form-aside .aside-list { margin-top: 28px; display: grid; gap: 16px; padding-left: 0; list-style: none; }
.form-aside .aside-list li { display: flex; gap: 13px; align-items: flex-start; color: rgba(255,255,255,.9); font-size: 15.5px; }
.form-aside .aside-list .tick { flex: none; width: 26px; height: 26px; border-radius: 8px; background: rgba(239,159,39,.18); color: var(--amber); display: grid; place-items: center; }
.form-aside .aside-list svg { width: 15px; height: 15px; }

.form-card { background: #fff; border-radius: 20px; padding: 36px; box-shadow: var(--sh-lg); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
label .req { color: var(--amber-700); }
input, select, textarea {
  width: 100%; font-family: "Inter", sans-serif; font-size: 13px; color: var(--ink);
  padding: 10px 12px; border: 1.5px solid var(--line); border-radius: var(--r-btn); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
textarea { resize: vertical; min-height: 90px; }
select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235F5E5A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
}
/* Phone field: code picker must not stretch to full-width (overrides width:100% above) */
.phone-group > select {
  flex: 4 1 0;
  width: auto;
  min-width: 0;
}
input::placeholder, textarea::placeholder { font-size: 12px; color: var(--ink-soft); opacity: .9; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(29,158,117,.16); }
input.invalid, select.invalid, textarea.invalid { border-color: var(--amber-700); box-shadow: 0 0 0 4px rgba(239,159,39,.14); }
.err-msg { display: none; color: #b4540a; font-size: 13px; margin-top: 6px; }
.field.error .err-msg { display: block; }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--green-tint); color: var(--green); display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 {  font-weight: 700; font-size: 22px; }
.form-success p { margin-top: 10px; color: var(--ink-soft); }

/* ---------- footer ---------- */
.footer { background: #fff; border-top: 1px solid var(--line); padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo img { height: 32px; }
.footer-blurb { color: var(--ink-soft); font-size: 14.5px; margin-top: 16px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-soft); transition: all .15s; }
.footer-social a:hover { color: var(--green-700); border-color: var(--green-tint2); background: var(--green-tint); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {  font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 14.5px; padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: var(--green-700); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line-soft); color: var(--ink-soft); font-size: 13.5px; }
.footer-bottom .verified { display: inline-flex; align-items: center; gap: 7px; color: var(--green-700); font-weight: 600; }
.footer-bottom .verified svg { width: 16px; height: 16px; }

/* photo fallback (resilient if a remote image fails) */
.photo-fill { position: relative; }
.photo-fill img { transition: opacity .4s ease; }
.photo-fill img.broken { opacity: 0; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-float--tl { left: 8px; }
  .hero-float--br { right: 8px; }
}
@media (max-width: 860px) {
  :root { --pad-y: 56px; }
  html { scroll-snap-type: none; }
  .section, .hero { min-height: 0; display: block; }
  .section { padding: var(--pad-y) 0; }
  .hero-grid { padding: 116px 28px 96px; }
  .nav-links, .nav-badge { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { gap: 12px; }
  .nav-signup { padding: 9px 14px; }
  .nav-signup .signup-full { display: none; }
  .nav-signup .signup-short { display: inline; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 20px 18px; gap: 4px; margin: 0;
  }
  .nav.open .nav-badge { display: inline-flex; position: absolute; top: 84px; right: 20px; }
  /* Drawer: active item marked by a left vertical bar instead of underline */
  .nav.open .nav-links a.active::after {
    left: 0; right: auto; top: 6px; bottom: 6px; width: 3px; height: auto;
    border-radius: 3px; animation: none;
  }
  .nav.open .nav-links a.active { background: var(--green-tint); }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding: 124px 28px 108px; }
  .hero-visual { max-width: 420px; }
  .hero-float--tl { left: 0; }
  .hero-float--br { right: 0; }
  .lead-row, .am-grid, .pricing-grid, .form-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-split { grid-template-columns: 1fr; gap: 32px; }
  .service-text { position: static; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-grid .card:nth-child(2) { transform: none; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .acc { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .am-grid .am-card { max-width: 420px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 17px; }
  /* Hero CTA: keep both buttons on one row */
  .hero-cta { flex-direction: row; flex-wrap: nowrap; gap: 10px; align-items: stretch; }
  .hero-cta .btn { flex: 1 1 0; width: auto; min-width: 0; padding: 12px 10px; font-size: 13.5px; text-align: center; line-height: 1.2; }
  .hero-cta .btn svg { display: none; }
  .am-bullets, .pkg-features, .ind-extra { grid-template-columns: 1fr; }
  .benefit-grid, .why-grid, .cap-grid, .ind-grid { grid-template-columns: 1fr; }
  .acc { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .acc-panel-inner { padding-left: 24px; }
  .hero-float { display: none; }
  /* Hero: photo sits beside the subtitle; trust chips wrap full-width below */
  .hero-grid {
    grid-template-columns: 1fr 150px;
    grid-template-areas:
      "badge badge"
      "title title"
      "sub   photo"
      "cta   cta"
      "trust trust";
    column-gap: 16px; row-gap: 22px; align-items: start; padding: 132px 20px 116px;
  }
  .hero-copy, .hero-visual { display: contents; }
  .hero-badge { grid-area: badge; margin: 0; justify-self: start; }
  .hero h1 { grid-area: title; margin: 0; }
  .hero-sub { grid-area: sub; margin-top: 0; max-width: none; font-size: 15px; line-height: 1.55; align-self: start; }
  .hero-cta { grid-area: cta; margin-top: 0; }
  .hero-trust { grid-area: trust; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 8px; margin-top: 4px; }
  .hero-trust .trust-chip { font-size: 11.5px; padding: 7px 10px; gap: 6px; justify-content: center; }
  .hero-trust .trust-chip svg { width: 13px; height: 13px; }
  .hero-photo { grid-area: photo; align-self: start; aspect-ratio: 3/4; }
  /* AM capabilities: icon + text on one row to save vertical space */
  .cap { display: grid; grid-template-columns: auto 1fr; gap: 2px 14px; align-items: start; padding: 18px 18px; }
  .cap .ic { grid-row: 1 / span 2; margin-bottom: 0; align-self: start; width: 40px; height: 40px; }
  .cap h3 { align-self: center; }
  /* why-freshdi + industry cards: icon inline with text */
  .why-card, .ind-grid .ind-card { display: grid; grid-template-columns: auto 1fr; gap: 2px 14px; align-items: start; }
  .why-card .ic, .ind-grid .ind-card .ind-emoji { grid-row: 1 / span 2; margin-bottom: 0; align-self: start; }
  .why-card h3, .ind-grid .ind-card h3 { align-self: center; margin-top: 0; }
  .why-card .ic { width: 42px; height: 42px; }
  .join-cta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .join-cta .btn { width: 100%; }
  .form-card { padding: 24px 20px; }
  /* contact form: keep 2 columns + tighten so it fits one screen */
  .field-row { gap: 12px; }
  .field { margin-bottom: 12px; }
  #consult .form-aside { margin-bottom: 4px; }
  #consult input, #consult select { padding: 11px 12px; font-size: 15px; }
  #consult select { padding-right: 38px; }
  #consult label { margin-bottom: 5px; font-size: 13.5px; }
  .form-aside h2 { font-size: 28px; }
  .section-head h2, .pkg h3 { letter-spacing: -0.018em; }
  .price-row { flex-wrap: wrap; }
  .join-step { gap: 16px; }
  .join-body { padding: 18px 18px; }
}
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 31px; }
  .btn { padding: 13px 18px; font-size: 15px; }
  .nav-logo img { height: 26px; }
  .join-circle { width: 40px; height: 40px; font-size: 16px; }
  .nav-inner { gap: 8px; }
  .nav-signup, .nav-inner .btn-green.btn-sm { padding: 8px 12px; font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr 124px; column-gap: 12px; padding: 124px 16px 108px; }
  .hero-cta .btn { font-size: 12.5px; padding: 11px 8px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .am-status .live::after { animation: none; }
  .hero-float--tl, .hero-float--br { animation: none; }
}

/* ---- authoritative mobile hero spacing (defeats any cascade conflict) ---- */
@media (max-width: 860px) {
  section.hero .hero-grid { padding-top: 56px !important; padding-bottom: 56px !important; }
}
@media (max-width: 640px) {
  section.hero .hero-grid { padding-top: 60px !important; padding-bottom: 60px !important; }
}

/* ---- multi-select widget (fd-ms) ---- */
.fd-ms { position: relative; width: 100%; min-width: 0; }
.fd-ms__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding: 0 12px; min-height: 49px; background: var(--bg);
  border: 1.5px solid var(--line); border-radius: 8px; cursor: pointer;
  text-align: left; font-size: 13px; color: var(--ink);
  transition: border-color .15s;
}
.fd-ms__trigger:hover { border-color: var(--green); }
.fd-ms.is-open .fd-ms__trigger { border-color: var(--green); box-shadow: 0 0 0 3px rgba(29,158,117,.12); }
.fd-ms__display { flex: 1; min-width: 0; display: flex; flex-wrap: wrap; gap: 4px; padding: 5px 0; }
.fd-ms__placeholder { color: var(--ink-soft); font-size: 12px; }
.fd-ms__chip {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--green-tint); color: var(--green-dark);
  border-radius: 4px; padding: 2px 6px; font-size: 12.5px;
  max-width: 100%; overflow: hidden;
}
.fd-ms__chip-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.fd-ms__chip-rm {
  background: none; border: none; padding: 0; cursor: pointer; line-height: 1;
  color: var(--green-700); font-size: 15px; display: flex; align-items: center;
}
.fd-ms__chip-rm:hover { color: var(--green-dark); }
.fd-ms__arrow { flex-shrink: 0; transition: transform .2s; color: var(--ink-soft); }
.fd-ms.is-open .fd-ms__arrow { transform: rotate(180deg); }
.fd-ms__panel {
  position: absolute; z-index: 200; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: 8px; box-shadow: var(--sh-md); overflow: hidden;
}
.fd-ms__search-wrap { padding: 8px; border-bottom: 1px solid var(--line-soft); }
.fd-ms__search {
  width: 100%; padding: 6px 10px; border: 1.5px solid var(--line);
  border-radius: 6px; font: inherit; font-size: 13px; outline: none; box-sizing: border-box;
}
.fd-ms__search:focus { border-color: var(--green); }
.fd-ms__list { list-style: none; margin: 0; padding: 4px 0; max-height: 220px; overflow-y: auto; }
.fd-ms__item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px; cursor: pointer; font-size: 13.5px; color: var(--ink);
  transition: background .1s;
}
.fd-ms__item:hover { background: var(--bg-alt); }
.fd-ms__item.is-selected { background: var(--green-tint); }
.fd-ms__item-check {
  width: 16px; height: 16px; flex-shrink: 0; border: 1.5px solid var(--line);
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all .1s;
}
.fd-ms__item.is-selected .fd-ms__item-check { background: var(--green); border-color: var(--green); }
.fd-ms__item-check svg { display: none; }
.fd-ms__item.is-selected .fd-ms__item-check svg { display: block; }
