:root {
  --green-900: #10291d;
  --green-850: #173b2a;
  --green-800: #1d4a33;
  --olive-700: #5f6f3d;
  --leaf-500: #a7c957;
  --leaf-400: #cce879;
  --earth-500: #d8c7a3;
  --cream-100: #f7f4ea;
  --cream-200: #eee7d5;
  --brown-900: #24140d;
  --brown-700: #3a2418;
  --black: #111111;
  --white: #ffffff;
  --muted: #6e766b;
  --shadow: 0 24px 80px rgba(16, 41, 29, 0.16);
  --shadow-strong: 0 34px 120px rgba(0, 0, 0, 0.32);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --ease: cubic-bezier(.2, .9, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--green-900);
  background: var(--cream-100);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--leaf-500);
  color: var(--green-900);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .055;
  background-image:
    radial-gradient(circle at 20% 20%, #000 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, #000 0 1px, transparent 1px);
  background-size: 18px 18px, 26px 26px;
  mix-blend-mode: multiply;
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(167, 201, 87, .22), rgba(167, 201, 87, 0) 62%);
  opacity: 0;
  transition: opacity .35s ease;
}

body.has-pointer .cursor-glow {
  opacity: 1;
}

.container,
.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 112px 0;
  position: relative;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  width: min(var(--max), calc(100% - 28px));
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: var(--cream-100);
  background: rgba(16, 41, 29, .72);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .18);
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.site-header.is-scrolled {
  background: rgba(16, 41, 29, .93);
  border-color: rgba(167, 201, 87, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(167, 201, 87, .25), rgba(255, 255, 255, .08));
  border: 1px solid rgba(167, 201, 87, .22);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--leaf-400);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  letter-spacing: .14em;
  font-size: .85rem;
}

.brand-text small {
  margin-top: 4px;
  color: rgba(247, 244, 234, .7);
  font-size: .72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(247, 244, 234, .78);
  font-size: .9rem;
  font-weight: 650;
  transition: color .25s ease, background .25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--cream-100);
  background: rgba(255, 255, 255, .1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--green-900);
  background: var(--leaf-500);
  font-size: .9rem;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(167, 201, 87, .25);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 48px;
  padding: 132px 0 92px;
  position: relative;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -2;
  background:
    radial-gradient(circle at 18% 22%, rgba(167, 201, 87, .23), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(216, 199, 163, .22), transparent 26%),
    linear-gradient(135deg, var(--green-900) 0%, var(--green-850) 45%, #0c1d14 100%);
  overflow: hidden;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 56% 0 0;
  background:
    linear-gradient(to bottom, rgba(16, 41, 29, 0), rgba(16, 41, 29, .92)),
    radial-gradient(ellipse at center, rgba(58, 36, 24, .9), rgba(36, 20, 13, .96));
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 244, 234, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 234, .055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0 45%, transparent 80%);
}

.liquid-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 45% 55% 60% 40% / 45% 40% 60% 55%;
  filter: blur(.2px);
  animation: morph 10s var(--ease) infinite alternate;
  opacity: .26;
}

.orb-one {
  right: -110px;
  top: 120px;
  background: radial-gradient(circle at 35% 35%, var(--earth-500), var(--brown-700));
}

.orb-two {
  left: -120px;
  bottom: 40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 35% 35%, var(--leaf-500), var(--green-800));
  animation-duration: 13s;
}

@keyframes morph {
  0% { border-radius: 45% 55% 60% 40% / 45% 40% 60% 55%; transform: rotate(0deg) scale(1); }
  100% { border-radius: 58% 42% 38% 62% / 36% 61% 39% 64%; transform: rotate(10deg) scale(1.06); }
}

.floating-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(204, 232, 121, .55);
  box-shadow: 0 0 24px rgba(204, 232, 121, .8);
  animation: floatParticle 12s linear infinite;
}

.floating-particles span:nth-child(1) { left: 12%; top: 80%; animation-delay: 0s; }
.floating-particles span:nth-child(2) { left: 34%; top: 72%; animation-delay: -2s; }
.floating-particles span:nth-child(3) { left: 58%; top: 84%; animation-delay: -5s; }
.floating-particles span:nth-child(4) { left: 72%; top: 70%; animation-delay: -7s; }
.floating-particles span:nth-child(5) { left: 88%; top: 78%; animation-delay: -9s; }
.floating-particles span:nth-child(6) { left: 47%; top: 92%; animation-delay: -11s; }

