/* ===== Harbman — Professional White Theme ===== */
:root {
    --green: #84BD00;
    --green-dark: #5F8A00;
    --green-soft: #F2F8E3;
    --ink: #111827;
    --ink-soft: #374151;
    --muted: #6B7280;
    --line: #E5E7EB;
    --bg: #FFFFFF;
    --bg-soft: #FAFBFC;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 2px rgba(17,24,39,0.04), 0 1px 3px rgba(17,24,39,0.06);
    --shadow-md: 0 4px 16px rgba(17,24,39,0.06), 0 2px 4px rgba(17,24,39,0.04);
    --shadow-lg: 0 20px 48px rgba(17,24,39,0.08), 0 8px 16px rgba(17,24,39,0.04);
    --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body[dir="rtl"] { font-family: 'Cairo', 'Inter', sans-serif; }

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Language selector (dropdown with flags) ===== */
.lang-bar {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
}
.lang-bar .container {
    display: flex;
    justify-content: flex-end;
}
.lang-select {
    position: relative;
}
.lang-select summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    transition: all .18s ease;
    user-select: none;
}
.lang-select summary::-webkit-details-marker { display: none; }
.lang-select summary:hover { border-color: var(--green); color: var(--green-dark); }
.lang-select[open] summary { border-color: var(--green); box-shadow: 0 0 0 3px rgba(132,189,0,0.12); }
.lang-caret { transition: transform .18s ease; flex-shrink: 0; color: var(--muted); }
.lang-select[open] .lang-caret { transform: rotate(180deg); }
.lang-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(17,24,39,0.08);
    flex-shrink: 0;
    display: block;
}
.lang-current-label { line-height: 1; }

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    padding: 6px;
    list-style: none;
    z-index: 120;
    animation: lang-pop .14s ease-out;
}
body[dir="rtl"] .lang-menu { right: auto; left: 0; }
@keyframes lang-pop {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lang-menu li { margin: 0; }
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: background .15s ease, color .15s ease;
}
.lang-option:hover { background: var(--bg-soft); color: var(--ink); }
.lang-option.active {
    background: var(--green-soft);
    color: var(--green-dark);
    font-weight: 600;
}
.lang-option.active::after {
    content: '✓';
    margin-left: auto;
    color: var(--green);
    font-weight: 800;
}
body[dir="rtl"] .lang-option.active::after { margin-left: 0; margin-right: auto; }

/* ===== Header / Nav ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 20px;
    padding: 16px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
}
.logo img { height: 64px; width: auto; display: block; transition: transform .2s ease; }
.logo:hover img { transform: scale(1.03); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0 auto;
}
.nav-lang-wrap { display: none; }

/* Green Contact CTA in the header (always visible, prominent) */
.nav-cta {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
    flex-shrink: 0;
}
.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 10px 16px;
    border-radius: 8px;
    transition: all .18s ease;
    position: relative;
    cursor: pointer;
}
.nav-link:hover { color: var(--green-dark); background: var(--green-soft); }
.nav-link.active { color: var(--green-dark); font-weight: 600; }
.nav-link.active::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.hamburger {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 8px;
    width: 44px; height: 44px;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--ink); border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(132,189,0,0.3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); }

/* ===== Hero ===== */
.hero {
    padding: 64px 0 80px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    background: var(--green-soft);
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
}
.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.08;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}
.hero .tagline {
    font-size: 20px;
    color: var(--green-dark);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 16px;
}
.hero p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 560px;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--green-soft);
}
.hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* ===== Stats ===== */
.stats {
    padding: 56px 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat { text-align: center; }
.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.section h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.15;
}
.section-subtitle {
    font-size: 17px;
    color: var(--muted);
}

