/* ===== Tokens ===== */
:root {
  --content-width: 1200px;
  --edge-radius: 0;
  --line-soft: #E1DCC4;
  --line-green: #B8C79B;
  --line-card: #E5E2D6;
  --surface-warm: #FDFBF3;
  --shadow-soft: 0 8px 22px rgba(80,90,50,0.07);
  --shadow-card: 0 14px 38px rgba(31,51,40,0.06);
  --shadow-panel: 0 18px 42px rgba(31,90,59,0.11);
  --card-radius: 8px;
  --ink: #233328;
  --forest: #1F5A3B;
  --muted: #55694A;
  --gold: #D8B35A;
  --plantonit-blue: #2457A6;
  --plantonit-blue-soft: #E8EEF6;
  --plantonit-blue-line: #D3E0F0;
}

/* ===== Reset & base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: #FFFFFF;
  color: #233328;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  position: relative;
}
::selection { background: #DCEBC8; color: #233328; }
input, select, textarea, button { font-family: inherit; }
h1, h2, h3, p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  background: #FFFFFF;
  color: var(--ink);
  border: 2px solid var(--plantonit-blue);
  text-decoration: none;
  font-weight: 700;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--plantonit-blue);
  outline-offset: 3px;
}

@keyframes elFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroImgIn { from { opacity: 0; transform: scale(0.94) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* ===== Top strip ===== */
.top-strip {
  padding: 10px 24px;
  background: #FFFFFF;
  border-bottom: 1px solid #E4DFC9;
}
.top-strip-inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.top-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  color: var(--ink);
  text-decoration: none;
  flex: none;
}
.top-brand-name {
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.03em;
}
.top-brand-name sup {
  margin-left: 3px;
  font-size: 7px;
  font-weight: 600;
  color: var(--gold);
}
.top-brand-tagline {
  margin-top: 3px;
  font-size: 7px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7B8078;
}
.top-distributor {
  color: #7A8F3F;
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

/* ===== Buttons & shared bits ===== */
.btn {
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  border-radius: var(--edge-radius);
  padding: 16px 26px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  min-height: 52px;
  transition: box-shadow 0.15s ease, transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: #3F9B4F;
  color: #fff;
  box-shadow: 0 4px 14px rgba(63,155,79,0.18);
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(43,156,149,0.32);
  transform: translateY(-1px);
}
.btn-ghost {
  background: #FFFFFF;
  color: #233328;
  border: 1.5px solid var(--line-green);
  padding: 15px 18px;
  font-size: 14.5px;
  border-radius: var(--edge-radius);
}
.btn-ghost:hover { border-color: #7A8F3F; background: #F8FAF4; }
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #1F5A3B;
  border: none;
  padding: 16px 6px;
  font-weight: 700;
  font-size: 15.5px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-text:hover { border-color: var(--plantonit-blue); color: var(--plantonit-blue); }
.btn-block { width: 100%; margin-top: 6px; box-sizing: border-box; }
.btn-grow { flex: 1; }
.btn-mini {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 12.5px;
  background: #FFFFFF;
  color: var(--forest);
  border: 1px solid var(--line-green);
  box-shadow: none;
  gap: 7px;
}
.btn-mini:hover {
  border-color: var(--plantonit-blue);
  color: var(--plantonit-blue);
  transform: translateY(-1px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--edge-radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}
.badge-season { background: #E3F3F1; color: #0F6F6A; border-color: #C9E7E4; }
.badge-product { background: var(--plantonit-blue-soft); color: var(--plantonit-blue); border-color: var(--plantonit-blue-line); }
.badge-sku { background: var(--plantonit-blue-soft); color: var(--plantonit-blue); padding: 5px 12px; font-size: 11.5px; letter-spacing: 0.03em; }

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #233328;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--edge-radius);
  border: 1px solid var(--line-green);
  background: #FFFFFF;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.contact-chip:hover { background: #F8FAF4; border-color: #7A8F3F; transform: translateY(-1px); }

/* ===== Section layout helpers ===== */
.section,
.section-narrow,
.section-med,
.section-form {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section { padding-top: 36px; padding-bottom: 44px; }
.section-narrow,
.section-med { padding-top: 36px; padding-bottom: 44px; }
.section-form { padding-top: 44px; padding-bottom: 52px; }
.section-tight { padding-bottom: 22px; }

.section-title { margin: 0 0 6px; font-size: 25px; font-weight: 700; color: var(--ink); }
.section-title2 { margin: 0 0 14px; font-size: 21px; font-weight: 700; color: var(--ink); }
.section-lead { margin: 0 0 16px; font-size: 14px; color: var(--muted); max-width: 600px; }
.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.section-heading-row .section-title2 {
  margin-bottom: 0;
  font-size: clamp(27px, 2.7vw, 34px);
  line-height: 1.08;
}

/* ===== Scroll-reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-child] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible [data-reveal-child] {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Hero ===== */
.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 46px 28px 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #FAF7EC 0%, #F3F0E6 45%, #E8F0E1 75%, #EFE8D7 100%);
  border-radius: var(--edge-radius);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E6DCC0;
}
.hero-copy {
  flex: 0.94 1 390px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: elFade 0.5s ease both;
  position: relative;
  z-index: 1;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-title {
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.06;
  font-weight: 800;
  color: #1F5A3B;
  letter-spacing: -0.02em;
  animation: elFade 0.6s ease 0.1s both;
}
.hero-sub { font-size: 16px; line-height: 1.55; color: var(--muted); max-width: 540px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: var(--edge-radius);
  background: #FFFFFF;
  border: 1px solid var(--line-green);
  font-size: 13px;
  font-weight: 700;
  color: #233328;
  box-shadow: 0 2px 6px rgba(80,90,50,0.06);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.hero-contacts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.hero-footnote { font-size: 12.5px; color: #55694A; font-weight: 600; margin-top: 2px; }

.hero-media { flex: 1.08 1 430px; min-width: 280px; position: relative; z-index: 1; padding: 8px 0 22px; }
.hero-frame {
  width: 100%;
  aspect-ratio: 1.22/1;
  border-radius: var(--edge-radius);
  overflow: hidden;
  border: 0;
  box-shadow: 0 34px 70px rgba(31,90,59,0.24), 0 12px 24px rgba(80,90,50,0.13);
  position: relative;
  animation: heroImgIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45), inset 0 -80px 110px rgba(31,90,59,0.10);
  pointer-events: none;
}
.hero-frame picture,
.product-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
/* ===== Hero poster variant ===== */
.btn img,
.badge img,
.pill img,
.contact-chip img,
.hero-icon {
  width: 17px;
  height: 17px;
  flex: none;
}
.btn-hero-secondary {
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  border: 1.4px solid rgba(31,90,59,0.36);
  min-height: 48px;
  padding: 13px 22px;
  box-shadow: none;
}
.btn-hero-secondary:hover {
  background: #FFFFFF;
  border-color: var(--forest);
  transform: translateY(-1px);
}
.hero {
  max-width: 1440px;
  min-height: 680px;
  padding: 54px 54px 34px;
  gap: 24px;
  background: #F7F1E4;
  border-bottom: 0;
}
.hero-footnote {
  display: none;
}
.hero-copy {
  flex: 0.86 1 420px;
  gap: 17px;
  z-index: 3;
}
.hero-badges {
  gap: 12px;
  order: 1;
}
.hero-badges .badge,
.hero-pills .pill {
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.badge-season {
  background: var(--forest);
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.18);
  padding: 11px 18px;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(31,90,59,0.2);
}
.badge-season img {
  filter: brightness(0) invert(1);
}
.badge-product {
  background: rgba(255,255,255,0.5);
  color: #40463D;
  border-color: rgba(31,51,40,0.14);
  padding: 11px 20px;
  font-size: 14px;
}
.hero-pills {
  order: 2;
  gap: 12px;
  margin-top: 8px;
}
.pill {
  padding: 11px 18px;
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(31,51,40,0.14);
  font-size: 14px;
  box-shadow: none;
}
.hero-title {
  max-width: 620px;
  font-size: clamp(42px, 5.25vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  order: 3;
}
.hero-sub {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.5;
  color: #4F5A4E;
  order: 4;
}
.hero-ctas {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
  order: 5;
}
.hero-ctas .btn {
  min-width: min(420px, 100%);
  justify-content: flex-start;
  gap: 12px;
}
.hero-contacts {
  gap: 18px;
  margin-top: 28px;
  position: relative;
  z-index: 4;
  order: 6;
}
.hero-contacts .contact-chip {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 12px 20px;
  backdrop-filter: blur(4px);
  box-shadow: none;
}
.hero-contacts .contact-chip:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.48);
}
.hero-media {
  flex: 1.12 1 500px;
  min-width: 300px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  z-index: 2;
}
.hero-media::before,
.hero-media::after {
  content: none;
}
.hero-frame {
  width: min(460px, 86%);
  aspect-ratio: 0.92/1;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  z-index: 2;
}
.hero-frame::after {
  content: none;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  filter: contrast(1.04) saturate(0.96);
}

.hero .hero-icon,
.hero .badge img,
.hero .pill img,
.hero .btn img,
.hero .contact-chip img {
  display: inline-block;
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  object-fit: contain;
  flex: 0 0 18px;
}
.hero .badge,
.hero .pill {
  width: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 1.15;
}
.hero .hero-badges,
.hero .hero-pills {
  width: auto;
  align-items: center;
  align-self: flex-start;
}
.hero .hero-pills {
  max-width: 560px;
}
.hero .badge-season .hero-icon,
.hero .btn-primary .hero-icon {
  filter: brightness(0) invert(1);
}
.hero .pill .hero-icon,
.hero .btn-hero-secondary .hero-icon {
  opacity: 0.86;
}

/* ===== Assembly experiment ===== */
.assembly-hero {
  min-height: calc(100vh - 32px);
  width: calc(100% - 48px);
  max-width: 1440px;
  margin-inline: auto;
  background: #F8FAF4;
  position: relative;
  overflow: hidden;
}
.assembly-stage {
  position: relative;
  top: 0;
  min-height: calc(100vh - 32px);
  width: 100%;
  padding: 64px 72px 56px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}
.assembly-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(248,250,244,0.94) 0%, rgba(248,250,244,0.5) 25%, rgba(248,250,244,0.06) 49%, rgba(31,51,40,0.16) 78%, rgba(21,31,25,0.62) 100%),
    linear-gradient(90deg, rgba(248,250,244,0.94) 0%, rgba(248,250,244,0.2) 48%, rgba(248,250,244,0.5) 100%);
  pointer-events: none;
}
.assembly-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 53% 48%, rgba(255,255,255,0) 0 25%, rgba(248,250,244,0.08) 48%, rgba(248,250,244,0.64) 100%),
    radial-gradient(circle at 58% 42%, rgba(31,51,40,0.12), rgba(31,51,40,0) 38%);
  pointer-events: none;
}
.assembly-copy {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(320px, 1fr);
  grid-template-rows: auto minmax(80px, 1fr) auto auto auto;
  column-gap: clamp(24px, 7vw, 120px);
  width: min(100%, 1200px);
  min-height: calc(100vh - 122px);
  margin: 0 auto;
}
.assembly-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
}
.assembly-badges .badge {
  border-radius: 999px;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.58);
  border-color: rgba(31,51,40,0.12);
  box-shadow: none;
  min-height: 42px;
  padding: 9px 18px;
}
.assembly-badges .badge-season {
  background: rgba(31,90,59,0.92);
  border-color: rgba(255,255,255,0.16);
  color: #FFFFFF;
}
.assembly-badges .badge-season img {
  filter: brightness(0) invert(1);
}
.assembly-kicker {
  display: inline-flex;
  margin-top: clamp(54px, 11vh, 118px);
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plantonit-blue);
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  justify-self: start;
  text-align: left;
}
.assembly-title {
  font-size: clamp(42px, 5.15vw, 74px);
  line-height: 1.02;
  font-weight: 800;
  color: var(--ink);
  max-width: 660px;
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  align-self: start;
  justify-self: start;
  text-align: left;
  text-wrap: balance;
}
.assembly-caption {
  margin-top: 24px;
  max-width: 420px;
  font-size: 18px;
  line-height: 1.5;
  color: #55694A;
  grid-column: 1;
  grid-row: 3;
}
.assembly-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 0;
  grid-column: 1;
  grid-row: 4;
  align-self: end;
  padding-top: 28px;
}
.assembly-ctas .btn {
  gap: 12px;
  min-height: 48px;
  width: min(390px, 100%);
  justify-content: flex-start;
}
.assembly-ctas .btn-hero-secondary {
  background: rgba(255,255,255,0.78);
}
.assembly-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
  grid-column: 2;
  grid-row: 4;
  align-self: end;
  justify-self: end;
  padding-top: 28px;
}
.assembly-contacts .contact-chip {
  color: #FFFFFF;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.assembly-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 100%;
  min-height: 0;
  transform: translateZ(0);
}
.assembly-visual::before {
  display: none;
}
.assembly-visual::after {
  display: none;
}
.assembly-video {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  transform: scale(1.14);
  transform-origin: left top;
  object-fit: cover;
  object-position: 56% 49%;
  mix-blend-mode: normal;
  filter: contrast(1.18) brightness(0.98) saturate(1.08);
  opacity: 0.9;
  pointer-events: none;
  user-select: none;
}
.assembly-corners {
  position: absolute;
  inset: 24px;
  z-index: 6;
  pointer-events: none;
}
.assembly-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: rgba(122,143,63,0.92);
}
.assembly-corner-tl {
  top: 0;
  left: 0;
  border-top: 5px solid;
  border-left: 5px solid;
}
.assembly-corner-tr {
  top: 0;
  right: 0;
  border-top: 5px solid;
  border-right: 5px solid;
}
.assembly-corner-bl {
  bottom: 0;
  left: 0;
  border-bottom: 5px solid;
  border-left: 5px solid;
}
.assembly-corner-br {
  right: 0;
  bottom: 0;
  border-right: 5px solid;
  border-bottom: 5px solid;
}
.assembly-scene-note {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(35,51,40,0.76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  pointer-events: none;
}
.assembly-scene-note::before {
  content: "";
  width: 26px;
  height: 26px;
  border: 1px solid rgba(31,51,40,0.2);
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(4px);
}
.assembly-scene-note span {
  color: rgba(85,105,74,0.78);
  font-weight: 700;
}
.assembly-scene-note strong {
  color: var(--ink);
  font-size: 14px;
}
.assembly-note-left {
  left: clamp(78px, 8vw, 150px);
  top: 29%;
}
.assembly-note-right {
  right: clamp(78px, 9vw, 170px);
  top: 29%;
}
.assembly-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
  will-change: transform, opacity;
  pointer-events: none;
  user-select: none;
  transform-origin: 50% 50%;
}
.assembly-body,
.assembly-body-ghost {
  width: min(42vw, 510px);
  z-index: 4;
}
.assembly-body {
  mix-blend-mode: multiply;
  filter: contrast(1.12) brightness(1.01) saturate(1.02);
}
.assembly-body-ghost {
  z-index: 3;
  mix-blend-mode: normal;
  filter: contrast(1.04) brightness(1.03) blur(0.2px);
}
.assembly-handle {
  width: min(32vw, 390px);
  z-index: 7;
  mix-blend-mode: normal;
  filter: contrast(1.08) brightness(1.01) drop-shadow(0 14px 18px rgba(23,45,32,0.08));
}
.assembly-cap {
  width: min(18vw, 230px);
  z-index: 8;
  mix-blend-mode: multiply;
  filter: none;
}
.assembly-label {
  width: min(24vw, 320px);
  z-index: 9;
  mix-blend-mode: normal;
  filter: contrast(1.1) saturate(1.06) drop-shadow(0 10px 16px rgba(18,66,135,0.12));
}
.assembly-drops {
  width: min(27vw, 340px);
  z-index: 2;
  mix-blend-mode: normal;
  filter: saturate(1.02) contrast(1.02);
}
.assembly-seeds {
  width: min(27vw, 340px);
  z-index: 2;
  mix-blend-mode: normal;
  filter: saturate(0.96) contrast(1.02);
}
.assembly-shadow {
  width: min(52vw, 620px);
  z-index: 1;
  mix-blend-mode: multiply;
}
.assembly-wave {
  width: min(80vw, 980px);
  z-index: 0;
  mix-blend-mode: multiply;
}

