/* =========================================================
   TATE EXPORTS — MAIN STYLESHEET
   Cleaned / Consolidated Version
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {
    --green: #123d2b;
    --green-dark: #0c2a1f;
    --green-light: #1f5a40;

    --lime: #c8e86b;
    --lime-dark: #d4ec3a;

    --cream: #f7f3e9;
    --cream-section: #f1eee4;
    --cream-warm: #f5efe4;

    --ink: #17231d;
    --muted: #68736d;

    --white: #ffffff;
    --line: #dce3dc;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 18px;

    --shadow-sm: 0 8px 20px rgba(20, 57, 43, 0.07);
    --shadow-md: 0 15px 35px rgba(20, 57, 43, 0.10);
    --shadow-lg: 0 18px 40px rgba(20, 57, 43, 0.11);

    --transition: 0.25s ease;
}


/* =========================================================
   2. RESET / BASE
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Satoshi", sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   3. CONTAINER
========================================================= */

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


/* =========================================================
   4. HEADER / NAVIGATION
========================================================= */

header {
    position: sticky;
    top: 0;
    z-index: 50;

    background: rgba(247, 243, 233, 0.94);
    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


/* Logo */

.logo {
    display: inline-block;

    color: var(--green);

    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.logo span {
    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* Desktop Navigation */

nav ul {
    display: flex;
    align-items: center;

    gap: 24px;

    margin: 0;
    padding: 0;

    list-style: none;
}

nav a {
    position: relative;

    display: inline-block;

    padding: 8px 0;

    color: #3d4842;

    font-size: 0.92rem;
    font-weight: 600;

    transition: color var(--transition);
}

nav a:hover,
nav a.active {
    color: var(--green);
}

nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--green);

    transition: width var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}


/* Mobile Menu */

.menu {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid var(--line);
    border-radius: var(--radius-sm);

    background: transparent;
    color: var(--green);

    font-size: 1.5rem;
    line-height: 1;

    cursor: pointer;

    transition:
        background var(--transition),
        color var(--transition);
}

.menu:hover {
    background: var(--green);
    color: var(--white);
}


/* =========================================================
   5. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 46px;
    padding: 12px 20px;

    border: 1px solid transparent;
    border-radius: var(--radius-sm);

    font-size: 0.9rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-primary:hover {
    background: var(--green-light);
}

.btn-lime {
    background: var(--lime);
    color: var(--green);
}

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

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


/* =========================================================
   6. COMMON SECTIONS
========================================================= */

.section {
    padding: 100px 0;
}

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

.section-head {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-head .eyebrow,
.section > .container > .eyebrow {
    margin-bottom: 15px;

    color: var(--green);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-head h2,
.section h2 {
    margin: 0 0 22px;

    color: var(--green);

    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-head h2 {
    margin-bottom: 0;
}

.section .lead {
    max-width: 680px;
    margin: 0;

    color: var(--muted);

    font-size: 1.05rem;
    line-height: 1.85;
}


/* =========================================================
   7. COMMON GRIDS
========================================================= */

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

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

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


/* =========================================================
   8. COMMON CARD
========================================================= */

.card {
    position: relative;

    padding: 28px;

    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

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

.card h3 {
    margin-bottom: 15px;

    color: var(--green);

    font-size: 1.25rem;
    line-height: 1.3;
}

.card p {
    margin: 0;

    color: var(--muted);

    font-size: 0.95rem;
    line-height: 1.75;
}


/* =========================================================
   9. ICON
========================================================= */

.icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border-radius: var(--radius-md);

    background: #eaf3d2;
    color: var(--green);

    font-weight: 900;
}


/* =========================================================
   10. STAT CARDS
========================================================= */

.stat {
    min-height: 190px;

    padding: 28px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--line);
    border-radius: 14px;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.stat:hover {
    transform: translateY(-6px);

    background: var(--white);
    box-shadow: var(--shadow-md);
}

.stat strong {
    display: block;

    margin-bottom: 12px;

    color: var(--green);

    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat span {
    display: block;

    color: var(--muted);

    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
}


/* =========================================================
   12. HERO — HOME PAGE
========================================================= */

.hero {
    position: relative;

    min-height: 58vh;

    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        url("images/agro-export.jpg")
        center / cover no-repeat;

    color: var(--white);
  
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 35, 23, 0.92) 0%,
            rgba(8, 48, 31, 0.78) 45%,
            rgba(8, 48, 31, 0.35) 100%
        );
}

.hero::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(5, 28, 19, 0.55),
            transparent 35%
        );

    pointer-events: none;
   
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 55px 55px;
}

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;
    padding: 6px 12px;

    border: 1px solid rgba(200, 232, 107, 0.35);
    border-radius: 50px;

    background: rgba(200, 232, 107, 0.08);

    color: var(--lime);

    font-size: 0.5rem;
    letter-spacing: 0.15em;
}