/* ===== Cards grid ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    transition: all .24s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(132,189,0,0.3);
}
.card-icon {
    width: 48px; height: 48px;
    background: var(--green-soft);
    color: var(--green-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 800;
}
.card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}
.card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
}

/* ===== Process steps ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.step {
    text-align: center;
    padding: 24px 16px;
}
.step-num {
    width: 52px; height: 52px;
    margin: 0 auto 16px;
    background: #fff;
    border: 2px solid var(--green);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}
.step h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}
.step p { font-size: 14px; color: var(--muted); }

/* ===== Produce / gallery ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-soft);
    transition: transform .3s ease;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.gallery-item:hover { transform: translateY(-3px); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-name {
    position: absolute;
    left: 16px; bottom: 16px;
    background: rgba(255,255,255,0.95);
    color: var(--ink);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

/* ===== Values grid ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.value {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 26px;
    transition: all .24s ease;
}
.value:hover {
    border-color: rgba(132,189,0,0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.value h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.value p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ===== Features list ===== */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.feature-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--ink);
}
.feature-pill::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    font-size: 18px;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
}
.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: var(--ink);
    transition: border-color .2s;
}
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(132,189,0,0.12);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field { margin-bottom: 16px; }
.form-error { font-size: 12px; color: #DC2626; margin-top: 4px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 8px; padding: 14px; }
.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 15px;
}
.form-alert.success { background: var(--green-soft); color: var(--green-dark); border: 1px solid rgba(132,189,0,0.3); }
.form-alert.error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.contact-info .info-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 16px;
}
.contact-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.info-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--ink-soft);
}
.info-line:last-child { margin-bottom: 0; }
.info-line a:hover { color: var(--green-dark); }
.info-icon { color: var(--green); font-weight: 700; }

