/* ============= HONEYBEE FULFILLMENT — SHARED DESIGN SYSTEM ============= */
/* Editorial-corporate · modern honeycomb motifs · restrained gradients · dark sections */

/* ============= TOKENS ============= */
:root {
  /* Warm ink — text */
  --ink-900: #14110b;
  --ink-700: #2a2418;
  --ink-500: #5e5a52;
  --ink-300: #8a857c;
  --ink-200: #b5b1a7;

  /* Surfaces — neutral-warm */
  --line:    #ebe8e0;
  --line-2:  #d9d5cb;
  --bg:        #ffffff;
  --bg-soft:   #fafaf7;
  --bg-cream:  #fffaee;

  /* Honey — focused accent only */
  --honey-50:  #fffbed;
  --honey-100: #fff3c4;
  --honey-200: #ffe588;
  --honey-300: #ffd24a;
  --honey-400: #f5b800;
  --honey-500: #e89e00;
  --honey-600: #c47a00;
  --honey-700: #9a5e00;
  --honey-900: #5c3800;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-btn: 8px;
  --radius-card: 16px;

  --section-pad: 112px;

  --shadow-sm: 0 1px 2px rgba(20,17,11,.04);
  --shadow:    0 4px 14px rgba(20,17,11,.05), 0 1px 3px rgba(20,17,11,.04);
  --shadow-lg: 0 16px 40px rgba(20,17,11,.10), 0 4px 12px rgba(20,17,11,.05);

  --grad-honey:     linear-gradient(135deg, var(--honey-300) 0%, var(--honey-500) 100%);
  --grad-honey-dim: linear-gradient(135deg, var(--honey-400) 0%, var(--honey-600) 100%);
  --grad-ink:       linear-gradient(180deg, #1f1a10 0%, #14110b 100%);
}

/* ============= HEX TEXTURE UTILITY ============= */
.hex-texture {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='49' viewBox='0 0 56 49'><polygon points='28,1 54,15 54,34 28,48 2,34 2,15' fill='none' stroke='%23ffd24a' stroke-width='0.6' opacity='0.18'/></svg>");
  background-size: 56px 49px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 75%);
}
.hex-texture--corner {
  mask-image: radial-gradient(ellipse at 100% 0%, black, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black, transparent 60%);
}
.hex-texture--bottom-left {
  mask-image: radial-gradient(ellipse at 0% 100%, black, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 0% 100%, black, transparent 60%);
}

/* ============= BASE ============= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 72px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-wide { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ============= TYPOGRAPHY ============= */
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.08;
  color: var(--ink-900);
}
h1 { font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.028em; line-height: 1.04; }
h2 { font-size: clamp(30px, 3.4vw, 44px); }
h3 { font-size: 22px; letter-spacing: -0.015em; }
h4 { font-size: 17px; letter-spacing: -0.005em; font-family: 'Inter', sans-serif; font-weight: 600; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; color: var(--ink-900); }
.lede { font-size: 17px; color: var(--ink-500); line-height: 1.6; font-family: 'Inter', sans-serif; }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 20px;
  border-radius: 8px; font-weight: 500;
  font-size: 14px; cursor: pointer; border: 1px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--ink-900); color: #ffffff; }
.btn-primary:hover { background: #2a2418; }
.btn-honey {
  background: var(--grad-honey); color: var(--ink-900);
  border-color: rgba(20,17,11,.06);
  box-shadow: 0 4px 12px rgba(245,184,0,.22);
}
.btn-honey:hover { background: var(--grad-honey-dim); box-shadow: 0 6px 16px rgba(245,184,0,.28); }
.btn-pill { background: #ffffff; color: var(--ink-900); border-color: var(--line); }
.btn-pill:hover { border-color: var(--ink-900); }
.btn-ghost { background: transparent; color: var(--ink-900); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink-900); background: var(--bg-soft); }
.btn-link {
  background: transparent; color: var(--ink-900); padding: 0; height: auto;
  border-bottom: 1px solid var(--ink-900); border-radius: 0;
}
.btn-ink { background: var(--ink-900); color: #ffffff; }
.btn-ink:hover { background: #2a2418; }
.btn .arrow {
  width: 14px; height: 14px;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>") center/contain no-repeat;
  background-color: currentColor;
}

/* ============= LOGO ============= */
.logo-img { display: block; height: 40px; width: auto; transition: filter .25s ease; }
@media (max-width: 500px) { .logo-img { height: 34px; } }

/* ============= NAV ============= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav--floating {
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom: 0;
  padding-top: 10px;
  transition: color .25s ease, padding-top .25s ease;
}
.nav--floating .nav-inner {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding-left: 20px; padding-right: 12px;
  box-shadow: 0 6px 24px -12px rgba(20,17,11,0.18);
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease, height .25s ease, border-radius .25s ease, padding-left .25s ease, padding-right .25s ease;
}
.nav--at-top { color: #ffffff; padding-top: 0; backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav--at-top .logo-img { filter: brightness(0) invert(1); }
.nav--at-top .nav-links { color: rgba(255,255,255,0.78); }
.nav--at-top .nav-links a:hover { color: #ffffff; }
.nav--at-top .nav-cta .login { color: rgba(255,255,255,0.78); }
.nav--at-top .nav-cta .login:hover { color: #ffffff; }
.nav--at-top .nav-inner {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  height: 72px;
  padding-left: 28px; padding-right: 28px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: inline-flex; align-items: center; }
.nav-links {
  display: flex; gap: 32px; font-size: 14px; font-weight: 500;
  color: var(--ink-500); font-family: 'Inter', sans-serif;
  align-items: center; letter-spacing: -0.005em; transition: color .25s ease;
}
.nav-links a { position: relative; padding: 6px 0; transition: color .15s ease; }
.nav-links a:hover, .nav-links a.is-current { color: var(--ink-900); }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown-trigger::after {
  content: ""; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform .15s ease;
}
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #ffffff;
  border: 1px solid var(--line); border-radius: 12px;
  padding: 6px; min-width: 230px;
  box-shadow: 0 12px 32px rgba(20,17,11,0.08);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 6px;
  font-size: 14px; white-space: nowrap; color: var(--ink-500);
}
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--ink-900); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .login { font-size: 14px; color: var(--ink-500); font-weight: 500; }
.nav-cta .login:hover { color: var(--ink-900); }
@media (max-width: 880px) { .nav-links { display: none; } .nav-cta .login { display: none; } }

/* ============= BREADCRUMB ============= */
.breadcrumb {
  background: transparent;
  padding: 14px 0;
  font-size: 13px; color: var(--ink-500);
}
.breadcrumb-inner ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb-inner li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb-inner li + li::before {
  content: "/"; color: var(--ink-300); font-weight: 400;
}
.breadcrumb-inner a { color: var(--ink-500); transition: color .15s ease; }
.breadcrumb-inner a:hover { color: var(--ink-900); }
.breadcrumb-inner li[aria-current="page"] { color: var(--ink-900); font-weight: 500; }

/* Breadcrumb overlaid on the hero video */
.breadcrumb--on-hero {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  padding: 14px 0;
  color: rgba(255,255,255,.7);
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}
.breadcrumb--on-hero .breadcrumb-inner a { color: rgba(255,255,255,.75); }
.breadcrumb--on-hero .breadcrumb-inner a:hover { color: #fff; }
.breadcrumb--on-hero .breadcrumb-inner li[aria-current="page"] { color: #fff; }
.breadcrumb--on-hero .breadcrumb-inner li + li::before { color: rgba(255,255,255,.4); }

/* ============= HERO (video bg + restrained overlay) ============= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
  padding: 124px 0 104px;
  overflow: hidden;
  background: #14110b;
  isolation: isolate;
  color: #fff;
}
.hero--compact { min-height: 48vh; padding: 104px 0 72px; }
@media (max-width: 720px) { .hero--compact { min-height: 0; padding: 88px 0 56px; } }
.hero-video {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-fallback {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, #2a2418 0%, #14110b 100%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 12% 15%, rgba(245,184,0,0.16), transparent 60%),
    radial-gradient(620px 520px at 82% 52%, rgba(245,184,0,0.22), transparent 66%),
    linear-gradient(180deg, rgba(20,17,11,0.55) 0%, rgba(20,17,11,0.78) 100%);
}
.hero .hex-texture { z-index: 2; opacity: 0.5; }

.hero-grid {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--honey-300);
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}
.hero-eyebrow::before {
  content: ""; width: 18px; height: 1px; background: var(--honey-300);
}
.hero-eyebrow .badge {
  display: inline-flex; align-items: center;
  padding: 2px 9px; border-radius: 999px;
  background: var(--honey-300); color: var(--ink-900);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 { color: #fff; margin-bottom: 22px; max-width: 640px; font-size: clamp(40px, 5vw, 64px); line-height: 1.04; letter-spacing: -0.028em; }
.hero h1 em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(135deg, #fff3c4 0%, #ffd24a 60%, #f5b800 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  padding-right: 0.04em;
}
.hero p.lede { max-width: 520px; margin-bottom: 8px; color: rgba(255,255,255,0.74); font-size: 18px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 8px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin-top: 32px; padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  align-items: end;
}
@media (max-width: 560px) { .hero-stats { gap: 24px; } }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat b {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 32px; line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  display: inline-flex; align-items: baseline;
}
.hero-stat b .cur { font-size: 18px; color: var(--honey-300); margin-right: 1px; }
.hero-stat span {
  font-size: 12px; color: rgba(255,255,255,0.62);
  letter-spacing: 0.02em; line-height: 1.35;
}
.hero-trust {
  display: flex; align-items: center; gap: 22px; margin-top: 24px;
  color: rgba(255,255,255,0.62); font-size: 13px; flex-wrap: wrap;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--honey-300); }

/* ===== Multi-step lead picker ===== */
.quiz-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 28px 32px;
  box-shadow: 0 28px 70px rgba(20,17,11,.28), 0 8px 22px rgba(20,17,11,.12);
  width: 100%;
}
.quiz-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--honey-300) 0%, var(--honey-500) 100%);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.quiz-card-flag {
  position: absolute;
  top: -14px; left: 22px;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ink-900);
  color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 7px 13px 7px 11px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 6px 16px rgba(20,17,11,.22);
}
.quiz-card-flag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--honey-300);
  box-shadow: 0 0 8px rgba(255,210,74,.85);
}