.hero .eyebrow::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--lime);
    box-shadow: 0 0 10px var(--lime);
}

.hero h1 {
    max-width: 750px;

    margin-bottom: 18px;

    color: var(--white);

    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.hero h1 span {

    color: var(--lime);
}

.hero .lead {
    max-width: 600px;

    margin-bottom: 5px;

    color: #e3ebe6;

    font-size: 0.85rem;
    line-height: 1.6;
}

.hero .actions {
    margin-top: 22px;
}

.hero .btn-primary {
    padding: 11px 18px;

    background: var(--lime);
    color: var(--green);

    border-color: var(--lime);

    box-shadow: 0 8px 20px rgba(200, 232, 107, 0.18);
}

.hero .btn-primary:hover {
    background: var(--white);
    color: var(--green);

    transform: translateY(-2px);
}

.hero .btn-outline {
    padding: 11px 18px;

    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);

    backdrop-filter: blur(10px);
}

.hero .btn-outline:hover {
    background: var(--white);
    color: var(--green);
    border-color: var(--white);
}

.hero-info {
    display: flex;

    width: fit-content;

    margin-top: 30px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;

    background: rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(12px);

    overflow: hidden;
}

.hero-info div {
    min-width: 120px;

    padding: 10px 16px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-info div:last-child {
    border-right: 0;
}

.hero-info strong {
    display: block;

    color: var(--lime);

    font-size: 1.05rem;
}

.hero-info span {
    display: block;

    margin-top: 2px;

    color: #d5dfd9;

    font-size: 0.6rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;

    right: 25px;
    bottom: 25px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.55rem;
    letter-spacing: 0.12em;

    writing-mode: vertical-rl;
}

.hero-scroll div {
    width: 1px;
    height: 40px;

    background:
        linear-gradient(
            to bottom,
            var(--lime),
            transparent
        );
}





/* =========================================================
   HERO — MOBILE ONLY
========================================================= */

@media (max-width: 600px) {

    .hero {
        min-height: auto;
        background-position: 65% center;
        padding:20px 20px;
    }

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

    .hero .eyebrow {
        margin-bottom: 10px;
        padding: 5px 9px;
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .hero h1 {
        max-width: 100%;
        margin-bottom: 12px;
        font-size: 10px;
        line-height: 1.08;
        letter-spacing: -0.03em;
        
    
    }

    .hero h1 span {
        display: inline;
    }

    .hero .lead {
        max-width: 100%;
        font-size: 0.55rem;
        line-height: 1.5;
    }

    .hero .actions {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin-top: 16px;
    }

    .hero .btn-primary,
    .hero .btn-outline {
        width: auto;
        min-height: 36px;
        padding: 8px 12px;
        font-size: 11px;
        line-height: 1;
    }

    .hero-info {
        width: 100%;
        margin-top: 20px;
    }

    .hero-info div {
        min-width: 0;
        padding: 9px 10px;
    }

    .hero-info strong {
        font-size: 13px;
    }

    .hero-info span {
        font-size: 8px;
    }

    .hero-scroll {
        display: none;
    }
}


/* =========================================================
   VERY SMALL MOBILE — 380px AND BELOW
========================================================= */

@media (max-width: 380px) {

    .hero-content {
        padding: 55px 55px;
    }

    .hero h1 {
        font-size: 20px;
    }

    .hero .lead {
       
        font-size: 0.45rem;
        
    }

    .hero .actions {
        gap: 6px;
    }

    .hero .btn-primary,
    .hero .btn-outline {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 10px;
    }

    .hero-info div {
        padding: 8px 6px;
    }

    .hero-info strong {
        font-size: 12px;
    }

    .hero-info span {
        font-size: 7px;
    }
}






/* =========================================================
   13. EXPORT INTRO
========================================================= */

.export-intro {
    padding: 110px 22px;

    background: #f4f3ed;
}

.export-intro-inner {
    max-width: 1212px;

    margin-inline: auto;

    display: grid;
    grid-template-columns: 1.35fr 0.65fr;

    gap: 24px;
}

.export-card {
    position: relative;

    min-height: 570px;

    padding: 55px 55px 48px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #12392f;
    color: #f5f5ef;

    overflow: hidden;
}

.export-card::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    bottom: -190px;

    border: 1px solid rgba(220, 242, 55, 0.18);
    border-radius: 50%;
}

.export-card-top {
    display: flex;
    align-items: center;

    gap: 15px;
}

.export-line {
    width: 38px;
    height: 1px;

    background: var(--lime-dark);
}

.eyebrow {
    font-family: "Satoshi", sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.export-card h2 {
    max-width: 700px;

    margin: 80px 0 30px;

    color: var(--white);

    font-size: clamp(48px, 5.2vw, 76px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.export-card h2 em {
    color: var(--lime-dark);

    font-family: "Cormorant Garamond", serif;
    font-size: 1.12em;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.export-card p {
    max-width: 470px;

    margin: 0;

    color: #c4cec8;

    font-size: 17px;
    line-height: 1.55;
}

.text-link {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 45px;
    padding-bottom: 8px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.35);

    color: #f5f5ef;

    font-size: 14px;
    font-weight: 600;

    transition: gap 0.3s ease;
}

.text-link span {
    font-size: 21px;
    line-height: 1;
}

.text-link:hover {
    gap: 20px;
}

.export-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 12px 5px 0 35px;
}

.export-detail-intro {
    display: grid;
    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding-bottom: 55px;

    border-bottom: 1px solid #d5d4cd;
}

.detail-number {
    color: #68716c;

    font-size: 11px;
    letter-spacing: 0.15em;
}

.export-detail-intro p {
    max-width: 310px;

    margin: 0;

    color: #183d33;

    font-size: 19px;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.export-stats {
    display: flex;
    flex-direction: column;
}

.export-stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;

    padding: 27px 0;

    border-bottom: 1px solid #d5d4cd;
}

.export-stat strong {
    color: #173d32;

    font-size: 42px;
    font-weight: 400;
    letter-spacing: -0.06em;
}

.export-stat span {
    color: #6c746f;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   14. PRODUCTS
========================================================= */

.products-section {
    padding: 95px 0 100px;

    background: #123d32;
    color: #f5f5ed;

    overflow: hidden;
}

.products-container {
    width: min(1400px, calc(100% - 48px));

    margin-inline: auto;
}

.products-header {
    margin-bottom: 65px;
}

.products-eyebrow {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-bottom: 35px;

    color: #c8d1c8;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.products-eyebrow span {
    display: block;

    width: 40px;
    height: 1px;

    background: #aebbb1;
}

.products-heading-row {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr;

    gap: 100px;

    align-items: end;
}

.products-heading-row h2 {
    margin: 0;

    color: var(--white);

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -4px;
}

.products-heading-row h2 em {
    display: block;

    color: var(--lime-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-style: italic;

    letter-spacing: -4px;
}

.products-heading-row > p {
    max-width: 480px;

    margin: 0 0 4px;

    color: #b7c3bb;

    font-size: 17px;
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.product-item {
    display: block;

    min-width: 0;

    color: inherit;
}

.product-image {
    position: relative;

    height: 330px;

    background: #244d42;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s cubic-bezier(.2, .7, .2, 1),
        filter 0.4s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.06);
    filter: brightness(0.88);
}

.product-number {
    position: absolute;

    top: 20px;
    left: 20px;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;

    background: var(--lime-dark);
    color: #153e32;

    font-size: 12px;
    font-weight: 800;
}

.product-arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;

    background: rgba(15, 61, 49, 0.92);
    color: var(--white);

    font-size: 27px;
    font-weight: 300;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.product-item:hover .product-arrow {
    background: var(--lime-dark);
    color: #153e32;

    transform: translate(2px, -2px);
}

.product-content {
    padding-top: 25px;
}

.product-content h3 {
    margin: 0 0 10px;

    color: #f5f5ed;

    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.4px;
}

.product-description {
    margin: 0;

    color: #b8c4bd;

    font-size: 15px;
    line-height: 1.6;
}

.product-details {
    margin: 20px 0 0;

    color: #7f968c;

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   15. APPROACH
========================================================= */

.approach-section {
    width: 100%;

    padding: 100px 5%;

    background: var(--cream-warm);
    color: #2d2a24;
}

.approach-container {
    width: 100%;
    max-width: 1240px;

    margin-inline: auto;
}

.approach-header {
    max-width: 720px;

    margin-bottom: 48px;
}

.approach-eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #88765b;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.approach-eyebrow span {
    width: 25px;
    height: 1px;

    background: #9d8969;
}

.approach-header h2 {
    margin: 0 0 20px;

    color: #29261f;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
}

.approach-header h2 em {
    color: #8b7655;
    font-style: italic;
}

.approach-header > p {
    max-width: 650px;

    margin: 0;

    color: #756e62;

    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.8;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.approach-card {
    position: relative;

    min-height: 270px;

    padding: 27px 24px;

    background: rgba(255, 252, 246, 0.75);

    border: 1px solid rgba(105, 87, 59, 0.16);
    border-radius: 13px;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.approach-card:hover {
    transform: translateY(-5px);

    background: #fffdf8;

    box-shadow: 0 15px 35px rgba(70, 54, 32, 0.08);
}

.card-number {
    position: absolute;

    top: 27px;
    right: 24px;

    color: #a99d8b;

    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;
}

.approach-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 43px;

    border-radius: 50%;

    background: #ebe1d1;
    color: #806b4d;
}

.approach-icon svg {
    width: 19px;
    height: 19px;
}

.approach-card h3 {
    margin: 0 0 12px;

    color: #302c25;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.25;
}

.approach-card p {
    margin: 0;

    color: #756e62;

    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 1.75;
}


/* =========================================================
   16. EXPORT PROCESS
========================================================= */

.grid-4.process-grid {
    position: relative;

    gap: 24px;
}

.process-grid::before {
    content: "";

    position: absolute;

    top: 45px;
    left: 10%;
    right: 10%;

    height: 1px;

    z-index: 0;

    background: var(--line);
}

.process-grid .card {
    position: relative;
    z-index: 1;

    min-height: 330px;

    padding: 32px 28px;

    display: flex;
    flex-direction: column;

    background: var(--white);
}

.process-grid .card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--green);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform var(--transition);
}

.process-grid .card:hover {
    transform: translateY(-8px);

    border-color: rgba(20, 57, 43, 0.18);

    box-shadow: var(--shadow-lg);
}

.process-grid .card:hover::before {
    transform: scaleX(1);
}

.process-grid .icon {
    width: 58px;
    height: 58px;

    margin-bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green);
    color: var(--white);

    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;

    box-shadow: 0 0 0 7px var(--cream-section);

    transition:
        transform var(--transition),
        background var(--transition);
}

.process-grid .card:hover .icon {
    transform: scale(1.08);
    background: #315f49;
}

.process-grid .card h3 {
    margin: 0 0 15px;
}

.process-grid .card p {
    margin: 0;
}


/* =========================================================
   17. B2B COMMUNICATION
========================================================= */

.b2b-split {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(320px, 0.9fr);

    gap: 80px;

    align-items: center;
}

.b2b-split h2 {
    max-width: 650px;

    margin: 0 0 35px;
}

.b2b-split .eyebrow {
    margin-bottom: 16px;
}


/* =========================================================
   18. CHECK LIST
========================================================= */

.checks {
    display: flex;
    flex-direction: column;

    max-width: 600px;

    gap: 15px;
}

.check {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 15px 18px;

    background: rgba(255, 255, 255, 0.55);

    border: 1px solid var(--line);
    border-radius: 10px;

    color: #3d4842;

    font-size: 0.95rem;
    font-weight: 600;

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.check:hover {
    transform: translateX(5px);

    background: var(--white);

    box-shadow: var(--shadow-sm);
}

.check > :first-child {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green);
    color: var(--lime);

    font-size: 0.8rem;
    font-weight: 800;
}


/* =========================================================
   19. ENQUIRY CARD
========================================================= */

.enquiry-card {
    position: relative;

    padding: 42px;

    background: var(--white);

    border: 1px solid var(--line);
    border-radius: var(--radius-xl);

    box-shadow: 0 15px 40px rgba(20, 57, 43, 0.08);

    overflow: hidden;
}

.enquiry-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: var(--green);
}

.enquiry-card h3 {
    margin: 0 0 15px;

    color: var(--green);

    font-size: 1.5rem;
}

.enquiry-card p {
    margin: 0;

    color: var(--muted);

    font-size: 0.96rem;
    line-height: 1.8;
}


/* =========================================================
   20. ACTIONS
========================================================= */

.actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.actions .btn {
    min-height: 48px;
}


/* =========================================================
   21. LIST
========================================================= */

.list {
    padding-left: 20px;
}

.list li {
    margin: 8px 0;
}


/* =========================================================
   22. QUOTE
========================================================= */

.quote {
    padding: 30px;

    background: var(--white);

    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
}


/* =========================================================
   23. GREEN BAND
========================================================= */

.band {
    padding: 70px 0;

    background: var(--green);
    color: var(--white);
}

.band h2 {
    color: var(--white);
}

.band .lead {
    color: #d9e5dd;
}


/* =========================================================
   24. FORM
========================================================= */

form {
    display: grid;
    gap: 15px;
}

label {
    font-size: 0.9rem;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;

    padding: 13px 14px;

    background: var(--white);

    border: 1px solid #cbd5ce;
    border-radius: var(--radius-sm);

    color: var(--ink);
}

textarea {
    min-height: 150px;

    resize: vertical;
}


/* =========================================================
   25. FOOTER
========================================================= */

.site-footer {
    width: 100%;

    background: #123d32;
    color: #f3eee3;

    overflow: hidden;
}

.footer-container {
    max-width: 1240px;

    margin-inline: auto;

    padding: 75px 5% 25px;
}

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1.2fr;

    gap: 70px;

    padding-bottom: 65px;
}


/* Brand */

.footer-logo {
    display: inline-block;

    color: #f4efe4;

    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-logo span {
    font-weight: 400;
}

.footer-tagline {
    margin: 20px 0 0;

    color: #c7d0c7;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.55;
}


/* Footer headings */

.footer-column h4 {
    margin: 0 0 22px;

    color: #91aa9d;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Footer links */

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.footer-links a {
    max-width: 180px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #e7e5dc;

    font-family: Arial, sans-serif;
    font-size: 12px;

    transition: color var(--transition);
}

.footer-links a:hover {
    color: #cdbb96;
}

.footer-links a svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;

    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity var(--transition),
        transform var(--transition);
}

.footer-links a:hover svg {
    opacity: 1;
    transform: translateX(0);
}


/* Footer contact */

.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.footer-contact > a {
    display: flex;
    align-items: center;

    gap: 11px;

    color: #e7e5dc;

    font-family: Arial, sans-serif;
    font-size: 12px;

    transition: color var(--transition);
}

.footer-contact > a:hover {
    color: #cdbb96;
}

.contact-icon {
    width: 27px;
    height: 27px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(220, 230, 220, 0.18);
    border-radius: 50%;
}

.contact-icon svg {
    width: 12px;
    height: 12px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact sup {
    margin-left: 2px;

    font-size: 9px;
}


/* Footer CTA */

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 42px 0;

    border-top: 1px solid rgba(230, 235, 226, 0.13);
    border-bottom: 1px solid rgba(230, 235, 226, 0.13);
}

.cta-label {
    display: block;

    margin-bottom: 8px;

    color: #8fa89c;

    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cta-content h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(35px, 4vw, 52px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1px;
}

.cta-content h2 em {
    color: #c9b58d;
    font-style: italic;
}


/* Enquiry button */

.enquiry-button {
    display: inline-flex;
    align-items: center;

    gap: 20px;

    padding: 14px 18px 14px 21px;

    border: 1px solid rgba(232, 231, 219, 0.25);
    border-radius: 100px;

    color: #f3eee3;

    font-family: Arial, sans-serif;
    font-size: 11px;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.enquiry-button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform var(--transition);
}

.enquiry-button:hover {
    background: #c9b58d;
    border-color: #c9b58d;
    color: #173d32;
}

.enquiry-button:hover svg {
    transform: translateX(4px);
}


/* Footer bottom */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 24px;
}

.footer-bottom p {
    margin: 0;

    color: #81988d;

    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 0.4px;
}


/* =========================================================
   26. SOCIAL FLOATING BUTTONS
========================================================= */

.social-buttons {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 14px;
}

.social-buttons a {
    position: relative;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    font-size: 25px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);

    animation: socialPulse 2s infinite;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.social-buttons .whatsapp {
    background: #25d366;
}

.social-buttons .telegram {
    background: #229ed9;

    animation-name: telegramPulse;
}

.social-buttons a:hover {
    transform: scale(1.12);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

    animation-play-state: paused;
}

@keyframes socialPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.45),
            0 6px 18px rgba(0, 0, 0, 0.18);
    }

    50% {
        box-shadow:
            0 0 0 10px rgba(37, 211, 102, 0),
            0 8px 22px rgba(0, 0, 0, 0.20);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0),
            0 6px 18px rgba(0, 0, 0, 0.18);
    }
}