/* ===== Footer ===== */
.site-footer {
    background: #0D1117;
    color: #CBD5E1;
    padding: 64px 0 28px;
    margin-top: 64px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 14px;
}
.footer-brand-text span { color: var(--green); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #94A3B8; max-width: 320px; }
.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #94A3B8; font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--green); }
.footer-contact-line { display: flex; gap: 10px; font-size: 14px; color: #94A3B8; margin-bottom: 10px; }
.footer-contact-line::before { content: '→'; color: var(--green); }

.footer-bottom {
    border-top: 1px solid #1F2937;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #64748B;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
    width: 36px; height: 36px;
    background: #1F2937;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #94A3B8;
    transition: all .2s ease;
}
.footer-social:hover { background: var(--green); color: #fff; }

/* ===== Responsive: tablet ===== */
@media (max-width: 960px) {
    :root { --header-h: 72px; }
    .container { padding: 0 20px; }

    /* Hide the top lang-bar on mobile — it lives inside the menu drawer */
    .lang-bar-top { display: none; }

    /* Mobile header layout: burger-left | logo-center | contact-CTA-right */
    /* Using 1fr auto 1fr so the side cells are equal width and the logo is truly centered. */
    .container { padding: 0 20px; }
    .nav {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 12px;
        padding: 10px 4px;
    }
    .logo {
        justify-self: center;
        order: 2;
    }
    .logo img { height: 56px; }

    /* Burger and Contact CTA: identical height, similar visual weight */
    .hamburger {
        display: flex;
        justify-self: start;
        order: 1;
        width: 40px;
        height: 40px;
        margin-inline-start: 6px;
        border-radius: 10px;
        border: 1px solid var(--line);
        background: #fff;
        box-shadow: var(--shadow-sm);
    }
    .hamburger span {
        width: 18px;
        height: 2px;
        background: var(--ink);
    }
    .hamburger[aria-expanded="true"] {
        background: var(--green-soft);
        border-color: rgba(132,189,0,0.3);
    }

    .nav-cta {
        order: 3;
        justify-self: end;
        height: 36px;
        padding: 0 14px;
        font-size: 12.5px;
        font-weight: 700;
        border-radius: 10px;
        line-height: 36px;
        letter-spacing: 0.2px;
        margin-inline-end: 6px;
    }
    .nav-cta-text { display: inline; }

    /* Nav drawer (appears below header) */
    .nav-links {
        position: absolute;
        top: var(--header-h);
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 18px 20px;
        margin: 0;
        border-bottom: 1px solid var(--line);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: all .22s ease;
        box-shadow: var(--shadow-lg);
        order: 4;
        grid-column: 1 / -1;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-link {
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
    }
    .nav-link::before { display: none; }

    /* Language selector inside the drawer */
    .nav-lang-wrap {
        display: block;
        padding-top: 14px;
        margin-top: 10px;
        border-top: 1px solid var(--line);
        text-align: center;
    }
    .nav-lang-wrap .lang-select { display: inline-block; }

    /* Hero — tall banner with image background + gradient overlay */
    .hero {
        position: relative;
        padding: 0;
        background: #0D1117;
        min-height: min(92vh, 720px);
        display: flex;
        align-items: stretch;
        overflow: hidden;
    }
    .hero-grid {
        display: block;
        position: relative;
        width: 100%;
        gap: 0;
    }
    .hero-visual {
        position: absolute;
        inset: 0;
        aspect-ratio: auto;
        border-radius: 0;
        box-shadow: none;
        background: #0D1117;
        z-index: 0;
    }
    .hero-visual img { width: 100%; height: 100%; }
    .hero-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
            rgba(13,17,23,0.25) 0%,
            rgba(13,17,23,0.35) 35%,
            rgba(13,17,23,0.75) 70%,
            rgba(13,17,23,0.94) 100%);
        z-index: 1;
    }
    .hero-text {
        position: relative;
        z-index: 2;
        min-height: min(92vh, 720px);
        padding: 120px 24px 56px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        color: #fff;
        max-width: 640px;
    }
    .hero-text h1 { color: #fff; font-size: clamp(32px, 7.5vw, 46px); letter-spacing: -0.5px; }
    .hero-text .tagline { color: #D9F0A3; font-size: 18px; }
    .hero-text .hero-desc { color: rgba(255,255,255,0.88); font-size: 15px; max-width: 560px; }
    .hero-badge {
        color: #fff;
        background: rgba(255,255,255,0.14);
        border: 1px solid rgba(255,255,255,0.25);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    .hero-cta .btn-ghost {
        color: #fff;
        border-color: rgba(255,255,255,0.45);
        background: rgba(255,255,255,0.06);
    }
    .hero-cta .btn-ghost:hover {
        background: rgba(255,255,255,0.16);
        border-color: #fff;
        color: #fff;
    }

    .section { padding: 64px 0; }
    .section-head { margin-bottom: 40px; }

    .cards-grid,
    .steps,
    .gallery,
    .values-grid,
    .features { grid-template-columns: repeat(2, 1fr); }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

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

    /* Enhancement grids */
    .regions-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .serve-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .quality-grid { grid-template-columns: minmax(0, 1fr); }
    .cta-inner { flex-direction: column; text-align: center; gap: 20px; }
}

/* ===== Responsive: mobile ===== */
@media (max-width: 600px) {
    :root { --header-h: 64px; }

    .container { padding: 0 14px; }
    .nav { padding: 8px 0; gap: 10px; grid-template-columns: 1fr auto 1fr; }
    .hamburger { width: 38px; height: 38px; margin-inline-start: 8px; }
    .nav-cta { height: 34px; line-height: 34px; padding: 0 12px; font-size: 12px; margin-inline-end: 8px; }

    /* Hero overlay tweaks for small phones */
    .hero-text { padding: 100px 20px 44px; min-height: min(90vh, 640px); }
    .hero { min-height: min(90vh, 640px); }
    .hero-text h1 { font-size: clamp(28px, 9vw, 40px); }
    .hero-text .tagline { font-size: 16px; }
    .hero-text .hero-desc { font-size: 14px; }
    .hero-cta { gap: 10px; }
    .hero-cta .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 14px; }
    .hero-badge { font-size: 11px; padding: 5px 10px; margin-bottom: 16px; }

    /* Header tighter */
    .nav { padding: 8px 0; }
    .logo img { height: 44px; }
    .nav-cta { padding: 8px 14px; font-size: 12px; }

    .section { padding: 48px 0; }
    .section-head { margin-bottom: 32px; }
    .section h2 { font-size: clamp(24px, 6.5vw, 32px); }
    .section-subtitle { font-size: 15px; }

    .stats { padding: 36px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
    .stat-number { font-size: 34px; }
    .stat-label { font-size: 12px; }

    .cards-grid,
    .steps,
    .gallery,
    .values-grid,
    .features { grid-template-columns: 1fr; gap: 16px; }

    .card { padding: 24px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
    .site-footer { padding: 48px 0 24px; margin-top: 48px; }

    .logo img { height: 48px; }

    /* Language selector on mobile */
    .lang-bar { padding: 6px 0; }
    .lang-bar .container { justify-content: flex-end; }
    .lang-select summary { padding: 5px 10px; font-size: 12px; }
    .lang-current-label { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .lang-menu { min-width: 170px; right: 0; left: auto; }
    body[dir="rtl"] .lang-menu { right: auto; left: 0; }

    /* Enhancement grids — mobile card proportions */
    .regions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .region-card {
        padding: 18px 16px;
        min-width: 0;
    }
    .region-card h4 {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 8px;
        overflow-wrap: anywhere;
    }
    .region-card p {
        font-size: 12.5px;
        line-height: 1.55;
        overflow-wrap: anywhere;
        color: var(--muted);
    }

    .serve-grid   {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }
    .serve-card {
        padding: 22px 22px;
        min-width: 0;
    }
    .serve-card h4 {
        font-size: 16px;
        line-height: 1.35;
        margin-bottom: 8px;
        overflow-wrap: anywhere;
    }
    .serve-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    .serve-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 14px;
        font-size: 20px;
    }

    .quality-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }
    .quality-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 22px;
        min-width: 0;
    }
    .quality-num {
        font-size: 24px;
        padding-top: 2px;
        flex-shrink: 0;
    }
    .quality-card > div { min-width: 0; }
    .quality-card h4 {
        font-size: 15px;
        line-height: 1.35;
        margin-bottom: 6px;
        overflow-wrap: anywhere;
    }
    .quality-card p { font-size: 13.5px; line-height: 1.6; }

    /* Prevent any stray overflow from all sections */
    .section { overflow: hidden; }

    .cta-banner { padding: 40px 0; }
    .cta-inner { gap: 18px; }
    .cta-inner h3 { font-size: 22px; }
    .cta-inner p { font-size: 14px; }
    .cta-inner .btn { width: 100%; justify-content: center; }

    /* Timeline mobile — all items left-aligned with line on the side */
    .timeline { padding-left: 28px; }
    .timeline::before { left: 6px; top: 6px; bottom: 6px; }
    body[dir="rtl"] .timeline { padding-left: 0; padding-right: 28px; }
    body[dir="rtl"] .timeline::before { left: auto; right: 6px; }

    .timeline-item {
        flex-direction: column;
        gap: 4px;
        padding: 10px 0;
        transform: translateY(12px);
        transition: opacity .55s ease, transform .55s ease;
    }
    body[dir="rtl"] .timeline-item { transform: translateY(12px); }
    .timeline.in-view .timeline-item { transform: translateY(0); }

    .timeline-year {
        width: auto;
        padding: 0;
        font-size: 12px;
        text-align: left;
        color: var(--green-dark);
    }
    body[dir="rtl"] .timeline-year { text-align: right; }

    .timeline-body { padding: 16px 18px; }
    .timeline-body h4 { font-size: 16px; }
    .timeline-body p  { font-size: 13px; }
    .timeline-body::before {
        left: -26px; top: 20px;
        width: 10px; height: 10px;
    }
    body[dir="rtl"] .timeline-body::before { left: auto; right: -26px; }

    /* FAQ */
    .faq-item { padding: 0 18px; }
    .faq-item summary { font-size: 15px; padding: 16px 0; }
    .faq-item p { font-size: 14px; }

    /* Contact form */
    .contact-form { padding: 26px 22px; }
    .contact-info .info-block { padding: 20px 22px; }
    .info-line { font-size: 13px; }

    /* Buttons — bigger touch targets */
    .btn { padding: 12px 20px; min-height: 44px; }

    /* Gallery items */
    .gallery-item { aspect-ratio: 5 / 3; }

    /* Process steps alignment */
    .step { padding: 20px 12px; }
    .step-num { width: 46px; height: 46px; font-size: 16px; }

    /* Logistics main text */
    .logistics-main { font-size: 15px; margin-bottom: 32px; }

    /* Hero image on small screens */
    .hero-visual { aspect-ratio: 4 / 3; border-radius: 18px; }
    .hero-badge { font-size: 12px; padding: 5px 10px; margin-bottom: 16px; }

    /* Footer compact */
    .footer-brand p { max-width: 100%; font-size: 13px; }
    .footer-brand-text { font-size: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
}

/* Extra-small phones */
@media (max-width: 380px) {
    .hero-text h1 { font-size: 26px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .regions-grid { grid-template-columns: 1fr; }
    .hamburger { width: 36px; height: 36px; margin-inline-start: 10px; }
    .nav-cta { height: 32px; line-height: 32px; padding: 0 11px; font-size: 11.5px; margin-inline-end: 10px; }
    .logo img { height: 40px; }
}

/* Prevent horizontal overflow from animations */
html, body { overflow-x: hidden; }
main { overflow-x: hidden; }

/* Mobile: shorter reveal distance and snappier timing so content feels responsive */
@media (max-width: 600px) {
    .reveal { transform: translateY(16px); transition-duration: .5s; }
    @keyframes reveal-up {
        from { opacity: 0; transform: translateY(14px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    .stagger.in-view > *:nth-child(1) { animation-delay: .03s; }
    .stagger.in-view > *:nth-child(2) { animation-delay: .08s; }
    .stagger.in-view > *:nth-child(3) { animation-delay: .13s; }
    .stagger.in-view > *:nth-child(4) { animation-delay: .18s; }
    .stagger.in-view > *:nth-child(5) { animation-delay: .23s; }
    .stagger.in-view > *:nth-child(6) { animation-delay: .28s; }
}

/* ===== Sourcing Regions ===== */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.region-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 22px 20px;
    text-align: center;
    transition: all .24s ease;
}
.region-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.region-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}
.region-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== Who We Serve ===== */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.serve-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all .24s ease;
}
.serve-card:hover {
    border-color: rgba(132,189,0,0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.serve-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--green-soft);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
}
.serve-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}
.serve-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* ===== Quality & Traceability ===== */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
}
.quality-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 26px;
    align-items: flex-start;
}
.quality-num {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    padding-top: 2px;
    letter-spacing: -0.5px;
}
.quality-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.quality-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* ===== CTA banner ===== */
.cta-banner {
    padding: 56px 0;
    background: linear-gradient(135deg, #fff 0%, var(--green-soft) 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-inner h3 {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}
.cta-inner p {
    font-size: 15px;
    color: var(--muted);
}
.cta-inner .btn { padding: 14px 28px; font-size: 16px; }

/* ===== Timeline (About story) ===== */
.timeline {
    list-style: none;
    max-width: 820px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 98px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, var(--green) 0%, var(--green-soft) 100%);
}
body[dir="rtl"] .timeline::before { left: auto; right: 98px; }
.timeline-item {
    display: flex;
    gap: 28px;
    padding: 14px 0;
    position: relative;
}
.timeline-year {
    flex-shrink: 0;
    width: 88px;
    text-align: right;
    font-size: 15px;
    font-weight: 800;
    color: var(--green-dark);
    padding-top: 10px;
    letter-spacing: 0.3px;
}
body[dir="rtl"] .timeline-year { text-align: left; }
.timeline-body {
    flex: 1;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.timeline-body::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 28px;
    width: 12px; height: 12px;
    background: var(--green);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--green-soft);
}
body[dir="rtl"] .timeline-body::before { left: auto; right: -30px; }
.timeline-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.timeline-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-container { max-width: 860px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0 22px;
    transition: all .2s ease;
}
.faq-item[open] { border-color: rgba(132,189,0,0.35); box-shadow: var(--shadow-sm); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    color: var(--green);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
    padding: 0 0 18px;
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.7;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

/* ===== Logistics main text ===== */
.logistics-main {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.85;
}

/* Enhancement-specific responsive rules are merged into the main responsive block above. */

/* ============================================================
   Animations & micro-interactions
   ============================================================ */

/* Scroll-reveal base + in-view state */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
    will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Stagger: delay children in grids when the parent becomes in-view */
.stagger.in-view > *        { animation: reveal-up .7s cubic-bezier(.22,.61,.36,1) both; }
.stagger.in-view > *:nth-child(1) { animation-delay: .05s; }
.stagger.in-view > *:nth-child(2) { animation-delay: .12s; }
.stagger.in-view > *:nth-child(3) { animation-delay: .19s; }
.stagger.in-view > *:nth-child(4) { animation-delay: .26s; }
.stagger.in-view > *:nth-child(5) { animation-delay: .33s; }
.stagger.in-view > *:nth-child(6) { animation-delay: .40s; }
@keyframes reveal-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero entrance */
.hero h1,
.hero .tagline,
.hero p,
.hero-badge,
.hero-cta { animation: hero-rise .9s cubic-bezier(.22,.61,.36,1) both; }
.hero-badge { animation-delay: .0s; }
.hero h1     { animation-delay: .08s; }
.hero .tagline { animation-delay: .16s; }
.hero p      { animation-delay: .24s; }
.hero-cta    { animation-delay: .32s; }
@keyframes hero-rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero image soft zoom-in + slow ken-burns idle */
.hero-visual img {
    animation: hero-zoom 1.1s cubic-bezier(.22,.61,.36,1) both, hero-drift 18s ease-in-out 1.2s infinite alternate;
}
@keyframes hero-zoom {
    from { opacity: 0; transform: scale(1.08); }
    to   { opacity: 1; transform: scale(1.0); }
}
@keyframes hero-drift {
    from { transform: scale(1.0) translateY(0); }
    to   { transform: scale(1.04) translateY(-6px); }
}

/* Hero badge dot gentle pulse */
.hero-badge::before { animation: dot-pulse 2.4s ease-in-out infinite; }
@keyframes dot-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(132,189,0,0.55); }
    50%     { box-shadow: 0 0 0 6px rgba(132,189,0,0);    }
}

/* Header: solidify on scroll + auto-hide on scroll down / reveal on scroll up */
.site-header {
    transition: transform .35s ease, box-shadow .25s ease, background .25s ease;
    will-change: transform;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 6px 24px rgba(17,24,39,0.06);
}
.site-header.header-hidden {
    transform: translateY(-100%);
}

/* Nav link underline grow on hover */
.nav-link { overflow: hidden; }
.nav-link::before {
    content: '';
    position: absolute;
    left: 16px; right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .28s ease;
}
body[dir="rtl"] .nav-link::before { transform-origin: right center; }
.nav-link:hover::before { transform: scaleX(1); }
.nav-link.active::after { display: none; } /* replaced by ::before */
.nav-link.active::before { transform: scaleX(1); }

/* Primary button sheen on hover */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
    transform: skewX(-18deg);
    transition: left .6s ease;
    pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }

/* Ghost button arrow slide */
.btn-ghost { position: relative; }
.btn-ghost::after {
    content: '→';
    display: inline-block;
    margin-left: 4px;
    transition: transform .25s ease;
}
body[dir="rtl"] .btn-ghost::after { content: '←'; margin-left: 0; margin-right: 4px; }
.btn-ghost:hover::after { transform: translateX(4px); }
body[dir="rtl"] .btn-ghost:hover::after { transform: translateX(-4px); }

/* Stat numbers: counter pop when parent enters view */
.stat.in-view .stat-number {
    animation: stat-pop .7s cubic-bezier(.22,1.12,.42,1) both;
}
@keyframes stat-pop {
    0%   { opacity: 0; transform: scale(.85); }
    60%  { transform: scale(1.06); }
    100% { opacity: 1; transform: scale(1); }
}

/* Card lift + subtle inner sheen on hover */
.card,
.region-card,
.serve-card,
.quality-card,
.value,
.timeline-body,
.contact-info .info-block {
    position: relative;
    isolation: isolate;
}
.card::before,
.serve-card::before,
.quality-card::before,
.value::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(120% 80% at 0% 0%, rgba(132,189,0,0.08), transparent 55%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
    z-index: -1;
}
.card:hover::before,
.serve-card:hover::before,
.quality-card:hover::before,
.value:hover::before { opacity: 1; }

/* Gallery: lift + sheen overlay */
.gallery-item { overflow: hidden; position: relative; }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18) 100%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-name {
    transition: transform .35s ease, background .3s ease;
}
.gallery-item:hover .gallery-item-name {
    transform: translateY(-2px);
    background: #fff;
}

