/* ==========================================================================
   LiveStack — product landing page (v2)
   Page-scoped stylesheet. Only livestack.html loads this file — index.html,
   about.html and contact.html keep the original dark theme in styles.css.
   ========================================================================== */

:root {
  --white:      #FFFFFF;
  --cream:      #FAF6EF;
  --tan-100:    #F3E4D3;
  --sage-100:   #E9F3D3;
  --rust:       #8E4C0F;
  --lime:       #97C821;
  --lime-dark:  #7CA61A;
  --forest:     #0E3B24;
  --forest-2:   #164A2E;
  --ink:        #14120F;
  --muted:      #5B6D62;
  --muted-on-dark: #B9D3C2;
  --border:     rgba(20, 18, 15, 0.10);
  --border-on-dark: rgba(255, 255, 255, 0.14);
  --sage-muted: #8DAC9C;
  --hairline-cream: #E4DECF;

  --font-head: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-lead: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1200px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

.ls2 * { box-sizing: border-box; }

/* This file only loads on the marketing page, so a plain `body` selector here
   is effectively page-scoped. It's deliberately NOT on `.ls2` (a nested div,
   not body): overflow-x on body propagates to the viewport instead of creating
   a scroll container, which `.how-steps-pin-inner`'s position:sticky needs —
   put it on `.ls2` instead and the pinned "How it works" scroll breaks. */
body { overflow-x: hidden; }

.ls2 {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.ls2 img { max-width: 100%; display: block; }
.ls2 a { color: inherit; text-decoration: none; }
.ls2 button { font-family: inherit; }

.ls2 h1, .ls2 h2, .ls2 h3, .ls2 h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.45em;
  color: var(--ink);
}
.ls2 h1 { font-size: clamp(2rem, 5.4vw, 3.6rem); }
.ls2 h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.ls2 h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
.ls2 p  { margin: 0 0 1em; color: var(--muted); }

.ls2 .container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .ls2 .container { padding: 0 32px; } }

.ls2 section { padding: 64px 0; }
@media (min-width: 900px) { .ls2 section { padding: 96px 0; } }

.ls2 .center { text-align: center; }

/* ---- Eyebrow pills ---- */
.ls2 .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
  background: var(--tan-100);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.ls2 .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
}
.ls2 .eyebrow.on-dark {
  color: var(--forest);
  background: var(--sage-100);
}
.ls2 .eyebrow.on-dark::before { background: var(--lime-dark); }