@keyframes telegramPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(34, 158, 217, 0.45),
            0 6px 18px rgba(0, 0, 0, 0.18);
    }

    50% {
        box-shadow:
            0 0 0 10px rgba(34, 158, 217, 0),
            0 8px 22px rgba(0, 0, 0, 0.20);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(34, 158, 217, 0),
            0 6px 18px rgba(0, 0, 0, 0.18);
    }
}


/* =========================================================
   27. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .products-heading-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-heading-row > p {
        max-width: 650px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 55px;
    }

    .product-image {
        height: 380px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}


/* =========================================================
   28. RESPONSIVE — 950px
========================================================= */

@media (max-width: 950px) {

    .approach-section {
        padding: 80px 5%;
    }

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


/* =========================================================
   29. RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

    .nav {
        min-height: 70px;
    }

    nav ul {
        gap: 16px;
    }

    nav a {
        font-size: 0.85rem;
    }

    .page-hero {
        padding: 90px 0 100px;
    }

    .section {
        padding: 80px 0;
    }

    .split,
    .b2b-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

    .process-grid::before {
        display: none;
    }

    .export-intro {
        padding: 70px 18px;
    }

    .export-intro-inner {
        grid-template-columns: 1fr;
    }

    .export-card {
        min-height: 500px;
        padding: 38px 30px;
    }

    .export-card h2 {
        margin-top: 65px;
    }

    .export-details {
        padding: 30px 5px 0;
    }

    .export-detail-intro {
        padding-bottom: 35px;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   30. RESPONSIVE — 768px
========================================================= */

@media (max-width: 768px) {

    /* Header */

    .nav {
        position: relative;

        min-height: 68px;

        flex-wrap: wrap;
    }

    .menu {
        display: flex;
    }

    nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;

        background: rgba(247, 243, 233, 0.98);

        border-bottom: 1px solid var(--line);

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    nav.open {
        display: block;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px 20px 20px;
    }

    nav li {
        width: 100%;
    }

    nav a {
        display: block;

        padding: 14px 4px;

        border-bottom: 1px solid var(--line);

        font-size: 1rem;
    }

    nav li:last-child a {
        border-bottom: 0;
    }

    nav a::after {
        display: none;
    }


    /* Hero */

    .hero {
        min-height: 55vh;

        background-position: 65% center;
    }

    .hero-content {
        padding: 45px 0;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .hero .lead {
        font-size: 0.88rem;
    }

    .hero-scroll {
        display: none;
    }


    /* Page hero */

    .page-hero {
        padding: 75px 0 80px;
    }

    .page-hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
        line-height: 1.08;
    }

    .page-hero .lead {
        font-size: 0.98rem;
        line-height: 1.7;
    }


    /* Sections */

    .section {
        padding: 70px 0;
    }

    .section h2,
    .section-head h2 {
        font-size: 2.2rem;
    }


    /* Stats */

    .section .grid-3 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat {
        min-height: auto;

        padding: 24px;

        flex-direction: row;
        align-items: center;
        justify-content: flex-start;

        gap: 22px;
    }

    .stat strong {
        min-width: 70px;

        margin: 0;

        font-size: 2rem;
    }


    /* Buyer cards */

    .section.alt .grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 28px;
    }


    /* Export */

    .export-card {
        min-height: 520px;
        padding: 30px 24px;
    }

    .export-card h2 {
        font-size: 47px;
    }

    .export-card p {
        font-size: 15px;
    }


    /* Products */

    .products-section {
        padding: 70px 0 75px;
    }

    .products-container {
        width: min(100% - 32px, 1400px);
    }

    .products-header {
        margin-bottom: 45px;
    }

    .products-eyebrow {
        margin-bottom: 25px;
    }

    .products-heading-row h2 {
        font-size: 51px;
        letter-spacing: -2.5px;
    }

    .products-heading-row h2 em {
        letter-spacing: -2.5px;
    }

    .products-heading-row > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .product-image {
        height: 390px;
    }

    .product-content {
        padding-top: 20px;
    }

    .product-content h3 {
        font-size: 21px;
    }


    /* Approach */

    .approach-section {
        padding: 65px 20px;
    }

    .approach-header {
        margin-bottom: 35px;
    }

    .approach-header h2 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .approach-card {
        min-height: auto;
        padding: 24px;
    }

    .approach-icon {
        margin-bottom: 28px;
    }


    /* Process */

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

    .process-grid .card {
        min-height: auto;
        padding: 28px;
    }

    .process-grid .icon {
        margin-bottom: 24px;
    }


    /* B2B */

    .b2b-split {
        gap: 40px;
    }

    .enquiry-card {
        padding: 32px 26px;
    }


    /* Actions */

    .actions {
        flex-direction: column;
    }

    .actions .btn {
        width: 100%;
    }


    /* Footer */

    .footer-container {
        padding: 60px 22px 22px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 45px;
    }

    .footer-brand {
        grid-column: auto;
    }

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

        padding: 38px 0;
    }

    .enquiry-button {
        width: 100%;
        justify-content: space-between;
    }

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

        gap: 8px;
    }


    /* Floating social */

    .social-buttons {
        right: 14px;
        bottom: 14px;

        gap: 10px;
    }

    .social-buttons a {
        width: 48px;
        height: 48px;

        font-size: 21px;
    }
}