@keyframes floatParticle {
  0% { transform: translateY(0) scale(.85); opacity: 0; }
  16% { opacity: .9; }
  100% { transform: translateY(-520px) translateX(90px) scale(1.28); opacity: 0; }
}

.hero-content {
  color: var(--cream-100);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(167, 201, 87, .28);
  border-radius: 999px;
  color: var(--leaf-400);
  background: rgba(167, 201, 87, .08);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--olive-700);
  background: rgba(95, 111, 61, .08);
  border-color: rgba(95, 111, 61, .16);
  margin-bottom: 18px;
}

.section-kicker.light {
  color: var(--leaf-400);
  background: rgba(167, 201, 87, .1);
  border-color: rgba(167, 201, 87, .26);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 999px;
  background: var(--leaf-500);
  box-shadow: 0 0 0 0 rgba(167, 201, 87, .8);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(167, 201, 87, .65); }
  50% { box-shadow: 0 0 0 9px rgba(167, 201, 87, 0); }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 22px 0 20px;
  max-width: 850px;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  line-height: .88;
  letter-spacing: -.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.2vw, 4.7rem);
  line-height: .94;
  letter-spacing: -.06em;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.14;
  letter-spacing: -.025em;
}

.hero-subtitle {
  max-width: 720px;
  color: rgba(247, 244, 234, .82);
  font-size: clamp(1.05rem, 1.75vw, 1.34rem);
}

.hero-line {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--earth-500);
  font-weight: 800;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 26px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255,255,255,.34) 45%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--green-900);
  background: linear-gradient(135deg, var(--leaf-400), var(--leaf-500));
  box-shadow: 0 20px 42px rgba(167, 201, 87, .25);
}

.btn-secondary {
  color: var(--cream-100);
  border-color: rgba(247, 244, 234, .2);
  background: rgba(247, 244, 234, .08);
  backdrop-filter: blur(12px);
}

.btn-dark {
  margin-top: 26px;
  color: var(--cream-100);
  background: var(--green-850);
  box-shadow: 0 20px 50px rgba(16, 41, 29, .16);
}

.btn-large {
  min-height: 62px;
  padding-inline: 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(216, 199, 163, .2);
  border-radius: 999px;
  color: rgba(247, 244, 234, .76);
  background: rgba(255, 255, 255, .06);
  font-size: .86rem;
  font-weight: 750;
}

.hero-visual {
  min-height: 620px;
  position: relative;
}

.visual-card {
  position: sticky;
  top: 116px;
  min-height: 610px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(247, 244, 234, .15);
  background:
    radial-gradient(circle at 50% 12%, rgba(216, 199, 163, .28), transparent 32%),
    linear-gradient(180deg, rgba(247, 244, 234, .12), rgba(247, 244, 234, .04));
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.sun-halo {
  position: absolute;
  right: 42px;
  top: 44px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 199, 163, .95), rgba(216, 199, 163, .22) 48%, transparent 70%);
  animation: haloBreath 4s ease-in-out infinite;
}

@keyframes haloBreath {
  50% { transform: scale(1.08); opacity: .74; }
}

.cane-field {
  position: absolute;
  inset: 28px 0 auto;
  height: 270px;
  z-index: 1;
}

