/* ============================================================
   OjaExpress — styles.css
   ============================================================ */

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

:root {
  --ink:        #0e1f13;
  --green:      #1b3d24;
  --green-mid:  #2a5e38;
  --green-sat:  #3a8f52;
  --amber:      #c96a14;
  --amber-l:    #e8822a;
  --cream:      #fdf8f0;
  --cream2:     #f4ead8;
  --cream3:     #ece0c8;
  --white:      #ffffff;
  --muted:      #607068;
  --border:     #e4d9c6;
  --r:          18px;

  /* Fluid type scale */
  --fs-xs:   clamp(0.75rem,  1.5vw, 0.82rem);
  --fs-sm:   clamp(0.875rem, 1.8vw, 0.95rem);
  --fs-base: clamp(1rem,     2vw,   1.05rem);
  --fs-md:   clamp(1.1rem,   2.2vw, 1.2rem);
  --fs-lg:   clamp(1.3rem,   2.8vw, 1.5rem);
  --fs-xl:   clamp(1.7rem,   3.5vw, 2.2rem);
  --fs-2xl:  clamp(2rem,     4vw,   2.8rem);
  --fs-hero: clamp(2.8rem,   5vw,   4.6rem);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-base);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a, button, input, textarea { touch-action: manipulation; font-family: inherit; }


/* ============================================================
   NAV
   ============================================================ */
nav {
  position: sticky; top: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(253,248,240,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 28px rgba(14,31,19,.09); }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 48px; width: auto; }

.nav-right { display: flex; align-items: center; gap: .7rem; }

.wa-btn {
  display: flex; align-items: center; gap: .45rem;
  background: #25d366; color: #fff;
  border: none; cursor: pointer;
  padding: .65rem 1.1rem; border-radius: 50px;
  font-size: var(--fs-sm); font-weight: 700;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
  min-height: 44px; white-space: nowrap;
}
.wa-btn:hover { transform: scale(1.04); box-shadow: 0 4px 16px rgba(37,211,102,.4); }

.nav-cta {
  background: var(--green); color: var(--cream);
  border: none; cursor: pointer;
  padding: .65rem 1.3rem; border-radius: 50px;
  font-size: var(--fs-sm); font-weight: 700;
  transition: background .2s, transform .15s;
  min-height: 44px; white-space: nowrap;
}
.nav-cta:hover { background: var(--green-mid); transform: scale(1.04); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: min(90svh, 680px);
  align-items: stretch;
}

.hero-left {
  padding: 4.5rem 5% 4.5rem 5%;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.hero-left::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at 0 0, rgba(58,143,82,.1), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--cream2); border: 1px solid var(--border);
  border-radius: 50px; padding: .35rem .9rem;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.8rem; width: fit-content;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: var(--fs-hero);
  line-height: 1.05; font-weight: 400;
  color: var(--green);
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--amber-l); }

.hero-lead {
  font-size: var(--fs-md);
  line-height: 1.8; color: var(--muted);
  max-width: 440px; margin-bottom: 1.8rem;
}

.hero-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.pill {
  background: var(--cream2); border: 1px solid var(--border);
  border-radius: 50px; padding: .32rem .9rem;
  font-size: var(--fs-sm); font-weight: 600; color: var(--green-mid);
}

/* Hero CTA (replaces inline waitlist card) */
.hero-cta-wrap {
  display: flex; flex-direction: column; gap: .75rem;
  align-items: flex-start;
}
.btn-hero-join {
  background: var(--green); color: var(--cream);
  border: none; cursor: pointer;
  padding: .9rem 1.8rem; border-radius: 50px;
  font-size: var(--fs-base); font-weight: 700;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-hero-join:hover {
  background: var(--green-mid); transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(27,61,36,.22);
}
.hero-cta-note {
  font-size: var(--fs-xs); color: var(--muted);
}
.hero-cta-note strong { color: var(--amber); }

/* Right: photo mosaic */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}
.hero-tile { overflow: hidden; position: relative; }
.hero-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.hero-tile:hover img { transform: scale(1.06); }
.hero-tile .tile-tag {
  position: absolute; bottom: .75rem; left: .75rem;
  background: rgba(0,0,0,.5); backdrop-filter: blur(8px);
  color: #fff; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: 50px;
}
.hero-tile.span2 { grid-row: span 2; }
.hero-tile:not(.span2) { border-left: 3px solid var(--cream); }
.hero-tile:last-child { border-top: 3px solid var(--cream); }


/* ============================================================
   MARQUEE
   ============================================================ */
.mq-wrap { background: var(--green); padding: .75rem 0; overflow: hidden; }
.mq-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.mq-track:hover { animation-play-state: paused; }
.mq-item {
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap; padding: 0 1.6rem;
  font-size: var(--fs-sm); font-weight: 600;
  color: rgba(253,248,240,.65); flex-shrink: 0;
}
.mq-item img {
  width: 26px; height: 26px; border-radius: 50%;
  object-fit: cover; border: 1.5px solid rgba(255,255,255,.15);
}
.mq-sep { color: var(--amber-l); margin-left: .4rem; }