.quiz-meta { display: flex; align-items: center; gap: 12px; margin: 8px 0 20px; }
.quiz-back {
  display: inline-flex; align-items: center; gap: 4px;
  background: transparent; border: 0; cursor: pointer; padding: 0;
  font-family: inherit; font-size: 12px; font-weight: 500;
  color: var(--ink-300);
  transition: color .15s ease;
  flex-shrink: 0;
}
.quiz-back[hidden] { display: none; }
.quiz-back:hover { color: var(--ink-700); }
.quiz-back::before {
  content: ""; width: 10px; height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a857c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 18 9 12 15 6'/></svg>") center/contain no-repeat;
}
.quiz-progress-bar { display: flex; flex: 1; gap: 5px; }
.quiz-progress-bar span {
  flex: 1; height: 4px;
  background: var(--line);
  border-radius: 999px;
  transition: background .3s ease;
}
.quiz-card[data-current-step="1"] .quiz-progress-bar span:nth-child(1),
.quiz-card[data-current-step="2"] .quiz-progress-bar span:nth-child(-n+2),
.quiz-card[data-current-step="3"] .quiz-progress-bar span {
  background: linear-gradient(90deg, var(--honey-300) 0%, var(--honey-500) 100%);
}
.quiz-progress {
  font-size: 11.5px; color: var(--ink-300); font-weight: 500;
  pointer-events: none; font-variant-numeric: tabular-nums; flex-shrink: 0;
}
.quiz-progress strong { color: var(--ink-700); font-weight: 600; }
.quiz-step h3 {
  font-size: 20px; margin-bottom: 6px;
  letter-spacing: -0.015em; line-height: 1.25;
  font-family: 'Fraunces', serif; font-weight: 500;
}
.quiz-step .sub { font-size: 13.5px; color: var(--ink-500); margin-bottom: 18px; line-height: 1.5; }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.opt {
  display: flex; align-items: center; gap: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .15s ease, background-color .15s ease;
  min-height: 60px;
}
.opt:hover { border-color: var(--ink-900); background: var(--bg-soft); }
.opt-ic {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--ink-700);
}
.opt-ic svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.opt:hover .opt-ic { background: var(--honey-50); border-color: var(--honey-400); color: var(--honey-700); }
.opt-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.opt-title { font-size: 13.5px; font-weight: 600; color: var(--ink-900); letter-spacing: -0.005em; line-height: 1.2; }
.opt-sub { font-size: 11.5px; color: var(--ink-500); line-height: 1.25; }

.field { margin-bottom: 10px; }
.field label {
  display: block; font-size: 12px; font-weight: 500; color: var(--ink-500);
  margin-bottom: 5px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px;
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 14px; font-family: inherit;
  background: #fff; color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: var(--ink-200); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink-900);
  box-shadow: 0 0 0 3px rgba(20,17,11,.08);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quiz-card .btn-honey {
  width: 100%; justify-content: center;
  height: 50px; font-size: 14.5px; font-weight: 600;
  margin-top: 14px;
  box-shadow: 0 8px 22px rgba(245,184,0,.28);
}
.quiz-card .btn-honey:hover { box-shadow: 0 10px 26px rgba(245,184,0,.38); }
.lead-trust { font-size: 12px; color: var(--ink-300); margin-top: 10px; text-align: center; }
.quiz-summary { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.quiz-summary .chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-soft); color: var(--ink-700);
  font-size: 11.5px; font-weight: 500;
  padding: 4px 10px; border-radius: 6px;
  border: 1px solid var(--line);
}

/* ============= BRAND BAR ============= */
.brand-bar {
  background: var(--bg-soft);
  padding: 28px 0;
  color: var(--ink-500);
  border-bottom: 1px solid var(--line);
}
.brand-bar-cap {
  text-align: center;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-300); text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}
.brand-bar-row {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 56px;
}
.brand-bar-row a, .brand-bar-row span {
  color: var(--ink-700); font-weight: 600; letter-spacing: -0.005em;
  font-size: 16px; font-family: 'Inter', sans-serif;
  transition: color .15s ease;
}
.brand-bar-row a:hover { color: var(--ink-900); }
.brand-bar-row .italic { font-style: italic; font-weight: 500; font-size: 17px; font-family: 'Fraunces', serif; }
.brand-bar-row .brand-anchor span {
  color: var(--ink-900);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--honey-400);
}