/* CTA banner subtle animated gradient */
.cta-banner {
    background: linear-gradient(120deg, #ffffff 0%, var(--green-soft) 50%, #ffffff 100%);
    background-size: 200% 200%;
    animation: cta-shift 14s ease-in-out infinite;
}
@keyframes cta-shift {
    0%,100% { background-position: 0% 50%; }
    50%     { background-position: 100% 50%; }
}

/* FAQ open-reveal */
.faq-item[open] summary + p { animation: faq-down .3s ease-out both; }
@keyframes faq-down {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Timeline item: slide from the side */
.timeline-item { opacity: 0; transform: translateX(-14px); transition: opacity .7s ease, transform .7s ease; }
body[dir="rtl"] .timeline-item { transform: translateX(14px); }
.timeline.in-view .timeline-item { opacity: 1; transform: translateX(0); }
.timeline.in-view .timeline-item:nth-child(1) { transition-delay: .05s; }
.timeline.in-view .timeline-item:nth-child(2) { transition-delay: .18s; }
.timeline.in-view .timeline-item:nth-child(3) { transition-delay: .31s; }
.timeline.in-view .timeline-item:nth-child(4) { transition-delay: .44s; }
.timeline-body::before { transition: transform .3s ease, box-shadow .3s ease; }
.timeline-item:hover .timeline-body::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px var(--green-soft);
}

/* Footer socials wobble */
.footer-social { transition: transform .25s ease, background .25s ease, color .25s ease; }
.footer-social:hover { transform: translateY(-2px) rotate(-4deg); }

/* Smooth focus ring */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(132,189,0,0.35);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   FINAL responsive overrides — must be last to beat the cascade
   (Earlier base rules for .regions-grid / .serve-grid / .quality-grid
   were declared below the media-query block, so they win unless
   re-overridden here at the end of the file.)
   ============================================================ */

@media (max-width: 960px) {
    .regions-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 14px !important; }
    .serve-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 16px !important; }
    .quality-grid { grid-template-columns: minmax(0, 1fr) !important; gap: 14px !important; }
}