/* ---- Buttons ---- */
.ls2 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.ls2 .btn:hover { transform: translateY(-1px); }
.ls2 .btn-primary { background: var(--lime); color: var(--forest); }
.ls2 .btn-primary:hover { background: var(--lime-dark); }
.ls2 .btn-outline-dark { background: transparent; border-color: rgba(255,255,255,0.35); color: var(--white); }
.ls2 .btn-outline-dark:hover { background: rgba(255,255,255,0.08); }
.ls2 .btn-outline-light { background: transparent; border-color: var(--border); color: var(--ink); }
.ls2 .btn-dark { background: var(--forest); color: var(--white); }
.ls2 .btn-dark:hover { background: var(--forest-2); }
.ls2 .btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.ls2 .btn-row.center { justify-content: center; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.ls2 .header {
  position: relative;
  z-index: 40;
}
.ls2 .header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.ls2 .brand { position: relative; display: flex; align-items: center; width: 164px; height: 36px; }
.ls2 .brand-logo { width: 164px; height: 36px; transition: opacity 0.25s ease; }
.ls2 .brand-logo-dark { position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.25s ease; }
.ls2.nav-open .brand-logo-light { opacity: 0; }
.ls2.nav-open .brand-logo-dark { opacity: 1; }
.ls2 .nav-links {
  display: flex;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  background: var(--cream);
  padding: 28px 20px 32px;
  overflow-y: auto;
  z-index: 45;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease, visibility 0s linear 0.35s;
}
.ls2 .nav-links a:not(.btn) { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.ls2 .nav-links a:not(.btn):hover { color: var(--forest); }
.ls2 .nav-actions { display: none; align-items: center; gap: 24px; }
.ls2 .nav-actions .login-link { font-weight: 600; font-size: 0.92rem; }
.ls2 .nav-toggle {
  display: flex;
  position: relative;
  background: none; border: none; color: var(--ink);
  width: 40px; height: 40px; align-items: center; justify-content: center;
  z-index: 46;
}
.ls2 .nav-toggle-icon {
  position: absolute; top: 50%; left: 50%;
  width: 22px; height: 22px;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: opacity 0.25s ease, transform 0.3s ease;
}
.ls2 .nav-toggle .icon-close { opacity: 0; transform: translate(-50%, -50%) rotate(-45deg); }
body.nav-open .nav-toggle .icon-burger { opacity: 0; transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .nav-toggle .icon-close { opacity: 1; transform: translate(-50%, -50%) rotate(0deg); }
@media (min-width: 1024px) {
  .ls2 .nav-links {
    position: static; inset: auto;
    flex-direction: row; align-items: center; justify-content: flex-start;
    gap: 32px;
    background: none; padding: 0;
    overflow: visible;
    transform: none; opacity: 1; visibility: visible; transition: none;
  }
  .ls2 .nav-actions { display: flex; }
  .ls2 .nav-toggle { display: none; }
}
.ls2 .nav-links.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0s;
}
.ls2 .nav-links.open a:not(.btn) { width: 100%; max-width: 320px; padding: 12px 0; text-align: center; color: var(--ink); }
.ls2 .nav-links.open .btn { margin-top: 12px; width: 100%; max-width: 320px; justify-content: center; }
@media (min-width: 1024px) {
  .ls2 .nav-cta-mobile { display: none; }
}
body.nav-open { overflow: hidden; }

/* header sits transparently over the hero photo (Figma bakes the nav into the hero) */
.ls2 .hero-header .nav { padding-top: 6px; }
.ls2 .hero-header .nav-links a:not(.btn) { color: var(--cream); }
.ls2 .hero-header .nav-links a:not(.btn):hover { color: var(--lime); }
.ls2 .hero-header .nav-actions .login-link { color: var(--cream); }
.ls2 .hero-header .nav-toggle { color: var(--cream); }
.ls2 .hero-header .btn-primary { color: var(--white); }
.ls2 .hero-header .btn-primary:hover { color: var(--white); }
/* open mobile menu is an opaque cream panel — links must stay dark regardless of the
   transparent hero-header color rules above (equal-specificity cascade fix) */
.ls2 .hero-header .nav-links.open a:not(.btn) { color: var(--ink); }
.ls2 .hero-header .nav-links.open a:not(.btn):hover { color: var(--forest); }
/* open mobile menu is one seamless cream sheet from the logo bar down (matches Figma) —
   the header stops being transparent-over-photo and swaps to the dark-ink logo/icon */
@media (max-width: 1023.98px) {
  .ls2 .hero-header { transition: background-color 0.3s ease; }
  .ls2.nav-open .hero-header { background: var(--cream); }
  .ls2.nav-open .hero-header .nav-toggle { color: var(--ink); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.ls2 .hero {
  position: relative;
  padding: 0 0 110px;
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.ls2 .hero-bg { position: absolute; inset: 0; z-index: 0; }
.ls2 .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.ls2 .hero-bg::after {
  /* the photo itself now carries the designed dark overlay (baked in from Figma) —
     this just seam-blends the bottom edge into the solid forest-green section below */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,26,17,0.1) 0%, rgba(9,26,17,0) 30%, rgba(10,38,25,0.25) 70%, var(--forest) 100%);
}
.ls2 .hero-content {
  position: relative; z-index: 2;
  max-width: 884px; margin: 0 auto;
  padding: 130px 20px 0;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.ls2 .hero-content h1 {
  width: 100%;
  color: var(--cream);
  font-size: clamp(2.25rem, 5.4vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
}
.ls2 .hero-content .lead {
  width: 100%;
  font-family: var(--font-lead);
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.52;
  color: rgba(250, 246, 239, 0.82);
  max-width: 800px;
  margin: 0 auto;
}
.ls2 .hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0.8px solid var(--lime); border-radius: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  font-family: var(--font-body); font-weight: 600; font-size: 0.875rem; letter-spacing: -0.002em;
  color: var(--lime);
}
.ls2 .hero-pill img { width: 16px; height: 16px; }
.ls2 .hero-content .btn-row { gap: 20px; }
.ls2 .btn-hero { border-radius: 8px; padding: 12px 24px; gap: 8px; }
.ls2 .btn-hero .btn-ic { width: 22px; height: 22px; }
.ls2 .btn-hero .btn-line { font-size: 0.95rem; font-weight: 700; white-space: nowrap; }
.ls2 .hero-content .btn-primary { color: var(--ink); }
.ls2 .btn-glass {
  background: rgba(151,200,33,0.1);
  backdrop-filter: blur(3px);
  border: 2px solid var(--hairline-cream);
  color: var(--cream);
}
.ls2 .btn-glass:hover { background: rgba(151,200,33,0.18); }

.ls2 .cta-also-row { display: flex; align-items: center; gap: 16px; width: 100%; max-width: 420px; margin: 28px auto 16px; }
.ls2 .cta-also-line { flex: 1; height: 1px; background: rgba(255,255,255,0.35); }
.ls2 .cta-also-label { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--sage-muted); white-space: nowrap; }
.ls2 .cta-also-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--white); }
.ls2 .cta-also-link img { width: 22px; height: 22px; }
.ls2 .cta-also-link:hover { color: var(--lime); }
.ls2 .hero-content .cta-also-row { margin: 0; }
.ls2 .hero-content .cta-also-link { margin: 0; }

/* ---- floating badge chips ---- */
.ls2 .hero-badges { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.ls2 .hero-badge {
  position: absolute;
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.75);
  border-radius: 999px; padding: 4px 10px 4px 4px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.5rem; letter-spacing: -0.02em;
  white-space: nowrap;
}
.ls2 .hero-badge .badge-ic { width: 18px; height: 18px; border-radius: 999px; display: flex; align-items: center; justify-content: center; }
.ls2 .hero-badge .badge-ic img { width: 10px; height: 10px; }
.ls2 .badge-rust { color: var(--rust); }
.ls2 .badge-rust .badge-ic { background: var(--rust); }
.ls2 .badge-forest { color: var(--forest); }
.ls2 .badge-forest .badge-ic { background: var(--forest); }
.ls2 .badge-forest700 { color: var(--forest-2); }
.ls2 .badge-forest700 .badge-ic { background: none; }
.ls2 .badge-forest700 .badge-ic img { width: 18px; height: 18px; }
.ls2 .badge-1 { left: 7%;  top: 24.7%; transform: rotate(-5.65deg); }
.ls2 .badge-2 { left: 73%; top: 71.1%; transform: rotate(10.5deg); }
.ls2 .badge-3 { left: 13%; top: 64%;   transform: rotate(8.63deg); }
.ls2 .badge-4 { left: 79%; top: 19%;   transform: rotate(-7.26deg); }

/* mobile: the desktop percentages sit under the (now much taller, stacked) text column —
   pin badges into the photo margin above the pill and below the buttons instead */
@media (max-width: 900px) {
  .ls2 .badge-1 { left: 5%;  top: 11%;   right: auto; bottom: auto; }
  .ls2 .badge-4 { left: auto; right: 5%; top: 11%;   bottom: auto; }
  .ls2 .badge-3 { left: 5%;  bottom: 5%; top: auto;  right: auto; }
  .ls2 .badge-2 { left: auto; right: 5%; bottom: 8%; top: auto; }
}
@media (max-width: 420px) {
  .ls2 .hero-badge { font-size: 0.4375rem; padding: 3px 8px 3px 3px; }
  .ls2 .hero-badge .badge-ic { width: 15px; height: 15px; }
  .ls2 .hero-badge .badge-ic img { width: 8px; height: 8px; }
  .ls2 .badge-forest700 .badge-ic img { width: 15px; height: 15px; }
}

/* ==========================================================================
   PROBLEM
   ========================================================================== */
.ls2 .problem {
  position: relative;
  background-color: var(--forest);
  background-image: linear-gradient(180deg, rgba(38,161,98,0) 0%, rgba(17,96,55,0.5) 11%, rgb(14,72,42) 23%, var(--forest) 60%);
  color: var(--cream);
  text-align: left;
  padding: 0 0 0;
  overflow: hidden;
}
.ls2 .problem .container { position: relative; z-index: 1; max-width: var(--maxw); padding-top: 48px; padding-bottom: 56px; }
.ls2 .pill {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 8px; padding: 10px 14px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.875rem; letter-spacing: -0.002em;
  text-transform: uppercase;
}
.ls2 .pill img { width: 18px; height: 18px; }
.ls2 .pill-sage { background: var(--sage-100); color: var(--ink); }
.ls2 .problem h2 {
  color: var(--cream);
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  line-height: 1.3;
  max-width: 1138px;
  margin: 24px 0 16px;
}
.ls2 .problem h2 .dim { color: var(--sage-muted); }
.ls2 .problem p {
  color: var(--sage-muted);
  font-family: var(--font-body); font-weight: 600;
  font-size: 1.25rem; line-height: 1.6;
  max-width: 1138px; margin: 0;
}
.ls2 .cattle-strip { position: absolute; left: 0; right: 0; bottom: 0; z-index: 0; opacity: 0.6; transform: scaleY(-1); pointer-events: none; }
.ls2 .cattle-strip img { width: 100%; display: block; }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.ls2 .how { background: var(--cream); }
.ls2 .how-head { max-width: 628px; margin: 0 0 40px; text-align: left; }
.ls2 .how h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.19;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
}
.ls2 .how-steps-pin { position: relative; }
.ls2 .how-steps-pin-inner { position: sticky; top: 24px; }
.ls2 .how-steps-pin.measuring .how-step-panel,
.ls2 .how-steps-pin.measuring .how-step-collapsible,
.ls2 .how-steps-pin.measuring .how-step-chev { transition: none !important; }
/* nav-link jumps / back-to-top drop the sticky pin so the section scrolls past
   like any other, instead of appearing to "stick" while the browser scrolls
   through its runway */