/* ============= SECTION ============= */
section { padding: 112px 0; }
.section-head { max-width: 760px; margin: 0 auto 64px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--honey-700); text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}
.section-head .eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--honey-500); }
.section-head h2 { margin-bottom: 16px; max-width: 720px; }
.section-head.center h2 { margin-left: auto; margin-right: auto; }
.section-head p { font-size: 17px; color: var(--ink-500); max-width: 620px; line-height: 1.6; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ============= SERVICES (card grid) ============= */
.services { position: relative; background: #ffffff; }
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 1080px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  padding: 32px 28px 30px;
  min-height: 300px;
  background: #ffffff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: background-color .2s ease;
}
.service-card:hover { background: var(--bg-soft); }
.service-card--featured { background: linear-gradient(180deg, var(--bg-cream) 0%, #ffffff 70%); }
.service-card--featured:hover { background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-soft) 100%); }
.service-card--featured .ic { background: var(--grad-honey); border-color: var(--honey-400); }
.service-card--featured .ic svg { stroke: var(--ink-900); }
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  display: inline-flex; align-items: center;
  padding: 3px 9px; border-radius: 4px;
  background: var(--ink-900); color: var(--honey-300);
  font-size: 10px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.service-card .ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--honey-50);
  border: 1px solid var(--honey-100);
  display: grid; place-items: center; margin-bottom: 22px;
}
.service-card .ic svg { width: 22px; height: 22px; stroke: var(--honey-700); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 20px; margin-bottom: 8px; color: var(--ink-900); }
.service-card p { font-size: 14px; color: var(--ink-500); line-height: 1.6; margin-bottom: 22px; flex: 1; }
.service-card .pill {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-900);
  padding: 0; border-bottom: 1px solid var(--ink-900);
  font-size: 13px; font-weight: 500;
  transition: gap .15s ease;
}
.service-card:hover .pill { gap: 10px; }
.service-card .pill .arrow { width: 12px; height: 12px; }

/* ============= PILLARS (legacy 3-col feature row, retitled to fit editorial system) ============= */
.pillars { background: #ffffff; padding: 112px 0; }
.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 880px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px 30px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.pillar:hover { border-color: var(--ink-700); box-shadow: var(--shadow); }
.pillar .ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--honey-50);
  border: 1px solid var(--honey-100);
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--honey-700);
}
.pillar .ic svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 {
  font-size: 21px; margin-bottom: 12px;
  font-family: 'Fraunces', serif; font-weight: 500;
  letter-spacing: -0.015em; line-height: 1.2;
}
.pillar h3 em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(135deg, var(--honey-500) 0%, var(--honey-700) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.pillar p { font-size: 14.5px; color: var(--ink-500); line-height: 1.6; }
.pillar p b { color: var(--ink-900); font-weight: 600; }

/* ============= PROOF / DAILY PHOTOS ============= */
.proof { background: var(--bg-soft); padding: 112px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px;
  align-items: center;
}
@media (max-width: 920px) { .proof-grid { grid-template-columns: 1fr; gap: 48px; } }
.proof-text .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--honey-700); text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px; font-family: 'Inter', sans-serif;
}
.proof-text .eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--honey-500); }
.proof-text h2 { font-size: clamp(30px, 3.4vw, 44px); letter-spacing: -0.022em; line-height: 1.08; margin-bottom: 22px; }
.proof-text .lede { font-size: 17px; color: var(--ink-500); max-width: 520px; margin-bottom: 24px; line-height: 1.6; }
.proof-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.proof-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px; color: var(--ink-700); line-height: 1.55;
}
.proof-list li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 12px; height: 1px;
  background: var(--honey-500);
}
.proof-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-900);
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-left: auto;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 920px) { .proof-photo { aspect-ratio: 16 / 10; margin: 0 auto; } }
.proof-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.proof-photo .stamp {
  position: absolute; left: 18px; top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(20,17,11,0.82);
  color: rgba(255,255,255,0.94);
  font-size: 12px; font-weight: 500;
  backdrop-filter: blur(6px);
}
.proof-photo .stamp .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--honey-300);
}

/* ============= HOW IT WORKS (legacy 3-step, editorial) ============= */
.how { background: var(--bg-soft); padding: 112px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; } }
.how-step {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px 28px;
  position: relative;
}
.how-step .num {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 28px;
  color: var(--honey-700);
  line-height: 1; letter-spacing: -0.025em;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.how-step h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.012em; }
.how-step p { font-size: 14px; color: var(--ink-500); line-height: 1.6; }

/* ============= QUOTE / BUILT BY OPERATORS ============= */
section.quote {
  background: #ffffff;
  padding: 112px 0;
}
.quote-card {
  position: relative;
  background: var(--ink-900);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 52px 56px 44px;
  max-width: 860px; margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}
.quote-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(700px 400px at 90% 110%, rgba(245,184,0,0.16), transparent 60%);
}
.quote-card > * { position: relative; z-index: 1; }
.quote-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--honey-300); text-transform: uppercase;
  margin-bottom: 28px; font-family: 'Inter', sans-serif;
}
.quote-tag::before { content: ""; width: 18px; height: 1px; background: var(--honey-400); }
.quote-text {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 26px; line-height: 1.35; letter-spacing: -0.015em;
  color: #ffffff; margin-bottom: 28px;
  max-width: 720px;
}
.quote-text em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(135deg, #fff3c4 0%, #ffd24a 60%, #f5b800 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.quote-byline {
  display: inline-flex; align-items: center; gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 13px; color: rgba(255,255,255,0.62);
  letter-spacing: -0.005em;
}
.quote-byline-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--honey-300);
}

/* ============= PRICING — CARDS ============= */
.pricing {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--honey-100);
  border-bottom: 1px solid var(--honey-100);
}
.pricing-head {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 64px; margin-bottom: 56px; align-items: end;
}
@media (max-width: 880px) { .pricing-head { grid-template-columns: 1fr; gap: 20px; align-items: start; } }
.pricing-head h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  letter-spacing: -0.022em; line-height: 1.08;
  color: var(--ink-900); margin: 0; max-width: 560px;
}
.pricing-head h2 em { font-style: italic; font-weight: 500; }
.pricing-cap { font-size: 16px; color: var(--ink-500); line-height: 1.6; max-width: 380px; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.pricing-grid--two {
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
}
@media (max-width: 980px) { .pricing-grid, .pricing-grid--two { grid-template-columns: 1fr; gap: 14px; } }

.price-card {
  background: #ffffff;
  border: 1px solid rgba(20,17,11,0.06);
  border-radius: var(--radius-card);
  padding: 32px 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card--dark {
  background: var(--ink-900);
  color: #ffffff;
  border-color: var(--ink-900);
}
.price-tag {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--honey-700);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
}
.price-tag::before { content: ""; width: 18px; height: 1px; background: var(--honey-500); }
.price-tag-plain {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--honey-300);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
}
.price-tag-plain::before { content: ""; width: 18px; height: 1px; background: var(--honey-400); }

.price {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 1;
  color: var(--ink-900);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  display: flex; align-items: baseline;
}
.price-card--dark .price { color: #ffffff; }
.price .cur {
  color: var(--honey-700);
  font-size: 38px;
  line-height: 1;
  align-self: flex-start;
  margin-top: 14px;
  font-weight: 500;
}
.price-card--dark .price .cur { color: var(--honey-400); }
.price .amt { font-variant-numeric: lining-nums; }
.price .per {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: -0.005em;
  margin-left: 6px;
  align-self: flex-end;
  margin-bottom: 12px;
}
.price-card--dark .price .per { color: rgba(255,255,255,0.55); }

.price-desc { font-size: 14.5px; color: var(--ink-700); line-height: 1.55; margin-bottom: 24px; }
.price-card--dark .price-desc { color: rgba(255,255,255,0.75); }

.price-meta {
  font-size: 12.5px;
  color: var(--ink-500);
  line-height: 1.65;
  padding-top: 18px;
  border-top: 1px solid rgba(20,17,11,0.08);
  margin-bottom: 24px;
  flex: 1;
}
.price-card--dark .price-meta {
  color: rgba(255,255,255,0.55);
  border-top-color: rgba(255,255,255,0.10);
}

.price-link {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  border: 1px solid var(--ink-900);
  border-radius: var(--radius-btn);
  font-size: 14px; font-weight: 500;
  color: var(--ink-900);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.005em;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.price-link:hover { background: var(--ink-900); color: #ffffff; }
.price-link .arrow { width: 14px; height: 14px; }
.price-card--dark .price-link {
  border-color: rgba(255,255,255,0.30);
  color: #ffffff;
}
.price-card--dark .price-link:hover {
  background: #ffffff;
  color: var(--ink-900);
  border-color: #ffffff;
}

/* ============= "EVERYTHING ELSE? INCLUDED." — under the price cards ============= */
.included-block {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--honey-100);
}
.included-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.included-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--honey-700);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 14px;
}
.included-head .eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--honey-500); }
.included-head h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.022em;
  line-height: 1.12;
  color: var(--ink-900);
  margin: 0 0 14px;
}
.included-head h3 em { font-style: italic; font-weight: 500; }
.included-head p {
  font-size: 15.5px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1080px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .included-grid { grid-template-columns: 1fr; } }