.cane {
  position: absolute;
  bottom: 0;
  width: 13px;
  height: var(--h, 245px);
  left: var(--x, 20%);
  transform-origin: bottom center;
  border-radius: 999px;
  background: linear-gradient(90deg, #496a2e, var(--leaf-500), #30431f);
  box-shadow: inset 2px 0 0 rgba(255,255,255,.16);
  animation: caneSway var(--d, 4s) ease-in-out infinite alternate;
}

.cane::before,
.cane::after,
.cane b {
  content: "";
  position: absolute;
  width: 72px;
  height: 14px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(90deg, #cce879, #5f6f3d);
  transform-origin: 0 50%;
}

.cane::before { top: 32%; left: 7px; transform: rotate(-22deg); }
.cane::after { top: 18%; right: 8px; transform: rotate(205deg); }
.cane b:nth-child(1) { top: 49%; left: 7px; transform: rotate(17deg); }
.cane b:nth-child(2) { top: 62%; right: 8px; transform: rotate(196deg); }
.cane b:nth-child(3) { top: 7%; left: 5px; transform: rotate(35deg); width: 56px; }

.cane-1 { --x: 8%; --h: 260px; --d: 4.2s; }
.cane-2 { --x: 22%; --h: 305px; --d: 5.5s; }
.cane-3 { --x: 41%; --h: 276px; --d: 4.8s; }
.cane-4 { --x: 58%; --h: 318px; --d: 5.8s; }
.cane-5 { --x: 76%; --h: 282px; --d: 4.6s; }
.cane-6 { --x: 91%; --h: 332px; --d: 6.3s; }

@keyframes caneSway {
  0% { transform: rotate(-2deg); }
  100% { transform: rotate(3.5deg); }
}

.operation-svg {
  position: absolute;
  inset: auto -42px 0 -50px;
  z-index: 2;
  width: calc(100% + 92px);
  height: auto;
}

.soil-line {
  fill: none;
  stroke: rgba(216, 199, 163, .22);
  stroke-width: 4;
  stroke-linecap: round;
}

.line-two {
  stroke-opacity: .5;
}

.machine {
  animation: machineFloat 5.8s ease-in-out infinite;
}

@keyframes machineFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.tank-label {
  fill: var(--green-900);
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 28px;
}

.spray-arm {
  fill: none;
  stroke: #0f1a13;
  stroke-width: 14;
  stroke-linecap: round;
}

.liquid-flow {
  fill: none;
  stroke: #111111;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 15 18;
  animation: dashFlow 1.15s linear infinite;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.32));
}

.flow-two {
  stroke-width: 9;
  opacity: .74;
  animation-duration: 1.45s;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -66; }
}

.floating-label {
  position: absolute;
  z-index: 4;
  width: max-content;
  max-width: 240px;
  padding: 14px 16px;
  border: 1px solid rgba(247, 244, 234, .18);
  border-radius: 18px;
  color: var(--cream-100);
  background: rgba(16, 41, 29, .76);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  animation: labelFloat 4.8s ease-in-out infinite;
}

.floating-label strong,
.floating-label span {
  display: block;
}

.floating-label strong {
  font-size: .92rem;
}

.floating-label span {
  margin-top: 2px;
  color: rgba(247, 244, 234, .68);
  font-size: .78rem;
}

.label-one {
  left: 24px;
  top: 104px;
}

.label-two {
  right: 24px;
  bottom: 154px;
  animation-delay: -1.2s;
}

@keyframes labelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.narrow {
  max-width: 840px;
  text-align: center;
}

.narrow p {
  color: var(--muted);
  font-size: 1.08rem;
}

.grid-four,
.grid-three,
.diff-grid,
.mini-grid {
  display: grid;
  gap: 18px;
}

.grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.authority-grid {
  margin-top: 42px;
}

.feature-card,
.benefit-panel,
.glass-card,
.contact-card,
.diff-card,
.timeline-item,
.formula-card {
  border-radius: var(--radius-lg);
}

.feature-card {
  min-height: 235px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(23, 59, 42, .08);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(167, 201, 87, .5);
  box-shadow: 0 30px 90px rgba(16, 41, 29, .2);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
  border-radius: 17px;
  color: var(--green-900);
  background: linear-gradient(135deg, rgba(167, 201, 87, .72), rgba(216, 199, 163, .74));
  font-weight: 950;
}

.feature-card h3 {
  margin-bottom: 0;
}

.alt-bg {
  background:
    radial-gradient(circle at 15% 20%, rgba(167, 201, 87, .16), transparent 28%),
    linear-gradient(180deg, var(--cream-200), var(--cream-100));
}

.split {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 62px;
  align-items: center;
}

.split p {
  color: var(--muted);
  font-size: 1.06rem;
}

blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--leaf-500);
  border-radius: 0 20px 20px 0;
  color: var(--green-900);
  background: rgba(255, 255, 255, .55);
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.benefit-panel {
  padding: 30px;
  background: var(--green-900);
  box-shadow: var(--shadow-strong);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}

.benefit-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(167, 201, 87, .32), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 55%);
  pointer-events: none;
}

.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(247, 244, 234, .86);
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: var(--green-900);
  background: var(--leaf-500);
  font-weight: 950;
  line-height: 1;
}

.solution-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background:
    radial-gradient(circle at 45% 42%, rgba(167, 201, 87, .28), transparent 36%),
    linear-gradient(135deg, var(--green-900), var(--green-850));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.solution-visual::before {
  content: "";
  position: absolute;
  inset: auto -15% -24% -15%;
  height: 230px;
  background: radial-gradient(ellipse, rgba(36, 20, 13, .95), rgba(36, 20, 13, 0) 68%);
}

