/* ============ TOKENS ============ */
:root {
    --green-900: #0f3a1f;
    --green-800: #1a472a;
    --green-700: #2d6a4f;
    --green-500: #52b788;
    --green-400: #7cc796;
    --green-50:  #eef7f0;
    --green-100: #dff0e3;
    --amber:     #f4a261;
    --amber-600: #e8924a;
    --bg:        #ffffff;
    --bg-soft:   #f6f8f5;
    --bg-cream:  #faf7f0;
    --ink:       #1c1c1c;
    --ink-soft:  #3d4a40;
    --muted:     #6b7670;
    --line:      #e6ebe5;
    --shadow-sm: 0 1px 2px rgba(15,58,31,.04), 0 1px 1px rgba(15,58,31,.03);
    --shadow-md: 0 4px 16px rgba(15,58,31,.06), 0 1px 3px rgba(15,58,31,.04);
    --shadow-lg: 0 18px 50px rgba(15,58,31,.10), 0 4px 12px rgba(15,58,31,.05);
    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 22px;
    --container: 1200px;
}

/* ============ SCOPED RESETS ============ */
.agro-page *,
.agro-page *::before,
.agro-page *::after { box-sizing: border-box; }
.agro-page a { text-decoration: none; }
.agro-page button { font-family: inherit; cursor: pointer; }
.agro-page img { max-width: 100%; display: block; }
.agro-page ::selection { background: var(--green-500); color: #fff; }
.agro-page .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ============ EYEBROW ============ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-700);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--green-500); }
.eyebrow.on-dark { color: var(--green-400); }
.eyebrow.on-dark::before { background: var(--green-400); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 45px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .005em;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--amber);
    color: #26180a;
    box-shadow: 0 6px 20px rgba(244,162,97,.35), inset 0 -2px 0 rgba(0,0,0,.08);
}
.btn-primary:hover { background: var(--amber-600); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
    background: transparent;
    color: var(--green-800);
    border: 1.5px solid var(--green-700);
    margin-left: 10px;
}
.btn-ghost:hover { background: var(--green-800); color: #fff; }
.btn-dark { background: var(--green-800); color: #fff; box-shadow: 0 6px 20px rgba(26,71,42,.25); }
.btn-dark:hover { background: var(--green-900); transform: translateY(-1px); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ HERO ============ */
.agro-page .hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1100px 600px at 88% -10%, rgba(82,183,136,.18), transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(45,106,79,.10), transparent 60%),
        linear-gradient(180deg, #fafdf8 0%, #ffffff 100%);
    padding: 72px 0 96px;
}
.agro-page .hero__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 64px;
    align-items: center;
}
.agro-page .hero h1 {
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.08;
    letter-spacing: -.02em;
    color: var(--green-900);
}
.agro-page .hero h1 em {
    font-style: normal;
    color: var(--green-700);
}
.agro-page .hero__divider {
    border: none;
    height: 8px;
    background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
    opacity: .6;
    border-radius: 2px;
    margin: 14px 0 0;
    max-width: 510px;
}
.agro-page .hero__sub {
    margin-top: 22px;
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 540px;
}
.agro-page .hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
.agro-page .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13.5px;
    color: var(--green-800);
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
}
.agro-page .hero__badge b {
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
}
.agro-page .hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
    align-items: center;
}
.agro-page .hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--amber);
    color: #26180a;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(244,162,97,.35), inset 0 -2px 0 rgba(0,0,0,.08);
    transition: transform .15s ease, background .2s;
    white-space: nowrap;
}
.agro-page .hero__btn:hover { background: var(--amber-600); transform: translateY(-1px); }
.agro-page .hero__btn .arrow { transition: transform .2s; }
.agro-page .hero__btn:hover .arrow { transform: translateX(3px); }
.agro-page .hero__anchor {
    margin-top: 18px;
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
}

/* ============ HERO VISUAL: PROTO MOCK ============ */
.agro-page .hero__visual { position: relative; }