@media (max-width: 600px) {
    .regions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }
    .region-card {
        padding: 18px 14px;
        min-width: 0;
    }
    .region-card h4 {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 8px;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: manual;
    }
    .region-card p {
        font-size: 12.5px;
        line-height: 1.55;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .serve-grid   {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 14px !important;
    }
    .serve-card {
        padding: 22px 22px;
        min-width: 0;
    }
    .serve-card h4 {
        font-size: 16px;
        line-height: 1.35;
        margin-bottom: 8px;
        word-break: normal;
        overflow-wrap: break-word;
    }
    .serve-card p { font-size: 14px; line-height: 1.6; }
    .serve-icon { width: 42px; height: 42px; margin-bottom: 14px; font-size: 20px; }

    .quality-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 14px !important;
    }
    .quality-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 22px;
        min-width: 0;
    }
    .quality-num { font-size: 24px; padding-top: 2px; flex-shrink: 0; }
    .quality-card > div { min-width: 0; flex: 1; }
    .quality-card h4 {
        font-size: 15px;
        line-height: 1.35;
        margin-bottom: 6px;
        word-break: normal;
        overflow-wrap: break-word;
    }
    .quality-card p { font-size: 13.5px; line-height: 1.6; }

    .section { overflow: hidden; }
}

@media (max-width: 380px) {
    .regions-grid { grid-template-columns: minmax(0, 1fr) !important; }
}