.included-card {
  background: #ffffff;
  border: 1px solid rgba(20,17,11,0.06);
  border-radius: var(--radius-card);
  padding: 26px 24px;
  display: flex; flex-direction: column;
}
.included-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey-700);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--honey-100);
}
.included-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.included-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.4;
}
.included-list li > span:first-child { flex: 1; }
.included-list .free {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey-700);
  background: var(--honey-50);
  border: 1px solid var(--honey-100);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.included-note {
  margin: 32px auto 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-500);
  text-align: center;
  padding: 18px 24px;
  background: var(--bg-soft);
  border: 1px solid rgba(20,17,11,0.06);
  border-radius: var(--radius);
}
.included-note strong { color: var(--ink-900); font-weight: 600; }

/* ============= FBA / DARK FEATURE SECTION ============= */
.fba, .feature-dark {
  position: relative;
  padding: 112px 0;
  background: var(--ink-900);
  color: #ffffff;
  isolation: isolate;
  overflow: hidden;
}
.fba::before, .feature-dark::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 600px at 85% 100%, rgba(245,184,0,0.20), transparent 60%),
    radial-gradient(700px 500px at 10% 0%, rgba(245,184,0,0.10), transparent 65%);
}
.fba .hex-texture, .feature-dark .hex-texture { z-index: 0; opacity: 0.55; }
.fba .container, .feature-dark .container { position: relative; z-index: 1; }
.fba-grid, .feature-dark-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px;
  align-items: center;
}
@media (max-width: 980px) { .fba-grid, .feature-dark-grid { grid-template-columns: 1fr; gap: 48px; } }
.fba-eyebrow, .feature-dark-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 12px 5px 8px;
  background: rgba(255,210,74,0.10);
  border: 1px solid rgba(255,210,74,0.25);
  border-radius: 999px;
  font-size: 12px; color: var(--honey-300);
  font-weight: 500; letter-spacing: 0.04em;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}
.fba-eyebrow .badge, .feature-dark-eyebrow .badge {
  display: inline-flex; align-items: center;
  padding: 2px 9px; border-radius: 999px;
  background: var(--honey-300); color: var(--ink-900);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fba h2, .feature-dark h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.025em; line-height: 1.05;
  margin-bottom: 20px; max-width: 540px;
}
.fba h2 em, .feature-dark h2 em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(135deg, #fff3c4 0%, #ffd24a 60%, #f5b800 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.fba .lede, .feature-dark .lede {
  font-size: 17px; color: rgba(255,255,255,0.72);
  max-width: 480px; margin-bottom: 28px; line-height: 1.6;
}
.fba-bullets, .feature-dark-bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px;
  max-width: 500px;
}
@media (max-width: 520px) { .fba-bullets, .feature-dark-bullets { grid-template-columns: 1fr; } }
.fba-bullets li, .feature-dark-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px; color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.fba-bullets li::before, .feature-dark-bullets li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 12px; height: 1px;
  background: var(--honey-400);
}
.fba-ctas, .feature-dark-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.fba-ctas .btn-ghost, .feature-dark-ctas .btn-ghost {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.18);
  background: transparent;
}
.fba-ctas .btn-ghost:hover, .feature-dark-ctas .btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.32);
  color: #ffffff;
}