.proto-mock {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    overflow: hidden;
}
.proto-mock__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--green-900);
    color: #cfe9d5;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: .06em;
}
.proto-mock__dots { display: flex; gap: 6px; }
.proto-mock__dots span { width: 10px; height: 10px; border-radius: 50%; background: #234d34; }
.proto-mock__dots span:nth-child(1) { background: #ff6b6b; }
.proto-mock__dots span:nth-child(2) { background: #ffd166; }
.proto-mock__dots span:nth-child(3) { background: #52b788; }
.proto-mock__body {
    padding: 20px 20px 22px;
    background: linear-gradient(180deg, #fbfdf9, #ffffff);
}
.proto-mock__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 16px;
}
.proto-mock__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    color: var(--green-900);
    font-size: 12px;
}
.proto-mock__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    background: var(--green-50);
    color: var(--green-800);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: .04em;
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
}
.proto-mock__tag .ping {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green-500);
    animation: ping 1.8s infinite;
}
@keyframes ping {
    0%   { box-shadow: 0 0 0 0 rgba(82,183,136,.7); }
    80%  { box-shadow: 0 0 0 10px rgba(82,183,136,0); }
    100% { box-shadow: 0 0 0 0 rgba(82,183,136,0); }
}

/* Phase progress bar */
.phase-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-bottom: 16px;
}
.phase-item {
    border-radius: 7px;
    padding: 7px 4px;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .02em;
    background: var(--bg-soft);
    color: var(--muted);
    border: 1px solid var(--line);
}
.phase-item__num {
    font-family: 'Unbounded', sans-serif;
    font-size: 9px;
    font-weight: 800;
    margin-bottom: 2px;
}
.phase-item.done {
    background: var(--green-100);
    color: var(--green-700);
    border-color: var(--green-100);
}
.phase-item.active {
    background: var(--green-500);
    color: #fff;
    border-color: var(--green-500);
}