.ls2 .how-steps-pin.nav-jump .how-steps-pin-inner { position: static; }
.ls2 .how-steps { display: flex; flex-direction: column; gap: 24px; }

.ls2 .how-step { border-radius: var(--radius-lg); }
.ls2 .how-step-tag {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 6px 14px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; letter-spacing: -0.02em;
  background: var(--forest); color: var(--cream);
}
.ls2 .how-step-tag-light { background: var(--sage-100); color: var(--muted); }
.ls2 .how-step-content h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  letter-spacing: -0.02em; line-height: 1.19;
  margin: 0 0 8px;
}
.ls2 .how-step-content p { margin: 0; font-size: 0.95rem; line-height: 1.5; }

.ls2 .how-offline-row { position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
/* chat/speech-bubble callout — rounded pill + a small tail pointing down into the photo */
.ls2 .how-offline-chip {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-100); color: var(--forest);
  border-radius: 14px; padding: 6px 16px 6px 6px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; letter-spacing: -0.02em;
  box-shadow: 0 12px 24px -12px rgba(20,18,15,0.4);
}
.ls2 .how-offline-chip::after {
  content: "";
  position: absolute; left: 22px; bottom: -6px;
  width: 12px; height: 12px;
  background: var(--sage-100);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-bottom-left-radius: 3px;
}
.ls2 .how-offline-chip .ic {
  width: 28px; height: 28px; border-radius: 8px; background: var(--forest);
  display: flex; align-items: center; justify-content: center; flex: none;
  overflow: hidden;
}
.ls2 .how-offline-chip .ic img { width: 16px; height: 16px; object-fit: contain; }
.ls2 .how-offline-chip .ic.ic-art { background: none; }
.ls2 .how-offline-chip .ic.ic-art img { width: 100%; height: 100%; object-fit: cover; }
.ls2 .how-arrow { width: 22px; height: 22px; opacity: 0.85; }
/* bottom-right placement variant (currently unused, kept for reuse) */
.ls2 .how-offline-row.pos-br { top: auto; bottom: 20px; justify-content: flex-end; }
.ls2 .how-offline-row.pos-br .how-offline-chip.lg::after { left: auto; right: 26px; }
/* bigger chip — used on all three step callouts */
.ls2 .how-offline-chip.lg {
  gap: 10px; border-radius: 16px; padding: 8px 20px 8px 8px; font-size: 1rem;
}
.ls2 .how-offline-chip.lg::after { left: 26px; }
.ls2 .how-offline-chip.lg .ic { width: 34px; height: 34px; border-radius: 10px; }
.ls2 .how-offline-chip.lg .ic img { width: 20px; height: 20px; object-fit: contain; }
@media (min-width: 700px) {
  .ls2 .how-offline-row.pos-br { bottom: 32px; }
}

/* all three steps — same accordion row + scroll-driven open state */
.ls2 .how-step-collapsible {
  border: 1px solid var(--hairline-cream); overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ls2 .how-step-collapsible.open { border-color: var(--lime-dark); box-shadow: 0 20px 40px -28px rgba(124,166,26,0.45); }
.ls2 .how-step-collapsible.flat.open { border-color: var(--hairline-cream); box-shadow: none; }
.ls2 .how-step-trigger {
  position: relative;
  width: 100%; background: none; border: none; cursor: pointer; font-family: inherit;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  padding: 24px; padding-right: 56px; text-align: left;
}
.ls2 .how-step-trigger:hover { background: rgba(20,18,15,0.02); }
.ls2 .how-step-trigger .how-step-content { flex: 1; }
.ls2 .how-step-chev {
  position: absolute; top: 24px; right: 24px;
  width: 22px; height: 22px; flex: none; color: var(--forest);
  transition: transform 0.25s ease;
}
.ls2 .how-step-collapsible.open .how-step-chev { transform: rotate(180deg); }
.ls2 .how-step-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.ls2 .how-step-collapsible.open .how-step-panel { max-height: 900px; }

/* panel photo card — same treatment as the step 01 hero (bg image + gradient + overlaid copy) */
.ls2 .how-step-panel-photo {
  position: relative; overflow: hidden;
  margin: 0 24px 24px; border-radius: var(--radius-md);
  min-height: 300px; padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.ls2 .how-step-panel-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ls2 .how-step-panel-photo::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(19,48,30,0) 30%, rgba(23,52,27,0.85) 70%, rgb(12,49,18) 100%);
}
/* composite step photos already bake in their own gradient + copy — skip the extra overlay.
   min-height forced object-fit:cover to crop into the baked-in copy whenever the container's
   aspect ratio didn't match the source photo, so size the box off the image's own ratio instead. */