/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.sec-header { margin-bottom: 2.8rem; }
.sec-label {
  font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--amber); margin-bottom: .55rem;
}
.sec-title {
  font-family: 'Instrument Serif', serif;
  font-size: var(--fs-2xl);
  font-weight: 400; line-height: 1.12; color: var(--green);
}
.sec-sub {
  font-size: var(--fs-base); color: var(--muted);
  margin-top: .5rem; line-height: 1.7;
}


/* ============================================================
   PRODUCTS
   ============================================================ */
.prod-section { padding: 5.5rem 5%; }

.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}
.pc {
  background: var(--white); border-radius: 20px;
  overflow: hidden; border: 1px solid var(--border);
  position: relative;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  cursor: default;
}
.pc:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 20px 50px rgba(14,31,19,.12); }
.pc img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.pc:hover img { transform: scale(1.07); }

.pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,14,.82) 0%, rgba(10,25,14,.3) 45%, transparent 70%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem 1.2rem;
}
.pc-tag {
  display: inline-block;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 50px;
  padding: .2rem .7rem; font-size: var(--fs-xs); font-weight: 700;
  color: rgba(255,255,255,.85); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: .45rem; width: fit-content;
}
.pc-name {
  font-family: 'Syne', sans-serif;
  font-size: var(--fs-base); font-weight: 800;
  color: #fff; margin-bottom: .25rem;
}
.pc-desc { font-size: var(--fs-xs); color: rgba(255,255,255,.65); line-height: 1.45; }
.pc.tall { grid-row: span 2; }
.pc.wide { grid-column: span 2; }


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--green); padding: 5.5rem 5%; }
.how-section .sec-label { color: rgba(253,248,240,.5); }
.how-section .sec-title { color: var(--cream); }
.how-section .sec-sub   { color: rgba(253,248,240,.5); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; margin-top: 3rem;
}
.scard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 1.7rem 1.4rem;
  transition: background .25s, transform .25s;
  position: relative; overflow: hidden;
}
.scard::before {
  content: attr(data-n);
  position: absolute; top: -1rem; right: .8rem;
  font-family: 'Instrument Serif', serif;
  font-size: 5rem; font-weight: 400;
  color: rgba(255,255,255,.04);
  line-height: 1; pointer-events: none; user-select: none;
}
.scard:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.s-step-label {
  font-size: var(--fs-xs); font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--amber-l); margin-bottom: .85rem;
}
.s-icon { font-size: 2rem; margin-bottom: .8rem; }
.scard h4 {
  font-family: 'Syne', sans-serif;
  font-size: var(--fs-base); font-weight: 800;
  color: var(--cream); margin-bottom: .45rem;
}
.scard p { font-size: var(--fs-sm); color: rgba(253,248,240,.5); line-height: 1.65; }


/* ============================================================
   WHY OJAEXPRESS
   ============================================================ */
.why-section { padding: 5.5rem 5%; }
.wgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.wphoto-block {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px; gap: .8rem;
}
.wphoto { border-radius: 18px; overflow: hidden; }
.wphoto img { width: 100%; height: 100%; object-fit: cover; }
.wphoto.tall { grid-row: span 2; border-radius: 20px; }
.wphoto.tall img { height: 100%; }

.wfeats { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.wf {
  display: flex; gap: .95rem; align-items: flex-start;
  padding: 1rem 1.1rem; border-radius: 14px;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.wf:hover { background: var(--cream2); border-color: var(--border); }
.wficon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream2); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.wf h4 {
  font-family: 'Syne', sans-serif;
  font-size: var(--fs-sm); font-weight: 800;
  color: var(--green); margin-bottom: .2rem;
}
.wf p { font-size: var(--fs-sm); color: var(--muted); line-height: 1.6; }


/* ============================================================
   CTA SECTION  (button only — form lives in modal)
   ============================================================ */
.cta-section {
  background: var(--green);
  padding: 6rem 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06); pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 900px; height: 900px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.03); pointer-events: none;
}
.cta-section h2 {
  font-family: 'Instrument Serif', serif;
  font-size: var(--fs-2xl);
  font-weight: 400; line-height: 1.12;
  color: var(--cream); margin-bottom: .8rem; position: relative;
}
.cta-section h2 em { font-style: italic; color: #f0b87a; }
.cta-p {
  font-size: var(--fs-md); color: rgba(253,248,240,.65);
  margin-bottom: 2.5rem; line-height: 1.75; position: relative;
}
.cta-p strong { color: #f0b87a; }
.btn-cta-join {
  background: var(--amber); color: var(--cream);
  border: none; cursor: pointer;
  padding: 1rem 2.2rem; border-radius: 50px;
  font-size: var(--fs-md); font-weight: 700;
  position: relative;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-cta-join:hover {
  background: var(--amber-l); transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(232,130,42,.38);
}
.cta-note {
  margin-top: 1.1rem; font-size: var(--fs-xs);
  color: rgba(253,248,240,.35); position: relative;
}
.live-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px; padding: .3rem .9rem;
  font-size: var(--fs-xs); font-weight: 700;
  color: rgba(253,248,240,.7); margin-bottom: 1.4rem;
  position: relative;
}
.live-tag .live-dot { background: #6ee7a0; }


/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,22,14,.7);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open {
  opacity: 1; pointer-events: all;
}

.modal {
  background: var(--cream);
  border-radius: 24px;
  width: 100%; max-width: 480px;
  padding: 2.2rem 2rem 2rem;
  position: relative;
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2), opacity .3s ease;
  opacity: 0;
  box-shadow: 0 32px 80px rgba(10,22,14,.28), 0 2px 8px rgba(10,22,14,.12);
  max-height: 92svh; overflow-y: auto;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1); opacity: 1;
}