/* Mini growth chart */
.mini-chart {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px 8px;
    margin-bottom: 14px;
}
.mini-chart__label {
    font-size: 9.5px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.growth-svg { display: block; width: 100%; height: 64px; }

/* Parameter grid */
.param-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.param-chip {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.param-chip__key {
    font-size: 10px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}
.param-chip__val {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--green-700);
}

/* Floating cards (shared) */
.floating-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    animation: float 6s ease-in-out infinite;
}
.floating-card.f1 { top: -22px; left: -18px; animation-delay: 0s; }
.floating-card.f2 { bottom: -26px; right: -14px; animation-delay: 1.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
.floating-card .ico {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: var(--green-50);
    display: grid;
    place-items: center;
    color: var(--green-700);
    flex-shrink: 0;
}
.floating-card b { font-weight: 700; color: var(--green-900); display: block; }
.floating-card span { color: var(--muted); font-size: 12px; }

/* ============ SECTION SHELL ============ */
.agro-page section { padding: 108px 0; position: relative; }
.agro-page section.dark  { background: var(--green-900); color: #e7f1ea; }
.agro-page section.cream { background: var(--bg-cream); }
.agro-page section.soft  { background: var(--bg-soft); }

.section-head { max-width: 780px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 44px); color: var(--green-900); margin-top: 14px; letter-spacing: -.02em; }
.agro-page .dark .section-head h2 { color: #fff; }
.section-head p { margin-top: 18px; color: var(--ink-soft); font-size: 18px; max-width: 680px; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.agro-page .dark .section-head p { color: #b8d2c2; }

/* ============ BLOCK 2 — PAIN CARDS ============ */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pain-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.pain-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: #fdf3e6;
    color: #b67328;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    transition: transform .25s ease;
}
.pain-card:hover .pain-card__icon { transform: rotate(-6deg) scale(1.05); }
.pain-card h3 { font-size: 17px; color: var(--green-900); margin-bottom: 10px; font-family: 'Manrope'; font-weight: 700; letter-spacing: 0; }
.pain-card p  { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

.pain__outro {
    margin-top: 42px;
    background: #fff;
    border: 1px solid var(--green-100);
    border-radius: var(--radius);
    padding: 28px 32px;
    font-size: 17px;
    color: var(--ink);
    line-height: 1.6;
    box-shadow: var(--shadow-sm);
}
.pain__outro b { color: var(--green-800); }

/* ============ BLOCK 3 — PROCESS (numbered cards) ============ */
.agro-page .process {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.agro-page .step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform .2s, box-shadow .2s;
}
.agro-page .step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.agro-page .step--wide { grid-column: span 2; background: var(--green-50); border-color: var(--green-100); }
.agro-page .step__num {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--green-100);
    margin-bottom: 12px;
    display: block;
    line-height: 1;
}
.agro-page .step--wide .step__num { color: var(--green-500); }
.agro-page .step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 10px;
    font-family: 'Manrope';
    letter-spacing: 0;
}
.agro-page .step p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* ============ BLOCK 4 — SEGMENTS ============ */
.segment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.segment-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform .2s, box-shadow .2s;
}
.segment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.segment-card__icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--green-50);
    color: var(--green-700);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.segment-card h3 {
    font-family: 'Manrope';
    font-weight: 700;
    font-size: 19px;
    color: var(--green-900);
    margin-bottom: 12px;
    letter-spacing: 0;
}
.segment-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* ============ BLOCK 5 — CULTURES ============ */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.culture-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.culture-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.culture-card__icon {
    width: 54px; height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.culture-card__name {
    font-size: 19px;
    font-weight: 700;
    color: var(--green-900);
    font-family: 'Manrope';
    letter-spacing: 0;
}
.culture-card__desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.culture-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
}
.culture-card--greens .culture-card__icon { background: var(--green-50); color: var(--green-800); }
.culture-card--greens .culture-card__tag  { background: var(--green-50); color: var(--green-700); }
.culture-card--herbs  .culture-card__icon { background: #eef5ec; color: var(--green-700); }
.culture-card--herbs  .culture-card__tag  { background: #eef5ec; color: var(--green-700); }
.culture-card--berry  .culture-card__icon { background: #fde8ea; color: #c84a59; }
.culture-card--berry  .culture-card__tag  { background: #fde8ea; color: #c84a59; }
.culture-card--tomato .culture-card__icon { background: #fdf3e6; color: #b67328; }
.culture-card--tomato .culture-card__tag  { background: #fdf3e6; color: #b67328; }
.culture-card--cucumber .culture-card__icon { background: #e8eefb; color: #2c4a8a; }
.culture-card--cucumber .culture-card__tag  { background: #e8eefb; color: #2c4a8a; }
.culture-card--pepper .culture-card__icon { background: #efe7f4; color: #6e468f; }
.culture-card--pepper .culture-card__tag  { background: #efe7f4; color: #6e468f; }
.culture-card--other {
    border-style: dashed;
    border-color: var(--green-100);
    background: var(--bg-soft);
    align-items: center;
    text-align: center;
}
.culture-card--other .culture-card__icon {
    background: var(--green-50);
    color: var(--green-500);
    margin: 0 auto;
}
.culture-note {
    margin-top: 36px;
    text-align: center;
    font-size: 16px;
    color: var(--ink-soft);
}
.culture-note b { color: var(--green-800); }

/* ============ BLOCK 6 — LOSS STATS (dark) ============ */
.loss-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}
.loss-stats { display: grid; gap: 18px; }
.loss-stat {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 22px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: background .2s;
}
.loss-stat:hover { background: rgba(255,255,255,.1); }
.loss-stat__num {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 1;
    color: var(--amber);
    flex-shrink: 0;
    min-width: 96px;
}
.loss-stat__text { color: #b8d2c2; font-size: 15px; line-height: 1.55; padding-top: 4px; }
.loss-stat__text b { color: #fff; }
.loss-cta { margin-top: 44px; }
.loss-cta p { color: #cfe9d5; font-size: 16px; line-height: 1.6; margin-bottom: 28px; }

/* ============ BLOCK 7 — CASES SLIDER ============ */
.case-track {
    position: relative;
    min-height: 360px;
}
.case {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .5s, transform .5s;
    pointer-events: none;
}
.case.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}
.case__visual {
    background: linear-gradient(135deg, var(--green-800), var(--green-900));
    min-height: 360px;
    position: relative;
    overflow: hidden;
}
.case__loc {
    position: absolute;
    top: 16px; left: 16px;
    font-size: 12px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    letter-spacing: .02em;
    z-index: 2;
}
.farm-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
}
.case__body {
    background: #fff;
    padding: 36px 36px 30px;
    display: flex;
    flex-direction: column;
}
.case__crop {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 10px;
}
.case__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--green-900);
    line-height: 1.3;
    margin-bottom: 14px;
    font-family: 'Manrope';
    letter-spacing: 0;
}
.case__sit { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.6; }
.case__found {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
}
.case__found li {
    font-size: 14px;
    color: var(--ink-soft);
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.5;
}
.case__found li::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green-500);
    margin-top: 6px;
    flex-shrink: 0;
}
.case__results {
    margin-top: auto;
    display: flex;
    gap: 14px;
}
.res {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 16px;
    flex: 1;
}
.res b { font-family: 'Unbounded'; font-weight: 800; font-size: 22px; color: var(--green-800); display: block; }
.res span { font-size: 12px; color: var(--muted); margin-top: 4px; display: block; line-height: 1.4; }
.res.amber b { color: var(--amber-600); }

.case-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}
.case-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 0;
    background: var(--line);
    transition: background .2s, transform .2s;
}
.case-dot.active { background: var(--green-700); transform: scale(1.3); }
.case-arrow {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--green-800);
    transition: all .2s;
}
.case-arrow:hover { border-color: var(--green-700); background: var(--green-700); color: #fff; }

/* Static testimonial below cases */
.testimonial {
    margin-top: 52px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-lg);
    padding: 44px 52px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.testimonial::before {
    content: "\201C";
    position: absolute;
    top: -10px; left: 40px;
    font-family: 'Unbounded', sans-serif;
    font-size: 80px;
    line-height: 1;
    color: var(--green-100);
}
.testimonial__text {
    font-size: 19px;
    color: var(--ink);
    font-style: italic;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}
.testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}
.testimonial__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--green-500);
    color: #fff;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 18px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.testimonial__name { font-weight: 700; color: var(--green-900); display: block; }
.testimonial__sub  { font-size: 13.5px; color: var(--muted); margin-top: 2px; display: block; }

/* ============ BLOCK 8 — FAQ ============ */
.faq { max-width: 840px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--green-900);
    background: none;
    border: 0;
    transition: color .2s;
}
.qa__q:hover { color: var(--green-700); }
.qa__q .toggle {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--green-50);
    display: grid;
    place-items: center;
    color: var(--green-700);
    transition: transform .25s, background .2s;
    margin-left: 16px;
}
.qa.open .qa__q .toggle { transform: rotate(45deg); background: var(--amber); color: #fff; }
.qa__a { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.qa__a-inner { padding: 0 0 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; max-width: 720px; }

/* ============ BLOCK 9 — FINAL CTA ============ */
.agro-page .final {
    background: linear-gradient(180deg, #fafdf8, #ffffff);
    position: relative;
    overflow: hidden;
}
.agro-page .final::before {
    content: "";
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82,183,136,.15), transparent 70%);
}
.agro-page .final::after {
    content: "";
    position: absolute;
    bottom: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,162,97,.12), transparent 70%);
}
.final-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: center;
}
.final-side p { margin-top: 20px; color: var(--ink-soft); font-size: 17px; max-width: 520px; }
.agro-page .final h2 {
    font-size: clamp(30px, 3.6vw, 46px);
    color: var(--green-900);
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-top: 14px;
}
.trust-list { margin-top: 32px; display: grid; gap: 14px; }
.trust-list li { display: flex; gap: 12px; align-items: center; font-size: 15px; color: var(--ink-soft); }
.trust-list .ico {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--green-50);
    color: var(--green-800);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}