/* ===== Early growth film ===== */
.growth-film {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 10px 24px 34px;
}
.growth-film-frame {
  position: relative;
  height: clamp(480px, 46vw, 620px);
  overflow: hidden;
  background: #253224;
  box-shadow: var(--shadow-panel);
}
.growth-film-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12,22,14,0.02) 44%, rgba(12,22,14,0.28) 68%, rgba(12,22,14,0.92) 100%);
  pointer-events: none;
}
.growth-film-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.14);
  transform-origin: left top;
}
.growth-film-copy {
  position: absolute;
  left: clamp(24px, 4vw, 58px);
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 50px);
  z-index: 2;
  color: #FFFFFF;
}
.growth-film-copy h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.growth-film-copy p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}

/* ===== Problem ===== */
.problem-grid { display: grid; grid-template-columns: 1.05fr 1fr 1fr; gap: 14px; }
.problem-card {
  border-radius: var(--card-radius);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--line-card);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.problem-card h3 { font-size: 16.5px; font-weight: 700; color: var(--ink); }
.problem-card p { font-size: 13.5px; line-height: 1.55; color: #55694A; }
.problem-card-gold,
.problem-card-green,
.problem-card-forest { background: #FFFFFF; border-color: var(--line-card); }
.problem-card:first-child {
  padding: 24px 26px;
  background: #FFFFFF;
}
.problem-card-bg-icon { display: none; }
.problem-icon { width: 50px; height: 50px; border-radius: var(--card-radius); display: flex; align-items: center; justify-content: center; }
.problem-card-gold .problem-icon { background: #F3ECD3; }
.problem-card-green .problem-icon { background: #EEF1E0; }
.problem-card-forest .problem-icon { background: #E5EEE8; }

/* ===== Product ===== */
.product-section {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.product-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1fr);
  gap: 28px;
  align-items: stretch;
}
.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.product-bullets {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.product-bullets div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check-dot {
  flex: none;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 1;
  margin-top: 1px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.product-detail-card {
  min-height: 220px;
  border: 1px solid var(--line-card);
  border-radius: var(--card-radius);
  background: #FFFFFF;
  box-shadow: var(--shadow-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.product-detail-card h3 {
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
}
.product-detail-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #233328;
}
.product-detail-card .product-detail-meta {
  margin-top: auto;
  color: var(--forest);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.droplet-illustration {
  margin: auto 0 0 auto;
  width: 108px;
  height: 92px;
  object-fit: cover;
  object-position: 48% 46%;
  transform: scale(1.55);
  transform-origin: 62% 55%;
  mix-blend-mode: multiply;
}
.product-pack-card picture {
  display: block;
  margin: auto 0 0 auto;
  width: 136px;
}
.product-pack-card img {
  width: 100%;
  height: auto;
}
.product-note {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line-card);
  border-radius: var(--card-radius);
  background: linear-gradient(135deg, #F6FAF2 0%, #FFFFFF 100%);
  box-shadow: var(--shadow-card);
}
.note-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #8CC49D;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-note p {
  flex: 1;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.product-note strong {
  color: var(--ink);
}
.composition-panel {
  padding: 22px;
  border: 1px solid var(--plantonit-blue-line);
  background: #F6F9FD;
  box-shadow: var(--shadow-card);
}
.composition-panel h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.composition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.composition-grid div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 92px;
  padding: 14px;
  background: #FFFFFF;
  border: 1px solid var(--plantonit-blue-line);
}
.composition-grid strong {
  font-size: 15px;
  color: var(--plantonit-blue);
}
.composition-grid span {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--muted);
}
.product-panel {
  background: linear-gradient(135deg, #FFFFFF 0%, #FBFAF4 55%, #F7FAF4 100%);
  border: 1px solid var(--line-card);
  border-radius: var(--card-radius);
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: var(--shadow-card);
}
.product-media { flex: 0.9 1 280px; min-width: 240px; position: relative; }
.product-media-glow {
  position: absolute; inset: -14px; border-radius: 0;
  background: radial-gradient(circle at 30% 20%, rgba(43,156,149,0.10), rgba(43,156,149,0) 65%);
  pointer-events: none;
}
.product-frame {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--card-radius); overflow: hidden;
  border: 1px solid rgba(229,226,214,0.88); box-shadow: 0 14px 34px rgba(31,51,40,0.08); position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F7F2 100%);
}
.product-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  transform: scale(1.12);
}
.product-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
  pointer-events: none;
}
.product-frame-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(184,199,155,0.75);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: var(--card-radius);
}
.product-info { flex: 1.55 1 380px; min-width: 260px; display: flex; flex-direction: column; gap: 14px; }
.product-title {
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--ink);
}
.product-desc { font-size: 14.5px; line-height: 1.55; color: #55694A; }
.spec-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 2px; }
.spec-card { background: rgba(255,255,255,0.9); border: 1px solid var(--line-card); border-radius: var(--card-radius); padding: 14px; box-shadow: none; }
.spec-card:nth-child(3n+2) { background: #FFFFFF; }
.spec-card:nth-child(3n) { border-color: rgba(216,179,90,0.45); }
.spec-label { font-size: 11px; color: #55694A; margin-top: 8px; }
.spec-value { font-size: 14px; font-weight: 800; color: #233328; margin-top: 2px; }
.spec-value-sm { font-size: 13px; font-weight: 700; color: #233328; margin-top: 2px; line-height: 1.3; }

/* ===== Fit checklist ===== */
.fit-section {
  max-width: var(--content-width);
}
.fit-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 32px; border: none; box-shadow: none; background: transparent; }
.fit-item {
  display: flex; gap: 10px; align-items: flex-start; padding: 14px 0;
  border-bottom: 1px solid rgba(184,199,155,0.45); background: transparent;
}
.fit-item svg { flex: none; margin-top: 1px; }
.fit-item span { font-size: 14.5px; line-height: 1.5; color: #233328; }
.fit-item-last { border-bottom: 1px solid rgba(184,199,155,0.45); }

/* ===== Agronomist chat ===== */
.consult-section {
  max-width: calc(var(--content-width) - 48px);
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1fr);
  gap: 16px 22px;
  align-items: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #FBFAF4 100%);
  border: 1px solid var(--line-card);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
  margin-top: 6px;
  margin-bottom: 18px;
}
.consult-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.consult-copy .section-title2,
.consult-copy .section-lead {
  margin-bottom: 0;
}
.chat-panel {
  background: rgba(255,255,255,0.82); border: 1px solid rgba(184,199,155,0.5); border-radius: var(--card-radius); padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: none;
}
.chat-bubble { max-width: 88%; padding: 10px 14px; font-size: 13.2px; line-height: 1.45; }
.chat-bubble-user {
  align-self: flex-end; background: #3F9B4F; color: #fff;
  border-radius: var(--card-radius);
}
.chat-bubble-agro {
  align-self: flex-start; background: #FFFFFF; border: 1px solid #B8C79B; color: #233328;
  border-radius: var(--card-radius);
}

/* ===== Benefits ===== */
.benefits-section {
  padding-top: 34px;
}
.benefits-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.benefit-card {
  background: #FFFFFF; border: 1px solid var(--line-card); border-radius: var(--card-radius); padding: 18px;
  display: flex; flex-direction: column; gap: 10px; box-shadow: none;
  min-height: 112px;
}
.benefit-card:nth-child(1) { background: #FFFFFF; border-top: 4px solid var(--gold); }
.benefit-card:nth-child(2) { background: #FFFFFF; border-top: 4px solid #7A8F3F; }
.benefit-card:nth-child(3) { background: #FFFFFF; border-top: 4px solid var(--plantonit-blue); }
.benefit-card:nth-child(4) { background: #FFFFFF; border-top: 4px solid var(--forest); }
.benefit-card:nth-child(n+5) { grid-column: span 2; min-height: 94px; }
.benefit-icon {
  width: 34px; height: 34px; border-radius: var(--card-radius); background: rgba(221,234,210,0.82); color: #3F9B4F;
  display: flex; align-items: center; justify-content: center;
}
.benefit-card h3 { font-size: 14.5px; font-weight: 700; color: #233328; line-height: 1.25; }

/* ===== Proof / stats ===== */
.proof-section {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 18px;
  align-items: stretch;
}
.stats-grid { display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr)); gap: 10px; margin-bottom: 0; }
.stat-card { text-align: left; padding: 16px; border: 1px solid var(--line-card); border-radius: var(--card-radius); background: #FFFFFF; box-shadow: var(--shadow-card); }
.stat-card:nth-child(even) { background: #FFFFFF; }
.stat-num { font-size: 24px; font-weight: 800; color: #3F9B4F; }
.stat-num-sm { font-size: 15px; }
.stat-label { font-size: 12.5px; color: #55694A; margin-top: 4px; }
.testimonial {
  background: #FFFFFF; border: 1px solid var(--line-card); border-radius: var(--card-radius); padding: 22px;
  max-width: none; box-shadow: var(--shadow-card);
}
.testimonial p { margin: 0 0 12px; font-size: 15px; line-height: 1.6; font-style: italic; color: #233328; }
.testimonial-name { font-size: 13px; font-weight: 700; color: #233328; }
.testimonial-role { font-size: 12.5px; color: #55694A; }

/* ===== How it works + FAQ ===== */
.how-faq-section {
  max-width: var(--content-width);
  margin-top: 18px;
  margin-bottom: 18px;
  padding-top: 42px;
  padding-bottom: 44px;
  background: #F3F7EE;
  border-radius: var(--card-radius);
}
.how-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
}
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 4px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 22px;
  bottom: 22px;
  border-left: 2px dashed rgba(31,90,59,0.25);
}
.timeline-step {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.timeline-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--line-green);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-body h3 { margin: 6px 0 4px; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.timeline-body p { font-size: 13px; line-height: 1.5; color: #55694A; }

.faq-column .faq-list {
  border-top: 1px solid rgba(184,199,155,0.68);
  margin-top: 4px;
}
.faq-consult {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line-card);
  border-radius: var(--card-radius);
  background: linear-gradient(135deg, #F6FAF2 0%, #FFFFFF 100%);
  box-shadow: var(--shadow-card);
}
.faq-consult-copy { flex: 1 1 200px; }
.faq-consult-title { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.faq-consult-copy p { font-size: 13px; line-height: 1.5; color: #55694A; }
.faq-consult-btn { flex: none; gap: 8px; }

/* ===== Lead form ===== */
.form-section {
  padding-top: 34px;
  max-width: var(--content-width);
}
.form-panel {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFAF4 100%); border: 1px solid var(--line-card); border-radius: var(--card-radius); padding: 32px;
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
}
.form-title {
  display: block;
  margin: 0 0 4px;
  font-size: clamp(26px, 2.7vw, 32px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--ink);
}
.form-lead { margin: 0 0 18px; font-size: 13.5px; color: #55694A; }
.form-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}
.form-outcomes div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 10px 12px;
  background: #F3F7EE;
  border: 1px solid rgba(184,199,155,0.72);
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--ink);
}
.form-outcomes span {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--forest);
  color: #FFFFFF;
  font-size: 11px;
}
.form-response-note {
  margin: 0 0 20px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}
#lead-form-el {
  max-width: 620px;
  margin-inline: auto;
}
.form-dots { display: flex; gap: 6px; margin-bottom: 20px; }
.form-dot { flex: 1; height: 5px; border-radius: var(--card-radius); background: #E4DFC9; transition: background-color 0.4s ease; }
.form-dot.is-active { background: var(--plantonit-blue); }
.form-step { display: flex; flex-direction: column; gap: 14px; }
.form-step[hidden] { display: none; }
.form-step-label { font-size: 12px; font-weight: 700; color: #7A8F3F; letter-spacing: 0.03em; }
.form-fixed-row {
  display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: var(--card-radius);
  background: linear-gradient(135deg, #DDEAD2, #EEF6E7); border: 1px solid var(--line-green);
}
.form-fixed-row svg { flex: none; }
.form-fixed-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.form-fixed-desc { font-size: 12px; color: #55694A; }
.form-field label { display: block; font-size: 12.5px; font-weight: 700; color: #55694A; margin-bottom: 6px; }
.form-field input, .form-field select {
  width: 100%; box-sizing: border-box; height: 2.7rem; border-radius: var(--card-radius);
  border: 1px solid var(--line-green); background: #FFFFFF; color: #233328; padding: 0 14px;
  outline: none; font-size: 14px; transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus, .form-field select:focus {
  border-color: var(--plantonit-blue); box-shadow: 0 0 0 3px rgba(36,87,166,0.16);
}
.form-btn-row { display: flex; gap: 10px; margin-top: 2px; }
.form-success { padding: 24px; border-radius: var(--card-radius); background: #DDEAD2; border: 1px solid var(--line-green); text-align: center; }
.form-success-title { font-size: 15px; font-weight: 700; color: #3F9B4F; margin-bottom: 6px; }
.form-success-desc { font-size: 13px; color: #55694A; }
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid #C86A59;
  background: #FFF4F1;
  color: #842F24;
  font-size: 13px;
  line-height: 1.45;
}
.btn[disabled] { cursor: wait; opacity: 0.72; transform: none; }

/* ===== FAQ ===== */
.faq-list {
  display: block;
  border-top: 1px solid rgba(184,199,155,0.68);
}
.faq-item {
  border: 0;
  border-bottom: 1px solid rgba(184,199,155,0.68);
  border-radius: var(--edge-radius);
  background: transparent;
  overflow: hidden;
  box-shadow: none;
}
.faq-item:first-child,
.faq-item:last-child {
  grid-column: auto;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 17px 2px; cursor: pointer; background: transparent; border: none; text-align: left;
}
.faq-heading { margin: 0; }
.faq-question span:first-child { font-size: 14.5px; font-weight: 700; color: #233328; }
.faq-toggle {
  flex: none;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #3F9B4F;
  transition: transform 0.15s ease, color 0.15s ease;
}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0 42px 17px 2px; font-size: 13.5px; line-height: 1.55; color: #55694A; }

/* ===== Footer ===== */
.footer { background: #14170F; }
.footer-inner { max-width: var(--content-width); margin: 0 auto; padding: 32px 24px 28px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; margin-bottom: 20px; }
.footer-brand { font-size: 16px; font-weight: 800; color: #FFFFFF; }
.footer-tagline { font-size: 13px; color: #B7BFAE; margin-top: 4px; }
.footer-contacts { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; }
.footer-contacts a { text-decoration: none; color: #F2F0E4; }
.footer-contacts span { color: #B7BFAE; }
.footer-social { display: flex; gap: 10px; }
.footer-chip { background: transparent; border-color: #3A3F30; color: #F2F0E4; }
.footer-legal { font-size: 11.5px; line-height: 1.6; color: #8A9179; border-top: 1px solid #2C3025; padding-top: 16px; }
.footer-legal a { color: #B7BFAE; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  gap: 8px; padding: 10px 12px; background: #FFFFFF; border-top: 1px solid #E4DFC9;
  z-index: 50; box-shadow: 0 -4px 14px rgba(80,90,50,0.08);
}
.btn-sticky { flex: 1; padding: 13px 10px; font-size: 13.5px; border-radius: 0; }

@media (max-width: 900px) {
  .hero {
    padding: 32px 18px 42px;
    gap: 24px;
    min-height: auto;
  }
  .hero-copy,
  .hero-media {
    flex-basis: 100%;
  }
  .hero-media {
    max-width: 620px;
    margin: 0 auto;
    padding: 12px;
    align-self: auto;
    justify-content: center;
  }
  .hero-media::before,
  .hero-media::after {
    display: none;
  }
  .section,
  .section-narrow,
  .section-med,
  .section-form {
    padding-left: 18px;
    padding-right: 18px;
  }
  .product-panel {
    gap: 22px;
  }
  .assembly-stage {
    padding: 34px 18px;
  }
  .assembly-stage::before {
    background:
      linear-gradient(180deg, rgba(248,250,244,0.94) 0%, rgba(248,250,244,0.56) 28%, rgba(248,250,244,0.08) 55%, rgba(21,31,25,0.64) 100%),
      linear-gradient(90deg, rgba(248,250,244,0.84) 0%, rgba(248,250,244,0.04) 48%, rgba(248,250,244,0.48) 100%);
  }
  .assembly-stage::after {
    background:
      radial-gradient(circle at 52% 48%, rgba(255,255,255,0) 0 24%, rgba(248,250,244,0.08) 52%, rgba(248,250,244,0.62) 100%),
      radial-gradient(circle at 58% 42%, rgba(31,51,40,0.1), rgba(31,51,40,0) 42%);
  }
  .assembly-copy {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 100px);
  }
  .assembly-kicker,
  .assembly-title,
  .assembly-caption,
  .assembly-ctas,
  .assembly-contacts {
    grid-column: 1;
  }
  .assembly-kicker,
  .assembly-title {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }
  .assembly-ctas {
    max-width: 520px;
  }
  .assembly-contacts {
    grid-row: 5;
    justify-self: start;
    margin-top: 12px;
  }
  .assembly-ctas .btn {
    min-width: min(360px, 100%);
  }
  .assembly-visual {
    height: 100%;
    min-height: 0;
  }
  .assembly-video {
    width: 100%;
    height: 100%;
    object-position: 54% 49%;
  }
  .assembly-corners {
    display: none;
  }
  .assembly-scene-note {
    display: none;
  }
  .assembly-body,
  .assembly-body-ghost {
    width: min(70vw, 420px);
  }
  .assembly-handle {
    width: min(52vw, 300px);
  }
  .assembly-cap {
    width: min(34vw, 190px);
  }
  .assembly-label {
    width: min(46vw, 235px);
  }
  .assembly-drops,
  .assembly-seeds {
    width: min(44vw, 260px);
  }
  .assembly-shadow {
    width: min(78vw, 460px);
  }
  .assembly-wave {
    width: min(110vw, 720px);
  }
  .product-overview {
    grid-template-columns: 1fr;
  }
  .product-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .problem-grid,
  .consult-section,
  .proof-section {
    grid-template-columns: 1fr;
  }
  .consult-copy,
  .chat-panel {
    grid-column: auto;
    grid-row: auto;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .how-faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 720px) {
  body { padding-bottom: 78px; }
  .top-strip {
    padding: 8px 12px;
  }
  .top-strip-inner {
    gap: 12px;
  }
  .top-brand-name {
    font-size: 19px;
  }
  .top-brand-tagline {
    font-size: 6px;
    letter-spacing: 0.11em;
  }
  .top-distributor {
    max-width: 180px;
    font-size: 9px;
    line-height: 1.3;
  }
  .top-delivery {
    display: none;
  }
  .hero {
    padding: 26px 16px 34px;
    align-items: flex-start;
    background-position: center top;
  }
  .hero-copy {
    gap: 14px;
  }
  .hero-title {
    font-size: clamp(30px, 10vw, 40px);
    line-height: 1.08;
    letter-spacing: 0;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.5;
  }
  .hero-badges,
  .hero-pills,
  .hero-contacts,
  .hero-ctas {
    width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 8px;
  }
  .hero-ctas .btn,
  .hero-ctas .btn-text {
    width: 100%;
  }
  .hero-contacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }
  .contact-chip {
    justify-content: center;
    min-width: 0;
    padding: 9px 8px;
    font-size: 12.5px;
  }
  .hero-media {
    padding: 6px 0 14px;
  }
  .assembly-hero {
    min-height: calc(100vh - 32px);
    width: calc(100% - 32px);
  }
  .assembly-stage {
    min-height: calc(100svh - 32px);
    padding: 22px 16px calc(28px + 76px + env(safe-area-inset-bottom, 0px));
  }
  .assembly-stage::before {
    background:
      linear-gradient(180deg, rgba(248,250,244,0.94) 0%, rgba(248,250,244,0.66) 28%, rgba(248,250,244,0.1) 52%, rgba(21,31,25,0.14) 66%, rgba(21,31,25,0.72) 100%),
      linear-gradient(90deg, rgba(248,250,244,0.72) 0%, rgba(248,250,244,0.03) 56%, rgba(248,250,244,0.44) 100%);
  }
  .assembly-copy {
    width: 100%;
    max-width: none;
    min-height: calc(100svh - 82px);
    grid-template-rows: auto auto minmax(190px, 1fr) auto auto;
    padding-top: 0;
  }
  .assembly-badges {
    gap: 8px;
  }
  .assembly-badges .badge {
    padding: 8px 12px;
    font-size: 11.5px;
    min-height: 38px;
  }
  .assembly-title {
    font-size: clamp(34px, 10.2vw, 48px);
    max-width: 390px;
    justify-self: start;
    text-align: left;
    grid-row: 2;
  }
  .assembly-caption {
    margin-top: 0;
    max-width: 330px;
    font-size: 14.5px;
    grid-row: 4;
    align-self: end;
    padding: 12px 28px 12px 14px;
    color: var(--ink);
    background: linear-gradient(90deg, rgba(248,250,244,0.9) 0%, rgba(248,250,244,0.76) 72%, rgba(248,250,244,0) 100%);
    border: 0;
    box-shadow: none;
    backdrop-filter: blur(4px);
  }
  .assembly-ctas {
    flex-direction: column;
    gap: 8px;
    max-width: 360px;
    padding-top: 18px;
    grid-row: 5;
  }
  .assembly-ctas .btn,
  .assembly-ctas .btn-text {
    width: 100%;
    justify-content: center;
  }
  .assembly-contacts {
    display: none;
  }
  .assembly-contacts .contact-chip {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    padding: 9px 8px;
    font-size: 12.5px;
  }
  .assembly-visual {
    height: 100%;
    min-height: 0;
  }
  .assembly-video {
    width: 100%;
    height: 100%;
    transform: scale(1);
    transform-origin: center;
    object-position: 50% 48%;
  }
  .assembly-corners {
    inset: 18px 14px;
  }
  .assembly-corner {
    width: 24px;
    height: 24px;
  }
  .assembly-corner-tl,
  .assembly-corner-tr {
    border-top-width: 4px;
  }
  .assembly-corner-bl,
  .assembly-corner-br {
    border-bottom-width: 4px;
  }
  .assembly-corner-tl,
  .assembly-corner-bl {
    border-left-width: 4px;
  }
  .assembly-corner-tr,
  .assembly-corner-br {
    border-right-width: 4px;
  }
  .growth-film {
    padding: 6px 0 26px;
  }
  .growth-film-frame {
    height: clamp(280px, 82vw, 360px);
  }
  .growth-film-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .growth-film-copy h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.08;
  }
  .growth-film-copy p {
    margin-top: 8px;
    font-size: 12px;
  }
  .hero-frame {
    width: min(360px, 82%);
    aspect-ratio: 0.92/1;
    border-radius: 0;
  }
  .hero-frame img {
    object-position: center;
  }
  .section,
  .section-narrow,
  .section-med,
  .section-form {
    padding: 16px 16px 30px;
  }
  .section-title,
  .section-title2,
  .product-title {
    font-size: 21px;
    line-height: 1.2;
  }
  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .section-heading-row .section-title2,
  .product-title,
  .form-title {
    font-size: 28px;
    line-height: 1.1;
  }
  .btn-mini {
    min-height: 36px;
    padding: 8px 12px;
  }
  .section-lead,
  .product-desc {
    font-size: 13.5px;
    line-height: 1.55;
  }
  .problem-grid,
  .benefits-grid,
  .stats-grid,
  .spec-grid,
  .fit-list,
  .faq-list {
    grid-template-columns: 1fr;
  }
  .benefit-card:nth-child(n+5),
  .faq-item:first-child,
  .faq-item:last-child {
    grid-column: auto;
  }
  .fit-item:last-child {
    border-bottom: none;
  }
  .problem-card,
  .product-panel,
  .form-panel {
    padding: 20px;
  }
  .product-media,
  .product-info {
    min-width: 0;
    flex-basis: 100%;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-card {
    min-height: 0;
  }
  .product-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .composition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-frame {
    max-width: 320px;
    margin: 0 auto;
  }
  .product-frame-label {
    left: 10px;
    bottom: 10px;
    font-size: 11.5px;
  }
  .chat-bubble {
    max-width: 100%;
  }
  .form-btn-row {
    flex-direction: column;
  }
  .form-field input,
  .form-field select {
    font-size: 16px;
  }
  .form-outcomes {
    grid-template-columns: 1fr;
  }
  .form-outcomes div {
    min-height: 44px;
  }
  .form-btn-row .btn {
    width: 100%;
  }
  .faq-question {
    padding: 15px 2px;
  }
  .faq-answer {
    padding-right: 34px;
  }
  .footer-top,
  .footer-social {
    flex-direction: column;
  }
  .sticky-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }
  .btn-sticky {
    width: 100%;
    min-height: 46px;
    padding: 11px 10px;
    font-size: 13px;
  }
  .btn-sticky-contact {
    min-width: 74px;
    padding-inline: 10px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .hero-contacts {
    grid-template-columns: 1fr;
  }
  .hero .badge,
  .hero .pill {
    width: 100%;
    justify-content: center;
  }
  .btn {
    padding-left: 16px;
    padding-right: 16px;
  }
  .composition-grid {
    grid-template-columns: 1fr;
  }
  .sticky-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .btn-sticky-contact:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal],
  [data-reveal-child] { opacity: 1; transform: none; }
}