.liquid-tube {
  position: relative;
  width: 124px;
  height: 360px;
  border-radius: 70px;
  border: 1px solid rgba(247, 244, 234, .22);
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 28px rgba(255,255,255,.14), 0 30px 80px rgba(0,0,0,.24);
  overflow: hidden;
}

.tube-glass {
  position: absolute;
  inset: 13px;
  border-radius: 60px;
  background: linear-gradient(90deg, rgba(255,255,255,.18), transparent 28%, rgba(255,255,255,.1));
  z-index: 2;
  pointer-events: none;
}

.liquid-level {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70%;
  background:
    radial-gradient(circle at 40% 16%, rgba(255,255,255,.18), transparent 18%),
    linear-gradient(180deg, #15100d, var(--brown-700));
  animation: liquidMove 3.8s ease-in-out infinite;
}

.liquid-level::before {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  top: -24px;
  height: 50px;
  border-radius: 50%;
  background: #15100d;
  animation: wave 2.3s ease-in-out infinite alternate;
}

@keyframes liquidMove {
  0%, 100% { height: 68%; }
  50% { height: 74%; }
}

@keyframes wave {
  from { transform: translateX(-10px) rotate(-2deg); }
  to { transform: translateX(10px) rotate(2deg); }
}

.bubble {
  position: absolute;
  bottom: 40px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(216, 199, 163, .54);
  z-index: 3;
  animation: bubbleUp 4s linear infinite;
}

.b1 { left: 32px; animation-delay: 0s; }
.b2 { left: 72px; animation-delay: -1.4s; width: 7px; height: 7px; }
.b3 { left: 54px; animation-delay: -2.6s; width: 13px; height: 13px; }

@keyframes bubbleUp {
  0% { transform: translateY(0); opacity: 0; }
  14% { opacity: .8; }
  100% { transform: translateY(-230px); opacity: 0; }
}

.formula-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 20px;
  color: var(--cream-100);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
}

.formula-card span,
.formula-card strong,
.formula-card em {
  display: block;
}

.formula-card span {
  color: var(--leaf-400);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.formula-card strong {
  margin: 6px 0 3px;
  font-size: 1.24rem;
}

.formula-card em {
  color: rgba(247, 244, 234, .7);
  font-style: normal;
}

.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.mini-grid span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px;
  border: 1px solid rgba(23, 59, 42, .1);
  border-radius: 16px;
  background: var(--white);
  font-weight: 800;
  color: var(--green-900);
}

.dark-section {
  color: var(--cream-100);
  background:
    radial-gradient(circle at 50% -10%, rgba(167, 201, 87, .18), transparent 36%),
    linear-gradient(180deg, var(--green-900), #08140e);
  overflow: hidden;
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247,244,234,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,244,234,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 22%, #000, transparent 72%);
}

.dark-section > * {
  position: relative;
}

.dark-section .narrow p {
  color: rgba(247, 244, 234, .72);
}

.technical-grid {
  margin-top: 42px;
}

.glass-card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid rgba(247, 244, 234, .14);
  background: rgba(247, 244, 234, .07);
  box-shadow: 0 30px 90px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}

.glass-card p {
  color: rgba(247, 244, 234, .72);
  margin-bottom: 0;
}

.animated-icon {
  position: relative;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border-radius: 22px;
  background: rgba(167, 201, 87, .14);
  border: 1px solid rgba(167, 201, 87, .18);
}

.animated-icon::before,
.animated-icon::after {
  content: "";
  position: absolute;
  background: var(--leaf-500);
}

.soil-icon::before {
  left: 17px;
  right: 17px;
  bottom: 22px;
  height: 4px;
  border-radius: 999px;
  box-shadow: 0 -12px 0 rgba(167,201,87,.66), 0 12px 0 rgba(167,201,87,.42);
  animation: soilPulse 2.8s ease-in-out infinite;
}

.soil-icon::after {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  left: 31px;
  top: 15px;
  box-shadow: 18px 12px 0 rgba(167,201,87,.5), -14px 22px 0 rgba(167,201,87,.36);
  animation: nutrientDrift 3.2s ease-in-out infinite;
}

.root-icon::before {
  width: 5px;
  height: 48px;
  left: 36px;
  top: 14px;
  border-radius: 999px;
  transform-origin: top center;
  animation: rootGrow 2.7s ease-in-out infinite;
}