.form-card h3 { font-family: 'Unbounded'; font-size: 24px; color: var(--green-900); margin-bottom: 8px; }
.form-card > p { color: var(--ink-soft); margin-bottom: 26px; font-size: 15px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--green-900); margin-bottom: 6px; }
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
    resize: vertical;
}
.field input,
.field select { height: 50px; padding: 0 16px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 0;
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(82,183,136,.15);
}
.field.error input,
.field.error select,
.field.error textarea { border-color: #e7707d; }
.field .err-msg { color: #c84a59; font-size: 12px; margin-top: 6px; display: none; }
.field.error .err-msg { display: block; }
.privacy { font-size: 12px; color: var(--muted); margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.form-success { display: none; text-align: center; padding: 30px 12px; }
.form-success.shown { display: block; }
.form-success svg { margin-bottom: 14px; }
.form-success h3 { margin-bottom: 10px; }
.form-ratelimit {
    display: none; margin-top: 12px; padding: 12px 16px; border-radius: 8px;
    background: rgba(255,180,0,.1); border: 1px solid rgba(255,180,0,.35);
    color: #b8860b; font-size: 14px; text-align: center;
}
.form-ratelimit.shown { display: block; }

/* ============ FLOATING CTA ============ */
.agro-page .floating-cta {
    position: fixed; right: 28px; bottom: 28px; z-index: 40;
    background: var(--amber); color: #26180a;
    padding: 14px 22px; border-radius: 50px;
    font-weight: 700; font-size: 14px;
    box-shadow: 0 20px 50px rgba(244,162,97,.45), 0 4px 12px rgba(0,0,0,.1);
    display: flex; align-items: center; gap: 10px;
    transform: translateY(120px); opacity: 0;
    transition: transform .4s ease, opacity .4s ease, background .2s;
    text-decoration: none;
}
.agro-page .floating-cta.visible { transform: translateY(0); opacity: 1; }
.agro-page .floating-cta:hover { background: var(--amber-600); transform: translateY(-2px); }
.agro-page .floating-cta .pulse {
    width: 10px; height: 10px; border-radius: 50%;
    background: #26180a;
    animation: ping 1.8s infinite;
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ MOBILE ============ */
@media (max-width: 1024px) {
    .agro-page .hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .loss-grid    { grid-template-columns: 1fr; gap: 48px; }
    .final-wrap   { grid-template-columns: 1fr; gap: 48px; }
    .pain-grid    { grid-template-columns: repeat(2, 1fr); }
    .segment-grid { grid-template-columns: 1fr; gap: 16px; }
    .culture-grid { grid-template-columns: repeat(2, 1fr); }
    .agro-page .process { grid-template-columns: 1fr; }
    .agro-page .step--wide { grid-column: span 1; }
}
@media (max-width: 720px) {
    .agro-page section { padding: 72px 0; }
    .pain-grid    { grid-template-columns: 1fr; }
    .culture-grid { grid-template-columns: 1fr; }
    .form-card    { padding: 26px; }
    .case         { grid-template-columns: 1fr; }
    .case__visual { min-height: 200px; }
    .case__body   { padding: 24px; }
    .case__title  { font-size: 17px; }
    .testimonial  { padding: 32px; margin-top: 36px; }
    .testimonial__text { font-size: 16px; }
    .testimonial__author { flex-direction: column; align-items: flex-start; }
    .agro-page .floating-cta { right: 14px; bottom: 14px; padding: 12px 18px; font-size: 13px; }
    .agro-page .hero { padding: 48px 0 64px; }
    .agro-page .hero h1 { font-size: 32px; }
    .loss-stat__num { font-size: 28px; min-width: 80px; }
}
