/* ==========================================================================
   AgroBEET V2 Design System
   One stylesheet shared by every page of the redesigned site.
   ========================================================================== */

/* Nunito — the AgroBEET app's brand typeface, copied from the app repo */

@font-face {
    font-family: 'Nunito';
    src: url(../font/Nunito-Regular.ttf) format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url(../font/Nunito-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url(../font/Nunito-Bold.ttf) format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url(../font/Nunito-ExtraBold.ttf) format('truetype');
    font-weight: 800;
    font-display: swap;
}

/* Palette mirrors the mobile app theme (lib/constants/constant.dart):
   primary #4CB748, brand #56A145, dark #2D721D, orange #FF941F,
   scaffold #F9FEFB, light greens #F0FDEF / #DBFFD9 */
/* Enterprise refinement of the app palette: same green/orange family,
   deeper and less saturated, with a slate-tinted ink for body text */
:root {
    --green-900: #163410;
    --green-800: #235417;
    --green-700: #37752a;
    --green-600: #479a3f;
    --green-100: #e1f0dd;
    --green-50: #f3f8f1;
    --orange-500: #ec8a1c;
    --orange-600: #d1720a;
    --cream: #f8faf7;
    --ink: #1a2119;
    --ink-soft: #57615a;
    --line: #e4e9e3;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 12px 32px rgba(22, 52, 16, 0.10);
    --shadow-soft: 0 3px 12px rgba(22, 52, 16, 0.06);
    --font-head: 'Nunito', 'Segoe UI', Arial, sans-serif;
    --font-body: 'Nunito', 'Segoe UI', Arial, sans-serif;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

/* clip (not hidden) — hidden would create a scroll container and break
   the sticky header. The hidden line before it is the fallback for
   browsers without clip support (iOS Safari < 16), where a horizontal
   pan is worse than a non-sticky header. */
html, body {
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--green-700);
    text-decoration: none;
}

a:hover {
    color: var(--green-600);
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.015em;
    color: var(--green-900);
}

h1 { font-size: clamp(2rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.15rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

.container {
    width: min(var(--container), 92%);
    margin-inline: auto;
}

section {
    padding: 72px 0;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-head .kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 12px;
}

.section-head p {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 1.06rem;
}

.section-head.left {
    text-align: left;
    margin-inline: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 26px;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    text-align: center;
}

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

.btn-primary {
    background: var(--orange-500);
    color: #fff;
    box-shadow: 0 4px 14px rgba(209, 114, 10, 0.25);
}

.btn-primary:hover {
    background: var(--orange-600);
    color: #fff;
}

.btn-green {
    background: var(--green-700);
    color: #fff;
    box-shadow: 0 4px 14px rgba(35, 84, 23, 0.22);
}

.btn-green:hover {
    background: var(--green-700);
    color: #fff;
}

.btn-outline {
    border-color: var(--green-600);
    color: var(--green-700);
    background: transparent;
}

.btn-outline:hover {
    background: var(--green-50);
    color: var(--green-800);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1eb858;
    color: #fff;
}

/* --------------------------------------------------------------------------
   Top bar + header
   -------------------------------------------------------------------------- */

.topbar {
    background: var(--green-900);
    color: #dceedd;
    font-size: 0.86rem;
    padding: 7px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar a {
    color: #dceedd;
    margin-left: 18px;
    white-space: nowrap;
}

.topbar a:hover {
    color: var(--orange-500);
}

.topbar .tagline {
    opacity: 0.9;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(29, 59, 36, 0.08);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 74px;
}

.brand img {
    height: 46px;
    width: auto;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px 0;
    border-radius: 3px;
    background: var(--green-800);
    transition: 0.25s;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav > ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2px;
}

.main-nav ul a {
    color: var(--ink);
    font-weight: 600;
    font-size: 0.99rem;
    padding: 10px 14px;
    border-radius: 8px;
    display: block;
}

.main-nav ul a:hover,
.main-nav ul a.active {
    color: var(--green-600);
    background: var(--green-50);
}

.main-nav .nav-cta {
    margin-left: 12px;
}

.main-nav .nav-cta .btn {
    padding: 10px 22px;
    font-size: 0.95rem;
}

/* Dropdowns */

.has-dropdown {
    position: relative;
}

.has-dropdown > a::after {
    content: '▾';
    font-size: 0.7em;
    margin-left: 6px;
    opacity: 0.7;
}

.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 250px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    list-style: none;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.18s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    padding: 10px 14px;
    font-weight: 600;
    border-radius: 7px;
}

.dropdown a small {
    display: block;
    font-weight: 400;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    background:
        radial-gradient(at 85% 10%, rgba(71, 154, 63, 0.22), transparent 50%),
        radial-gradient(at 10% 90%, rgba(236, 138, 28, 0.10), transparent 45%),
        linear-gradient(155deg, var(--green-900) 0%, var(--green-800) 60%, var(--green-700) 100%);
    color: #fff;
    padding: 88px 0;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: #ffc97e;
}

.hero p.lead {
    font-size: 1.18rem;
    color: #e4efe2;
    margin-bottom: 30px;
    max-width: 560px;
}

.hero .hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.hero .hero-points {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.95rem;
    color: #d4e6d0;
}

.hero .hero-points li::before {
    content: '✓';
    color: var(--orange-500);
    font-weight: 700;
    margin-right: 7px;
}

.hero-art {
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 16px;
}

.hero-card h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.hero-card p {
    color: #cfe2cc;
    font-size: 0.92rem;
}

.hero-card .ic {
    float: left;
    margin-right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 148, 31, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Page hero (inner pages) */

.page-hero {
    background:
        radial-gradient(at 90% 0%, rgba(71, 154, 63, 0.25), transparent 55%),
        linear-gradient(150deg, var(--green-900), var(--green-800));
    color: #fff;
    padding: 70px 0 64px;
}

.page-hero h1 {
    color: #fff;
    max-width: 800px;
    margin-bottom: 16px;
}

.page-hero p {
    color: #dcebd9;
    max-width: 720px;
    font-size: 1.12rem;
}

.page-hero .crumbs {
    font-size: 0.88rem;
    color: #a9c8a4;
    margin-bottom: 18px;
}

.page-hero .crumbs a {
    color: #cfe6cb;
}

.page-hero .hero-cta {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */

.stats-strip {
    background: var(--white);
    padding: 0;
}

.stats-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transform: translateY(-44px);
    background: var(--white);
}

.stat {
    padding: 26px 18px;
    text-align: center;
    border-left: 1px solid var(--line);
}

.stat:first-child {
    border-left: none;
}

.stat .num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2rem;
    color: var(--green-700);
}

.stat .lbl {
    color: var(--ink-soft);
    font-size: 0.94rem;
}

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.card .ic {
    width: 54px;
    height: 54px;
    border-radius: 13px;
    background: var(--green-100);
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: var(--ink-soft);
    font-size: 0.98rem;
}

.card .more {
    display: inline-block;
    margin-top: 14px;
    font-weight: 700;
    color: var(--green-600);
}

.card.accent {
    border-top: 4px solid var(--orange-500);
}

.alt-bg {
    background: var(--cream);
}

.green-bg {
    background: var(--green-50);
}

/* Audience split cards (home) */

.audience-card {
    position: relative;
    border-radius: var(--radius);
    padding: 38px 32px;
    color: #fff;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(160deg, var(--green-800), var(--green-600));
}

.audience-card.orange {
    background: linear-gradient(160deg, #7c4708, #c47a15);
}

.audience-card.dark {
    background: linear-gradient(160deg, #20312a, #41604a);
}

.audience-card h3 {
    color: #fff;
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.audience-card p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
}

/* in-flow with margin-bottom:auto (not absolute) — pins to the top of
   the card on desktop yet can never overlap the heading when the text
   is taller than the card on narrow screens */
.audience-card .tag {
    align-self: flex-start;
    margin: 0 0 auto;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.18);
    padding: 5px 14px;
    border-radius: 100px;
}

.audience-card h3 {
    margin-top: 18px;
}

.audience-card .btn {
    align-self: flex-start;
    background: #fff;
    color: var(--green-800);
}

.audience-card.orange .btn {
    color: var(--orange-600);
}

/* Commodity cards */

.commodity-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.commodity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.commodity-card .visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    background: linear-gradient(150deg, var(--green-100), var(--green-50));
}

.commodity-card .visual.v2 { background: linear-gradient(150deg, #ffe9cf, #fff7ec); }
.commodity-card .visual.v3 { background: linear-gradient(150deg, #fde3d0, #fdf3ea); }
.commodity-card .visual.v4 { background: linear-gradient(150deg, #f3edd2, #faf7e8); }
.commodity-card .visual.v5 { background: linear-gradient(150deg, #ffe0e0, #fff2f0); }
.commodity-card .visual.v6 { background: linear-gradient(150deg, #e2ecf6, #f1f6fb); }

.commodity-card .body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.commodity-card h3 {
    margin-bottom: 8px;
}

.commodity-card p {
    color: var(--ink-soft);
    font-size: 0.94rem;
    flex: 1;
}

.commodity-card .chips {
    margin: 14px 0 16px;
}

.chips span {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-800);
    background: var(--green-50);
    border: 1px solid var(--green-100);
    padding: 3px 11px;
    border-radius: 100px;
    margin: 0 5px 6px 0;
}

/* Step / process timeline */

.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

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

.step {
    counter-increment: step;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-head);
    font-size: 1.05rem;
    color: #fff;
    background: var(--green-600);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(82, 145, 50, 0.35);
}

.step h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.step p {
    color: var(--ink-soft);
    font-size: 0.93rem;
}

/* Split feature rows */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.split + .split {
    margin-top: 64px;
}

.split h2 {
    margin-bottom: 16px;
}

.split p {
    color: var(--ink-soft);
    margin-bottom: 14px;
}

.split ul.ticks {
    list-style: none;
    margin: 18px 0 22px;
}

.split ul.ticks li,
ul.ticks li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 11px;
    color: var(--ink);
}

ul.ticks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 21px;
    height: 21px;
    font-size: 0.75rem;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-700);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.split .visual-panel {
    border-radius: var(--radius);
    min-height: 340px;
    background: linear-gradient(150deg, var(--green-100), var(--green-50));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.split .visual-panel img {
    max-height: 420px;
    object-fit: contain;
}

/* Trust / certification badges */

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.t-badge {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    min-width: 150px;
}

.t-badge strong {
    display: block;
    font-family: var(--font-head);
    color: var(--green-800);
    font-size: 1.02rem;
}

.t-badge span {
    font-size: 0.82rem;
    color: var(--ink-soft);
}

/* Tables */

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    font-size: 0.97rem;
}

.spec-table th {
    background: var(--green-800);
    color: #fff;
    text-align: left;
    padding: 14px 18px;
    font-family: var(--font-head);
    font-weight: 700;
}

.spec-table td {
    padding: 13px 18px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
}

.spec-table td:first-child {
    color: var(--ink);
    font-weight: 600;
}

.spec-table tr:nth-child(even) td {
    background: var(--cream);
}

/* FAQ accordion */

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 700;
    font-size: 1.02rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--green-900);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--green-600);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item .faq-body {
    padding: 0 22px 20px;
    color: var(--ink-soft);
}

/* Testimonials */

.quote-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.quote-card .stars {
    color: var(--orange-500);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.quote-card blockquote {
    color: var(--ink);
    font-size: 1rem;
    margin-bottom: 18px;
}

.quote-card .who strong {
    display: block;
    color: var(--green-900);
}

.quote-card .who span {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px;
}

.form-panel h3 {
    margin-bottom: 6px;
}

.form-panel .sub {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--green-900);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.98rem;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--ink);
    transition: border-color 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--green-600);
    background: #fff;
}

.field textarea {
    min-height: 110px;
    resize: vertical;
}

.form-note {
    font-size: 0.84rem;
    color: var(--ink-soft);
    margin-top: 14px;
}

.form-status {
    display: none;
    margin-top: 16px;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.form-status.ok {
    display: block;
    background: var(--green-100);
    color: var(--green-800);
}

.form-status.err {
    display: block;
    background: #fdeaea;
    color: #a33030;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
    background:
        radial-gradient(at 15% 20%, rgba(255, 148, 31, 0.25), transparent 45%),
        linear-gradient(140deg, var(--green-900), var(--green-700));
    border-radius: var(--radius);
    color: #fff;
    padding: 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
}

.cta-band h2 {
    color: #fff;
    margin-bottom: 12px;
}

.cta-band p {
    color: #dcebd9;
}

.cta-band .actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--green-900);
    color: #c9dcc5;
    padding: 64px 0 0;
    font-size: 0.95rem;
}

.site-footer .cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
}

.site-footer .about img {
    height: 46px;
    margin-bottom: 18px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 8px;
}

.site-footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 9px;
}

.site-footer a {
    color: #c9dcc5;
}

.site-footer a:hover {
    color: var(--orange-500);
}

.site-footer .contact-li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.site-footer .contact-li svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.site-footer .social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.site-footer .social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.site-footer .social a:hover {
    background: var(--orange-500);
}

.site-footer .legal {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.86rem;
    color: #9cb898;
}

.startup-india {
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    width: 130px;
    margin-top: 14px;
}

/* Floating WhatsApp */

.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s;
}

.wa-float:hover {
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
}

.table-scroll .spec-table {
    min-width: 640px;
}

.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.mb-2 { margin-bottom: 24px; }
.center { text-align: center; }
.muted { color: var(--ink-soft); }

.icon-emoji {
    font-size: 26px;
    line-height: 1;
}

/* SVG icon system (sprite: Assets/icon/v2-sprite.svg) */

.i {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

.card .ic .i,
.hero-card .ic .i {
    width: 26px;
    height: 26px;
}

.hero-card .ic {
    color: #ffc97e;
}

.produce {
    width: 64px;
    height: 64px;
}

.commodity-card .visual .produce {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 6px 10px rgba(45, 114, 29, 0.18));
    transition: transform 0.25s ease;
}

.commodity-card:hover .visual .produce {
    transform: scale(1.12) rotate(-3deg);
}

/* --------------------------------------------------------------------------
   Motion — scroll reveals & ambient float (the "live" feel)
   -------------------------------------------------------------------------- */

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

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-stagger.in > * {
    opacity: 1;
    transform: none;
}

.reveal-stagger.in > :nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in > :nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.in > :nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.in > :nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.in > :nth-child(6) { transition-delay: 0.5s; }

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

.float {
    animation: floaty 5s ease-in-out infinite;
}

@keyframes leaf-drift {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    12% { opacity: 0.5; }
    88% { opacity: 0.5; }
    100% { transform: translate(-40px, 110vh) rotate(320deg); opacity: 0; }
}

.hero-leaves {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-leaves .leaf {
    position: absolute;
    top: -40px;
    width: 22px;
    height: 22px;
    fill: rgba(255, 255, 255, 0.35);
    animation: leaf-drift 14s linear infinite;
}

/* Entrance choreography — hero content rises in on page load */

@keyframes rise-in {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: none; }
}

.hero h1,
.page-hero h1 { animation: rise-in 0.7s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both; }

.hero p.lead,
.page-hero .crumbs,
.page-hero > .container > p { animation: rise-in 0.7s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both; }

.hero .hero-cta,
.page-hero .hero-cta { animation: rise-in 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both; }

.hero .hero-points { animation: rise-in 0.7s 0.42s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* backwards (not both) — a forwards fill would pin transform:none and
   block the JS parallax that writes an inline transform after load */
.hero-art { animation: rise-in 0.9s 0.25s cubic-bezier(0.22, 1, 0.36, 1) backwards; }

/* Ambient drifting colour blobs behind hero content (GPU-cheap: transform only) */

.hero, .page-hero {
    position: relative;
    overflow: hidden;
}

.hero .container, .page-hero .container {
    position: relative;
    z-index: 1;
}

.hero::before, .page-hero::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #6fd06a;
    filter: blur(80px);
    opacity: 0.16;
    top: -140px;
    right: 6%;
    pointer-events: none;
    animation: blob-drift 16s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: var(--orange-500);
    filter: blur(90px);
    opacity: 0.10;
    bottom: -160px;
    left: -4%;
    pointer-events: none;
    animation: blob-drift 20s ease-in-out infinite alternate-reverse;
}

@keyframes blob-drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(60px, 44px) scale(1.18); }
}