/* ============================================================
   Final audit layouts — prose blocks, split blocks, values list,
   customer tiles, hub map, contact split, footer socials, splash
   ============================================================ */

/* Prose-narrow: editorial body text */
.prose-narrow {
    max-width: 760px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.85;
}
.prose-narrow p + p { margin-top: 16px; }
.prose-narrow .pullquote {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    border-left: 3px solid var(--green);
    padding: 6px 0 6px 20px;
    margin: 28px 0;
    line-height: 1.5;
}
body[dir="rtl"] .prose-narrow .pullquote { border-left: none; border-right: 3px solid var(--green); padding: 6px 20px 6px 0; }
.prose-narrow .text-accent {
    font-size: 17px;
    font-weight: 600;
    color: var(--green-dark);
}
.section-lead {
    max-width: 760px;
    margin: 16px auto 0;
    font-size: 17px;
    color: var(--ink-soft);
    text-align: center;
    line-height: 1.7;
}

/* Split block: text + image 2-col */
.split-block {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split-block--reverse .split-content { order: 2; }
.split-block--reverse .split-visual  { order: 1; }
body[dir="rtl"] .split-block--reverse .split-content { order: 1; }
body[dir="rtl"] .split-block--reverse .split-visual  { order: 2; }

.split-content .section-eyebrow { margin-bottom: 12px; }
.split-content h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.split-content p {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 14px;
}
.split-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-soft);
    box-shadow: var(--shadow-md);
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Values block: image side + numbered list */
.values-block {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}
.values-image {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-md);
    background: var(--bg-soft);
}
.values-image img { width: 100%; height: 100%; object-fit: cover; }
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.values-item {
    display: flex;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.values-item:last-child { border-bottom: none; padding-bottom: 0; }
.values-num {
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    padding-top: 4px;
    letter-spacing: 0.5px;
    min-width: 32px;
}
.values-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.values-item p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.75;
}