.ls2 .how-step-panel-photo.is-composite::after { content: none; }
.ls2 .how-step-panel-photo.is-composite { min-height: 0; padding: 0; }
.ls2 .how-step-panel-photo-content { position: relative; z-index: 2; max-width: 460px; }
.ls2 .how-step-panel-photo-content h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; margin: 0 0 8px; color: var(--cream); }
.ls2 .how-step-panel-photo-content p { margin: 0; font-size: 0.95rem; line-height: 1.5; color: rgba(250,246,239,0.85); }
.ls2 .how-step-panel-photo .how-offline-row { position: absolute; top: 20px; left: 20px; right: 20px; }
@media (min-width: 700px) {
  .ls2 .how-steps-pin-inner { top: 48px; }
  .ls2 .how-step-trigger { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; padding-right: 64px; }
  .ls2 .how-step-chev { top: 50%; transform: translateY(-50%); }
  .ls2 .how-step-collapsible.open .how-step-chev { transform: translateY(-50%) rotate(180deg); }
  .ls2 .how-step-panel-photo { margin: 0 48px 40px; min-height: 340px; padding: 40px; }
  .ls2 .how-step-panel-photo .how-offline-row { top: 32px; left: 32px; right: 32px; }
}

/* ==========================================================================
   PRODUCT
   ========================================================================== */
.ls2 .product { background: var(--white); padding: 0; }
.ls2 .product-shell {
  position: relative; overflow: hidden;
  background: var(--sage-100);
  width: 100%;
  margin: 0;
  padding: 64px 0;
  display: flex; flex-direction: column; gap: 40px;
}
@media (min-width: 900px) { .ls2 .product-shell { padding: 96px 0; gap: 56px; } }
.ls2 .product-blob { position: absolute; z-index: 0; pointer-events: none; }
.ls2 .product-blob-top { top: -160px; right: -200px; width: 460px; opacity: 0.9; }
.ls2 .product-blob-bottom { bottom: -180px; left: -240px; width: 520px; transform: rotate(6deg); opacity: 0.9; }
.ls2 .product-head, .ls2 .product-mockups, .ls2 .product .systems-frame { position: relative; z-index: 1; }
.ls2 .product-head { max-width: 780px; text-align: left; }
.ls2 .product-head h2 { color: var(--ink); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.19; margin: 20px 0 12px; max-width: 780px; }
.ls2 .product-head p { color: var(--muted); font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; margin: 0; max-width: 780px; }

.ls2 .product-mockups { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.ls2 .mockup-panel {
  position: relative; overflow: hidden;
  background: var(--forest); border-radius: var(--radius-lg);
  width: 100%; padding-top: 32px;
}
.ls2 .mockup-panel-shape { position: absolute; left: -10%; bottom: -6%; width: 120%; height: auto; opacity: 0.5; }
.ls2 .mockup-panel-shot { position: relative; display: block; width: 92%; margin: 0 auto; border-radius: 12px 12px 0 0; box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
.ls2 .mockup-panel-shot-mobile { width: 60%; max-width: 260px; }
.ls2 .mockup-panel-mobile { display: flex; align-items: center; justify-content: center; padding-bottom: 32px; }
@media (min-width: 900px) {
  .ls2 .product-mockups { flex-direction: row; align-items: stretch; }
  .ls2 .mockup-panel-web { flex: 1 1 68%; }
  .ls2 .mockup-panel-mobile { flex: 1 1 28%; padding-bottom: 48px; }
  .ls2 .mockup-panel { padding-top: 48px; min-height: 480px; }
}

/* four systems */
.ls2 .systems-frame {
  border: 1px solid var(--hairline-cream); border-radius: 32px;
  padding: 32px 0 0;
  display: flex; flex-direction: column; gap: 32px; align-items: flex-start;
  background: rgba(255,255,255,0.25);
}
.ls2 .systems-frame .pill { margin-left: 24px; }
.ls2 .pill-forest { background: var(--forest); color: var(--sage-100); }
.ls2 .systems-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  width: 100%; padding: 0 12px 12px;
}
@media (min-width: 700px) { .ls2 .systems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ls2 .systems-grid { grid-template-columns: repeat(4, 1fr); } }

.ls2 .system-card {
  background: rgba(234,239,222,0.58);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 280px; justify-content: flex-end;
}
.ls2 .system-copy h4 { font-family: var(--font-body); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; font-size: 0.95rem; color: var(--forest); margin: 0 0 6px; }
.ls2 .system-copy p { font-size: 0.85rem; margin: 0; max-width: 280px; }

.ls2 .system-art { position: relative; }
.ls2 .system-art-performance { display: flex; flex-direction: column; align-items: center; }
.ls2 .system-art-chart { width: 100%; border-radius: 12px; background: var(--cream); box-shadow: 0 6px 14px rgba(0,0,0,0.04); }
.ls2 .system-chip { display: inline-flex; align-items: center; gap: 4px; background: var(--white); border-radius: 8px; padding: 6px 10px; font-family: var(--font-body); font-weight: 700; font-size: 0.7rem; color: var(--lime-dark); box-shadow: 0 4px 10px rgba(0,0,0,0.06); }
.ls2 .system-chip .dim { color: var(--ink); font-weight: 700; }
.ls2 .system-chip-float { margin-top: -18px; }

.ls2 .system-art-capture { display: flex; flex-direction: column; gap: 8px; }
.ls2 .system-row { display: flex; align-items: center; gap: 8px; background: var(--white); border-radius: 8px; padding: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.04); }
.ls2 .system-row-ic { flex: none; width: 26px; height: 26px; border-radius: 6px; background: var(--lime); display: flex; align-items: center; justify-content: center; }
.ls2 .system-row-ic img { width: 15px; height: 15px; }
.ls2 .system-row-text { flex: 1; display: flex; flex-direction: column; font-family: var(--font-head); font-size: 0.72rem; color: var(--ink); gap: 2px; min-width: 0; }
.ls2 .system-row-text b { font-weight: 700; }
.ls2 .system-row-sub { font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; color: var(--muted); }
.ls2 .system-row-meta { flex: none; display: flex; align-items: center; gap: 4px; font-family: var(--font-head); font-weight: 600; font-size: 0.68rem; color: var(--ink); }
.ls2 .system-row-status { width: 15px; height: 15px; }