/* Button sheen sweep on hover */

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -80%;
    width: 50%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.45s ease;
    pointer-events: none;
}

.btn:hover::before {
    left: 130%;
}

/* Icon micro-interactions */

.card .ic {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
}

.card:hover .ic {
    transform: scale(1.1) rotate(-6deg);
    background: var(--green-600);
    color: #fff;
}

.step::before {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step:hover::before {
    transform: scale(1.12) rotate(8deg);
}

/* 3D tilt (set from v2.js on fine-pointer devices) */

.audience-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
    .float, .hero-leaves .leaf { animation: none; }
    html { scroll-behavior: auto; }
    .hero h1, .page-hero h1, .hero p.lead, .page-hero .crumbs,
    .page-hero > .container > p, .hero .hero-cta, .page-hero .hero-cta,
    .hero .hero-points, .hero-art { animation: none; }
    .hero::before, .hero::after, .page-hero::before { animation: none; }
    .btn::before { display: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1020px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .steps, .steps.cols-3, .steps.cols-5 { grid-template-columns: repeat(2, 1fr); }
    .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
    .stat { border-left: none; border-top: 1px solid var(--line); }
    .stat:nth-child(-n+2) { border-top: none; }
    .stat:nth-child(even) { border-left: 1px solid var(--line); }
    .site-footer .cols { grid-template-columns: 1fr 1fr; }
    .hero .container { grid-template-columns: 1fr; }
    .hero-art { display: none; }
}

@media (max-width: 860px) {
    section { padding: 54px 0; }

    .nav-toggle { display: block; }

    .main-nav {
        position: fixed;
        inset: 0;
        top: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 90px 8% 40px;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        overflow-y: auto;
        z-index: 990;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .main-nav ul a {
        font-size: 1.1rem;
        padding: 13px 10px;
    }

    .nav-toggle {
        position: relative;
        z-index: 995;
    }

    body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--green-100);
        border-radius: 0;
        margin: 0 0 6px 14px;
        padding: 0;
        display: none;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .main-nav .nav-cta {
        margin: 18px 0 0;
    }

    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .split .visual-panel { min-height: 240px; order: -1; }
    .form-grid { grid-template-columns: 1fr; }
    .cta-band { grid-template-columns: 1fr; padding: 38px 28px; }
    .cta-band .actions { justify-content: flex-start; }
    .topbar .tagline { display: none; }
    .topbar .container { justify-content: center; }
    .topbar a { margin-left: 0; margin-right: 14px; }
    .topbar a:last-child { margin-right: 0; }
}

@media (max-width: 374px) {
    .btn { padding: 12px 18px; font-size: 0.95rem; }
}

@media (max-width: 560px) {
    .grid-4 { grid-template-columns: 1fr; }
    .steps, .steps.cols-3, .steps.cols-5 { grid-template-columns: 1fr; }
    .stats-strip .container { grid-template-columns: 1fr 1fr; transform: translateY(-30px); }
    .site-footer .cols { grid-template-columns: 1fr; }
    .hero { padding: 60px 0; }
    .btn { width: 100%; justify-content: center; }
    .hero .hero-cta, .page-hero .hero-cta { flex-direction: column; align-items: stretch; }
}