/* Inclusions rate-card */
.rate-card {
  position: relative;
  background: #ffffff;
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.40), 0 0 0 1px rgba(255,210,74,0.12);
  max-width: 460px;
  margin-left: auto;
}
.rate-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.rate-card-head h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 19px; letter-spacing: -0.012em; line-height: 1.2;
  color: var(--ink-900); margin: 0;
}
.rate-card-head .stamp {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--honey-700);
  padding: 4px 10px; border-radius: 999px;
  background: var(--honey-50); border: 1px solid var(--honey-100);
}
.rate-include {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: grid; gap: 14px;
}
.rate-include li {
  display: grid; grid-template-columns: 20px 1fr; gap: 12px;
  align-items: start;
}
.rate-include .ri-ic {
  width: 20px; height: 20px;
  background: var(--honey-50);
  border: 1px solid var(--honey-200);
  border-radius: 5px;
  display: grid; place-items: center;
  position: relative;
  margin-top: 2px;
}
.rate-include .ri-ic::after {
  content: ""; width: 10px; height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a5e00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.rate-include b {
  display: block;
  font-size: 13.5px; font-weight: 600; color: var(--ink-900);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.rate-include span { font-size: 12px; color: var(--ink-500); line-height: 1.4; }
.rate-foot {
  padding-top: 18px; margin-top: 4px;
  border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-500);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}
.rate-foot::before {
  content: ""; flex-shrink: 0;
  width: 14px; height: 14px;
  margin-top: 2px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a5e00' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* ===== WHAT WE DO — FBA + DTC EXPLAINER (homepage) ===== */
.prep { padding: 96px 0; background: #ffffff; }
.prep-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1000px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
.prep-col {
  position: relative; display: flex; flex-direction: column;
  padding: 34px 32px; background: #ffffff;
}
.prep-col + .prep-col { border-left: 1px solid var(--line); }
.prep-col--featured { background: linear-gradient(180deg, var(--bg-cream) 0%, #ffffff 70%); }
.prep-col-ic {
  flex: none; width: 44px; height: 44px; border-radius: 10px;
  background: var(--honey-50); border: 1px solid var(--honey-100);
  display: grid; place-items: center; margin-bottom: 22px;
}
.prep-col-ic svg {
  width: 22px; height: 22px; stroke: var(--honey-700); stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.prep-col h3 { font-size: 20px; margin-bottom: 20px; color: var(--ink-900); }
.prep-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.prep-checks li {
  position: relative; padding-left: 28px;
  font-family: 'Inter', sans-serif; font-size: 14.5px; line-height: 1.45;
  color: var(--ink-700);
}
.prep-checks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c47a00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.prep-note { color: var(--ink-300); font-weight: 400; }
.prep-banner {
  position: relative; max-width: 1000px; margin: 20px auto 0;
  height: 240px; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.prep-banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%; display: block;
}
.prep-banner-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  display: flex; align-items: center; gap: 9px; padding: 48px 26px 20px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  line-height: 1.4; color: #ffffff;
  background: linear-gradient(to top, rgba(20,17,11,0.78) 0%, rgba(20,17,11,0) 100%);
}
.prep-banner-cap .dot {
  flex: none; width: 7px; height: 7px; border-radius: 50%;
  background: var(--honey-300); box-shadow: 0 0 0 3px rgba(255,210,74,.25);
}
@media (max-width: 700px) {
  .prep-grid { grid-template-columns: 1fr; max-width: 460px; }
  .prep-col + .prep-col { border-left: 0; border-top: 1px solid var(--line); }
  .prep-banner { max-width: 460px; height: 200px; }
}

/* ============= COMPARE TABLE (us vs them, used on pricing.html) ============= */
.compare {
  background: #ffffff;
  padding: 112px 0;
}
.compare-card {
  max-width: 980px; margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 0;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row.head {
  background: var(--bg-soft);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600;
  color: var(--ink-500);
}
.compare-cell {
  padding: 22px 24px;
  font-size: 14.5px;
  line-height: 1.5;
  border-right: 1px solid var(--line);
}
.compare-cell:last-child { border-right: 0; }
.compare-cell.label { font-weight: 500; color: var(--ink-900); }
.compare-cell.bad { color: var(--ink-500); }
.compare-cell.good {
  color: var(--ink-900);
  background: var(--honey-50);
  font-weight: 500;
}
.compare-cell.good::before {
  content: ""; display: inline-block;
  width: 16px; height: 16px; margin-right: 8px;
  vertical-align: -3px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a5e00' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .compare-cell:last-child { border-bottom: 0; }
}

/* ============= FEATURE CARDS (used on amazon-fba-prep, kitting, branded-packaging) ============= */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.feature-card:hover { border-color: var(--ink-700); box-shadow: var(--shadow); }
.feature-card .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--honey-50);
  border: 1px solid var(--honey-100);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--honey-700);
}
.feature-card .ic svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 {
  font-size: 18px; margin-bottom: 8px;
  font-family: 'Fraunces', serif; font-weight: 500;
  letter-spacing: -0.012em;
}
.feature-card p { font-size: 14px; color: var(--ink-500); line-height: 1.55; }
.feature-card .ic-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--honey-50);
  border: 1px solid var(--honey-100);
  color: var(--honey-700);
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 16px; letter-spacing: -0.015em;
  margin-bottom: 14px;
}

/* ============= CHECK LIST (✓ row, used in feature pages) ============= */
.check-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px; color: var(--ink-700);
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px;
  background: var(--honey-50);
  border: 1px solid var(--honey-200);
  border-radius: 4px;
}
.check-list li::after {
  content: "";
  position: absolute; left: 4px; top: 7px;
  width: 10px; height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a5e00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* ============= CALLOUT (highlighted note block) ============= */
.callout {
  background: var(--bg-cream);
  border: 1px solid var(--honey-100);
  border-left: 3px solid var(--honey-400);
  padding: 20px 22px;
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.6;
}
.callout b { color: var(--ink-900); font-weight: 600; }

/* ============= RELATED LINKS (cross-page footer) ============= */
.related {
  background: var(--bg-soft);
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.related h2 {
  font-size: 22px; margin-bottom: 24px;
  font-family: 'Fraunces', serif; font-weight: 500;
  letter-spacing: -0.012em;
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 720px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color .18s ease;
  display: flex; flex-direction: column; gap: 6px;
}
.related-card:hover { border-color: var(--ink-700); }
.related-card b { font-size: 15px; color: var(--ink-900); font-weight: 600; }
.related-card span { font-size: 13px; color: var(--ink-500); line-height: 1.5; }

/* ============= LOCATIONS PAGE ============= */
.loc-hero {
  background: var(--ink-900);
  color: #ffffff;
  padding: 96px 0 80px;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.loc-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(245,184,0,0.18), transparent 60%),
    radial-gradient(500px 380px at 10% 100%, rgba(245,184,0,0.10), transparent 60%);
}
.loc-hero .hex-texture { z-index: 0; opacity: 0.5; }
.loc-hero .container { position: relative; z-index: 1; }
.loc-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--honey-300);
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 24px; font-family: 'Inter', sans-serif;
}
.loc-hero .eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--honey-300); }
.loc-hero h1 { color: #ffffff; margin-bottom: 18px; max-width: 720px; }
.loc-hero h1 em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(135deg, #fff3c4 0%, #ffd24a 60%, #f5b800 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.loc-hero p.lede { color: rgba(255,255,255,0.74); max-width: 600px; }
.loc-section { padding: 96px 0; background: #ffffff; }
.loc-section + .loc-section { border-top: 1px solid var(--line); background: var(--bg-soft); }
.loc-body { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 880px) { .loc-body { grid-template-columns: 1fr; gap: 36px; } }
.loc-section h2 { margin-bottom: 18px; }
.loc-section p { font-size: 16px; color: var(--ink-500); line-height: 1.65; margin-bottom: 14px; }
.address-block, .contact-block {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  font-size: 14.5px; color: var(--ink-700);
  line-height: 1.6;
}
.address-block h4, .contact-block h4 {
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--honey-700); text-transform: uppercase; font-weight: 600;
  margin-bottom: 14px;
}
.address-block address { font-style: normal; }
.address-block .place { font-weight: 600; color: var(--ink-900); margin-bottom: 6px; display: block; }
.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.means-title {
  font-size: 11.5px; letter-spacing: 0.14em;
  color: var(--honey-700); text-transform: uppercase; font-weight: 600;
  margin: 22px 0 12px;
}
.means-list {
  list-style: none; padding: 0; display: grid; gap: 8px;
  font-size: 14px; color: var(--ink-700);
}
.means-list li { display: flex; align-items: center; gap: 10px; }
.means-list li::before {
  content: ""; width: 12px; height: 1px; background: var(--honey-500); flex-shrink: 0;
}
.email a { color: var(--ink-900); border-bottom: 1px solid var(--ink-900); font-weight: 500; }

/* ============= FAQ ============= */
.faq-section { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-section .section-head { margin-bottom: 48px; }
.faq-list { max-width: 820px; margin: 0 auto; }
details { border-top: 1px solid var(--line); padding: 22px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  font-size: 17px; font-weight: 500; letter-spacing: -0.012em; color: var(--ink-900);
  font-family: 'Fraunces', serif;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: ""; flex-shrink: 0;
  width: 20px; height: 20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314110b' stroke-width='1.8' stroke-linecap='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>") center/16px no-repeat;
  transition: transform .2s ease;
  margin-top: 4px;
}
details[open] summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314110b' stroke-width='1.8' stroke-linecap='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}
details p { margin-top: 14px; color: var(--ink-500); font-size: 15px; max-width: 680px; line-height: 1.65; font-family: 'Inter', sans-serif; }

/* ============= FINAL CTA ============= */
.final-cta {
  padding: 112px 0;
  background: var(--bg-cream);
  text-align: center; position: relative;
  border-top: 1px solid var(--honey-100);
}
.final-cta h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  max-width: 720px; margin: 0 auto 18px;
  letter-spacing: -0.022em; line-height: 1.08;
}
.final-cta p {
  font-size: 17px; color: var(--ink-500);
  max-width: 540px; margin: 0 auto 32px;
  line-height: 1.6;
}

/* ============= FOOTER ============= */
footer { background: var(--ink-900); color: rgba(255,255,255,0.7); border-top: none; padding: 80px 0 40px; }
footer .logo-img { filter: brightness(0) invert(1); opacity: 0.95; height: 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
footer h5 {
  color: #ffffff; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 20px; font-weight: 600;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
footer ul a { color: rgba(255,255,255,0.62); transition: color .15s ease; }
footer ul a:hover { color: #ffffff; }
.footer-tag {
  max-width: 340px; font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 16px; line-height: 1.55;
}
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: rgba(255,255,255,0.4);
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid; place-items: center;
  transition: background-color .15s ease, border-color .15s ease;
}
.footer-social a:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.20); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.85); }

/* ============= SHARED SCRIPT-FREE NICETIES ============= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--honey-700); text-transform: uppercase; font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--honey-500); }
.eyebrow-light { color: var(--honey-300); }
.eyebrow-light::before { background: var(--honey-300); }

/* Inline link emphasis */
.link {
  color: var(--ink-900);
  border-bottom: 1px solid var(--ink-900);
  font-weight: 500;
}