/* Customers grid: 4 image tiles */
.customers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.customer-tile {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
    background: var(--bg-soft);
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.customer-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.customer-tile figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 16px 18px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    background: linear-gradient(180deg, transparent, rgba(17,24,39,0.82));
    letter-spacing: 0.2px;
}
.customer-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.customer-tile:hover img { transform: scale(1.05); }

/* Chips: countries + reach */
.country-chips,
.reach-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
}
.reach-chips { justify-content: flex-start; margin-top: 20px; }
.country-chips li,
.reach-chips li {
    background: var(--green-soft);
    color: var(--green-dark);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(132,189,0,0.25);
}
.reach-chips li {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
    font-size: 13px;
    padding: 6px 14px;
}

/* Hub map SVG */
.hub-map-wrap {
    aspect-ratio: 8 / 5;
    background: #fff;
    padding: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.hub-map { width: 100%; height: 100%; display: block; }

/* Tagline-bold below features */
.tagline-bold {
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    max-width: 820px;
    margin: 36px auto 0;
    line-height: 1.5;
    font-style: italic;
}

/* Contact split: map + form */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}
.contact-map {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 480px;
    box-shadow: var(--shadow-sm);
    background: var(--bg-soft);
}
.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-overlay-link {
    position: absolute;
    left: 14px; bottom: 14px;
    background: rgba(255,255,255,0.96);
    color: var(--ink);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(6px);
    transition: all .2s ease;
}
.map-overlay-link:hover { color: var(--green-dark); transform: translateY(-2px); }

