:root{
    --agro-green:#143d2b;
    --agro-green-2:#287a4b;
    --agro-gold:#c69a45;
    --agro-cream:#f7f3e8;
    --agro-white:#ffffff;
    --agro-text:#243129;
    --agro-muted:#69766e;
    --agro-border:#dfe5df;
    --agro-max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:var(--agro-white);
    color:var(--agro-text);
    line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto}
.agro-container{width:min(calc(100% - 40px),var(--agro-max));margin:auto}

.agro-topbar{
    background:var(--agro-green);
    color:#fff;
    font-size:13px;
}
.agro-topbar-inner{
    min-height:34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.agro-header{
    background:#fff;
    border-bottom:1px solid var(--agro-border);
}
.agro-header-inner{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
.agro-brand strong{
    display:block;
    color:var(--agro-green);
    font-family:Georgia,"Times New Roman",serif;
    font-size:27px;
    letter-spacing:.06em;
}
.agro-brand small{
    display:block;
    color:var(--agro-gold);
    font-size:11px;
    letter-spacing:.13em;
    text-transform:uppercase;
}
.agro-nav{
    display:flex;
    align-items:center;
    gap:24px;
    font-size:14px;
    font-weight:700;
}
.agro-nav a:hover{color:var(--agro-green-2)}
.agro-lang{
    display:flex;
    align-items:center;
    gap:7px;
    font-size:12px;
}
.agro-lang a{
    padding:4px 6px;
    border-radius:4px;
}
.agro-lang a.is-active{
    background:var(--agro-green);
    color:#fff;
}

main{min-height:60vh}

.agro-footer{
    margin-top:80px;
    background:var(--agro-green);
    color:#fff;
}
.agro-footer-main{
    padding:46px 0 34px;
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:60px;
}
.agro-footer h3{
    margin:0 0 8px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:25px;
}
.agro-footer p{
    margin:5px 0;
    color:rgba(255,255,255,.78);
}
.agro-footer a{color:#fff}
.agro-footer-legal{
    padding:15px 0;
    border-top:1px solid rgba(255,255,255,.15);
    font-size:12px;
    color:rgba(255,255,255,.68);
}
.agro-gold{color:var(--agro-gold)}

html[dir="rtl"] body{text-align:right}

@media(max-width:760px){
    .agro-topbar-inner,
    .agro-header-inner{
        align-items:flex-start;
        flex-direction:column;
        padding-top:12px;
        padding-bottom:12px;
    }
    .agro-nav{flex-wrap:wrap;gap:14px}
    .agro-footer-main{grid-template-columns:1fr;gap:25px}
}

/* === PRODUCT PREVIEW v0.1.15 === */

.product-hero{
    padding:78px 0 70px;
    background:
        radial-gradient(circle at 80% 20%,rgba(198,154,69,.16),transparent 32%),
        linear-gradient(135deg,#102f22,#174a34);
    color:#fff;
}
.product-hero p:first-child{
    margin:0 0 14px;
    color:var(--agro-gold);
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
}
.product-hero h1{
    max-width:780px;
    margin:0 0 16px;
    font:700 clamp(42px,6vw,72px)/1.02 Georgia,"Times New Roman",serif;
}
.product-hero>div>p:not(:first-child){
    max-width:720px;
    font-size:19px;
    color:rgba(255,255,255,.82);
}
.product-status{
    max-width:850px;
    margin-top:32px;
    padding:15px 18px;
    border:1px solid rgba(198,154,69,.45);
    background:rgba(255,255,255,.06);
    font-size:13px;
    color:#f3e2bd;
}

.product-summary{
    background:var(--agro-cream);
    padding:30px 0;
}
.product-spec-grid,
.packing-grid,
.season-grid{
    display:grid;
    gap:16px;
}
.product-spec-grid{grid-template-columns:repeat(3,1fr)}
.product-spec-grid article,
.packing-grid article,
.season-grid article{
    background:#fff;
    border:1px solid var(--agro-border);
    border-radius:10px;
    padding:20px;
}
.product-spec-grid small,
.packing-grid small{
    display:block;
    margin-bottom:6px;
    color:var(--agro-muted);
    font-size:11px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
}
.product-spec-grid strong,
.packing-grid strong{
    color:var(--agro-green);
    font-size:17px;
}

.product-details{padding:62px 0 10px}
.product-detail-block{
    padding:34px 0;
    border-bottom:1px solid var(--agro-border);
}
.product-detail-block h2,
.product-legal h2{
    margin:0 0 20px;
    color:var(--agro-green);
    font:700 30px/1.15 Georgia,"Times New Roman",serif;
}
.season-grid{grid-template-columns:repeat(3,1fr)}
.season-grid article strong{
    display:block;
    color:var(--agro-green);
    font-size:18px;
}
.season-grid article span{
    display:block;
    margin-top:5px;
    color:var(--agro-muted);
}
.packing-grid{grid-template-columns:repeat(4,1fr)}

.product-legal{
    margin-top:42px;
    padding:28px;
    background:var(--agro-cream);
    border-left:4px solid var(--agro-gold);
}
html[dir="rtl"] .product-legal{
    border-left:0;
    border-right:4px solid var(--agro-gold);
}

@media(max-width:800px){
    .product-hero{padding:54px 0}
    .product-spec-grid,
    .season-grid,
    .packing-grid{grid-template-columns:1fr}
}

/* === RFQ FORM v0.1.22 === */

.agro-rfq-form{
    max-width:980px;
    margin:0 auto 42px;
    padding:34px;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px 24px;
    background:#fff;
    border:1px solid var(--agro-border);
    border-radius:14px;
    box-shadow:0 18px 55px rgba(20,61,43,.08);
}

.agro-rfq-form p{
    margin:0;
}

.agro-rfq-form p:has(textarea),
.agro-rfq-form p:has(button){
    grid-column:1/-1;
}

.agro-rfq-form label{
    display:block;
    color:var(--agro-green);
    font-size:13px;
    font-weight:700;
}

.agro-rfq-form input,
.agro-rfq-form select,
.agro-rfq-form textarea{
    width:100%;
    margin-top:7px;
    padding:13px 14px;
    border:1px solid #cfd9d1;
    border-radius:8px;
    background:#fff;
    color:var(--agro-text);
    font:inherit;
    outline:none;
    transition:border-color .18s,box-shadow .18s;
}

.agro-rfq-form textarea{
    min-height:130px;
    resize:vertical;
}

.agro-rfq-form input:focus,
.agro-rfq-form select:focus,
.agro-rfq-form textarea:focus{
    border-color:var(--agro-green-2);
    box-shadow:0 0 0 3px rgba(40,122,75,.12);
}

.agro-rfq-form button[type="submit"]{
    grid-column:1/-1;
    min-height:52px;
    padding:13px 24px;
    border:0;
    border-radius:8px;
    background:var(--agro-green);
    color:#fff;
    font-weight:800;
    font-size:15px;
    cursor:pointer;
    transition:background .18s,transform .18s;
}

.agro-rfq-form button[type="submit"]:hover{
    background:var(--agro-green-2);
    transform:translateY(-1px);
}

html[dir="rtl"] .agro-rfq-form input,
html[dir="rtl"] .agro-rfq-form select,
html[dir="rtl"] .agro-rfq-form textarea{
    text-align:right;
}

@media(max-width:760px){
    .agro-rfq-form{
        grid-template-columns:1fr;
        padding:22px;
    }

    .agro-rfq-form p,
    .agro-rfq-form button[type="submit"]{
        grid-column:1;
    }
}

/* PRODUCT CTA v0.1.23 */
.agro-product-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:13px 24px;
    border-radius:8px;
    background:var(--agro-green);
    color:#fff;
    font-weight:800;
}
.agro-product-cta:hover{
    background:var(--agro-green-2);
}

/* === SEASON CALENDAR v0.1.24 === */

.season-calendar{
    display:grid;
    gap:18px;
}

.season-row{
    padding:22px;
    background:#fff;
    border:1px solid var(--agro-border);
    border-radius:12px;
}

.season-row>strong{
    display:block;
    margin-bottom:13px;
    color:var(--agro-green);
    font-size:18px;
}

.season-months{
    display:grid;
    grid-template-columns:repeat(12,minmax(0,1fr));
    gap:6px;
}

.season-months span{
    display:flex;
    min-height:38px;
    align-items:center;
    justify-content:center;
    padding:5px 3px;
    border:1px solid var(--agro-border);
    border-radius:6px;
    background:#f5f6f3;
    color:#99a29b;
    font-size:11px;
    font-weight:700;
    text-align:center;
}

.season-months span.is-active{
    border-color:var(--agro-green-2);
    background:var(--agro-green);
    color:#fff;
}

html[dir="rtl"] .season-months{
    direction:rtl;
}

@media(max-width:800px){
    .season-months{
        grid-template-columns:repeat(4,1fr);
    }
}

/* === EXPORT SPEC HIERARCHY v0.1.25 === */

.packing-grid article,
.cold-chain-grid article{
    position:relative;
    overflow:hidden;
}

.packing-grid article::before,
.cold-chain-grid article::before{
    content:"";
    position:absolute;
    inset:0 auto 0 0;
    width:3px;
    background:var(--agro-gold);
}

.cold-chain-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.cold-chain-grid article{
    padding:22px;
    border:1px solid var(--agro-border);
    border-radius:10px;
    background:var(--agro-cream);
}

.cold-chain-grid small{
    display:block;
    margin-bottom:7px;
    color:var(--agro-muted);
    font-size:11px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.cold-chain-grid strong{
    color:var(--agro-green);
    font-size:20px;
}

.technical-note{
    max-width:800px;
    margin:18px 0 0;
    padding:13px 16px;
    border-left:3px solid var(--agro-gold);
    color:var(--agro-muted);
    background:#faf9f5;
    font-size:13px;
}

html[dir="rtl"] .packing-grid article::before,
html[dir="rtl"] .cold-chain-grid article::before{
    left:auto;
    right:0;
}

html[dir="rtl"] .technical-note{
    border-left:0;
    border-right:3px solid var(--agro-gold);
}

@media(max-width:800px){
    .cold-chain-grid{
        grid-template-columns:1fr;
    }
}

/* === OFFICIAL BTE AGRO LOGO v0.1.26 === */

.agro-brand{
    display:flex;
    align-items:center;
    flex:0 0 auto;
}

.agro-brand img{
    display:block;
    width:auto;
    height:56px;
    max-width:250px;
    object-fit:contain;
}

.agro-footer-logo{
    display:inline-flex;
    align-items:center;
    padding:9px 13px;
    margin-bottom:13px;
    background:#fff;
    border-radius:8px;
}

.agro-footer-logo img{
    display:block;
    width:auto;
    height:54px;
    max-width:245px;
    object-fit:contain;
}

@media(max-width:760px){
    .agro-brand img{
        height:48px;
        max-width:215px;
    }

    .agro-footer-logo img{
        height:46px;
        max-width:210px;
    }
}

/* === PRODUCT CATALOG v0.1.27 === */

.catalog-hero{
    padding:72px 0 64px;
    background:
        radial-gradient(circle at 82% 20%,rgba(198,154,69,.17),transparent 30%),
        linear-gradient(135deg,#103323,#185038);
    color:#fff;
}

.catalog-eyebrow{
    margin:0 0 13px;
    color:var(--agro-gold);
    font-size:12px;
    font-weight:800;
    letter-spacing:.15em;
    text-transform:uppercase;
}

.catalog-hero h1{
    margin:0 0 14px;
    font:700 clamp(40px,5vw,64px)/1.05 Georgia,"Times New Roman",serif;
}

.catalog-hero>div>p:last-child{
    max-width:720px;
    margin:0;
    color:rgba(255,255,255,.8);
    font-size:18px;
}

.catalog-section{
    padding:58px 0 10px;
    background:#fafbf8;
}

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

.catalog-card{
    overflow:hidden;
    background:#fff;
    border:1px solid var(--agro-border);
    border-radius:16px;
    box-shadow:0 14px 42px rgba(20,61,43,.07);
    transition:transform .22s ease,box-shadow .22s ease;
}

.catalog-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 55px rgba(20,61,43,.12);
}

.catalog-card-visual{
    position:relative;
    min-height:190px;
    display:flex;
    align-items:flex-end;
    padding:24px;
    overflow:hidden;
    color:#fff;
}

.catalog-card-visual::before,
.catalog-card-visual::after{
    content:"";
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.catalog-card-visual::before{
    width:220px;
    height:220px;
    right:-60px;
    top:-90px;
}

.catalog-card-visual::after{
    width:130px;
    height:130px;
    left:-35px;
    bottom:-55px;
}

.catalog-card-visual span{
    position:relative;
    z-index:1;
    font:700 29px/1.1 Georgia,"Times New Roman",serif;
}

.catalog-card--fresh-fruits .catalog-card-visual{
    background:linear-gradient(135deg,#174c31,#398653);
}

.catalog-card--fresh-vegetables .catalog-card-visual{
    background:linear-gradient(135deg,#224d2d,#6c8f37);
}

.catalog-card--frozen-iqf .catalog-card-visual{
    background:linear-gradient(135deg,#17434b,#397987);
}

.catalog-card--agricultural-crops .catalog-card-visual{
    background:linear-gradient(135deg,#765a20,#c0923c);
}

.catalog-card-body{
    padding:27px 28px 30px;
}

.catalog-category{
    margin:0 0 7px;
    color:var(--agro-gold);
    font-size:11px;
    font-weight:800;
    letter-spacing:.13em;
}

.catalog-card h2{
    margin:0 0 10px;
    color:var(--agro-green);
    font:700 29px/1.15 Georgia,"Times New Roman",serif;
}

.catalog-card-body>p:not(.catalog-category){
    min-height:52px;
    margin:0 0 22px;
    color:var(--agro-muted);
}

.catalog-card-link{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:var(--agro-green);
    font-size:14px;
    font-weight:800;
}

.catalog-card-link:hover{
    color:var(--agro-green-2);
}

html[dir="rtl"] .catalog-card-visual::before{
    right:auto;
    left:-60px;
}

@media(max-width:760px){
    .catalog-hero{padding:50px 0}
    .catalog-grid{grid-template-columns:1fr}
    .catalog-card-body>p:not(.catalog-category){min-height:0}
}

/* =========================================================
   BTE AGRO PUBLIC RELEASE v0.2.0
   ========================================================= */
:root{--agro-green:#103f2b;--agro-green-deep:#0b3122;--agro-green-2:#27754a;--agro-gold:#c99a32;--agro-cream:#f7f3e8;--agro-soft:#f7f9f5;--agro-white:#fff;--agro-text:#203129;--agro-muted:#68756d;--agro-border:#dfe7df;--agro-max:1180px}
body{font-family:Arial,Helvetica,sans-serif;background:#fff;color:var(--agro-text)}
.agro-container{width:min(calc(100% - 40px),var(--agro-max));margin-inline:auto}
.agro-topbar a{color:#fff}
.agro-header{position:sticky;top:0;z-index:30;background:rgba(255,255,255,.97);backdrop-filter:blur(10px)}
.agro-header-inner{min-height:84px;gap:20px}
.agro-brand img{height:52px;max-width:225px}
.agro-nav{gap:18px;font-size:13px;white-space:nowrap}
.agro-nav a{padding:8px 0}
.agro-nav-rfq{padding:10px 14px!important;border-radius:7px;background:var(--agro-green);color:#fff!important}
.agro-nav-rfq:hover{background:var(--agro-green-2)!important}
.agro-lang{margin-inline-start:auto}
.agro-menu-toggle{display:none;border:1px solid var(--agro-border);background:#fff;border-radius:7px;padding:8px 10px;font-weight:700;color:var(--agro-green)}
.eyebrow{margin:0 0 12px;color:var(--agro-gold);font-size:11px;font-weight:800;letter-spacing:.13em;text-transform:uppercase}
.lead{font-size:18px;color:inherit;opacity:.84;max-width:760px}
.section{padding:70px 0}.section-soft{background:var(--agro-soft)}
.section-head{max-width:780px;margin-bottom:30px}.section-head h2{margin:0 0 12px;font:700 clamp(30px,4vw,44px)/1.1 Georgia,"Times New Roman",serif;color:var(--agro-green)}.section-head p{margin:0;color:var(--agro-muted);font-size:17px}
.btn{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:12px 20px;border-radius:7px;font-weight:800}.btn-primary{background:var(--agro-green);color:#fff}.btn-primary:hover{background:var(--agro-green-2)}.btn-secondary{border:1px solid rgba(255,255,255,.4);color:#fff}.btn-gold{background:var(--agro-gold);color:#18271f}.text-link{color:var(--agro-green);font-weight:800}
.home-hero{padding:86px 0;background:radial-gradient(circle at 78% 15%,rgba(201,154,50,.2),transparent 28%),linear-gradient(135deg,var(--agro-green-deep),#185238);color:#fff}
.home-hero-grid{display:grid;grid-template-columns:1.45fr .7fr;align-items:center;gap:60px}.home-hero h1{margin:0 0 18px;font:700 clamp(44px,6vw,74px)/1.02 Georgia,"Times New Roman",serif;max-width:820px}.home-hero .lead{color:rgba(255,255,255,.82)}.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
.export-card{padding:28px;border:1px solid rgba(255,255,255,.18);border-radius:14px;background:rgba(255,255,255,.07);box-shadow:0 24px 65px rgba(0,0,0,.15)}.export-card span{display:block;color:var(--agro-gold);font-size:12px;font-weight:800;letter-spacing:.14em}.export-card strong{display:block;margin:8px 0 12px;font:700 28px/1.15 Georgia,"Times New Roman",serif}.export-card p,.export-card small{color:rgba(255,255,255,.75)}.export-card-rule{height:1px;background:rgba(255,255,255,.17);margin:20px 0}
.catalog-grid.compact .catalog-card-visual{min-height:155px}.catalog-grid.compact .catalog-card-body{padding:22px}.catalog-grid.compact h3{margin:0 0 8px;color:var(--agro-green);font:700 25px/1.1 Georgia,"Times New Roman",serif}
.season-focus-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.season-focus-card{padding:18px 20px;border:1px solid var(--agro-border);border-radius:10px;background:#fff}.season-focus-card span{display:block;color:var(--agro-green);font-weight:800}.season-focus-card small{display:block;margin-top:5px;color:var(--agro-muted)}
.pillar-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.pillar-grid article{padding:26px;border:1px solid var(--agro-border);border-radius:12px;background:#fff}.pillar-grid article>span,.static-grid article>span{color:var(--agro-gold);font-weight:800}.pillar-grid h3{margin:10px 0 8px;color:var(--agro-green);font:700 22px/1.15 Georgia,"Times New Roman",serif}.pillar-grid p{margin:0;color:var(--agro-muted)}
.legal-band{background:var(--agro-cream)}.legal-grid{display:grid;grid-template-columns:1.4fr .7fr;gap:50px;align-items:center}.legal-grid h2{margin:0 0 12px;font:700 38px/1.1 Georgia,"Times New Roman",serif;color:var(--agro-green)}.legal-grid p{color:var(--agro-muted)}.legal-identity{padding:25px;border-left:4px solid var(--agro-gold);background:#fff}.legal-identity span{display:block;color:var(--agro-muted);font-size:13px}.legal-identity strong{display:block;margin-top:8px;color:var(--agro-green);font-size:22px}html[dir="rtl"] .legal-identity{border-left:0;border-right:4px solid var(--agro-gold)}
.cta-band{padding:58px 0;background:linear-gradient(135deg,#0d3525,#174f36);color:#fff}.cta-band h2{margin:0 0 10px;font:700 36px/1.1 Georgia,"Times New Roman",serif}.cta-band p{max-width:760px;color:rgba(255,255,255,.78)}
.product-list-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.product-list-card{position:relative;padding:26px;border:1px solid var(--agro-border);border-radius:12px;background:#fff;overflow:hidden}.product-list-accent{position:absolute;inset:0 0 auto 0;height:4px;background:var(--agro-gold)}.product-list-card h2{margin:0 0 14px;color:var(--agro-green);font:700 27px/1.1 Georgia,"Times New Roman",serif}.product-meta{display:grid;gap:6px;color:var(--agro-muted);font-size:13px;margin-bottom:16px}.mini-season{display:grid;grid-template-columns:repeat(12,1fr);gap:3px;margin:15px 0}.mini-season i{height:5px;border-radius:2px;background:#e7ece7}.mini-season i.on{background:var(--agro-green)}
.category-hero--fresh-fruits{background:linear-gradient(135deg,#0f432d,#2e7a48)}.category-hero--fresh-vegetables{background:linear-gradient(135deg,#183e2a,#64833b)}.category-hero--frozen-iqf{background:linear-gradient(135deg,#153c46,#3d7480)}.category-hero--agricultural-crops{background:linear-gradient(135deg,#6b511c,#aa8030)}
.product-public-hero{padding:78px 0;color:#fff}.product-template--fresh{background:radial-gradient(circle at 80% 12%,rgba(201,154,50,.2),transparent 30%),linear-gradient(135deg,#103d2a,#246d43)}.product-template--frozen{background:radial-gradient(circle at 80% 12%,rgba(255,255,255,.1),transparent 30%),linear-gradient(135deg,#143943,#326b79)}.product-template--crop{background:radial-gradient(circle at 80% 12%,rgba(201,154,50,.2),transparent 30%),linear-gradient(135deg,#5b461c,#947028)}.product-public-grid{display:grid;grid-template-columns:1.35fr .65fr;gap:55px;align-items:center}.product-public-hero h1{margin:0 0 15px;font:700 clamp(42px,5vw,68px)/1.03 Georgia,"Times New Roman",serif}.product-facts{display:grid;gap:1px;border-radius:12px;overflow:hidden}.product-facts>div{padding:17px 20px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.08)}.product-facts small{display:block;color:rgba(255,255,255,.65);font-size:11px;text-transform:uppercase;letter-spacing:.08em}.product-facts strong{display:block;margin-top:4px}
.single-season-calendar{display:grid;grid-template-columns:repeat(12,1fr);gap:6px;margin:22px 0 35px}.single-season-calendar span{padding:10px 4px;text-align:center;border:1px solid var(--agro-border);border-radius:6px;color:#929d96;background:#f5f6f3;font-size:11px;font-weight:700}.single-season-calendar span.is-active{background:var(--agro-green);border-color:var(--agro-green);color:#fff}
.spec-card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}.spec-card-grid article{padding:23px;border:1px solid var(--agro-border);border-radius:10px;background:#fff}.spec-card-grid small{display:block;margin-bottom:7px;color:var(--agro-muted);font-weight:800;text-transform:uppercase;font-size:10px;letter-spacing:.08em}.spec-card-grid strong{color:var(--agro-green)}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}.process-grid article{padding:20px;border:1px solid var(--agro-border);border-radius:10px;background:#fff}.process-grid span{display:flex;width:32px;height:32px;align-items:center;justify-content:center;border-radius:50%;background:var(--agro-green);color:#fff;font-weight:800;margin-bottom:12px}.process-grid strong{color:var(--agro-green)}
.season-note{padding:15px 18px;border-left:3px solid var(--agro-gold);background:var(--agro-cream);color:var(--agro-muted)}html[dir="rtl"] .season-note{border-left:0;border-right:3px solid var(--agro-gold)}.season-category{margin-top:42px}.season-category h2{color:var(--agro-green);font:700 30px/1.1 Georgia,"Times New Roman",serif}.season-table{display:grid;gap:10px}.season-line{display:grid;grid-template-columns:220px 1fr;gap:16px;align-items:center;padding:15px;border:1px solid var(--agro-border);border-radius:10px;background:#fff}.season-line>strong{color:var(--agro-green)}.compact-months{grid-template-columns:repeat(12,1fr)!important}.program-pill{display:inline-flex;width:max-content;padding:7px 10px;border-radius:999px;background:var(--agro-cream);color:var(--agro-green);font-size:12px;font-weight:800}
.static-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}.static-grid article{padding:30px;border:1px solid var(--agro-border);border-radius:12px;background:#fff}.static-grid h2{margin:10px 0 10px;color:var(--agro-green);font:700 27px/1.15 Georgia,"Times New Roman",serif}.static-grid p{margin:0;color:var(--agro-muted)}
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.contact-grid article{padding:28px;border:1px solid var(--agro-border);border-radius:12px}.contact-grid small{display:block;color:var(--agro-gold);font-weight:800;text-transform:uppercase;letter-spacing:.08em}.contact-grid strong{display:block;margin:8px 0;color:var(--agro-green);font-size:20px}.contact-grid p{color:var(--agro-muted)}
.agro-footer-main{grid-template-columns:1.4fr .7fr .8fr}.agro-footer-links{display:grid;align-content:start;gap:7px}.agro-footer-links a{color:rgba(255,255,255,.8)}.agro-footer-tagline{color:var(--agro-gold)!important}.agro-footer-rfq{display:inline-flex;margin-top:7px;color:var(--agro-gold)!important;font-weight:800}
@media(max-width:1080px){.agro-header-inner{flex-wrap:wrap}.agro-menu-toggle{display:block;margin-inline-start:auto}.agro-nav{display:none;order:4;width:100%;flex-direction:column;align-items:stretch;padding:12px 0 18px}.agro-nav.is-open{display:flex}.agro-lang{margin-inline-start:0}.home-hero-grid,.product-public-grid,.legal-grid{grid-template-columns:1fr}.pillar-grid,.spec-card-grid,.process-grid{grid-template-columns:repeat(2,1fr)}.product-list-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.agro-container{width:min(calc(100% - 28px),var(--agro-max))}.agro-topbar-inner{flex-direction:row;align-items:center;padding:0}.agro-header-inner{flex-direction:row;align-items:center}.agro-brand img{height:44px;max-width:190px}.agro-lang{width:100%;order:5;justify-content:flex-start}.home-hero{padding:60px 0}.section{padding:52px 0}.catalog-grid,.product-list-grid,.pillar-grid,.spec-card-grid,.process-grid,.static-grid,.contact-grid,.season-focus-grid,.agro-footer-main{grid-template-columns:1fr}.single-season-calendar,.compact-months{grid-template-columns:repeat(4,1fr)!important}.season-line{grid-template-columns:1fr}.cta-band h2{font-size:30px}}