.root-icon::after {
  width: 38px;
  height: 38px;
  left: 20px;
  top: 20px;
  border-left: 4px solid var(--leaf-500);
  border-bottom: 4px solid var(--leaf-500);
  border-radius: 0 0 0 34px;
  background: transparent;
  transform: rotate(-35deg);
  animation: rootSway 2.7s ease-in-out infinite;
}

.nutrient-icon::before {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  left: 32px;
  top: 32px;
  box-shadow: 0 -21px 0 rgba(167,201,87,.66), 20px 0 0 rgba(167,201,87,.45), 0 21px 0 rgba(167,201,87,.55), -20px 0 0 rgba(167,201,87,.42);
  animation: orbitBlink 2.4s ease-in-out infinite;
}

.nutrient-icon::after {
  inset: 18px;
  border: 2px solid rgba(167,201,87,.45);
  border-radius: 999px;
  background: transparent;
  animation: spin 8s linear infinite;
}

@keyframes soilPulse { 50% { opacity: .55; transform: translateY(2px); } }
@keyframes nutrientDrift { 50% { transform: translateY(-6px); opacity: .7; } }
@keyframes rootGrow { 50% { transform: scaleY(.78); } }
@keyframes rootSway { 50% { transform: rotate(-22deg) translateY(2px); } }
@keyframes orbitBlink { 50% { opacity: .48; transform: scale(.9); } }
@keyframes spin { to { transform: rotate(360deg); } }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 35px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(95,111,61,.35), transparent);
}

.timeline-item {
  position: relative;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(23, 59, 42, .08);
  box-shadow: 0 20px 70px rgba(16,41,29,.12);
  z-index: 1;
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  border-radius: 22px;
  color: var(--green-900);
  background: linear-gradient(135deg, var(--leaf-500), var(--earth-500));
  font-size: 1.25rem;
  font-weight: 950;
}

.timeline-item h3 {
  margin-bottom: 10px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.diff-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.diff-card {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  min-height: 126px;
  padding: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(23, 59, 42, .08);
  box-shadow: 0 18px 60px rgba(16,41,29,.08);
  font-weight: 820;
}

.diff-card span {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--leaf-500);
  box-shadow: 0 0 0 7px rgba(167, 201, 87, .13);
}

.closing-thesis {
  max-width: 900px;
  margin: 36px auto 0;
  padding: 28px;
  border-radius: var(--radius-lg);
  color: var(--green-900);
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 1.32rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: -.03em;
}

.commercial-call {
  padding-top: 80px;
  background: var(--cream-100);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 38px;
  align-items: center;
  overflow: hidden;
  padding: 52px;
  border-radius: 38px;
  color: var(--cream-100);
  background:
    radial-gradient(circle at 90% 20%, rgba(167, 201, 87, .28), transparent 34%),
    linear-gradient(135deg, var(--green-900), var(--green-850));
  box-shadow: var(--shadow-strong);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -170px;
  width: 460px;
  height: 460px;
  border-radius: 46% 54% 38% 62%;
  background: radial-gradient(circle, rgba(216,199,163,.26), transparent 63%);
  animation: morph 11s var(--ease) infinite alternate;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel p {
  max-width: 750px;
  color: rgba(247, 244, 234, .78);
}

.cta-panel small {
  color: var(--earth-500);
  font-weight: 780;
}

.institutional {
  padding-top: 54px;
}

.contact-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(23, 59, 42, .08);
  box-shadow: var(--shadow);
}

.contact-card a,
.contact-card p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid rgba(23, 59, 42, .08);
}

.contact-card a:last-child {
  border-bottom: 0;
}

.contact-card strong {
  min-width: max-content;
}

.contact-card span {
  color: var(--muted);
  text-align: right;
}

.site-footer {
  padding: 34px 0 104px;
  color: rgba(247, 244, 234, .8);
  background: #07110c;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand .brand-text small {
  max-width: 330px;
  line-height: 1.25;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(247, 244, 234, .66);
  font-size: .9rem;
  font-weight: 720;
}

.footer-links a:hover {
  color: var(--leaf-400);
}

.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--green-900);
  background: linear-gradient(135deg, var(--leaf-400), var(--leaf-500));
  font-weight: 950;
  box-shadow: 0 20px 56px rgba(0,0,0,.32);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

