:root {
    --dark-green:   #060e07;
    --mid-green:    #163324;
    --accent-green: #3a7a52;
    --bright-green: #4caf50;
    --lime:         #5FFF33;
    --lime-dark:    #0d1f0a;
    --light-bg:     #f6f7f3;
    --text-dark:    #0d0d0d;
    --text-muted:   #6b7280;
    --forest-deep:  #0d2714;
    --forest:       #1e5530;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ─── CONTAINER OVERRIDE (1600px) ────────────────── */
.container {
    max-width: 1600px !important;
    padding-left: 48px !important;
    padding-right: 48px !important;
}
@media (max-width: 767.98px) {
    .container { padding-left: 20px !important; padding-right: 20px !important; }
}

/* ─── NAVBAR ─────────────────────────────────────── */
.site-nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 22px 0;
    transition: background .3s, backdrop-filter .3s;
}
.site-nav.scrolled {
    position: fixed;
    background: rgba(10,31,19,.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}
.nav-logo-box {
    width: 46px; height: 46px;
    background: #fff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nav-brand-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.nav-brand-name {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.2px;
}
.nav-brand-sub {
    color: rgba(255,255,255,.45);
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: .2px;
}
.nav-items {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-items a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 400;
    transition: color .2s;
}
.nav-items a:hover { color: #fff; }
.nav-btn {
    background: linear-gradient(135deg, var(--forest-deep), var(--forest) 55%, var(--lime)) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 100px !important;
    padding: 10px 26px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    transition: opacity .2s, transform .15s !important;
}
.nav-btn:hover {
    opacity: .85;
    transform: translateY(-1px);
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    position: relative;
    background: #050f07;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
/* World-map watermark layer */
.hero-map {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5ce?w=1600&q=40') center/cover no-repeat;
    opacity: .07;
    mix-blend-mode: luminosity;
}
/* Product image – right side */
.hero-products {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 58%;
    background: url('images/global-trade.png') center/cover no-repeat;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.55) 28%, rgba(0,0,0,.85) 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.55) 28%, rgba(0,0,0,.85) 100%);
    opacity: .55;
}
/* Left darkening gradient */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #050f07 42%, rgba(5,15,7,.7) 68%, rgba(5,15,7,.2) 100%);
}
.hero-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.75);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .3px;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.badge-icon {
    font-size: 12px;
    color: var(--lime);
}
.hero-h1 {
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 1.04;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.hero-h1 .lime { color: var(--lime); }
.hero-sub {
    color: rgba(255,255,255,.58);
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 40px;
}
/* Pill buttons */
.btn-hero-lime {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: #0a1c05;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 100px;
    font-size: 14.5px;
    font-weight: 700;
    transition: background .2s, transform .2s;
}
.btn-hero-lime:hover {
    background: #73ff4a;
    transform: translateY(-2px);
    color: #0a1c05;
}
.btn-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.88);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.22);
    font-size: 14px;
    font-weight: 500;
    transition: border-color .2s, background .2s;
}
.btn-hero-pill:hover {
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.1);
    color: #fff;
}
/* Stats strip */
.hero-stats {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,.25);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 32px 0;
}
.hstat-num {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}
.hstat-lbl {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    margin-top: 5px;
}
.hstat-div {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.08);
}

/* ─── CERTIFICATION TICKER ───────────────────────── */
.cert-ticker {
    background: #f2f7ee;
    border-top: 1px solid #dde8d8;
    border-bottom: 1px solid #dde8d8;
    padding: 13px 0;
}
.ticker-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 30px;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #2d4a25;
    white-space: nowrap;
}
.ticker-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #3a7a52;
    flex-shrink: 0;
}

/* ─── BRIDGE SECTION ─────────────────────────────── */
.bridge-sec {
    padding: 96px 0;
    background: #f8fbf5;
}
.sec-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 14px;
}
.bridge-h2 {
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.2px;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.bridge-h2 em {
    font-style: normal;
    color: #2d7a3a;
}
.bridge-desc {
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.72;
    margin-bottom: 28px;
    max-width: 540px;
}
.bridge-list {
    list-style: none;
    padding: 0;
}
.bridge-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #374151;
    line-height: 1.65;
    margin-bottom: 14px;
}
.chk {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #2d7a3a;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 10px;
}
/* Stat cards */
.scard {
    background: #fff;
    border-radius: 20px;
    padding: 30px 28px;
    height: 100%;
    border: 1px solid #e8eee4;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.scard-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    color: #2d7a3a;
    font-size: 24px;
}
.scard-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}
.scard-lbl {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #9ca3af;
}
@media (max-width: 480px) {
    .bridge-sec .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ─── PORTFOLIO SECTION ──────────────────────────── */
.portfolio-sec {
    padding: 96px 0 112px;
    background: #f2f3ef;
}
/* ── Portfolio header: space-between ─────────────── */
.port-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 48px;
}
.port-header-left {
    flex: 0 0 52%;
}
.port-header-right {
    flex: 0 0 36%;
    padding-bottom: 4px;
}
.sec-h2 {
    font-size: clamp(28px, 2.8vw, 44px);
    font-weight: 900;
    letter-spacing: -1.2px;
    color: var(--text-dark);
    line-height: 1.08;
    margin-bottom: 0;
    white-space: nowrap;
}
.sec-h2 em {
    font-style: normal;
    color: #2d7a3a;
}
.sec-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* ── Product Cards ────────────────────────────────── */
.pcard {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: none;
    box-shadow: 0 2px 18px rgba(0,0,0,.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .32s ease, box-shadow .32s ease;
}
.pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(0,0,0,.11);
}