.ls2 .system-art-alert { position: relative; height: 150px; display: flex; align-items: center; justify-content: center; }
.ls2 .system-art-radar { width: 150px; height: 150px; }
.ls2 .system-chip-alert { position: absolute; background: var(--white); border-radius: 7px; padding: 5px 10px 5px 5px; font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); opacity: 0.92; white-space: nowrap; }
.ls2 .system-chip-alert .chip-ic { width: 24px; height: 22px; border-radius: 6px; background: var(--lime); display: flex; align-items: center; justify-content: center; flex: none; }
.ls2 .system-chip-alert .chip-ic img { width: 14px; height: 14px; }
.ls2 .chip-1 { top: 6px; left: 0; }
.ls2 .chip-2 { top: 62px; right: -6px; }
.ls2 .chip-3 { bottom: 4px; left: 8px; }

.ls2 .system-art-numbers { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.ls2 .stat-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--white); border-radius: 8px; padding: 8px 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.04); }
.ls2 .stat-text { display: flex; flex-direction: column; gap: 2px; }
.ls2 .stat-text b { font-family: var(--font-head); font-weight: 500; font-size: 0.68rem; color: var(--muted); }
.ls2 .stat-text span { font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; color: var(--ink); }
.ls2 .stat-graph { width: 44px; height: 30px; flex: none; }
.ls2 .stat-row-donut .stat-graph { width: 34px; height: 34px; }

/* ==========================================================================
   OFFLINE ("No signal? No problem.")
   ========================================================================== */
.ls2 .offline { position: relative; overflow: hidden; background: var(--forest); color: var(--white); }
.ls2 .offline::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(900px 700px at 108% 118%, rgba(0,0,0,0.55), transparent 60%),
    url('../img/hero/cattle-silhouette-strip.png');
  background-repeat: no-repeat, no-repeat;
  background-position: center, left top;
  background-size: cover, cover;
}
.ls2 .offline > * { position: relative; z-index: 1; }
.ls2 .offline-head { max-width: 780px; text-align: left; }
.ls2 .offline-head h2 { color: var(--cream); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.19; margin: 20px 0 12px; }
.ls2 .offline-head p { color: var(--sage-muted); font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; max-width: 780px; }

.ls2 .sync-demo {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
  max-width: 340px; margin: 48px auto 0; padding: 0 20px;
  position: relative;
}
.ls2 .sync-line { display: none; }

.ls2 .sync-label, .ls2 .sync-caption { display: flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--sage-muted); }
.ls2 .sync-label-left { grid-row: 1; }
.ls2 .sync-label-right { grid-row: 7; }
.ls2 .sync-caption-left { grid-row: 5; }
.ls2 .sync-caption-right { grid-row: 11; }
.ls2 .dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.ls2 .dot-rust { background: var(--rust); }
.ls2 .dot-lime { background: var(--lime); }

.ls2 .orb {
  position: relative; z-index: 1; justify-self: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest); border: 1px solid rgba(228,222,207,0.34);
  display: flex; align-items: center; justify-content: center;
}
.ls2 .orb img { width: 22px; height: 22px; opacity: 0.65; }
.ls2 .orb-lime { border-color: var(--lime); }
.ls2 .orb-lime img { opacity: 1; }
.ls2 .sync-orb-left-top { grid-row: 2; }
.ls2 .sync-orb-left-bottom { grid-row: 4; }
.ls2 .sync-orb-right-top { grid-row: 8; }
.ls2 .sync-orb-right-bottom { grid-row: 10; }

.ls2 .sync-card-left { grid-row: 3; }
.ls2 .sync-card-right { grid-row: 9; }

.ls2 .log-card {
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
}
.ls2 .log-card .status {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 12px; margin-bottom: 18px;
}
.ls2 .log-card .status img { width: 28px; height: 28px; }
.ls2 .log-card.offline-state .status { background: var(--tan-100); }
.ls2 .log-card.synced-state .status { background: var(--sage-100); }
.ls2 .log-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; margin: 0 0 6px; }
.ls2 .log-card p { display: flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 500; font-size: 1rem; color: var(--muted); margin: 0 0 14px; }
.ls2 .log-card p .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); flex: none; }
.ls2 .log-card .chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  padding: 6px 10px; border-radius: 4px;
  background: var(--tan-100); color: var(--rust);
}
.ls2 .log-card .chip.synced { background: var(--sage-100); color: var(--lime-dark); }

.ls2 .orb {
  position: relative; z-index: 1;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest); border: 1px solid rgba(228,222,207,0.34);
  display: flex; align-items: center; justify-content: center;
}
.ls2 .orb img { width: 22px; height: 22px; opacity: 0.65; }
.ls2 .orb-lime { border-color: var(--lime); }
.ls2 .orb-lime img { opacity: 1; }

.ls2 .sync-link {
  grid-row: 6; justify-self: center;
  flex: none; width: 2px; height: 40px;
  background: repeating-linear-gradient(180deg, rgba(228,222,207,0.55) 0 6px, transparent 6px 12px);
  position: relative;
}
.ls2 .sync-link svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(90deg); }