/* ============================================================ */
/* HOMEPAGE-SPECIFIC SECTIONS (index.html)                       */
/* ============================================================ */

/* ===== PERFORMANCE / BY THE NUMBERS ===== */
.perf { padding: 112px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.perf-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.perf-head .eyebrow { margin-bottom: 18px; }
.perf-head h2 { margin-bottom: 0; }
.perf-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: #ffffff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
}
.perf-stat { padding: 48px 40px; text-align: center; }
.perf-stat + .perf-stat { border-left: 1px solid var(--line); }
.perf-fig { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 16px; }
.perf-fig b {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 56px; line-height: 1; letter-spacing: -0.02em; color: var(--ink-900);
}
.perf-fig span {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--honey-700);
}
.perf-stat p {
  font-size: 15px; line-height: 1.6; color: var(--ink-500);
  font-family: 'Inter', sans-serif; max-width: 280px; margin: 0 auto;
}
@media (max-width: 760px) {
  .perf-grid { grid-template-columns: 1fr; }
  .perf-stat + .perf-stat { border-left: 0; border-top: 1px solid var(--line); }
}

/* ===== GET STARTED — 3 SIMPLE STEPS ===== */
.start { padding: 112px 0; background: #ffffff; }
.start-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.start-head .eyebrow { margin-bottom: 18px; }
.start-head h2 { margin-bottom: 0; }
.start-flow {
  list-style: none; padding: 0; margin: 0;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.start-row {
  display: grid; grid-template-columns: 56px 1fr; gap: 28px;
  align-items: start; padding-bottom: 36px;
}
.start-row:last-child { padding-bottom: 0; }

/* Rail: numbered badge + connector line threading down to the next step */
.start-rail { position: relative; display: flex; justify-content: center; }
.start-num {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; flex: none;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink-900); background: var(--grad-honey);
  box-shadow: 0 0 0 6px var(--bg-cream);
}
.start-row:not(:last-child) .start-rail::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  top: 56px; bottom: -36px; width: 2px;
  background: linear-gradient(180deg, var(--honey-400) 0%, var(--line) 100%);
}

.start-content {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px 28px 26px;
  margin-top: 4px;
}
.start-content h3 { font-size: 20px; margin-bottom: 8px; }
.start-content p { font-size: 15px; line-height: 1.6; color: var(--ink-500); font-family: 'Inter', sans-serif; }
.start-note {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--honey-700); font-family: 'Inter', sans-serif;
}
.start-note .dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--honey-400); box-shadow: 0 0 0 3px rgba(245,184,0,.18);
}
.start-tagline {
  text-align: center; margin: 56px auto 0; max-width: 640px;
  font-family: 'Fraunces', serif; font-size: 23px; font-weight: 500;
  line-height: 1.4; letter-spacing: -0.01em; color: var(--ink-900);
}
.start-tagline em { font-style: italic; font-weight: 500; color: var(--honey-600); }
@media (max-width: 560px) {
  .start-row { grid-template-columns: 48px 1fr; gap: 18px; }
  .start-num { width: 48px; height: 48px; font-size: 19px; }
  .start-row:not(:last-child) .start-rail::after { top: 48px; }
}

/* ===== CARES / WHY A PARTNER THAT CARES ===== */
.cares { position: relative; padding: 112px 0; background: #ffffff; }
.cares-head { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.cares-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--honey-700); text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px; font-family: 'Inter', sans-serif;
}
.cares-head .eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--honey-500); }
.cares-head h2 { margin-bottom: 0; }
.cares-head p.lede { margin-top: 16px; }
.cares-card {
  position: relative; border-radius: var(--radius-lg);
  padding: 48px 48px 40px; display: flex; flex-direction: column;
  max-width: 880px; margin: 0 auto;
}
.cares-why { background: var(--ink-900); color: #ffffff; border: 1px solid var(--ink-900); }
.cares-tag { display: none; }
.cares-quote {
  font-family: 'Fraunces', serif; font-size: 26px; font-weight: 500;
  line-height: 1.35; letter-spacing: -0.015em; color: #ffffff; margin-bottom: 24px;
}
.cares-quote .qmark { display: none; }
.cares-body { font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,0.7); margin-bottom: 24px; max-width: 680px; }
.cares-byline {
  margin-top: 8px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.6);
  font-style: normal; letter-spacing: -0.005em;
}
.cares-byline-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--honey-300); }