/* Image wrapper — NO scale on hover (causes gradient glitch) */
.pcard-img-wrap {
    position: relative;
    flex-shrink: 0;
    line-height: 0;
}
.pcard-img-wrap img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* Gradient lives on pcard-body::before so it never moves during hover */
.pcard-body {
    position: relative;
    padding: 14px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pcard-body::before {
    content: '';
    position: absolute;
    top: -90px; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0)   0%,
        rgba(255,255,255,.65) 55%,
        rgba(255,255,255,1)  100%
    );
    pointer-events: none;
    z-index: 1;
}
.pcard-title {
    font-size: 18px;
    font-weight: 800;
    color: #0c1a09;
    margin-bottom: 14px;
    line-height: 1.28;
}
.pcard-items {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex: 1;
}
.pcard-items li {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 2;
}
.pcard-items li::before {
    content: '· ';
    color: #374151;
}
.pcard-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2d7a3a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: gap .2s, color .2s;
    border-top: 1px solid #e8ece5;
    padding-top: 16px;
    margin-top: auto;
}
.pcard-link:hover { gap: 10px; color: #1a5220; }

/* ─── DARK SECTION ───────────────────────────────── */
.dark-sec {
    padding: 100px 0;
    background: #060d06;
    position: relative;
    overflow: hidden;
}
/* Right-side radial green glow */
.dark-sec::before {
    content: '';
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    width: 720px; height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18,72,18,.75) 0%, transparent 65%);
    pointer-events: none;
}
.dark-sec-bg {
    position: absolute;
    inset: 0;
    background: url('images/logistics-port.png') center/cover no-repeat;
    opacity: .10;
    mix-blend-mode: luminosity;
    pointer-events: none;
}
.dark-sec .sec-label { color: var(--lime); }
.dark-h2 {
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.08;
}
.dark-h2 .lime { color: var(--lime); }
.dark-sub {
    color: rgba(255,255,255,.5);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 60px;
    max-width: 540px;
}
/* Service cards */
.srv-card {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;
    padding: 30px 26px;
    height: 100%;
    transition: background .25s, border-color .25s;
}
.srv-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.12);
}
/* Lime filled circle icon */
.srv-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--lime);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    color: #0a1c05;
    font-size: 19px;
    flex-shrink: 0;
}
.srv-title {
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.srv-text {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.68;
}

/* ─── TRUST SECTION ──────────────────────────────── */
.trust-sec {
    padding: 100px 0 110px;
    background: #f7f8f4;
}
.trust-h2 {
    font-size: clamp(30px, 3.8vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 0;
}
.trust-h2 em {
    font-style: normal;
    color: #2d7a3a;
}
.trust-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 18px;
    margin-bottom: 60px;
    line-height: 1.72;
}
/* Trust cards */
.tcard {
    background: #fff;
    border-radius: 16px;
    padding: 30px 28px;
    height: 100%;
    border: 1px solid #eaede6;
    box-shadow: 0 2px 14px rgba(0,0,0,.04);
    transition: box-shadow .25s, transform .25s;
}
.tcard:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    transform: translateY(-3px);
}
.tcard-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(45,122,58,.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    color: #2d7a3a;
    font-size: 20px;
}
.tcard-title {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.tcard-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.68;
}

/* ─── ADVANTAGES SECTION ─────────────────────────── */
.adv-sec {
    padding: 100px 0 112px;
    background: #f2f3ef;
}
/* Advantage card — horizontal layout */
.adv-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 26px;
    height: 100%;
    border: 1px solid #e5e9e2;
    box-shadow: 0 1px 10px rgba(0,0,0,.04);
    transition: box-shadow .25s, transform .25s;
}
.adv-card:hover {
    box-shadow: 0 8px 26px rgba(0,0,0,.08);
    transform: translateY(-3px);
}
.adv-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
/* Gradient filled circle */
.adv-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-deep), var(--forest) 55%, var(--lime));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 19px;
}
.adv-title {
    font-size: 16px;
    font-weight: 700;
    color: #0c1a09;
    line-height: 1.3;
    margin: 0;
}
.adv-text {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.68;
    margin: 0;
}