@media (min-width: 700px) {
  .ls2 .sync-demo {
    grid-template-columns: 50px minmax(0,300px) minmax(140px,220px) minmax(0,300px) 50px;
    grid-template-rows: auto auto auto;
    column-gap: 14px; row-gap: 16px;
    align-items: center; justify-content: center;
    max-width: 980px;
  }
  .ls2 .sync-line {
    display: block; grid-row: 2 / 4; align-self: stretch; justify-self: center;
    width: 2px; z-index: 0;
    background: repeating-linear-gradient(180deg, rgba(228,222,207,0.4) 0 6px, transparent 6px 12px);
  }
  .ls2 .sync-line-left { grid-column: 1; }
  .ls2 .sync-line-right { grid-column: 5; }
  .ls2 .sync-line-lime { background: repeating-linear-gradient(180deg, var(--lime) 0 6px, transparent 6px 12px); }

  .ls2 .sync-elbow {
    display: block; grid-row: 1; align-self: end; height: 50%; width: 39px;
    border-top: 2px dashed rgba(228,222,207,0.4);
    pointer-events: none; z-index: 0;
  }
  .ls2 .sync-elbow-left {
    grid-column: 1 / 3; justify-self: start; margin-left: 25px;
    border-left: 2px dashed rgba(228,222,207,0.4);
    border-top-left-radius: 18px;
  }
  .ls2 .sync-elbow-right {
    grid-column: 4 / 6; justify-self: end; margin-right: 25px;
    border-top-color: var(--lime);
    border-right: 2px dashed var(--lime);
    border-top-right-radius: 18px;
  }

  .ls2 .sync-label-left { grid-column: 2; grid-row: 1; justify-self: start; margin-left: 10px; }
  .ls2 .sync-label-right { grid-column: 4; grid-row: 1; justify-self: end; margin-right: 10px; }

  .ls2 .sync-orb-left-top { grid-column: 1; grid-row: 2; }
  .ls2 .sync-orb-left-bottom { grid-column: 1; grid-row: 3; }
  .ls2 .sync-orb-right-top { grid-column: 5; grid-row: 2; }
  .ls2 .sync-orb-right-bottom { grid-column: 5; grid-row: 3; }

  .ls2 .sync-card-left { grid-column: 2; grid-row: 2; }
  .ls2 .sync-card-right { grid-column: 4; grid-row: 2; }

  .ls2 .sync-link {
    grid-column: 3; grid-row: 2;
    justify-self: stretch; width: auto; height: 2px;
    background: repeating-linear-gradient(90deg, rgba(228,222,207,0.55) 0 6px, transparent 6px 12px);
  }
  .ls2 .sync-link svg { transform: translate(-50%,-50%); }

  .ls2 .sync-caption-left { grid-column: 2; grid-row: 3; }
  .ls2 .sync-caption-right { grid-column: 4; grid-row: 3; flex-direction: row-reverse; justify-self: end; text-align: right; }
}

/* ==========================================================================
   AI ASSISTANT
   ========================================================================== */
.ls2 .ai-assistant { position: relative; background: var(--forest); overflow: hidden; padding: 64px 0; }
.ls2 .ai-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ls2 .ai-assistant::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.83), rgba(0,27,18,0.83));
}
.ls2 .ai-grid { position: relative; z-index: 2; display: grid; gap: 48px; align-items: center; }
.ls2 .ai-text { max-width: 600px; }
.ls2 .ai-text h2 { color: var(--cream); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.19; margin: 20px 0 12px; }
.ls2 .ai-text p { color: var(--cream); font-family: var(--font-body); font-weight: 500; font-size: 1.1rem; max-width: 560px; }
.ls2 .ai-features { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 24px; }
.ls2 .ai-feature { display: flex; flex-direction: column; gap: 20px; font-family: var(--font-body); font-weight: 500; font-size: 0.92rem; color: rgba(255,255,255,0.7); width: 132px; }
.ls2 .ai-feature-ic {
  width: 48px; height: 48px; border-radius: 8px;
  background: rgba(234,239,222,0.3);
  display: flex; align-items: center; justify-content: center;
}
.ls2 .ai-feature-ic img { width: 28px; height: 28px; }