/* ===== WHO WE HELP ===== */
.who {
  position: relative; padding: 112px 0; background: var(--bg-soft);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  color: var(--ink-900);
}
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 880px) { .who-grid { grid-template-columns: 1fr; gap: 40px; } }
.who-intro .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--honey-700); text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px; font-family: 'Inter', sans-serif;
}
.who-intro .eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--honey-500); }
.who-intro h2 { margin-bottom: 20px; color: var(--ink-900); }
.who-intro p.lede { font-size: 17px; color: var(--ink-500); margin-bottom: 28px; max-width: 460px; }
.who-card {
  background: #ffffff; border-radius: var(--radius-lg);
  border: 1px solid var(--line); padding: 32px 32px 28px;
}
.who-card-head {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--honey-700); font-weight: 600; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.who-fit { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.who-fit li { display: flex; align-items: flex-start; gap: 14px; }
.who-fit-ic {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 8px; display: grid; place-items: center; color: var(--honey-700);
}
.who-fit-ic svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.who-fit-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.who-fit-text b { font-size: 14.5px; color: var(--ink-900); font-weight: 600; letter-spacing: -0.005em; }
.who-fit-text span { font-size: 13px; color: var(--ink-500); line-height: 1.5; }

/* ===== BLISS / HANDS-OFF ===== */
.bliss {
  position: relative; padding: var(--section-pad) 0; background: var(--bg-soft);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.bliss-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 920px) { .bliss-grid { grid-template-columns: 1fr; gap: 48px; } }
.bliss-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--honey-700); text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px; font-family: 'Inter', sans-serif;
}
.bliss-eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--honey-500); }
.bliss h2 { font-size: clamp(30px, 3.4vw, 44px); letter-spacing: -0.022em; line-height: 1.08; color: var(--ink-900); margin-bottom: 22px; }
.bliss .lede { font-size: 17px; color: var(--ink-500); max-width: 520px; margin-bottom: 28px; }
.bliss-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.bliss-pills span {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 6px; font-size: 13px; color: var(--ink-700); font-weight: 500;
}
.bliss-pills span::before {
  content: ""; width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a5e00' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* ===== OOO CARD ===== */
.ooo-card {
  position: relative; background: #ffffff; border-radius: var(--radius-card);
  padding: 28px; border: 1px solid var(--line); box-shadow: var(--shadow);
  max-width: 440px; margin-left: auto;
}
.ooo-card .head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.ooo-card .stamp { width: 36px; height: 36px; border-radius: 8px; background: var(--honey-50); border: 1px solid var(--honey-100); display: grid; place-items: center; color: var(--honey-700); }
.ooo-card .stamp svg { width: 18px; height: 18px; stroke: currentColor; }
.ooo-card .meta { display: flex; flex-direction: column; }
.ooo-card .meta b { font-size: 14px; color: var(--ink-900); }
.ooo-card .meta span { font-size: 12px; color: var(--ink-300); }
.ooo-card h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; line-height: 1.25; margin-bottom: 12px; color: var(--ink-900); letter-spacing: -0.015em; }
.ooo-card p { font-size: 14px; color: var(--ink-500); line-height: 1.6; margin-bottom: 20px; }
.ooo-card .sig { display: flex; align-items: center; gap: 12px; padding: 14px; background: var(--bg-soft); border-radius: var(--radius); border: 1px solid var(--line); }
.ooo-card .sig .ph { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(160deg, #d6c7a8, #8a6e3a); flex-shrink: 0; }
.ooo-card .sig .info { display: flex; flex-direction: column; min-width: 0; }
.ooo-card .sig .info b { font-size: 13px; color: var(--ink-900); }
.ooo-card .sig .info span { font-size: 11.5px; color: var(--ink-500); }
.ooo-card .float-bee { display: none; }

/* ===== DAILY HANDOFF ===== */
.daily { position: relative; padding: 112px 0; background: #ffffff; }
.daily-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px;
  align-items: center; max-width: 1040px; margin: 0 auto;
}
.daily-features {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
.daily-col {
  display: flex; flex-direction: column;
  padding: 32px 32px; background: #ffffff;
}
.daily-col + .daily-col { border-top: 1px solid var(--line); }
.daily-col-ic {
  flex: none; width: 44px; height: 44px; border-radius: 10px;
  background: var(--honey-50); border: 1px solid var(--honey-100);
  display: grid; place-items: center; margin-bottom: 22px;
}
.daily-col-ic svg {
  width: 22px; height: 22px; stroke: var(--honey-700); stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.daily-col h3 { font-size: 18px; margin-bottom: 12px; color: var(--ink-900); }
.daily-col p {
  font-family: 'Inter', sans-serif; font-size: 14.5px; line-height: 1.5; color: var(--ink-500);
}
.daily-proof { max-width: 480px; }
.daily-proof .chat-card { margin: 0 auto; max-width: none; }
@media (max-width: 920px) {
  .daily-grid { grid-template-columns: 1fr; gap: 40px; max-width: 480px; }
}

/* ===== CHAT CARD ===== */
.chat-card { position: relative; background: #ffffff; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); max-width: 480px; margin-left: auto; overflow: hidden; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: #4a154b; border-bottom: 1px solid #3a0f3b; }
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(160deg, #d6c7a8, #8a6e3a); flex-shrink: 0; }
.chat-meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.chat-meta b { font-size: 14px; color: #ffffff; }
.chat-meta span { font-size: 11.5px; color: rgba(255,255,255,0.7); }
.chat-dot { width: 8px; height: 8px; border-radius: 50%; background: #2ea864; flex-shrink: 0; }
.chat-thread { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 14px; background: var(--bg-soft); }
.chat-msg { background: #ffffff; border: 1px solid var(--line); border-radius: 12px 12px 12px 4px; padding: 12px 14px; max-width: 88%; align-self: flex-start; }
.chat-msg p { font-size: 13.5px; color: var(--ink-700); line-height: 1.5; margin: 0; }
.chat-time { font-size: 10.5px; color: var(--ink-300); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; font-weight: 600; }
.chat-msg-them { background: var(--ink-900); border-color: var(--ink-900); color: #ffffff; border-radius: 12px 12px 4px 12px; align-self: flex-end; }
.chat-msg-them p { color: rgba(255,255,255,0.92); }
.chat-photos { margin-top: 10px; }
.chat-photo { aspect-ratio: 4/3; border-radius: 8px; position: relative; overflow: hidden; background: var(--bg-soft); }
.chat-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== GALLERY (dark mosaic) ===== */
.gallery .section-head .eyebrow { color: var(--honey-300); }
.gallery .section-head .eyebrow::before { background: var(--honey-300); }
.gallery .section-head p { color: rgba(255,255,255,0.62); }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 218px;
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: #1f1a10;
}
.gallery-item img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.2,.6,.2,1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(20,17,11,0.8) 100%);
}
.gallery-cap {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: #ffffff; letter-spacing: -0.005em;
}
.gallery-cap .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--honey-300); flex: none; box-shadow: 0 0 0 3px rgba(255,210,74,0.18); }
.gallery-item--feature { grid-column: span 2; grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
@media (max-width: 760px) {
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item--feature { grid-column: span 2; grid-row: span 2; }
  .gallery-item--wide { grid-column: span 2; }
}
@media (max-width: 460px) {
  .gallery-mosaic { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item--feature, .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
}

/* ===== HOW IT WORKS (accordion layout) ===== */
.how-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.how-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--honey-700); text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px; font-family: 'Inter', sans-serif;
}
.how-head .eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--honey-500); }
.how-head h2 { margin-bottom: 16px; }
.how-head p { font-size: 17px; color: var(--ink-500); max-width: 580px; margin: 0 auto; line-height: 1.6; }
.how-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 1160px; margin: 0 auto; align-items: start; }
@media (max-width: 960px) { .how-layout { grid-template-columns: 1fr; gap: 36px; } }
.how-media { position: sticky; top: 100px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; isolation: isolate; border: 1px solid var(--line); }
@media (max-width: 960px) { .how-media { position: static; aspect-ratio: 16 / 10; } }
.how-media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 2; }
.how-media-placeholder { position: absolute; inset: 0; background: linear-gradient(160deg, #2a2418 0%, #14110b 100%); z-index: 1; }
.how-media-caption { position: absolute; left: 20px; bottom: 20px; z-index: 3; background: rgba(20,17,11,0.82); color: rgba(255,255,255,0.92); padding: 8px 14px; border-radius: 6px; font-size: 12.5px; font-weight: 500; letter-spacing: -0.005em; backdrop-filter: blur(6px); }
.how-media-caption b { color: var(--honey-300); font-weight: 600; }
.how-tiles { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #ffffff; overflow: hidden; }
.how-tile { background: #ffffff; border-bottom: 1px solid var(--line); overflow: hidden; transition: background .2s ease; }
.how-tile:last-child { border-bottom: 0; }
.how-tile:has(.how-tile-head[aria-expanded="true"]) { background: var(--bg-soft); }
.how-tile-head { display: grid; grid-template-columns: 40px 1fr 24px; gap: 16px; align-items: center; width: 100%; padding: 22px 24px; background: none; border: 0; cursor: pointer; font-family: inherit; color: inherit; text-align: left; }
.how-tile-head:focus-visible { outline: 2px solid var(--ink-900); outline-offset: -2px; }
.how-tile .num { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--honey-700); letter-spacing: 0.06em; font-variant-numeric: tabular-nums; }
.how-tile h4 { margin: 0; font-family: 'Fraunces', serif; font-weight: 500; font-size: 19px; letter-spacing: -0.012em; color: var(--ink-900); line-height: 1.25; }
.how-tile .chev { width: 24px; height: 24px; display: grid; place-items: center; color: var(--ink-500); transition: transform .25s ease, color .2s ease; }
.how-tile:has(.how-tile-head[aria-expanded="true"]) .chev { transform: rotate(180deg); color: var(--ink-900); }
.how-tile .chev svg { width: 12px; height: 12px; }
.how-tile-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.how-tile:has(.how-tile-head[aria-expanded="true"]) .how-tile-body { grid-template-rows: 1fr; }
.how-tile-body > .inner { overflow: hidden; min-height: 0; }
.how-tile-body .inner-pad { padding: 0 24px 24px 80px; }
.how-tile-body p { font-size: 14.5px; line-height: 1.65; color: var(--ink-500); margin: 0; }
.how-tile-body ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.how-tile-body li { position: relative; padding-left: 22px; font-size: 13.5px; color: var(--ink-700); line-height: 1.55; }
.how-tile-body li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 1px; background: var(--honey-500); }
@media (max-width: 480px) {
  .how-tile-head { grid-template-columns: 32px 1fr 20px; padding: 18px 18px; gap: 12px; }
  .how-tile h4 { font-size: 17px; }
  .how-tile-body .inner-pad { padding: 0 18px 20px 62px; }
}
.how-foot { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 56px; }
.how-foot .note { font-size: 13.5px; color: var(--ink-300); }

/* ===== TEAM ===== */
.team { background: #ffffff; position: relative; }
.team-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.team-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--honey-700); text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px; font-family: 'Inter', sans-serif;
}
.team-head .eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--honey-500); }
.team-head p { font-size: 17px; color: var(--ink-500); margin-top: 16px; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { position: relative; background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 24px 22px; transition: border-color .2s ease; }
.team-card:hover { border-color: var(--ink-700); }
.team-card .ph { width: 100%; aspect-ratio: 1 / 1; border-radius: var(--radius); background: var(--bg-soft); margin-bottom: 20px; position: relative; overflow: hidden; }
.team-card .ph::after { content: ""; position: absolute; inset: 0; background-position: center; background-size: cover; }
.team-card.t1 .ph::after { background: radial-gradient(circle at 35% 30%, #d6c7a8 0%, #8a6e3a 60%, #4a3a18 100%); }
.team-card.t2 .ph::after { background: radial-gradient(circle at 35% 30%, #c2b095 0%, #7a5e30 60%, #3a2c14 100%); }
.team-card.t3 .ph::after { background: radial-gradient(circle at 35% 30%, #d0c2a5 0%, #94785a 60%, #4a3a26 100%); }
.team-card.t4 .ph::after { background: radial-gradient(circle at 35% 30%, #c8b89a 0%, #846840 60%, #423218 100%); }
.team-card h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 19px; color: var(--ink-900); letter-spacing: -0.012em; line-height: 1.2; }
.team-card .role { font-size: 12.5px; color: var(--honey-700); font-weight: 600; margin-top: 4px; letter-spacing: 0.02em; text-transform: uppercase; }
.team-card .quote { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-500); line-height: 1.5; font-style: normal; }
.team-card .corner { display: none; }
.team-foot { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 56px; flex-wrap: wrap; }
.team-foot .channels { display: inline-flex; align-items: center; gap: 14px; padding: 12px 20px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; font-size: 13.5px; color: var(--ink-500); }
.team-foot .channels b { color: var(--ink-900); font-weight: 600; }
.team-foot .channels .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-300); }

/* ===== BEYOND / CUSTOM PACKAGING ===== */
.beyond { position: relative; padding: 112px 0; background: #ffffff; }
.beyond-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.beyond-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--honey-700); text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px; font-family: 'Inter', sans-serif;
}
.beyond-head .eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--honey-500); }
.beyond-head h2 { margin-bottom: 16px; color: var(--ink-900); }
.beyond-head p { font-size: 17px; color: var(--ink-500); max-width: 640px; margin: 0 auto; line-height: 1.6; }
.beyond-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; align-items: stretch; }
@media (max-width: 980px) { .beyond-grid { grid-template-columns: 1fr; } }
.branded-card { position: relative; border-radius: var(--radius-lg); padding: 40px 40px 36px; color: var(--ink-900); display: flex; flex-direction: column; background: var(--bg-cream); border: 1px solid var(--honey-100); }
.branded-tag { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--honey-700); margin-bottom: 24px; }
.branded-tag::before { content: ""; width: 18px; height: 1px; background: var(--honey-500); }
.pkg-stage { position: relative; height: 180px; margin: 8px 0 28px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.pkg { border-radius: 4px; box-shadow: 0 8px 20px rgba(20,17,11,0.10); }
.pkg-main { width: 180px; height: 140px; background: #ffffff; display: grid; place-items: center; border: 1px solid var(--line); position: relative; }
.pkg-main::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 24px; transform: translateX(-50%); background: var(--honey-300); }
.pkg-main .pkg-logo { position: relative; z-index: 1; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--ink-900); text-align: center; line-height: 1.2; background: #ffffff; padding: 6px 12px; }
.pkg-side { width: 140px; height: 110px; background: var(--ink-900); border: 1px solid var(--ink-900); position: relative; }
.pkg-side::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 18px; transform: translateX(-50%); background: var(--honey-300); }
.pkg-tissue, .pkg-ribbon { display: none; }
@media (max-width: 520px) { .pkg-stage { height: 160px; } .pkg-main { width: 150px; height: 120px; } .pkg-side { width: 120px; height: 95px; } }
.branded-card h3 { color: var(--ink-900); font-size: 26px; font-weight: 500; letter-spacing: -0.018em; margin-bottom: 12px; font-family: 'Fraunces', serif; line-height: 1.2; }
.branded-card .lede { font-size: 15px; color: var(--ink-500); line-height: 1.6; margin-bottom: 24px; max-width: 460px; }
.branded-bullets { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-bottom: 28px; }
@media (max-width: 620px) { .branded-bullets { grid-template-columns: 1fr; } }
.branded-bullets li { position: relative; padding-left: 20px; font-size: 13.5px; color: var(--ink-700); line-height: 1.5; }
.branded-bullets li::before { content: ""; position: absolute; left: 0; top: 7px; width: 10px; height: 1px; background: var(--honey-500); }
.branded-card .pill { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; background: var(--ink-900); color: #ffffff; padding: 11px 20px; border-radius: 8px; font-size: 13.5px; font-weight: 500; transition: background-color .15s ease; }
.branded-card .pill:hover { background: #2a2418; }
.branded-card .pill .arrow { background-color: #ffffff; width: 12px; height: 12px; }

/* ===== DIFF STACK ===== */
.diff-stack { display: grid; gap: 12px; align-content: stretch; grid-template-rows: repeat(4, 1fr); }
.diff-card { position: relative; background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; transition: border-color .18s ease, background .18s ease; display: grid; grid-template-columns: 36px 1fr; gap: 16px; align-items: start; }
.diff-card:hover { border-color: var(--ink-700); background: var(--bg-soft); }
.diff-ic { width: 36px; height: 36px; background: var(--honey-50); border: 1px solid var(--honey-100); border-radius: 8px; display: grid; place-items: center; }
.diff-ic::after { content: ""; width: 18px; height: 18px; background-position: center; background-size: contain; background-repeat: no-repeat; }
.diff-ic[data-ic="lock"]::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a5e00' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='11' width='16' height='10' rx='1.5'/><path d='M8 11V7a4 4 0 0 1 8 0v4'/></svg>"); }
.diff-ic[data-ic="return"]::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a5e00' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 7 4 11 8'/><path d='M7 4v10a4 4 0 0 0 4 4h6'/><polyline points='21 16 17 20 13 16'/></svg>"); }
.diff-ic[data-ic="b2b"]::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a5e00' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='10' width='8' height='11' rx='1'/><rect x='13' y='5' width='8' height='16' rx='1'/></svg>"); }
.diff-ic[data-ic="carrier"]::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a5e00' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M3 16V7a1 1 0 0 1 1-1h11v10'/><path d='M15 10h4l2 3v3h-6'/><circle cx='7.5' cy='17.5' r='1.6'/><circle cx='17.5' cy='17.5' r='1.6'/></svg>"); }
.diff-card h4 { font-size: 15px; font-weight: 600; color: var(--ink-900); margin-bottom: 4px; letter-spacing: -0.012em; }
.diff-card p { font-size: 13px; color: var(--ink-500); line-height: 1.55; }
.diff-card p strong { color: var(--ink-900); font-weight: 600; }
.diff-card p em { font-style: italic; color: var(--ink-700); }

/* Hero CTA card — replaces the quiz lead form during FBA-prep-only focus. */
#hero-cta { text-align: center; padding: 38px 28px 30px; }
#hero-cta h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 24px; line-height: 1.2; letter-spacing: -0.015em;
  color: var(--ink-900);
  margin-bottom: 22px;
}
#hero-cta h3 em { font-style: italic; color: var(--honey-700); }
#hero-cta .btn-honey { height: 60px; font-size: 16px; margin-top: 0; }