.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--cream2); color: var(--muted);
  font-size: 1.15rem; display: flex;
  align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--cream3); color: var(--ink); }

.modal-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--cream2); border: 1px solid var(--border);
  border-radius: 50px; padding: .3rem .85rem;
  font-size: var(--fs-xs); font-weight: 700;
  color: var(--muted); letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.modal-badge .live-dot { background: var(--amber); }

.modal h2 {
  font-family: 'Instrument Serif', serif;
  font-size: var(--fs-xl);
  font-weight: 400; line-height: 1.15;
  color: var(--green); margin-bottom: .4rem;
}
.modal-sub {
  font-size: var(--fs-sm); color: var(--muted);
  margin-bottom: 1.6rem; line-height: 1.6;
}
.modal-sub strong { color: var(--amber); }

/* Form fields */
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field label {
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--ink);
}
.field label .req { color: var(--amber); margin-left: .1rem; }

.field input {
  padding: .85rem 1rem; border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: var(--fs-base); color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  min-height: 50px;
}
.field input:focus {
  border-color: var(--green-sat);
  box-shadow: 0 0 0 3px rgba(58,143,82,.1);
}
.field input::placeholder { color: #c5bfb5; }
.field input.invalid {
  border-color: #e05555;
  box-shadow: 0 0 0 3px rgba(224,85,85,.1);
}
.field-hint {
  font-size: var(--fs-xs); color: #d03535;
  display: none;
}
.field-hint.show { display: block; }

.modal-submit {
  width: 100%;
  background: var(--green); color: var(--cream);
  border: none; cursor: pointer;
  padding: .95rem; border-radius: 12px;
  font-size: var(--fs-base); font-weight: 700;
  margin-top: .4rem;
  transition: background .2s, transform .15s;
  min-height: 52px;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.modal-submit:hover { background: var(--green-mid); transform: scale(1.02); }
.modal-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.modal-note {
  font-size: var(--fs-xs); color: #bbb;
  text-align: center; margin-top: .75rem;
}
.m-error {
  background: #fff0f0; border: 1px solid #fcc;
  border-radius: 10px; padding: .55rem .9rem;
  font-size: var(--fs-sm); color: #c00;
  margin-top: .6rem; display: none;
}
.m-error.show { display: block; }

/* Success state */
.modal-success {
  display: none; flex-direction: column;
  align-items: center; text-align: center;
  padding: 2rem .5rem 1.5rem;
}
.modal-success.show { display: flex; }
.modal-success .ms-icon { font-size: 3rem; margin-bottom: .8rem; }
.modal-success h3 {
  font-family: 'Instrument Serif', serif;
  font-size: var(--fs-xl);
  font-weight: 400; color: var(--green); margin-bottom: .5rem;
}
.modal-success p { font-size: var(--fs-sm); color: var(--muted); line-height: 1.65; }


/* ============================================================
   SETUP GUIDE
   ============================================================ */
#setup-guide { background: var(--ink); padding: 4.5rem 5%; }
.guide-inner { max-width: 720px; margin: 0 auto; }
.guide-inner h2 {
  font-family: 'Instrument Serif', serif;
  font-size: var(--fs-xl);
  font-weight: 400; color: var(--cream); margin-bottom: .4rem;
}
.guide-inner > p { font-size: var(--fs-sm); color: rgba(253,248,240,.45); margin-bottom: 1.8rem; line-height: 1.65; }
.gstep {
  background: rgba(255,255,255,.05); border-radius: 14px;
  padding: 1.1rem 1.3rem; border-left: 3px solid var(--amber); margin-bottom: 1rem;
}
.gstep .gtitle { font-weight: 700; font-size: var(--fs-sm); margin-bottom: .3rem; color: var(--cream); }
.gstep p { font-size: var(--fs-sm); color: rgba(253,248,240,.5); line-height: 1.75; }
.gstep pre { background: rgba(0,0,0,.5); border-radius: 10px; padding: .9rem 1rem; overflow-x: auto; margin-top: .7rem; color: #a8f0c0; font-size: var(--fs-xs); line-height: 1.65; }
.gstep code { background: rgba(255,255,255,.1); padding: .1rem .35rem; border-radius: 4px; font-size: var(--fs-xs); }


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 2rem 5% calc(1.5rem + env(safe-area-inset-bottom, 0px));
}
.ft {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 1.2rem;
}
.flogo { display: flex; align-items: center; }
.flogo img { height: 44px; width: auto; }
.flinks { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.flinks a { color: rgba(253,248,240,.35); font-size: var(--fs-sm); text-decoration: none; transition: color .2s; }
.flinks a:hover { color: var(--amber-l); }
.fc { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .4rem; font-size: var(--fs-xs); color: rgba(253,248,240,.22); }
.fc .city { color: var(--amber-l); }


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse    { 0%,100%{opacity:1} 50%{opacity:.35} }
@keyframes marquee  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
@keyframes spin     { to{transform:rotate(360deg)} }

.hero-badge { animation: fadeUp .55s ease both; }
.hero h1    { animation: fadeUp .6s .07s ease both; }
.hero-lead  { animation: fadeUp .6s .13s ease both; }
.hero-pills { animation: fadeUp .6s .18s ease both; }
.hero-cta-wrap { animation: fadeUp .6s .23s ease both; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

.spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}


/* ============================================================
   MODAL SUCCESS — SURVEY CTA
   ============================================================ */
.ms-survey {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
}
.ms-survey-prompt {
  font-size: var(--fs-sm);
  color: var(--muted);
  font-weight: 500;
}
.ms-survey-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--green);
  color: var(--cream);
  text-decoration: none;
  border-radius: 50px;
  padding: .65rem 1.4rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.ms-survey-btn:hover {
  background: var(--green-mid);
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(27,61,36,.22);
}
.ms-survey-arrow {
  display: inline-block;
  transition: transform .2s;
}
.ms-survey-btn:hover .ms-survey-arrow { transform: translateX(3px); }
.ms-survey-note {
  font-size: var(--fs-xs);
  color: var(--muted);
  opacity: .75;
}


/* ============================================================
   SURVEY BANNER SECTION
   ============================================================ */
.survey-section {
  background: var(--cream2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.survey-left { max-width: 560px; }
.survey-title {
  font-family: 'Instrument Serif', serif;
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: .6rem;
}
.survey-body {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.75;
}
.survey-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green);
  color: var(--cream);
  text-decoration: none;
  border-radius: 50px;
  padding: .85rem 1.8rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.survey-cta:hover {
  background: var(--green-mid);
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(27,61,36,.2);
}
.survey-cta-arrow {
  display: inline-block;
  transition: transform .2s;
}
.survey-cta:hover .survey-cta-arrow { transform: translateX(4px); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .pc.tall { grid-row: span 2; }
  .pc.wide { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 5% 2.5rem; }
  .hero-lead { max-width: 100%; }
  .hero-right { grid-template-rows: 200px 200px; height: 400px; }
  .wgrid { grid-template-columns: 1fr; gap: 3rem; }
  .wphoto-block { order: -1; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 7rem; }
  nav { flex-wrap: wrap; padding: .9rem 1rem; }
  .nav-right { width: 100%; }
  .nav-right > * { flex: 1; justify-content: center; text-align: center; }
  .hero-right { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; height: auto; }
  .pgrid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .pc.tall, .pc.wide { grid-row: auto; grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  .wphoto-block { grid-template-columns: 1fr; grid-template-rows: 220px; }
  .wphoto.tall { display: none; }
  .ft, .fc { justify-content: center; text-align: center; }
  .flinks { justify-content: center; gap: .8rem; }
  .cta-p br { display: none; }
  .prod-section, .how-section, .why-section, .cta-section, #setup-guide, footer { padding-left: 1rem; padding-right: 1rem; }
  .modal { padding: 1.8rem 1.3rem 1.5rem; border-radius: 20px; }
  .hero-left { padding: 3rem 1rem 2.5rem; }
  .survey-section { padding: 3rem 1rem; text-align: center; justify-content: center; flex-direction: column; align-items: center; }
  .survey-left { max-width: 100%; }
  .survey-title br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mq-track, .live-dot { animation: none; }
  .hero-badge, .hero h1, .hero-lead, .hero-pills, .hero-cta-wrap { animation: none; }
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  .modal, .modal-overlay { transition: none; }
}