/* ─── CTA SECTION ────────────────────────────────── */
.cta-sec {
    padding: 100px 0 110px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
/* Subtle left glow */
.cta-sec::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80,180,80,.1) 0%, transparent 65%);
    pointer-events: none;
}
.cta-sec .sec-label { color: var(--accent-green); }
.cta-h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #0c1a09;
    line-height: 1.08;
    margin-bottom: 18px;
}
.cta-sub {
    color: #4b5563;
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 36px;
}
/* Contact info items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.contact-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(45,122,58,.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #2d7a3a;
    font-size: 15px;
}
.contact-lbl {
    font-size: 13px;
    font-weight: 700;
    color: #0c1a09;
    margin-bottom: 2px;
}
.contact-val {
    font-size: 13px;
    color: #6b7280;
}
/* WhatsApp button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #163a1e;
    color: #fff;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s, transform .2s;
    margin-top: 10px;
}
.btn-whatsapp:hover {
    background: #1e5228;
    transform: translateY(-1px);
    color: #fff;
}
/* Form card */
.cta-form-box {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px;
    border: 1px solid #dde1d8;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.form-label-sm {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
    display: block;
}
/* Light inputs */
.fc-light {
    border: 1px solid #dde1d9 !important;
    border-radius: 8px !important;
    padding: 11px 14px !important;
    font-size: 13.5px !important;
    color: #374151 !important;
    background: #fff !important;
    width: 100%;
}
.fc-light::placeholder { color: #9ca3af !important; }
.fc-light:focus {
    border-color: #3a7a52 !important;
    box-shadow: 0 0 0 3px rgba(58,122,82,.12) !important;
    outline: none !important;
}
/* Inquiry type chips */
.inquiry-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.i-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid #d1d5c8;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    background: #fff;
    transition: border-color .2s, background .2s, color .2s;
    user-select: none;
}
.i-chip:hover, .i-chip.active {
    border-color: #3a7a52;
    color: #2d7a3a;
    background: rgba(58,122,82,.06);
}
/* Submit button */
.btn-cta-submit {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--forest-deep), var(--forest) 55%, var(--lime));
    color: #fff;
    border: none;
    padding: 13px 30px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}
.btn-cta-submit:hover {
    opacity: .88;
    transform: translateY(-1px);
}

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
    background: #060d06;
    padding: 64px 0 0;
}
.footer-brand-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.footer-logo-wrap {
    width: 52px; height: 52px;
    background: #fff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.footer-brand-name {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.2px;
    line-height: 1.2;
}
.footer-brand-sub {
    color: rgba(255,255,255,.35);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.footer-tagline {
    font-size: 13.5px;
    color: rgba(255,255,255,.62);
    line-height: 1.72;
    max-width: 360px;
}
/* Column headings */
.f-col-head {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 20px;
}
/* Nav links */
.f-links { list-style: none; padding: 0; margin: 0; }
.f-links li { margin-bottom: 13px; }
.f-links a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color .2s;
}
.f-links a:hover { color: #fff; }
/* Contact values */
.f-contact-item {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}
.f-contact-item .f-city { color: rgba(255,255,255,.78); }
.f-contact-item a {
    color: #5fd97a;
    text-decoration: none;
    transition: color .2s;
}
.f-contact-item a:hover { color: #7fef96; }
/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 22px 0;
    margin-top: 56px;
}
.footer-copy {
    font-size: 12.5px;
    color: rgba(255,255,255,.25);
}

/* ─── UTILITIES ──────────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-body { padding-top: 130px; }
    .hero-products { width: 100%; opacity: .2; }
}
@media (max-width: 1199.98px) {
    .sec-h2 { white-space: normal; }
    .port-header { gap: 32px; }
    .port-header-left { flex: 0 0 54%; }
    .port-header-right { flex: 0 0 40%; }
}
@media (max-width: 991.98px) {
    .port-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .port-header-left, .port-header-right { flex: unset; }
    .sec-h2 { white-space: normal; }
}
@media (max-width: 767.98px) {
    .hero-h1 { font-size: 38px; letter-spacing: -1.2px; }
    .hero-stats .d-flex { flex-wrap: wrap; gap: 20px !important; }
    .hstat-div { display: none; }
    .hstat-num { font-size: 28px; }
    .cta-form-box { padding: 24px 18px; }
    .btn-hero-lime, .btn-hero-pill { font-size: 13px; padding: 12px 22px; }
    .sec-h2 { font-size: 30px; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