@media (max-width: 1060px) {
  .main-nav { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .visual-card {
    position: relative;
    top: auto;
    min-height: 520px;
  }

  .grid-four,
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 35px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(95,111,61,.35), transparent);
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 10px 18px;
    align-items: start;
  }

  .timeline-item span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .timeline-item p,
  .timeline-item h3 {
    margin-bottom: 0;
  }

  .split,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel .btn {
    width: fit-content;
  }
}

@media (max-width: 740px) {
  .container,
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .section-pad {
    padding: 76px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 10px 10px 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: .78rem;
  }

  .brand-text small {
    font-size: .66rem;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: .82rem;
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 70px;
    gap: 32px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.45rem);
    letter-spacing: -.075em;
  }

  h2 {
    font-size: clamp(2.2rem, 11.5vw, 3.2rem);
  }

  .hero-subtitle,
  .split p,
  .narrow p {
    font-size: 1rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 58px;
  }

  .trust-strip span {
    font-size: .78rem;
  }

  .hero-visual,
  .visual-card {
    min-height: 470px;
  }

  .operation-svg {
    inset: auto -75px 0 -86px;
    width: calc(100% + 170px);
  }

  .label-one {
    top: 76px;
    left: 14px;
  }

  .label-two {
    right: 14px;
    bottom: 128px;
  }

  .grid-four,
  .grid-three,
  .diff-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 188px;
  }

  .split {
    gap: 34px;
  }

  .reverse-mobile .solution-visual {
    order: 2;
  }

  .benefit-panel,
  .cta-panel {
    padding: 24px;
  }

  blockquote {
    font-size: 1.06rem;
  }

  .solution-visual {
    min-height: 440px;
  }

  .glass-card {
    min-height: auto;
  }

  .timeline-item {
    grid-template-columns: 70px 1fr;
    padding: 18px;
  }

  .timeline-item span {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .diff-card {
    min-height: auto;
  }

  .closing-thesis {
    font-size: 1.06rem;
    padding: 22px;
  }

  .cta-panel .btn {
    width: 100%;
  }

  .contact-card a,
  .contact-card p {
    display: block;
  }

  .contact-card span {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .cursor-glow {
    display: none;
  }
}

/* =========================================================
   Refinamento mobile v2 - QR Code / celular primeiro
   ========================================================= */
.site-header,
.visual-card,
.solution-visual,
.benefit-panel,
.cta-panel,
.glass-card,
.feature-card,
.diff-card,
.timeline-item {
  transform: translateZ(0);
}

.hero-content,
.hero-visual,
.split > *,
.container > * {
  min-width: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.brand-logo-link {
  min-width: 0;
  flex: 0 0 auto;
}

.brand-logo-card {
  width: 178px;
  max-width: 44vw;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 18px;
  background: rgba(247, 244, 234, .97);
  border: 1px solid rgba(167, 201, 87, .24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 12px 30px rgba(0,0,0,.16);
}

.brand-logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

.footer-brand.brand-logo-link {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.footer-logo-card {
  width: 172px;
  max-width: 100%;
  background: rgba(247, 244, 234, .96);
}

.footer-brand-line {
  max-width: 380px;
  color: rgba(247, 244, 234, .7);
  font-size: .86rem;
  font-weight: 760;
  line-height: 1.25;
}

.cane,
.machine,
.liquid-flow,
.floating-label,
.liquid-orb,
.floating-particles span,
.reveal {
  will-change: transform, opacity;
}

.mobile-sticky-cta {
  opacity: 0;
  transform: translateY(calc(100% + 28px));
  pointer-events: none;
  transition: opacity .32s var(--ease), transform .32s var(--ease), box-shadow .32s ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 740px) {
  html,
  body {
    max-width: 100%;
  }

  body {
    padding-bottom: 82px;
  }

  .page-noise {
    opacity: .038;
  }

  .container,
  .section-shell {
    width: calc(100% - 28px);
  }

  .site-header {
    top: max(8px, env(safe-area-inset-top));
    width: calc(100% - 18px);
    gap: 8px;
    padding: 8px;
    border-radius: 26px;
    overflow: hidden;
  }

  .brand-logo-card {
    width: clamp(132px, 45vw, 168px);
    max-width: none;
    height: 42px;
    padding: 7px 11px;
    border-radius: 16px;
  }

  .brand-logo-img {
    max-height: 28px;
  }

  .header-cta {
    flex: 0 0 auto;
    min-width: 94px;
    min-height: 42px;
    padding-inline: 14px;
    font-size: .82rem;
  }

  .hero {
    width: 100%;
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 52px;
    gap: 28px;
    overflow: hidden;
  }

  .hero-bg {
    overflow: hidden;
  }

  .hero-grid {
    background-size: 34px 34px;
  }

  .liquid-orb {
    opacity: .72;
    filter: blur(.4px);
  }

  .orb-one {
    left: -120px;
    top: 130px;
  }

  .orb-two {
    right: -150px;
    top: 330px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .eyebrow {
    max-width: 100%;
    align-items: flex-start;
    border-radius: 18px;
    padding: 8px 10px;
    font-size: .67rem;
    line-height: 1.34;
    letter-spacing: .065em;
  }

  .pulse-dot {
    flex: 0 0 auto;
    margin-top: 4px;
  }

  h1 {
    max-width: 100%;
    margin: 18px 0 17px;
    font-size: clamp(2.28rem, 11.2vw, 2.95rem);
    line-height: .98;
    letter-spacing: -.052em;
    overflow-wrap: normal;
    word-break: normal;
  }

  h2 {
    font-size: clamp(2rem, 9.6vw, 2.85rem);
    line-height: 1;
    letter-spacing: -.052em;
  }

  h3 {
    line-height: 1.18;
  }

  .hero-subtitle,
  .split p,
  .narrow p {
    max-width: 100%;
    font-size: .98rem;
    line-height: 1.58;
  }

  .hero-line {
    max-width: 100%;
    margin-top: 18px;
    font-size: .96rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin: 24px 0 20px;
    gap: 11px;
  }

  .btn {
    min-height: 56px;
    width: 100%;
    padding: 0 16px;
    text-align: center;
    white-space: normal;
    font-size: .93rem;
    line-height: 1.2;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-strip span {
    min-width: 0;
    padding: 8px 7px;
    text-align: center;
    font-size: .72rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .hero-visual,
  .visual-card {
    min-height: 390px;
  }

  .visual-card {
    border-radius: 28px;
    backdrop-filter: blur(8px);
  }

  .sun-halo {
    right: 28px;
    top: 30px;
    width: 86px;
    height: 86px;
  }

  .cane-field {
    inset: 18px -10px auto;
    height: 205px;
  }

  .cane {
    width: 10px;
    height: calc(var(--h, 245px) * .68);
  }

  .cane::before,
  .cane::after,
  .cane b {
    width: 52px;
    height: 11px;
  }

  .operation-svg {
    inset: auto -54px 0 -58px;
    width: calc(100% + 112px);
  }

  .floating-label {
    max-width: 190px;
    padding: 10px 12px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
  }

  .floating-label strong {
    font-size: .8rem;
  }

  .floating-label span {
    font-size: .68rem;
  }

  .label-one {
    top: 62px;
    left: 12px;
  }

  .label-two {
    right: 12px;
    bottom: 104px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .section-kicker {
    max-width: 100%;
    white-space: normal;
    text-align: left;
    line-height: 1.28;
  }

  .narrow {
    text-align: left;
  }

  .feature-card {
    min-height: auto;
    padding: 22px;
  }

  .icon-badge {
    margin-bottom: 24px;
  }

  .benefit-panel,
  .cta-panel,
  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .check-list li {
    grid-template-columns: 26px 1fr;
    gap: 9px;
    font-size: .94rem;
  }

  .check-list li::before {
    width: 24px;
    height: 24px;
  }

  .solution-visual {
    min-height: 380px;
    border-radius: 28px;
  }

  .liquid-tube {
    width: 104px;
    height: 310px;
  }

  .formula-card {
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .timeline-item {
    grid-template-columns: 64px 1fr;
    gap: 8px 14px;
    padding: 17px;
    border-radius: 22px;
  }

  .timeline-item span {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 1rem;
  }

  .diff-card {
    padding: 20px;
    line-height: 1.35;
  }

  .cta-panel {
    gap: 22px;
  }

  .cta-panel h2 {
    margin-bottom: 14px;
  }

  .footer-brand-line {
    max-width: 100%;
    font-size: .78rem;
  }

  .mobile-sticky-cta {
    display: flex;
    left: max(14px, env(safe-area-inset-left));
    right: max(14px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 56px;
    padding: 0 18px;
    text-align: center;
    font-size: .94rem;
  }
}

@media (max-width: 390px) {
  .container,
  .section-shell {
    width: calc(100% - 24px);
  }

  .site-header {
    width: calc(100% - 14px);
    padding: 7px;
    border-radius: 22px;
  }

  .brand-logo-card {
    width: clamp(122px, 43vw, 142px);
    height: 40px;
    padding-inline: 9px;
  }

  .header-cta {
    min-width: 86px;
    min-height: 40px;
    padding-inline: 12px;
    font-size: .78rem;
  }

  .hero {
    padding-top: 102px;
  }

  h1 {
    font-size: clamp(2.06rem, 10.65vw, 2.52rem);
    letter-spacing: -.046em;
    line-height: 1;
  }

  .eyebrow {
    font-size: .62rem;
  }

  .hero-subtitle,
  .hero-line,
  .split p,
  .narrow p {
    font-size: .94rem;
  }

  .trust-strip span {
    font-size: .68rem;
    padding-inline: 5px;
  }

  .hero-visual,
  .visual-card {
    min-height: 360px;
  }

  .operation-svg {
    inset-inline: -70px;
    width: calc(100% + 140px);
  }
}

@media (max-width: 330px) {
  .brand-logo-card {
    width: 114px;
  }

  .header-cta {
    min-width: 80px;
    padding-inline: 10px;
  }

  h1 {
    font-size: 1.95rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

/* =========================================================
   Refinamento mobile v3 - somente primeira dobra / Hero
   Mantém as demais seções intactas.
   ========================================================= */
@media (max-width: 740px) {
  .hero.section-shell {
    width: calc(100% - 34px);
    max-width: 520px;
    margin-inline: auto;
    padding-top: 112px;
    padding-bottom: 46px;
    gap: 26px;
    overflow: visible;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero .eyebrow {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 9px;
    align-items: center;
    padding: 9px 11px;
    border-radius: 16px;
    font-size: clamp(.62rem, 2.75vw, .72rem);
    line-height: 1.28;
    letter-spacing: .055em;
    background: rgba(167, 201, 87, .115);
    border-color: rgba(204, 232, 121, .34);
  }

  .hero .pulse-dot {
    width: 7px;
    height: 7px;
    margin-top: 0;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    margin: 20px 0 16px;
    font-size: clamp(2.42rem, 10.15vw, 3.12rem);
    line-height: 1.03;
    letter-spacing: -.045em;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-subtitle {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    color: rgba(247, 244, 234, .86);
    font-size: clamp(.96rem, 4.04vw, 1.03rem);
    line-height: 1.62;
  }

  .hero-line {
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    padding: 0;
    color: var(--earth-500);
    font-size: clamp(.94rem, 3.9vw, 1rem);
    line-height: 1.48;
  }

  .hero-actions {
    width: 100%;
    margin: 26px 0 18px;
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 58px;
    border-radius: 24px;
    padding-inline: 18px;
    font-size: .94rem;
  }

  .hero-actions .btn-primary {
    border-radius: 999px;
  }

  .hero-actions .btn-secondary {
    background: rgba(247, 244, 234, .075);
    border-color: rgba(247, 244, 234, .22);
  }

  .trust-strip {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 2px;
  }

  .trust-strip span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 9px 10px 20px;
    border-radius: 16px;
    border: 1px solid rgba(216, 199, 163, .24);
    color: rgba(247, 244, 234, .88);
    background: rgba(36, 20, 13, .56);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: clamp(.70rem, 3.15vw, .78rem);
    line-height: 1.16;
    font-weight: 850;
  }

  .trust-strip span::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: var(--leaf-500);
    box-shadow: 0 0 0 5px rgba(167, 201, 87, .08);
  }
}

@media (max-width: 390px) {
  .hero.section-shell {
    width: calc(100% - 30px);
    max-width: 480px;
    padding-top: 108px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(2.18rem, 10.45vw, 2.55rem);
    line-height: 1.05;
    letter-spacing: -.038em;
  }

  .hero-subtitle {
    font-size: .94rem;
    line-height: 1.58;
  }

  .hero-line {
    font-size: .92rem;
    line-height: 1.44;
  }

  .trust-strip {
    gap: 9px;
  }

  .trust-strip span {
    min-height: 40px;
    padding-left: 18px;
    font-size: .69rem;
  }
}

@media (max-width: 350px) {
  .hero.section-shell {
    width: calc(100% - 26px);
  }

  .hero h1 {
    font-size: 2.02rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}