.ls2 .ai-phone { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; display: flex; align-items: stretch; gap: 0; }
.ls2 .ai-lang-col { display: none; flex-direction: column; align-items: flex-start; justify-content: flex-end; flex: none; width: 156px; padding-bottom: 20px; }
.ls2 .ai-lang-card {
  background: var(--white); border-radius: 12px; padding: 12px;
  width: 130px; box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.ls2 .ai-lang-connector {
  display: block; width: 66px; height: 82px;
  margin-left: 90px; margin-right: -6px;
  border-left: 1.5px dashed rgba(255,255,255,0.55);
  border-bottom: 1.5px dashed rgba(255,255,255,0.55);
  border-bottom-left-radius: 22px;
}
.ls2 .ai-lang-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 4px; font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; color: var(--ink); }
.ls2 .ai-lang-row img { width: 9.5px; height: 5.3px; }
.ls2 .ai-lang-row .radio { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid rgba(92,87,78,0.34); background-color: #7CA61A; box-shadow: inset 0 0 0 3px #fff; flex: none; }
.ls2 .ai-lang-selected { border-bottom: 1px solid var(--border); margin-bottom: 4px; padding-bottom: 10px; }

.ls2 .chat-card {
  position: relative; z-index: 2; flex: 1 1 0; min-width: 0;
  background: var(--white); border-radius: 16px;
  padding: 20px 14px 14px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.22);
  display: flex; flex-direction: column; gap: 14px;
}
.ls2 .chat-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.ls2 .chat-who { display: flex; align-items: center; gap: 8px; }
.ls2 .chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--lime); display: flex; align-items: center; justify-content: center; overflow: hidden; flex: none; }
.ls2 .chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ls2 .chat-avatar-sm { width: 28px; height: 28px; }
.ls2 .chat-who-text { display: flex; flex-direction: column; }
.ls2 .chat-who-text b { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.ls2 .chat-who-text i { font-style: normal; font-family: var(--font-head); font-weight: 600; font-size: 0.68rem; color: var(--muted); }
.ls2 .chat-status { display: inline-flex; align-items: center; gap: 5px; background: var(--sage-100); border-radius: 6px; padding: 5px 8px; font-family: var(--font-head); font-weight: 600; font-size: 0.68rem; color: var(--muted); }

.ls2 .chat-body { display: flex; flex-direction: column; gap: 14px; }
.ls2 .chat-bubble { border-radius: 12px; padding: 10px 14px; font-family: var(--font-head); font-weight: 500; font-size: 0.78rem; color: var(--ink); }
.ls2 .chat-bubble-user { align-self: flex-end; max-width: 78%; background: #f1f4e2; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.ls2 .chat-row { display: flex; align-items: flex-start; gap: 8px; }
.ls2 .chat-bubble-ai { flex: 1; background: var(--white); border: 1px solid var(--hairline-cream); display: flex; flex-direction: column; gap: 8px; }
.ls2 .chat-bubble-ai p { margin: 0; font-family: var(--font-head); font-weight: 500; font-size: 0.78rem; color: var(--ink); line-height: 1.5; }
.ls2 .chat-time { font-family: var(--font-head); font-weight: 500; font-size: 0.6rem; color: #8d938d; }
.ls2 .chat-suggestion { display: flex; gap: 6px; background: #f1f4e2; border-radius: 10px; padding: 8px; }
.ls2 .chat-suggestion img { width: 16px; height: 16px; flex: none; margin-top: 2px; }
.ls2 .chat-suggestion b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.68rem; color: var(--forest); }
.ls2 .chat-suggestion span { display: block; font-family: var(--font-head); font-weight: 500; font-size: 0.64rem; color: var(--muted); margin: 4px 0 8px; }
.ls2 .chat-suggestion-link { display: flex; align-items: center; justify-content: space-between; background: var(--white); border: 1px solid #ebebeb; border-radius: 6px; padding: 6px 10px; font-family: var(--font-head); font-weight: 600; font-size: 0.68rem; color: var(--forest); }
.ls2 .chat-suggestion-link img { width: 4.6px; height: 8.5px; margin: 0; }

.ls2 .chat-prompts { display: flex; gap: 6px; flex-wrap: wrap; }
.ls2 .chat-prompts span { flex: 1 1 30%; background: #f1f4e2; border-radius: 8px; padding: 8px; font-family: var(--font-head); font-weight: 600; font-size: 0.62rem; color: var(--muted); }
.ls2 .chat-input { display: flex; align-items: center; gap: 6px; }
.ls2 .chat-input span:first-child { flex: 1; background: #f1f4e2; border-radius: 999px; padding: 10px 14px; font-family: var(--font-head); font-weight: 600; font-size: 0.68rem; color: rgba(92,87,78,0.46); }
.ls2 .chat-send { width: 28px; height: 28px; border-radius: 50%; background: var(--lime); color: var(--forest); display: flex; align-items: center; justify-content: center; flex: none; font-weight: 700; }

@media (min-width: 900px) {
  .ls2 .ai-grid { grid-template-columns: 1fr 1fr; }
  .ls2 .ai-lang-col { display: flex; }
}

/* ==========================================================================
   TRUSTED / STATS / TESTIMONIALS
   ========================================================================== */
.ls2 .trusted { background: var(--cream); padding-bottom: 0; }
.ls2 .trusted-head { max-width: 780px; text-align: left; margin-bottom: 48px; }
.ls2 .trusted-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.19; margin: 20px 0 12px; }
.ls2 .trusted-head p { font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; }

.ls2 .stats-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px;
  align-items: center; margin-bottom: 56px;
}
.ls2 .stats-divider { display: none; }
.ls2 .stat .num { font-family: var(--font-body); font-weight: 600; letter-spacing: -0.02em; font-size: clamp(2.5rem, 7vw, 6rem); line-height: 0.9; color: var(--lime); }
.ls2 .stat .label { font-size: 0.9rem; color: var(--muted); font-weight: 500; margin-top: 8px; }
@media (min-width: 700px) {
  .ls2 .stats-row { grid-template-columns: repeat(2, 1fr) auto repeat(2, 1fr); gap: 0 56px; }
  .ls2 .stats-divider { display: block; width: 1px; height: 100px; background: var(--border); }
}

.ls2 .trusted-subhead {
  font-family: var(--font-head); font-weight: 700; color: var(--ink);
  font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.19; letter-spacing: -0.02em;
  text-align: center; max-width: 780px; margin: 0 auto 48px; padding: 0 20px;
}

.ls2 .marquee-wrap { display: flex; flex-direction: column; gap: 24px; padding-bottom: 80px; }
.ls2 .marquee-row {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ls2 .marquee-track { display: flex; gap: 24px; width: max-content; animation: ls2-marquee 24s linear infinite; }
.ls2 .marquee-track-reverse { animation-name: ls2-marquee-reverse; animation-duration: 27s; }
.ls2 .marquee-row:hover .marquee-track { animation-play-state: paused; }
@keyframes ls2-marquee { from { transform: translateX(0); } to { transform: translateX(-25%); } }
@keyframes ls2-marquee-reverse { from { transform: translateX(-25%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .ls2 .marquee-track { animation: none; } }

.ls2 .testimonial {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 16px; border: 1px solid var(--hairline-cream);
  width: 300px; flex: none;
  display: flex; flex-direction: column; gap: 24px;
}
.ls2 .testimonial::before {
  content: "\201C"; font-family: var(--font-head); font-weight: 500;
  font-size: 4.5rem; line-height: 0.7; color: var(--lime);
}
.ls2 .testimonial p { font-size: 0.9rem; color: var(--ink); margin: 0; line-height: 1.5; }
.ls2 .testimonial .who { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ls2 .testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  flex: none; overflow: hidden; background: var(--sage-100);
}
.ls2 .testimonial .avatar img { width: 100%; height: 100%; object-fit: cover; }
.ls2 .testimonial .name { font-weight: 700; font-size: 0.85rem; font-family: var(--font-head); }
.ls2 .testimonial .role { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.ls2 .faq { background: var(--white); }
.ls2 .faq-head { max-width: 780px; text-align: left; margin-bottom: 48px; }
.ls2 .faq-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.19; margin: 20px 0 12px; }
.ls2 .faq-head p { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; margin: 0; }
.ls2 .faq-list { max-width: 1090px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.ls2 .faq-item {
  border: 1px solid transparent; border-radius: 16px;
  overflow: hidden; background: var(--cream);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.ls2 .faq-item.open { background: rgba(234,239,222,0.58); border-color: var(--lime-dark); }
.ls2 .faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: none; border: none; text-align: left; cursor: pointer;
  padding: 28px 32px; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--ink);
}
.ls2 .faq-item.open .faq-q { color: var(--forest); }
.ls2 .faq-q .chev { position: relative; flex: none; width: 20px; height: 20px; color: var(--ink); }
.ls2 .faq-item.open .faq-q .chev { color: var(--forest); }
.ls2 .faq-q .chev::before, .ls2 .faq-q .chev::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: currentColor;
  transform: translate(-50%, -50%);
}
.ls2 .faq-q .chev::before { width: 20px; height: 2px; }
.ls2 .faq-q .chev::after { width: 2px; height: 20px; transition: opacity 0.15s ease; }
.ls2 .faq-item.open .faq-q .chev::after { opacity: 0; }
.ls2 .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.ls2 .faq-item.open .faq-a { max-height: 240px; }
.ls2 .faq-a p { padding: 0 32px 28px; margin: 0; font-family: var(--font-head); font-weight: 500; font-size: 1rem; line-height: 1.48; color: var(--muted); max-width: 640px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.ls2 .contact { position: relative; background: var(--ink); color: var(--white); overflow: hidden; }
.ls2 .contact-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ls2 .contact::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,27,18,0.8));
}
.ls2 .contact-grid { position: relative; z-index: 2; display: grid; gap: 48px; align-items: center; }
.ls2 .contact-head h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.19; margin: 20px 0 24px; }
.ls2 .contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 480px; }
.ls2 .contact-form label { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; color: var(--cream); }
.ls2 .contact-form input,
.ls2 .contact-form textarea {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 1px solid #d4d4d4; background: var(--white);
  color: var(--ink); font-family: var(--font-body); font-size: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.ls2 .contact-form input::placeholder,
.ls2 .contact-form textarea::placeholder { color: #737373; }
.ls2 .contact-form textarea { min-height: 100px; resize: vertical; }
.ls2 .contact-form .btn-primary { padding: 12px 20px; font-size: 1rem; }
.ls2 .form-note { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin: 0; }

.ls2 .contact-side { display: flex; flex-direction: column; gap: 16px; }
.ls2 .contact-photo {
  border-radius: 20px; overflow: hidden; border: 3px solid var(--lime);
  aspect-ratio: 600/368;
}
.ls2 .contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.ls2 .contact-info { display: flex; flex-direction: column; gap: 4px; }
@media (min-width: 560px) { .ls2 .contact-info { flex-direction: row; flex-wrap: wrap; } }
.ls2 .contact-info-item {
  display: flex; align-items: center; gap: 12px; padding: 8px 12px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; color: var(--white);
  flex: 1 1 auto; min-width: 0;
}
.ls2 .contact-info-wide { flex-basis: 100%; }
.ls2 .contact-info-ic {
  flex: none; width: 40px; height: 40px; border-radius: 8px;
  background: rgba(234,239,222,0.3);
  display: flex; align-items: center; justify-content: center;
}
.ls2 .contact-info-ic img { width: 22px; height: 22px; }
@media (min-width: 900px) { .ls2 .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ls2 .footer-cta {
  position: relative; overflow: hidden;
  background: var(--forest); color: var(--white); text-align: center;
}
.ls2 .footer-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(60% 90% at 50% 30%, rgba(151,200,33,0.14), transparent 70%),
    url('../img/hero/cattle-silhouette-strip.png');
  background-repeat: no-repeat, no-repeat;
  background-position: center, center bottom;
  background-size: cover, cover;
}
.ls2 .footer-cta > * { position: relative; z-index: 1; }
.ls2 .footer-cta h2 {
  color: var(--cream); font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05; letter-spacing: -0.03em;
  max-width: 834px; margin: 0 auto 8px;
}
.ls2 .footer-cta p { color: var(--sage-muted); font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; max-width: 748px; margin: 0 auto 28px; }
.ls2 .footer-cta .btn-row { gap: 20px; }
.ls2 .footer-cta .btn-primary { color: var(--ink); }
.ls2 .site-footer { position: relative; overflow: hidden; background: var(--forest); color: var(--sage-muted); padding: 56px 0 24px; border-top: 1px solid var(--border-on-dark); box-shadow: 0 -24px 32px -24px rgba(0,0,0,0.35) inset; }
.ls2 .site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('../img/hero/cattle-silhouette-strip.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.ls2 .site-footer .container { position: relative; z-index: 1; }
.ls2 .site-footer p { color: var(--sage-muted); }
.ls2 .footer-brand-row {
  display: flex; flex-direction: column; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border-on-dark);
}
.ls2 .footer-brand { display: block; }
.ls2 .footer-brand img { width: 154px; height: auto; }
.ls2 .footer-col h4 { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--sage-muted); margin: 0 0 16px; }
.ls2 .footer-col a { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; color: var(--cream); padding: 6px 0; }
.ls2 .footer-col a:hover { color: var(--lime); }
.ls2 .footer-lang-social { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.ls2 .footer-lang { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; color: var(--sage-muted); }
.ls2 .footer-lang-select {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  border: 0.7px solid rgba(228,222,207,0.34); border-radius: 6px;
  padding: 6px 12px; width: 126px; font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; color: var(--cream);
}
.ls2 .footer-lang-select svg { width: 14px; height: 14px; flex: none; }
.ls2 .footer-socials { display: flex; gap: 8px; }
.ls2 .footer-socials a {
  width: 20px; height: 20px; color: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.ls2 .footer-socials a img, .ls2 .footer-socials a svg { width: 100%; height: 100%; }
.ls2 .footer-bottom {
  display: flex; flex-direction: column-reverse; gap: 12px;
  padding-top: 24px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--sage-muted);
}
.ls2 .footer-legal-links { display: flex; gap: 8px; }
.ls2 .footer-legal-links a { padding: 6px 8px; font-family: var(--font-body); font-weight: 500; color: var(--cream); }
.ls2 .footer-legal-links a:hover { color: var(--lime); }
@media (min-width: 700px) {
  .ls2 .footer-brand-row { flex-direction: row; justify-content: space-between; align-items: stretch; }
  .ls2 .footer-lang-social { align-items: flex-end; justify-content: flex-end; }
  .ls2 .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---- scroll reveal (reuses main.js .reveal/.in classes) ---- */
.ls2 .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }

/* ---- back-to-top button ---- */
.ls2 .scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  box-shadow: 0 10px 24px -8px rgba(20, 18, 15, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.ls2 .scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.ls2.nav-open .scroll-top-btn.visible { opacity: 0; visibility: hidden; }
.ls2 .scroll-top-btn:hover { background: var(--lime-dark); }
.ls2 .scroll-top-btn svg { width: 20px; height: 20px; }
@media (min-width: 700px) {
  .ls2 .scroll-top-btn { right: 32px; bottom: 32px; width: 48px; height: 48px; }
}
.ls2 .reveal.in { opacity: 1; transform: none; }