/* =========================================================
   31. RESPONSIVE — 600px
========================================================= */

@media (max-width: 600px) {

    .page-hero {
        padding: 60px 0 65px;
    }

    .page-hero .eyebrow {
        font-size: 0.68rem;
    }

    .page-hero .eyebrow::before {
        width: 24px;
        margin-right: 9px;
    }

    .page-hero h1 {
        font-size: 2.15rem;
        letter-spacing: -0.035em;
    }

    .section {
        padding: 60px 0;
    }

    .section h2,
    .section-head h2 {
        font-size: 1.95rem;
    }

    .section .lead {
        font-size: 0.96rem;
    }

    .stat {
        padding: 20px;
        gap: 16px;
    }

    .stat strong {
        min-width: 60px;
        font-size: 1.7rem;
    }

    .card {
        padding: 24px;
    }

    .card h3 {
        font-size: 1.15rem;
    }

    .export-stat strong {
        font-size: 34px;
    }

    .export-card h2 {
        font-size: 47px;
    }

    .check {
        padding: 13px 14px;
        font-size: 0.9rem;
    }

    .enquiry-card {
        padding: 28px 22px;
    }
}


/* =========================================================
   32. RESPONSIVE — 560px
========================================================= */

@media (max-width: 560px) {

    .hero {
        min-height: 55vh;
        background-position: 65% center;
    }

    .hero-content {
        padding: 45px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 0.98;
    }

    .hero .lead {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .hero .actions {
        margin-top: 18px;
    }

    .hero-info {
        width: 100%;
        margin-top: 25px;
    }

    .hero-info div {
        min-width: 0;
        flex: 1;

        padding: 9px 8px;
    }

    .hero-info strong {
        font-size: 0.95rem;
    }

    .hero-info span {
        font-size: 0.5rem;
    }
}


/* =========================================================
   33. RESPONSIVE — 480px
========================================================= */

@media (max-width: 480px) {

    .nav {
        min-height: 64px;
    }

    .logo {
        font-size: 1.05rem;
    }

    .logo span {
        font-size: 0.52rem;
        letter-spacing: 0.1em;
    }

    .menu {
        width: 40px;
        height: 40px;

        font-size: 1.35rem;
    }

    .grid-4 .card {
        padding: 24px;
    }

    .process-grid .icon {
        width: 52px;
        height: 52px;

        box-shadow: 0 0 0 6px var(--cream-section);
    }

    .social-buttons {
        right: 10px;
        bottom: 10px;
    }

    .social-buttons a {
        width: 44px;
        height: 44px;

        font-size: 19px;
    }
}


/* =========================================================
   34. ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}