/* Contact blocks — horizontal row of info cards */
.contact-blocks {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.contact-blocks .info-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 22px;
    transition: all .24s ease;
}
.contact-blocks .info-block:hover {
    border-color: rgba(132,189,0,0.3);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.contact-blocks h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}
.contact-blocks .info-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
}
.contact-blocks .info-line:last-child { margin-bottom: 0; }
.contact-blocks .info-line a:hover { color: var(--green-dark); }
.contact-blocks .info-icon { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Footer: logo + stacked socials */
.footer-logo {
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.footer-socials--stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #94A3B8;
    padding: 8px 0;
    transition: color .2s ease, transform .2s ease;
}
.footer-social-row svg { color: var(--green); }
.footer-social-row:hover { color: #fff; transform: translateX(2px); }
body[dir="rtl"] .footer-social-row:hover { transform: translateX(-2px); }

/* Page-load splash */
.page-splash {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    /* Never block scroll or taps — user can explore the page while the loader animates */
    pointer-events: none;
    transition: opacity .4s ease, visibility 0s linear .4s;
}
.page-splash.done {
    opacity: 0;
    visibility: hidden;
}
.page-splash-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    animation: splash-pop .6s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes splash-pop {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
.splash-logo {
    height: 120px;
    width: auto;
    animation: splash-logo-breathe 1.4s ease-in-out infinite;
}
@keyframes splash-logo-breathe {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
}
.splash-bar {
    position: relative;
    width: 140px;
    height: 3px;
    background: var(--green-soft);
    border-radius: 3px;
    overflow: hidden;
}
.splash-bar span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 40%;
    background: var(--green);
    border-radius: 3px;
    animation: splash-bar-slide 1.3s cubic-bezier(.4,.1,.2,1) infinite;
}
@keyframes splash-bar-slide {
    0%   { left: -40%; }
    100% { left: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .splash-logo,
    .splash-bar span { animation: none; }
}

/* Logo in header — a touch bigger, with a tiny intro animation */
.site-header .logo img {
    animation: header-logo-in .55s cubic-bezier(.22,.61,.36,1) .3s both;
}
@keyframes header-logo-in {
    from { opacity: 0; transform: translateY(-4px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (min-width: 961px) {
    .site-header .logo img { height: 72px; }
}

/* ===== Responsive — final audit layouts ===== */
@media (max-width: 960px) {
    .split-block,
    .split-block--reverse {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }
    .split-block--reverse .split-content,
    .split-block--reverse .split-visual { order: initial; }
    .split-visual { aspect-ratio: 16 / 10; }

    .values-block { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .values-image { position: relative; top: 0; aspect-ratio: 16 / 9; }

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

    .contact-split { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .contact-map { min-height: 320px; order: 1; }
    .contact-form { order: 2; }

    .contact-blocks { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

    .hub-map-wrap { aspect-ratio: 4 / 3; }
}

@media (max-width: 600px) {
    .prose-narrow { font-size: 15.5px; line-height: 1.8; }
    .prose-narrow .pullquote { font-size: 17px; padding: 4px 0 4px 16px; }
    body[dir="rtl"] .prose-narrow .pullquote { padding: 4px 16px 4px 0; }
    .section-lead { font-size: 15px; }

    .split-block, .split-block--reverse { gap: 24px; }
    .split-content h2 { font-size: 24px; margin-bottom: 14px; }
    .split-content p { font-size: 15px; line-height: 1.75; }

    .values-item { flex-direction: row; gap: 14px; padding-bottom: 20px; }
    .values-num { min-width: 28px; font-size: 16px; }
    .values-item h4 { font-size: 16px; }
    .values-item p { font-size: 14px; }

    .customers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .customer-tile figcaption { font-size: 13px; padding: 12px 14px; }

    .contact-blocks { grid-template-columns: minmax(0, 1fr); }
    .contact-map { min-height: 260px; }

    .country-chips li, .reach-chips li { font-size: 12.5px; padding: 6px 12px; }

    .splash-logo { height: 90px; }
    .tagline-bold { font-size: 16px; margin-top: 24px; }

    .footer-logo { height: 48px; }
}
