/* ══════════════════════════════════════════════════
   BIO PHARMA DESIGN SYSTEM
   Sourced from Figma "Bio Pharma Website" → Styles & Components
══════════════════════════════════════════════════ */
:root {
    /* Figma palette (exact) */
    --bp-primary-300: #25BA30;
    --bp-primary-500: #308636;
    --bp-primary-800: #326E37;
    --bp-neutral-300: #FFFFFF;
    --bp-neutral-400: #DEE5DF;
    --bp-neutral-500: #9DA69E;
    --bp-neutral-600: #5B635C;
    --bp-neutral-800: #171917;

    /* Semantic aliases used throughout this file */
    --bg: var(--bp-neutral-300);
    --bg-alt: #F4F6F4;
    --bg-deep: var(--bp-neutral-400);
    --ink: var(--bp-neutral-800);
    --body: var(--bp-neutral-600);
    --muted: var(--bp-neutral-500);
    --accent: var(--bp-primary-800);
    --accent-light: var(--bp-primary-500);
    --accent-vivid: var(--bp-primary-300);
    --accent-tint: #EAF6EC;
    --accent-tint2: #D7EEDA;
    --border: var(--bp-neutral-400);
    --card: var(--bp-neutral-300);
    --card-alt: #F7F8F6;
    --shadow: rgba(0, 0, 0, 0.03);
    --shadow-md: rgba(0, 0, 0, 0.06);
    --shadow-lg: rgba(0, 0, 0, 0.10);
    --green: var(--bp-primary-800);
    --green-tint: #EAF6EC;
    --green-border: #BFE2C4;

    /* Motion — smoother, more refined */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.25, 1, 0.5, 1);

    /* Section spacing — Opal/Dragonfly dramatic whitespace */
    --section-pad: clamp(120px, 14vh, 220px);
    --section-pad-sm: clamp(80px, 10vh, 160px);
}

/* ══════════════════════════════════════════════════
   FIGMA TYPE SCALE — named text styles from Styles & Components
══════════════════════════════════════════════════ */
.fig-h1,
h1,
.home2-hero-title,
.api-hero-h {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(44px, 6vw, 80px);
    line-height: 1;
    color: var(--ink);
}

.fig-alt-h1,
.fig-alt-h,
h1 em,
h2 em,
h3 em,
.home2-hero-title em,
.home2-section-title em,
.home2-offer-title em,
.cap-mission-title em,
.gs-logistics-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(40px, 5.5vw, 70px);
    line-height: 1;
    color: #25BA30; /* BP Green 300 */
    text-shadow: -0.5px -0.5px 0 #25BA30, 0.5px -0.5px 0 #25BA30, -0.5px 0.5px 0 #25BA30, 0.5px 0.5px 0 #25BA30; /* +1px stroke border feel */
}

.fig-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(36px, 5.2vw, 72px);
    line-height: 1.01;
    color: var(--ink);
}

.fig-h3,
h3,
.home2-offer-title,
.home2-certs-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 3.2vw, 40px);
    line-height: 1.1;
    color: var(--ink);
}

.fig-h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(22px, 3.8vw, 48px);
    line-height: 1.15;
    color: var(--ink);
}

.fig-para,
p,
body,
.home2-hero-sub,
.about-logo-desc,
.about-story-p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.6vw, 24px);
    line-height: 1.6;
    color: var(--ink);
    opacity: 0.8;
}

.fig-btn-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(15px, 2vw, 32px);
    color: var(--accent);
}

.fig-eyebrow {
    font-family: 'DM Mono', monospace;
    font-weight: 500;
    font-size: clamp(12px, 1.6vw, 24px);
    letter-spacing: -0.04em;
    color: var(--ink);
    opacity: .8;
    text-transform: uppercase;
}

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

*,
*::before,
*::after {
    cursor: default;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ══ SELECTION ══ */
::selection {
    background: var(--accent-tint2);
    color: var(--ink);
}

/* Custom cursor + progress bar removed */

/* ══ NAV — Bio Pharma: white bar at rest, green floating pill on scroll ══ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    border-radius: 0;
    transition: top .5s var(--ease-out-expo), left .5s var(--ease-out-expo), right .5s var(--ease-out-expo),
        height .5s var(--ease-out-expo), background .6s, backdrop-filter .6s, box-shadow .6s, padding .5s, border-radius .5s;
}

nav.scrolled {
    top: 14px;
    left: 24px;
    right: 24px;
    height: 64px;
    padding: 0 12px 0 20px;
    border-radius: 100px;
    background: var(--accent);
    box-shadow: 0 12px 32px rgba(23, 25, 23, .18);
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 12px;
    background: transparent;
    transition: background .5s var(--ease-out-expo), box-shadow .5s;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    transition: filter .4s;
}

nav.scrolled .logo-img {
    filter: brightness(0) invert(1);
}

.logo-wordmark {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--ink);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color .4s;
}

nav.scrolled .logo-wordmark {
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--body);
    cursor: pointer;
    position: relative;
    padding: 6px 20px;
    transition: color .3s;
    letter-spacing: .01em;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .4s var(--ease-out-expo);
}

.nav-item:hover {
    color: var(--ink);
}

.nav-item:hover::after {
    width: calc(100% - 40px);
}

.nav-item>a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

nav.scrolled .nav-item {
    color: rgba(255, 255, 255, .85);
}

nav.scrolled .nav-item::after {
    background: #fff;
}

nav.scrolled .nav-item:hover {
    color: #fff;
}

/* Jeton-style dropdown */
.nav-item.has-drop {
    position: relative;
}

.nav-drop {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 12px 12px;
    min-width: 220px;
    box-shadow: 0 20px 60px var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .3s var(--ease-out-expo);
}

/* invisible bridge between nav-item and dropdown so cursor can travel */
.nav-item.has-drop::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-item.has-drop:hover .nav-drop,
.nav-drop:hover {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-drop-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--body);
    transition: background .2s, color .2s;
    text-decoration: none;
}

.nav-drop-item:hover {
    background: var(--bg-alt);
    color: var(--ink);
}

.nav-drop-thumb {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--accent-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link-plain {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: color .25s;
    padding: 6px 0;
}

.nav-link-plain:hover {
    color: var(--ink);
}

.nav-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: transform .2s var(--ease-spring), box-shadow .3s;
}

.nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    transform: scale(0);
    border-radius: 100px;
    transition: transform .4s var(--ease-spring);
}

.nav-btn:hover::before {
    transform: scale(1);
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(50, 110, 55, .2);
}

.nav-btn span {
    position: relative;
    z-index: 1;
}

/* Scrolled nav is a green pill — flip the CTA to white-on-green per Figma */
nav.scrolled .nav-btn {
    background: #fff;
    color: var(--accent);
}

nav.scrolled .nav-btn::before {
    background: rgba(50, 110, 55, .08);
}

nav.scrolled .nav-btn:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

/* ══ MOBILE NAV ══ */
.mob-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.mob-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

nav.scrolled .mob-menu-toggle span {
    background: #fff;
}

.mob-menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mob-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mob-menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mob-menu-toggle.open span {
    background: var(--ink);
}

.mob-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.mob-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mob-nav-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--bg);
    padding: 80px 24px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mob-nav-overlay.open .mob-nav-drawer {
    transform: translateX(0);
}

.mob-nav-group {
    border-bottom: 1px solid var(--border);
    padding-bottom: 4px;
}

.mob-nav-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    padding: 14px 0;
}

.mob-arrow {
    font-size: 12px;
    transition: transform .3s;
}

.mob-nav-heading.open .mob-arrow {
    transform: rotate(180deg);
}

.mob-nav-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.mob-nav-heading.open+.mob-nav-sub {
    max-height: 200px;
}

.mob-nav-sub a {
    display: block;
    padding: 10px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--body);
    text-decoration: none;
    border-radius: 8px;
    transition: background .2s;
}

.mob-nav-sub a:hover {
    background: var(--bg-alt);
}

.mob-nav-cta {
    margin-top: 16px;
    padding: 14px 24px;
    border: none;
    border-radius: 100px;
    background: var(--accent);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

/* ══ HERO — Jeton: bold text, clean white, one green CTA ══ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
    padding-top: 72px;
}

/* Subtle mesh gradient bg */
.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 900px 700px at 80% 35%, rgba(50, 110, 55, .07) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 10% 75%, rgba(50, 110, 55, .05) 0%, transparent 60%),
        radial-gradient(ellipse 500px 400px at 50% 20%, rgba(50, 110, 55, .03) 0%, transparent 50%);
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1;
}

.hero-body {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
    padding: 80px 56px 100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 100px;
    align-items: center;
}

.h-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp .8s .2s var(--ease-out-expo) forwards;
}

.h-eyebrow::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--accent);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 9.5vw, 150px);
    line-height: .88;
    letter-spacing: -.02em;
    color: var(--ink);
    opacity: 0;
    animation: fadeUp .9s .35s var(--ease-out-expo) forwards;
}

.hero-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.hero-sub {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    color: var(--body);
    max-width: 480px;
    margin-top: 24px;
    opacity: 0;
    animation: fadeUp .9s .5s var(--ease-out-expo) forwards;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-top: 52px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s .65s var(--ease-out-expo) forwards;
}

/* Jeton-style pill buttons — bold only, never underlined */
.btn-primary,
.btn-secondary,
.home2-cta-btn,
.nav-btn,
a[class*="btn"] {
    text-decoration: none !important;
}

.btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease-spring), box-shadow .4s;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    transform: scale(0);
    border-radius: 100px;
    transition: transform .5s var(--ease-spring);
}

.btn-primary:hover::before {
    transform: scale(1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(50, 110, 55, .3);
}

.btn-secondary {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    background: #106E18;
    color: #ffffff;
    border: 1.5px solid #106E18;
    padding: 17px 40px;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(16, 110, 24, 0.2);
    transition: border-color .3s, background .3s, color .3s, transform .3s var(--ease-spring), box-shadow .3s;
}

.btn-secondary:hover {
    border-color: #0D5813;
    background: #0D5813;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16, 110, 24, 0.35);
}

/* HERO RIGHT — Jeton floating card */
.hero-card-wrap {
    position: relative;
    opacity: 0;
    animation: cardSlideIn 1.1s .8s var(--ease-out-expo) forwards;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-card {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 4px 16px var(--shadow), 0 16px 48px var(--shadow-md), 0 48px 100px var(--shadow-lg);
}

.hc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.hc-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}

.hc-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    background: var(--green-tint);
    border: 1px solid var(--green-border);
    padding: 4px 12px;
    border-radius: 100px;
}

.hc-live::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.8);
    }
}

.hc-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.hc-stat {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 16px;
    transition: background .3s;
}

.hc-stat:hover {
    background: var(--accent-tint);
}

.hc-stat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    line-height: 1;
    color: var(--ink);
}

.hc-stat-n sup {
    font-size: 20px;
    color: var(--accent);
}

.hc-stat-l {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: .04em;
}

.hc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.hc-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    color: var(--body);
    background: var(--bg);
    transition: all .25s;
}

.hc-badge:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.hc-progress {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.hc-prog-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 8px;
}

.hc-prog-label strong {
    color: var(--ink);
}

.hc-prog-bar {
    height: 4px;
    background: var(--bg-deep);
    border-radius: 100px;
    overflow: hidden;
}

.hc-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 100px;
    width: 0;
    transition: width 2s 1.4s var(--ease-out-expo);
}

/* Floating micro-cards */
.float-badge {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 4px 24px var(--shadow-md);
    animation: floatY 4s ease-in-out infinite;
    white-space: nowrap;
    z-index: 3;
}

.float-badge:nth-child(1) {
    top: -24px;
    right: 20px;
    animation-delay: 0s;
}

.float-badge:nth-child(2) {
    bottom: 20px;
    left: -50px;
    animation-delay: 1.3s;
}

.float-badge:nth-child(3) {
    top: 38%;
    right: -55px;
    animation-delay: 2.2s;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

.h-scroll {
    position: absolute;
    bottom: 36px;
    left: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0;
    animation: fadeUp 1s 1.2s forwards;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══ STEP BAND ══ */
.steps-band {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 56px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.steps-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item {
    display: flex;
    align-items: center;
}

.step-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
}

.step-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    transition: all .5s var(--ease-spring);
}

.step-dot.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-tint);
    box-shadow: 0 0 0 4px var(--accent-tint2);
}

.step-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    transition: color .4s;
}

.step-item:has(.step-dot.active) .step-label {
    color: var(--accent);
}

.step-line {
    flex: 1;
    height: 1px;
    background: var(--border);
    min-width: 40px;
    position: relative;
    overflow: hidden;
}

.step-line-fill {
    position: absolute;
    inset: 0;
    background: var(--accent);
    width: 0;
    transition: width 1s ease;
}

.step-line-fill.filled {
    width: 100%;
}

/* ══ TILES — cards on white ══ */
.tiles-section {
    position: relative;
    z-index: 10;
    padding: 0 0 var(--section-pad);
}

.tiles-header {
    max-width: 1360px;
    margin: 0 auto;
    padding: var(--section-pad) 56px 72px;
}

.sec-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.sec-tag::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--accent);
    opacity: .6;
}

.sec-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 7vw, 110px);
    line-height: .92;
    letter-spacing: -.02em;
    color: var(--ink);
}

.sec-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
}

.tiles-stage {
    position: relative;
    height: 520px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px;
}

.tile {
    position: absolute;
    background: var(--card);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 40px 44px;
    box-shadow: 0 2px 8px var(--shadow), 0 8px 32px var(--shadow-md);
    cursor: pointer;
    overflow: hidden;
    transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo), box-shadow .5s, border-color .5s;
}

.tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--ease-out-expo);
}

.tile:hover::before {
    transform: scaleX(1);
}

.tile:hover {
    border-color: rgba(50, 110, 55, .15);
    box-shadow: 0 8px 24px var(--shadow-md), 0 24px 64px rgba(50, 110, 55, .1);
}

.tile-1 {
    left: 56px;
    top: 0;
    width: 330px;
    height: 340px;
    z-index: 14;
    --trot: -2.5deg;
}

.tile-2 {
    left: 210px;
    top: 55px;
    width: 375px;
    height: 295px;
    z-index: 13;
    --trot: 1.2deg;
}

.tile-3 {
    left: 435px;
    top: 15px;
    width: 355px;
    height: 355px;
    z-index: 12;
    --trot: -.8deg;
}

.tile-4 {
    left: 625px;
    top: 70px;
    width: 340px;
    height: 280px;
    z-index: 11;
    --trot: 1.8deg;
}

.tile-5 {
    left: 850px;
    top: 22px;
    width: 375px;
    height: 340px;
    z-index: 10;
    --trot: -1.8deg;
}

.tile {
    opacity: 0;
    transform: translateY(60px) rotate(var(--trot, 0deg));
}

.tile.visible {
    opacity: 1;
    transform: translateY(0) rotate(var(--trot, 0deg));
}

.tile.visible:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.02) !important;
    z-index: 20 !important;
}

.tile-1 {
    transition-delay: .04s;
}

.tile-2 {
    transition-delay: .13s;
}

.tile-3 {
    transition-delay: .22s;
}

.tile-4 {
    transition-delay: .31s;
}

.tile-5 {
    transition-delay: .40s;
}

.tile-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: rgba(0, 0, 0, .04);
    position: absolute;
    top: 12px;
    right: 18px;
    transition: color .4s;
}

.tile:hover .tile-num {
    color: rgba(50, 110, 55, .08);
}

.tile-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
    transition: transform .4s var(--ease-spring);
}

.tile:hover .tile-icon {
    transform: scale(1.2) rotate(-8deg);
}

.tile-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.tile-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--body);
}

.tile-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 16px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s, transform .35s var(--ease-out-expo);
}

.tile:hover .tile-cta {
    opacity: 1;
    transform: translateX(0);
}

/* ══ TICKER ══ */
.ticker-band {
    background: var(--bg-alt);
    border-top: none;
    border-bottom: none;
    overflow: hidden;
    padding: 18px 0;
    position: relative;
    z-index: 6;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: tickerScroll 28s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 36px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}

.ticker-item strong {
    color: var(--accent);
}

.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .5;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ══ STATS ══ */
.stats-band {
    background: var(--bg);
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1360px;
    margin: 0 auto;
    border: 1px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 0;
    box-shadow: 0 2px 8px var(--shadow), 0 8px 32px var(--shadow-md);
}

.stats-section-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: var(--section-pad-sm) 56px;
}

.stat-box {
    padding: 56px 48px;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background .4s;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box:hover {
    background: var(--accent-tint);
}

.stat-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: translateX(-100%);
    transition: transform .8s ease;
}

.stat-box:hover::after {
    transform: translateX(100%);
}

.sn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 76px;
    line-height: 1;
    color: var(--ink);
}

.sn sup {
    font-size: 32px;
    color: var(--accent);
}

.sl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
}

.ss {
    font-size: 11px;
    color: var(--border);
    margin-top: 4px;
}

.ldot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    margin-right: 6px;
    animation: livePulse 1.5s ease-in-out infinite;
}

#cName {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 8px;
    min-height: 18px;
    transition: opacity .4s;
}

/* Ispe badge */
.ispe-b {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-tint);
    border: 1.5px solid var(--accent-tint2);
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--accent);
    text-transform: uppercase;
    border-radius: 100px;
    margin-top: 10px;
}

/* ══════════════════════════════════════════
   MAP SECTION — Osmo Community inspired
══════════════════════════════════════════ */
.map-section {
    background: var(--bg);
    border-top: none;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.map-section-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
}

.map-section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.40) 100%);
    z-index: 1;
    pointer-events: none;
}

.map-section>*:not(.map-section-video):not(.map-section-overlay) {
    position: relative;
    z-index: 2;
}

/* Top intro row */
.map-intro {
    max-width: 1360px;
    margin: 0 auto;
    padding: var(--section-pad) 56px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

.map-intro-left {
    flex: 1;
    min-width: 280px;
}

.map-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.map-eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--accent);
}

.map-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 7.5vw, 120px);
    line-height: .9;
    letter-spacing: -.02em;
    color: var(--ink);
}

.map-headline em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
}

.map-intro-right {
    flex: 1;
    min-width: 280px;
    max-width: 480px;
    padding-top: 16px;
}

/* Avatar row — Osmo-style stacked faces */
.av-row {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.av-face {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2.5px solid var(--bg);
    background: var(--accent-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-left: -12px;
    transition: transform .25s var(--ease-spring), z-index 0s;
    position: relative;
}

.av-face:first-child {
    margin-left: 0;
}

.av-face:hover {
    transform: translateY(-5px) scale(1.12);
    z-index: 10;
}

.av-total {
    margin-left: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
}

.av-total small {
    font-weight: 400;
    color: var(--muted);
}

.map-sub {
    font-size: 15px;
    color: var(--body);
    line-height: 1.8;
    margin-bottom: 28px;
}

.map-cta-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 100px;
    cursor: pointer;
    transition: background .25s, transform .2s var(--ease-spring), box-shadow .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-cta-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(50, 110, 55, .3);
}

/* ── MAP STAGE ── */
.map-stage {
    position: relative;
    max-width: 1360px;
    margin: 48px auto 0;
    padding: 0 56px;
}

.map-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    box-shadow: 0 4px 40px rgba(0, 0, 0, .07);
}

.map-svg-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── PULSE DOTS ── */
.map-dot {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 4;
}

.map-dot-core {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 2px rgba(50, 110, 55, .25);
    animation: corePulse 2.8s ease-in-out infinite;
}

.map-dot-ring1 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border-radius: 50%;
    border: 1.5px solid rgba(50, 110, 55, .5);
    animation: ringExpand 2.8s ease-out infinite;
    pointer-events: none;
}

.map-dot-ring2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border-radius: 50%;
    border: 1px solid rgba(50, 110, 55, .25);
    animation: ringExpand 2.8s ease-out infinite .55s;
    pointer-events: none;
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 2px rgba(50, 110, 55, .25);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 4px rgba(50, 110, 55, .12);
    }
}

@keyframes ringExpand {
    0% {
        transform: scale(.5);
        opacity: .8;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Dot tooltip — Osmo style pill */
.map-dot-tip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--ink);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .03em;
    padding: 5px 12px;
    border-radius: 100px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s, transform .22s var(--ease-out-expo);
    z-index: 10;
}

.map-dot-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--ink);
}

.map-dot:hover .map-dot-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Dot entrance animation */
@keyframes dotIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.map-dot {
    opacity: 0;
    animation: dotIn .45s var(--ease-spring) both;
}

/* ── "Finally your kind of group chat" label — Osmo style ── */
.map-label-strip {
    max-width: 1360px;
    margin: 0 auto;
    padding: 36px 56px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.map-label-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

.map-label-pill strong {
    color: var(--ink);
}

.map-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: corePulse 2s ease-in-out infinite;
}

/* ── REGION CARDS — exact Osmo row ── */
.regions-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 48px 56px var(--section-pad);
}

.regions-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.regions-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.regions-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.region-card {
    background: var(--card);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 32px 26px 26px;
    position: relative;
    overflow: hidden;
    transition: all .5s var(--ease-out-expo);
    cursor: pointer;
    box-shadow: 0 2px 8px var(--shadow), 0 8px 32px var(--shadow-md);
}

.region-card:hover {
    border-color: rgba(50, 110, 55, .12);
    background: var(--card);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px var(--shadow-md), 0 32px 72px rgba(50, 110, 55, .08);
}

.region-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--ease-out-expo);
}

.region-card:hover::after {
    transform: scaleX(1);
}

/* Mini avatar cluster */
.rc-avs {
    display: flex;
    margin-bottom: 16px;
}

.rc-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2.5px solid var(--bg-alt);
    background: var(--accent-tint);
    margin-left: -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform .2s;
}

.rc-av:first-child {
    margin-left: 0;
}

.region-card:hover .rc-av {
    border-color: var(--card);
}

.rc-region {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.rc-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 14px;
}

.rc-number em {
    font-size: 24px;
    color: var(--accent);
    font-style: normal;
}

.rc-bar-wrap {
    height: 3px;
    background: var(--bg-deep);
    border-radius: 100px;
    overflow: hidden;
}

.rc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 100px;
    width: 0;
    transition: width 1.6s var(--ease-out-expo);
}

.rc-bar-fill.visible {
    width: var(--pct);
}

/* ══ SERVICES — horizontal drag scroll ══ */
.svc-section {
    background: var(--bg);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.svc-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: var(--section-pad) 56px 48px;
}

.drag-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 56px 24px;
}

.drag-arrow {
    font-size: 16px;
    animation: dragPulse 2s ease-in-out infinite;
}

@keyframes dragPulse {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.svc-scroll-wrap {
    overflow-x: auto;
    padding: 0 56px 60px;
    scrollbar-width: none;
}

.svc-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.svc-scroll-track {
    display: flex;
    gap: 16px;
    width: max-content;
}

.svc-card {
    background: var(--card);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 48px 44px;
    width: 380px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow), 0 8px 32px var(--shadow-md);
    transition: all .5s var(--ease-out-expo);
    cursor: pointer;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--ease-out-expo);
}

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

.svc-card:hover {
    border-color: rgba(50, 110, 55, .12);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px var(--shadow-md), 0 32px 72px rgba(50, 110, 55, .1);
}

.svc-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 90px;
    line-height: 1;
    color: rgba(0, 0, 0, .04);
    position: absolute;
    top: 8px;
    right: 20px;
    transition: color .4s;
}

.svc-card:hover .svc-n {
    color: rgba(50, 110, 55, .07);
}

.svc-ic {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
    transition: transform .4s var(--ease-spring);
}

.svc-card:hover .svc-ic {
    transform: scale(1.18) rotate(-7deg);
}

.svc-t {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
}

.svc-d {
    font-size: 13px;
    line-height: 1.85;
    color: var(--body);
}

.svc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 20px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s, transform .35s var(--ease-out-expo);
}

.svc-card:hover .svc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ══ TRUST ══ */
.trust-section {
    background: var(--bg-alt);
    border-top: none;
    position: relative;
    z-index: 5;
}

.trust-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: var(--section-pad) 56px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 72px;
}

.trust-card {
    background: var(--card);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .5s var(--ease-out-expo);
    cursor: pointer;
    box-shadow: 0 2px 8px var(--shadow), 0 8px 32px var(--shadow-md);
}

.trust-card:hover {
    border-color: rgba(50, 110, 55, .12);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px var(--shadow-md), 0 32px 72px rgba(50, 110, 55, .08);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--ease-out-expo);
}

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

.trust-ic {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.trust-t {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.trust-d {
    font-size: 13.5px;
    color: var(--body);
    line-height: 1.8;
}

/* ══ TESTIMONIALS ══ */
.reviews-section {
    background: var(--bg);
    border-top: none;
    position: relative;
    z-index: 5;
}

.reviews-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: var(--section-pad) 56px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 72px;
}

.review-card {
    background: var(--card);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    transition: all .5s var(--ease-out-expo);
    cursor: pointer;
    box-shadow: 0 2px 8px var(--shadow), 0 8px 32px var(--shadow-md);
}

.review-card:hover {
    border-color: rgba(50, 110, 55, .12);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px var(--shadow-md), 0 32px 72px rgba(0, 0, 0, .06);
}

.rv-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.rv-star {
    font-size: 14px;
    color: var(--accent);
}

.rv-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--body);
    font-style: italic;
    margin-bottom: 24px;
}

.rv-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rv-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-tint);
    border: 1.5px solid var(--accent-tint2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.rv-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.rv-role {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

/* ══ CTA ══ */
.cta-section {
    position: relative;
    background: var(--ink);
    overflow: hidden;
}

#ctaC {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .5;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 900px 700px at 50% 50%, rgba(50, 110, 55, .15), transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
    padding: var(--section-pad) 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.cta-t {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 90px);
    line-height: 1;
    letter-spacing: -.02em;
    color: #fff;
}

.cta-t em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent-light);
}

.cta-s {
    font-size: 16px;
    color: rgba(255, 255, 255, .45);
    margin-top: 18px;
    line-height: 1.8;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.cta-social {
    display: flex;
    gap: 10px;
}

.cta-social-item {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, .4);
    transition: all .25s;
}

.cta-social-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(50, 110, 55, .1);
}

/* ════ CONTACT SECTION ════ */
.contact-section {
    position: relative;
    padding: var(--section-pad) 56px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    border-top: none;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(50, 110, 55, .04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.contact-video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 64px rgba(50, 110, 55, .12);
    border: 1px solid transparent;
    aspect-ratio: 9/16;
    min-height: 600px;
}

.contact-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ════ VIDEO OVERLAY ════ */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
    border-radius: 16px;
}

.contact-video-wrapper:hover .video-overlay {
    background: rgba(0, 0, 0, .4);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(50, 110, 55, .9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 8px 32px rgba(50, 110, 55, .3);
}

.contact-video-wrapper:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(50, 110, 55, .5);
}

/* ════ VIDEO MODAL ════ */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn .3s ease;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 100px rgba(0, 0, 0, .8);
}

.modal-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(50, 110, 55, .9);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.contact-subtitle {
    font-size: 16px;
    color: var(--body);
    line-height: 1.7;
    max-width: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border-color .3s, box-shadow .3s;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(50, 110, 55, .02);
    box-shadow: 0 0 0 3px rgba(50, 110, 55, .08);
}

.form-group textarea {
    min-height: 120px;
}

.contact-submit {
    width: 100%;
    margin-top: 12px;
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
    margin-top: 16px;
}

@media(max-width:768px) {
    .contact-section {
        padding: 60px 24px;
    }

    .contact-video-wrapper {
        aspect-ratio: 16/9;
        min-height: 300px;
    }

    .contact-title {
        font-size: 32px;
    }
}

@media(max-width:480px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ══════════════════════════════════════════════════
   FOOTER
   Col 1 Brand · Col 2 Contact · Col 3 Products+Services · Col 4 Company
   ══════════════════════════════════════════════════ */

footer {
    background: var(--bg-alt);
    border-top: none;
    position: relative;
    z-index: 5;
}

.footer-main {
    max-width: 1360px;
    margin: 0 auto;
    padding: 72px 56px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1.1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ─── Column 1: Brand ─── */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    height: 44px;
    width: auto;
    align-self: flex-start;
	margin-left: -6px;   /* compensates for transparent padding in the PNG */
}

.footer-desc {
    font-size: 13px;
    color: var(--body);
    line-height: 1.65;
    max-width: 320px;
    margin: 0;
}

.footer-desc strong {
    color: var(--ink);
    font-weight: 700;
}

.footer-certbadges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
    align-items: center;
}

.footer-certbadges img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform .2s, filter .2s;
}

.footer-certbadges img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(50, 110, 55, .2));
}

/* ─── Column 2: Contact ─── */
.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

footer .footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

footer .fc-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
}

footer .fc-label svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

footer .fc-label .icon-email {
    fill: var(--accent);
}

footer .fc-links a {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: var(--body);
    text-decoration: none;
    cursor: pointer;
    transition: color .2s;
}

footer .fc-links a:hover {
    color: var(--accent);
}

/* ─── Columns 3 & 4: Link lists ─── */
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0 0 14px;
}

/* Space above "Services" only — targets an h4 that follows a ul */
.footer-col ul + h4 {
    margin-top: 28px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0;
    padding: 0;
}

.footer-col li {
    font-size: 13px;
    line-height: 1.4;
    color: var(--body);
    transition: color .2s;
}

.footer-col li a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.footer-col li:hover {
    color: var(--accent);
}

/* Items without a destination shouldn't look clickable */
.footer-col li.no-link,
.footer-legal li.no-link {
    cursor: default;
}

.footer-col li.no-link:hover {
    color: var(--body);
}

/* ─── Bottom bar ─── */
.footer-bottom {
    max-width: 1360px;
    margin: 0 auto;
    padding: 18px 56px 28px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}

.footer-legal {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.footer-legal li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color .2s;
}

/* Pipe separator between legal links, but not before the first */
.footer-legal li + li::before {
    content: "|";
    color: var(--border);
}

.footer-legal li a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.footer-legal li a:hover {
    color: var(--accent);
}
/* ══ REVEAL ANIMATIONS ══ */
.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 1s ease, transform 1.1s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.d1 {
    transition-delay: .12s;
}

.reveal.d2 {
    transition-delay: .24s;
}

.reveal.d3 {
    transition-delay: .36s;
}

.reveal.d4 {
    transition-delay: .48s;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity 1s, transform 1.1s var(--ease-out-expo);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(48px);
    transition: opacity 1s, transform 1.1s var(--ease-out-expo);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ══ RESPONSIVE ══ */
@media(max-width:1100px) {
    .hero-body {
        grid-template-columns: 1fr;
    }

    .hero-card-wrap {
        display: none;
    }

    .tiles-stage {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0 24px;
    }

    .tile {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
    }

    .tile.visible:hover {
        transform: translateY(-6px) scale(1.02) !important;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .regions-row {
        grid-template-columns: 1fr 1fr;
    }

    .map-intro {
        flex-direction: column;
    }

    .map-label-strip {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media(max-width:768px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .mob-menu-toggle {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .hero-body,
    .tiles-header,
    .svc-inner,
    .trust-inner,
    .reviews-inner,
    .cta-inner,
    .footer-main,
    .stats-section-wrap,
    .map-stage,
    .map-header,
    .regions-row {
        padding-left: 24px;
        padding-right: 24px;
    }

    .h-scroll {
        left: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-box {
        padding: 28px 20px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .svc-scroll-wrap,
    .drag-hint {
        padding-left: 24px;
        padding-right: 24px;
    }

    .steps-band {
        padding: 24px;
    }

    .map-intro-left {
        min-width: 0;
    }
}

@media(max-width:480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}


#interPage {
    position: fixed;
    inset: 0;
    z-index: 600;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform .55s var(--ease-out-expo);
    overflow-y: auto;
    overflow-x: hidden;
}

#interPage.open {
    transform: translateX(0);
}

.inter-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(24px) saturate(1.8);
    border-bottom: 1px solid var(--border);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    box-shadow: 0 1px 24px var(--shadow);
}

/* Hero */
/* Products / Bulk APIs hero title, subtitle, stat pills — these classes
   were referenced in page-products.php / page-supply-chain.php but never
   had any CSS defined anywhere in this file (pre-existing gap). */

.api-hero-h {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 4.6vw, 64px);
    line-height: 1.02;
    color: var(--ink);
    margin-bottom: 16px;
}

.api-hero-h em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: #106E18;
}

.api-hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--body);
    max-width: 520px;
    margin-bottom: 24px;
}

.api-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.api-stat-pill {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 20px;
    min-width: 110px;
    text-align: left;
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}

.api-stat-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px var(--shadow-md);
    border-color: var(--accent-vivid);
}

.api-stat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    line-height: 1;
    color: var(--ink);
}

.api-stat-n sup {
    font-size: 14px;
    color: var(--accent);
}

.api-stat-l {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.inter-hero-band {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
    padding: 72px 56px 60px;
    position: relative;
    overflow: hidden;
}

.inter-hero-band::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(50, 110, 55, .08) 0%, transparent 70%);
    pointer-events: none;
}

.inter-hero-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

/* Intro banner */
.inter-intro-band {
    background: var(--accent-tint);
    border-top: 1px solid var(--green-border);
    border-bottom: 1px solid var(--green-border);
    padding: 28px 56px;
}

.inter-intro-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.inter-intro-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inter-intro-col p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--body);
}

/* Filter */
.inter-filter-bar {
    position: sticky;
    top: 68px;
    z-index: 90;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 56px;
}

.inter-filter-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.inter-search-wrap {
    position: relative;
    flex-shrink: 0;
}

.inter-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
}

.inter-search {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 10px 18px 10px 38px;
    outline: none;
    background: var(--bg);
    color: var(--ink);
    width: 260px;
    transition: border-color .25s;
}

.inter-search:focus {
    border-color: var(--accent);
}

.inter-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inter-cat-pill {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--body);
    cursor: pointer;
    transition: all .2s;
}

.inter-cat-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.inter-cat-pill.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Content */
.inter-content {
    max-width: 1360px;
    margin: 0 auto;
    padding: 48px 56px 80px;
}

/* Category group */
.inter-category-group {
    margin-bottom: 48px;
}

.inter-cat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid var(--border);
}

.inter-cat-icon {
    font-size: 24px;
}

.inter-cat-name {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
}

.inter-cat-count {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-tint);
    border: 1px solid var(--green-border);
    padding: 4px 12px;
    border-radius: 100px;
    margin-left: auto;
}

/* Product table rows */
.inter-table-wrap {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow);
}

.inter-table-head {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr 1fr;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
}

.inter-th {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.inter-product-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr 1fr;
    gap: 0;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background .2s;
}

.inter-product-row:last-child {
    border-bottom: none;
}

.inter-product-row:hover {
    background: var(--accent-tint);
}

.inter-prod-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}

.inter-prod-int {
    font-size: 12px;
    color: var(--body);
    line-height: 1.55;
    font-family: 'DM Mono', monospace;
    word-break: break-word;
}

.inter-prod-int .cas {
    color: var(--accent);
    font-weight: 600;
}

.inter-dmf-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.inter-dmf-tag.available {
    background: var(--accent-tint);
    border: 1px solid var(--green-border);
    color: var(--accent);
}

.inter-dmf-tag.none {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    color: var(--muted);
}

.inter-filing-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--body);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-block;
}

.inter-inquire-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 100px;
    cursor: pointer;
    transition: transform .2s var(--ease-spring), box-shadow .3s;
}

.inter-inquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(50, 110, 55, .3);
}

/* Note band */
.inter-note-band {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 28px 56px;
}

.inter-note-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.inter-note-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.inter-note-text {
    font-size: 13px;
    color: var(--body);
    line-height: 1.7;
}

.inter-note-text strong {
    color: var(--ink);
}

/* Cert strip */
.inter-cert-strip {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 32px 56px;
}

.inter-cert-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.inter-cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.inter-cert-badge span {
    font-size: 22px;
}

@media(max-width:768px) {

    .inter-topbar,
    .inter-hero-band,
    .inter-filter-bar,
    .inter-content,
    .inter-intro-band,
    .inter-note-band,
    .inter-cert-strip {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media(max-width:480px) {
    .inter-hero-inner {
        grid-template-columns: 1fr;
    }

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

    .inter-table-head {
        display: none;
    }

    .inter-product-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px;
    }
}

/* ══════════════════════════════════════════════════
   PRODUCTS PAGE OVERLAY — Global Products Catalogue
══════════════════════════════════════════════════ */
#productsPage {
    position: fixed;
    inset: 0;
    z-index: 550;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform .55s var(--ease-out-expo);
    overflow-y: auto;
    overflow-x: hidden;
}

#productsPage.open {
    transform: translateX(0);
}

/* PDF download CTA in hero */
.prod-pdf-btn {
    margin-top: 20px;
    display: inline-flex !important;
    width: auto !important;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

/* scrollable product catalog window */
.prod-scroll-window {
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 16px;
    margin: 0 auto;
    max-width: 1360px;
    background: var(--bg);
    box-shadow: 0 4px 16px var(--shadow);
}

.prod-scroll-window::-webkit-scrollbar {
    width: 6px;
}

.prod-scroll-window::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

/* sidebar + main layout inside products page */
.prod-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 60vh;
}

.prod-sidebar {
    position: sticky;
    top: 0;
    height: 80vh;
    overflow-y: auto;
    background: var(--bg);
    border-right: 1px solid var(--border);
    padding: 20px 0;
}

.prod-sidebar::-webkit-scrollbar {
    width: 3px;
}

.prod-sidebar::-webkit-scrollbar-thumb {
    background: var(--border);
}

.prod-sidebar-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 16px 20px 8px;
}

.prod-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    cursor: pointer;
    transition: background .18s;
    border-left: 2.5px solid transparent;
}

.prod-cat-item:hover {
    background: var(--bg-alt);
}

.prod-cat-item.active {
    background: var(--accent-tint);
    border-left-color: var(--accent);
}

.prod-cat-item.active .prod-cat-label {
    color: var(--accent);
    font-weight: 600;
}

.prod-cat-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.prod-cat-label {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--body);
    line-height: 1.3;
}

/* segment strip */
.prod-seg-strip {
    background: var(--accent-tint);
    border-top: 1px solid var(--green-border);
    border-bottom: 1px solid var(--green-border);
    padding: 20px 56px;
}

.prod-seg-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.prod-seg-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--green-border);
    background: var(--bg);
    color: var(--body);
    cursor: pointer;
    transition: all .22s;
}

.prod-seg-pill:hover,
.prod-seg-pill.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.prod-seg-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* main content */
.prod-main {
    padding: 40px 48px 100px;
}

/* filter bar */
.prod-filter-bar {
    position: sticky;
    top: 68px;
    z-index: 90;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 56px;
}

.prod-filter-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.prod-search-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
}

.prod-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--muted);
}

.prod-search {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--ink);
    background: var(--bg-alt);
    outline: none;
    transition: border-color .25s, background .25s;
}

.prod-search:focus {
    border-color: var(--accent);
    background: var(--bg);
}

.prod-select-wrap {
    position: relative;
}

.prod-select {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 9px 32px 9px 16px;
    outline: none;
    background: var(--bg);
    color: var(--ink);
    appearance: none;
    cursor: pointer;
    transition: border-color .22s;
    min-width: 140px;
}

.prod-select:focus {
    border-color: var(--accent);
}

.prod-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--muted);
    font-size: 9px;
}

.prod-reset-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all .2s;
}

.prod-reset-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.prod-count {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    margin-left: auto;
    white-space: nowrap;
}

/* category group */
.prod-category-group {
    margin-bottom: 56px;
}

.prod-cat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--accent-tint) 0%, var(--bg-alt) 100%);
    border: 1px solid var(--green-border);
    border-radius: 14px 14px 0 0;
}

.prod-cat-hicon {
    font-size: 26px;
}

.prod-cat-hname {
    font-family: 'Syne', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
}

.prod-cat-hcount {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--bg);
    border: 1px solid var(--green-border);
    padding: 4px 12px;
    border-radius: 100px;
    margin-left: auto;
}

/* table */
.prod-table-wrap {
    border: 1px solid var(--green-border);
    border-top: none;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
}

.prod-table-head {
    display: grid;
    grid-template-columns: 1.8fr 2fr 1fr 1.8fr 3.5fr 1fr;
    background: var(--bg-alt);
    border-bottom: 1.5px solid var(--border);
    padding: 11px 20px;
}

.prod-th {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.prod-row {
    display: grid;
    grid-template-columns: 1.8fr 2fr 1fr 1.8fr 3.5fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background .18s;
    cursor: pointer;
}

.prod-row:last-child {
    border-bottom: none;
}

.prod-row:hover {
    background: var(--accent-tint);
}

.prod-cell-main {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}

.prod-cell-sub {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-tint);
    border: 1px solid var(--green-border);
    padding: 3px 10px;
    border-radius: 100px;
}

.prod-seg-tag {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}

.seg-pharma {
    background: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
}

.seg-tcs {
    background: #FFF7ED;
    color: #C2410C;
    border: 1px solid #FED7AA;
}

.seg-global {
    background: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
}

.seg-g2 {
    background: var(--accent-tint);
    color: var(--accent);
    border: 1px solid var(--green-border);
}

.supplier-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 2px solid transparent;
}

.supplier-banner-tcs {
    background: linear-gradient(135deg, #FFF7ED, #FEF3C7);
    border-color: #FED7AA;
}

.supplier-banner-g2 {
    background: linear-gradient(135deg, var(--accent-tint), var(--accent-tint2));
    border-color: var(--green-border);
}

.supplier-banner-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.supplier-banner-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.supplier-banner-sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.5;
}

.supplier-divider {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 8px 12px 4px;
    margin-top: 8px;
}

.seg-nutra {
    background: #FFF7ED;
    color: #C2410C;
    border: 1px solid #FED7AA;
}

.seg-sports {
    background: #F5F3FF;
    color: #6D28D9;
    border: 1px solid #DDD6FE;
}

.seg-ayur {
    background: #FEF9C3;
    color: #854D0E;
    border: 1px solid #FDE68A;
}

.prod-dosage-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.prod-dosage-tag {
    font-size: 10px;
    font-weight: 500;
    color: var(--body);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 6px;
}

.prod-comp {
    font-family: 'DM Mono', monospace;
    font-size: 11.5px;
    color: var(--body);
    line-height: 1.6;
}

.prod-comp-no {
    font-family: 'DM Mono', monospace;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--accent);
}

/* no results */
.prod-no-results {
    text-align: center;
    padding: 80px 0;
    color: var(--muted);
}

.prod-no-results-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.prod-no-results-text {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

@media(max-width:1100px) {
    .prod-layout {
        grid-template-columns: 1fr;
    }

    .prod-sidebar {
        position: relative;
        height: auto;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px 16px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        gap: 4px;
    }

    .prod-cat-item {
        flex-direction: column;
        gap: 4px;
        padding: 8px 12px;
        min-width: 72px;
        text-align: center;
        border-left: none;
        border-bottom: 2.5px solid transparent;
        flex-shrink: 0;
    }

    .prod-cat-item.active {
        border-bottom-color: var(--accent);
        border-left-color: transparent;
    }

    .prod-table-head {
        display: none;
    }

    .prod-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 14px 16px;
    }
}

@media(max-width:768px) {

    .prod-filter-bar,
    .prod-seg-strip {
        padding-left: 16px;
        padding-right: 16px;
    }

    .prod-main {
        padding: 24px 16px 80px;
    }
}

/* ══════════════════════════════════════════════════
   CAPABILITIES PAGE OVERLAY  (Sections 1–3 only)
══════════════════════════════════════════════════ */
#capPage {
    position: fixed;
    inset: 0;
    z-index: 580;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform .6s var(--ease-out-expo);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#capPage.open {
    transform: translateX(0);
}

/* Topbar */
.cap-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(24px) saturate(1.8);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 28px var(--shadow);
}

.cap-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--body);
    background: none;
    border: none;
    cursor: pointer;
    transition: color .22s;
}

.cap-back-btn:hover {
    color: var(--accent);
}

.cap-back-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background .22s, border-color .22s;
}

.cap-back-btn:hover .cap-back-arrow {
    background: var(--accent-tint);
    border-color: var(--accent);
}

.cap-topbar-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: .03em;
}

.cap-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hero band */
.cap-hero {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 55%, rgba(240, 253, 244, .6) 100%);
    border-bottom: 1px solid var(--border);
    padding: 76px 56px 64px;
    position: relative;
    overflow: hidden;
}

.cap-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -100px;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(50, 110, 55, .07) 0%, transparent 68%);
    pointer-events: none;
}

.cap-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 20%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(50, 110, 55, .04) 0%, transparent 65%);
    pointer-events: none;
}

.cap-hero-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cap-hero-tag {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.cap-hero-tag::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--accent);
}

.cap-hero-h {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 6.5vw, 96px);
    line-height: .91;
    color: var(--ink);
    margin-bottom: 22px;
}

.cap-hero-h em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
}

.cap-hero-sub {
    font-size: 16px;
    line-height: 1.78;
    color: var(--body);
    max-width: 540px;
}

.cap-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 190px;
}

.cap-hero-stat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow);
    transition: border-color .3s, transform .3s var(--ease-spring), box-shadow .3s;
    cursor: pointer;
}

.cap-hero-stat:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(50, 110, 55, .13);
}

.cap-hs-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    line-height: 1;
    color: var(--ink);
}

.cap-hs-n sup {
    font-size: 19px;
    color: var(--accent);
}

.cap-hs-l {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

/* Sticky tabs — 3 tabs only */
.cap-tabs {
    position: sticky;
    top: 68px;
    z-index: 90;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.cap-tabs-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
}

.cap-tabs-inner::-webkit-scrollbar {
    display: none;
}

.cap-tab {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    padding: 16px 22px;
    border-bottom: 2.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .22s, border-color .22s;
}

.cap-tab:hover {
    color: var(--ink);
}

.cap-tab.act {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.cap-tab-num {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .1em;
    color: var(--muted);
}

.cap-tab.act .cap-tab-num {
    color: rgba(50, 110, 55, .6);
}

/* Section scaffolding */
.cap-body {
    max-width: 1360px;
    margin: 0 auto;
    padding: 72px 56px 120px;
}

.cap-sec {
    margin-bottom: 96px;
    scroll-margin-top: 140px;
}

.cap-sec-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cap-sec-eyebrow::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--accent);
}

.cap-sec-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 4.2vw, 60px);
    line-height: 1;
    color: var(--ink);
    margin-bottom: 14px;
}

.cap-sec-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
}

.cap-sec-lead {
    font-size: 15.5px;
    line-height: 1.82;
    color: var(--body);
    max-width: 700px;
    margin-bottom: 44px;
}

/* ── Section 1: Manufacturing ── */
.mfg-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 56px;
    align-items: start;
}

.mfg-prose {
    font-size: 15px;
    line-height: 1.85;
    color: var(--body);
}

.mfg-prose p {
    margin-bottom: 18px;
}

.dosage-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
}

.dosage-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--body);
    cursor: pointer;
    transition: all .22s var(--ease-spring);
}

.dosage-chip:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(50, 110, 55, .25);
}

.dosage-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    transition: background .22s;
}

.dosage-chip:hover .dosage-chip-dot {
    background: #fff;
}

.mfg-pillars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mfg-pillar {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-spring);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mfg-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--ease-out-expo);
}

.mfg-pillar:hover::before {
    transform: scaleX(1);
}

.mfg-pillar:hover {
    border-color: rgba(50, 110, 55, .3);
    box-shadow: 0 8px 32px rgba(50, 110, 55, .1);
    transform: translateY(-3px);
}

.mfg-pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-tint);
    border: 1px solid var(--green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform .3s var(--ease-spring);
}

.mfg-pillar:hover .mfg-pillar-icon {
    transform: scale(1.1) rotate(-5deg);
}

.mfg-pillar-title {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.mfg-pillar-text {
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--body);
}

/* ── Section 2: Capacity ── */
.cap-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 8px var(--shadow);
    margin-bottom: 44px;
}

.cap-kpi {
    background: var(--card);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background .3s;
}

.cap-kpi::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: translateX(-100%);
    transition: transform .7s ease;
}

.cap-kpi:hover {
    background: var(--accent-tint);
}

.cap-kpi:hover::after {
    transform: translateX(100%);
}

.cap-kpi-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    line-height: 1;
    color: var(--ink);
    transition: color .3s;
}

.cap-kpi:hover .cap-kpi-n {
    color: var(--accent);
}

.cap-kpi-n sup {
    font-size: 24px;
    color: var(--accent);
}

.cap-kpi-l {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
}

.cap-table-wrap {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px var(--shadow);
}

.cap-thead {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 1fr 1.6fr;
    background: var(--accent);
    padding: 14px 24px;
}

.cap-th {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
}

.cap-th.right {
    text-align: right;
}

.cap-subhead {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 1fr 1.6fr;
    background: var(--bg-alt);
    padding: 9px 24px;
    border-bottom: 1px solid var(--border);
}

.cap-subth {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--muted);
}

.cap-row {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 1fr 1.6fr;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background .2s;
}

.cap-row:last-child {
    border-bottom: none;
}

.cap-row:hover {
    background: var(--accent-tint);
}

.cap-td {
    font-size: 13px;
    color: var(--body);
}

.cap-td.form {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.cap-td.total {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--accent);
    text-align: right;
}

.cap-form-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--accent-tint);
    border: 1px solid var(--green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.cap-bars {
    margin-top: 44px;
}

.cap-bars-label {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cap-bars-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.cap-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.cap-bar-lbl {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    width: 110px;
    flex-shrink: 0;
}

.cap-bar-track {
    flex: 1;
    height: 8px;
    background: var(--bg-deep);
    border-radius: 100px;
    overflow: hidden;
}

.cap-bar-fill {
    height: 100%;
    border-radius: 100px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 1.6s var(--ease-out-expo);
}

.cap-bar-fill.go {
    width: var(--w);
}

.cap-bar-val {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    width: 90px;
    text-align: right;
    flex-shrink: 0;
}

/* ── Section 3: Packaging ── */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 16px;
}

.pkg-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 20px 18px;
    text-align: center;
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pkg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--ease-out-expo);
}

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

.pkg-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(50, 110, 55, .13);
    border-color: rgba(50, 110, 55, .3);
}

.pkg-svg-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    transition: transform .4s var(--ease-spring);
}

.pkg-card:hover .pkg-svg-wrap {
    transform: scale(1.12) translateY(-4px);
}

.pkg-svg-wrap svg {
    width: 100%;
    height: 100%;
}

.pkg-name {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.pkg-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.pkg-sz {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--accent-tint);
    border: 1px solid var(--green-border);
    color: var(--accent);
}

/* Cert footer */
.cap-cert-footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 32px 56px;
}

.cap-cert-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cap-cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--body);
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 100px;
    transition: all .22s;
    cursor: pointer;
}

.cap-cert-badge:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-tint);
}

/* Responsive */
@media(max-width:1100px) {
    .mfg-layout {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .cap-topbar,
    .cap-hero,
    .cap-tabs-inner,
    .cap-body,
    .cap-cert-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .cap-kpi-row {
        grid-template-columns: 1fr 1fr;
    }

    .cap-thead,
    .cap-subhead,
    .cap-row {
        grid-template-columns: 2fr 1fr 1fr 1.6fr;
    }

    .cap-th:nth-child(3),
    .cap-th:nth-child(4),
    .cap-th:nth-child(5),
    .cap-subth:nth-child(3),
    .cap-subth:nth-child(4),
    .cap-subth:nth-child(5),
    .cap-td:nth-child(3),
    .cap-td:nth-child(4),
    .cap-td:nth-child(5) {
        display: none;
    }
}

/* ════════════════════════════════════════════
   TUNNEL HERO UPGRADE — scoped, non-breaking
════════════════════════════════════════════ */

/* Dark hero background */
section.hero {
    background: #020d04 !important;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Hide old hero canvas & mesh */
section.hero .hero-mesh {
    display: none !important;
}

#heroCanvas {
    display: none !important;
}

/* Three.js canvas — fills hero behind everything */
#tunnelCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

/* Vignette darkens edges so text pops */
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 80% at 50% 50%,
            transparent 25%, rgba(2, 13, 4, 0.7) 100%);
}

/* Subtle scanline texture */
.hero-scanlines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.04) 2px,
            rgba(0, 0, 0, 0.04) 4px);
}

/* HUD grid */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(50, 110, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50, 110, 55, 0.03) 1px, transparent 1px);
    background-size: 70px 70px;
}

/* Top chromatic edge */
.hero-chroma {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg,
            transparent,
            rgba(50, 110, 55, 0.8) 35%,
            rgba(191, 226, 196, 0.6) 65%,
            transparent);
}

/* ── 3D Logo Stage ── */
#logo3d-stage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    z-index: 10;
    width: min(580px, 86vw);
    perspective: 1400px;
}

#logo3d-card {
    transform-style: preserve-3d;
    transform: rotateX(5deg) rotateY(0deg);
    transition: transform 0.08s ease-out;
    will-change: transform;
}

/* Glass panel — dark tinted, realistic */
.logo-panel {
    position: relative;
    padding: 28px 36px 20px;
    background: rgba(3, 18, 5, 0.75);
    border: 1px solid rgba(50, 110, 55, 0.25);
    border-radius: 14px;
    backdrop-filter: blur(20px) saturate(1.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(50, 110, 55, 0.08),
        0 0 0 1px rgba(50, 110, 55, 0.08),
        0 25px 60px rgba(0, 0, 0, 0.85),
        0 0 50px rgba(50, 110, 55, 0.06);
}

/* Top gloss line */
.logo-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2) 40%,
            rgba(191, 226, 196, 0.12) 60%,
            transparent);
}

/* Actual logo image — clean, no cartoon effects */
#logo3d-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    /* Clean: just contrast boost + natural shadow below */
    filter: brightness(1.05) contrast(1.04) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
    animation: logoFloat 7s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* HUD corners */
.lp-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.lp-corner::before,
.lp-corner::after {
    content: '';
    position: absolute;
    background: rgba(50, 110, 55, 0.55);
}

.lp-corner::before {
    width: 100%;
    height: 1.5px;
    top: 0;
    left: 0;
}

.lp-corner::after {
    width: 1.5px;
    height: 100%;
    top: 0;
    left: 0;
}

.lp-corner.tl {
    top: -2px;
    left: -2px;
}

.lp-corner.tr {
    top: -2px;
    right: -2px;
    transform: rotate(90deg);
}

.lp-corner.bl {
    bottom: -2px;
    left: -2px;
    transform: rotate(-90deg);
}

.lp-corner.br {
    bottom: -2px;
    right: -2px;
    transform: rotate(180deg);
}

/* Scan line */
.lp-scan {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    overflow: hidden;
    pointer-events: none;
}

.lp-scan::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(180deg,
            transparent,
            rgba(50, 110, 55, 0.04) 50%,
            transparent);
    top: -35%;
    animation: lpScan 5s ease-in-out infinite;
}

@keyframes lpScan {
    0% {
        top: -35%;
    }

    100% {
        top: 135%;
    }
}

/* HUD status bar below logo */
.lp-hud {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(50, 110, 55, 0.12);
}

.lp-tag {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(50, 110, 55, 0.5);
}

.lp-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.12em;
    color: rgba(50, 110, 55, 0.65);
}

.lp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #308636;
    box-shadow: 0 0 6px rgba(48, 134, 54, 0.8);
    animation: livePulse 1.4s ease-in-out infinite;
}

/* ── Existing hero-body recoloured for dark ── */
section.hero .hero-body {
    position: relative;
    z-index: 20;
}

section.hero .h-eyebrow {
    color: rgba(255, 255, 255, 0.45) !important;
}

section.hero .h-eyebrow::before {
    background: rgba(255, 255, 255, 0.3) !important;
}

section.hero .hero-title {
    color: #ffffff !important;
}

section.hero .hero-title em {
    color: #25BA30 !important;
    -webkit-text-fill-color: #25BA30 !important;
}

section.hero .hero-sub {
    color: rgba(255, 255, 255, 0.55) !important;
}

section.hero .btn-secondary {
    color: rgba(255, 255, 255, 0.75) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

section.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
}

section.hero .hero-card {
    background: rgba(2, 14, 4, 0.78) !important;
    border-color: rgba(50, 110, 55, 0.2) !important;
    backdrop-filter: blur(28px) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 25px 70px rgba(0, 0, 0, 0.7) !important;
}

section.hero .hc-label {
    color: rgba(255, 255, 255, 0.4) !important;
}

section.hero .hc-stat {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.07) !important;
}

section.hero .hc-stat-n {
    color: #fff !important;
}

section.hero .hc-stat-l {
    color: rgba(255, 255, 255, 0.38) !important;
}

section.hero .hc-badge {
    background: rgba(50, 110, 55, 0.09) !important;
    border-color: rgba(50, 110, 55, 0.22) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

section.hero .hc-badge:hover {
    background: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}

section.hero .hc-prog-label {
    color: rgba(255, 255, 255, 0.4) !important;
}

section.hero .hc-prog-label strong {
    color: #fff !important;
}

section.hero .hc-prog-bar {
    background: rgba(255, 255, 255, 0.07) !important;
}

section.hero .float-badge {
    background: rgba(2, 14, 4, 0.88) !important;
    border-color: rgba(50, 110, 55, 0.25) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5) !important;
}

section.hero .h-scroll {
    color: rgba(255, 255, 255, 0.3) !important;
}

section.hero .scroll-line {
    background: linear-gradient(180deg, rgba(50, 110, 55, 0.6), transparent) !important;
}


/* HUD metrics — 4 corners of the hero */
.hud-m {
    position: absolute;
    z-index: 15;
    pointer-events: none;
    font-family: 'DM Mono', monospace;
}

.hud-m-val {
    font-size: 22px;
    color: rgba(50, 110, 55, 0.8);
    line-height: 1;
    font-weight: 400;
}

.hud-m-val span {
    font-size: 12px;
}

.hud-m-label {
    font-size: 7.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(50, 110, 55, 0.35);
    margin-top: 4px;
}

.hud-m-line {
    width: 28px;
    height: 1px;
    background: rgba(50, 110, 55, 0.2);
    margin-top: 4px;
}

.hud-m.tl {
    top: 22%;
    left: 3%;
}

.hud-m.tr {
    top: 22%;
    right: 3%;
    text-align: right;
}

.hud-m.tr .hud-m-line {
    margin-left: auto;
}

.hud-m.bl {
    bottom: 30%;
    left: 3%;
}

.hud-m.br {
    bottom: 30%;
    right: 3%;
    text-align: right;
}

.hud-m.br .hud-m-line {
    margin-left: auto;
}

/* Glow separator below hero */
.hero-glow-sep {
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(50, 110, 55, 0.45) 25%,
            rgba(48, 134, 54, 0.6) 50%,
            rgba(50, 110, 55, 0.45) 75%,
            transparent);
    position: relative;
    z-index: 5;
}

.hero-glow-sep::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(50, 110, 55, 0.25), transparent 70%);
    filter: blur(5px);
}

@media (max-width: 900px) {

    .hud-m.tr,
    .hud-m.br {
        display: none;
    }

    #logo3d-stage {
        width: 84vw;
        transform: translate(-50%, -54%);
    }
}

@media (max-width: 600px) {
    .hud-m {
        display: none;
    }

    #logo3d-stage {
        width: 90vw;
    }
}

/* ═══════════════════════════════ ABOUT PAGE ═══════════════════════════════ */
#aboutPage {
    position: fixed;
    inset: 0;
    z-index: 580;
    background: #f8f7f4;
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#aboutPage.open {
    transform: translateX(0);
}

/* Topbar */
.about-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    background: rgba(248, 247, 244, .95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.about-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    letter-spacing: .04em;
    padding: 8px 0;
    transition: color .2s;
}

.about-back-btn:hover {
    color: #111;
}

.about-back-arrow {
    font-size: 16px;
}

.about-topbar-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #111;
}

.about-topbar-cta {
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    transition: background .2s;
}

.about-topbar-cta:hover {
    background: #333;
}

/* Hero */
.about-hero {
    width: 100%;
    position: relative;
}

.about-hero-img-wrap {
    position: relative;
    width: 100%;
    height: 72vh;
    min-height: 480px;
    overflow: hidden;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .55) 60%, rgba(0, 0, 0, .80) 100%);
}

.about-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 64px 80px 72px;
    color: #fff;
}

.about-hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 20px;
}

.about-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 400;
    line-height: 1.02;
    color: #fff;
    margin: 0 0 20px;
}

.about-hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .65);
    font-weight: 400;
    max-width: 480px;
    line-height: 1.6;
    margin: 0;
}

/* About — Logo-centered hero (Figma update) */
.about-hero--logo {
    background: var(--bg);
    padding: 80px 40px 60px;
    text-align: center;
}

.about-logo-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.about-logo-big {
    display: block;
    margin: 0 auto 32px;
    max-width: 280px;
    height: auto;
}

.about-logo-company {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    letter-spacing: .06em;
    color: var(--ink);
    margin: 0 0 8px;
    padding: 12px 24px;
    display: inline-block;
    border: 3px solid var(--accent);
    border-radius: 4px;
}

.about-logo-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--body);
    max-width: 620px;
    margin: 24px auto 0;
}

/* Body */
.about-body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 80px 120px;
}

.about-section {
    margin-bottom: 96px;
}

.about-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

/* Story */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
}

.about-story-h {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #111;
    margin: 0 0 24px;
    line-height: 1.02;
}

.about-story-p {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 18px;
}

.about-stats-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
}

.about-stat-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    transition: transform .2s, box-shadow .2s;
}

.about-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

.about-stat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #111;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-l {
    font-size: 11px;
    color: #888;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.3;
}

/* Management */
.about-mgmt-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 46px;
    font-weight: 400;
    color: #111;
    margin: 0 0 12px;
    line-height: 1.02;
}

.about-mgmt-sub {
    font-size: 15px;
    color: #777;
    margin: 0 0 48px;
}

.about-mgmt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.about-mgmt-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
    transition: box-shadow .2s, transform .2s;
}

.about-mgmt-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.about-mgmt-avatar {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: linear-gradient(135deg, #111, #444);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-mgmt-initials {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #fff;
}

.about-mgmt-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.about-mgmt-role {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    letter-spacing: .05em;
    margin-bottom: 14px;
}

.about-mgmt-bio {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* Management Description Area */
.about-mgmt-desc-area {
    background: #111;
    border-radius: 16px;
    padding: 48px 56px;
    margin-top: 0;
}

.about-mgmt-quote {
    margin: 20px 0 0;
    padding: 16px 20px 16px 24px;
    border-left: 3px solid var(--accent);
    background: var(--bg-alt);
    border-radius: 0 10px 10px 0;
    position: relative;
}

.about-mgmt-quote-icon {
    color: var(--accent);
    opacity: .35;
    position: absolute;
    top: 12px;
    right: 14px;
    width: 22px;
    height: 22px;
}

.about-mgmt-quote p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.about-mgmt-quote strong {
    color: var(--accent);
    font-style: normal;
}

.about-mgmt-quote em {
    font-style: normal;
    font-weight: 700;
    color: var(--text);
}

.about-mgmt-desc-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 20px;
}

.about-mgmt-desc-content p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
    margin: 0 0 16px;
}

.about-mgmt-desc-content p:last-child {
    margin: 0;
}

.about-mgmt-desc-content strong {
    color: #fff;
}

/* Values */
.about-values-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 46px;
    font-weight: 400;
    color: #111;
    margin: 0 0 48px;
    line-height: 1.02;
}

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

.about-value-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    transition: transform .2s, box-shadow .2s;
}

.about-value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .08);
}

.about-value-icon {
    font-size: 32px;
    margin-bottom: 18px;
}

.about-value-name {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.about-value-desc {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

@media(max-width:900px) {
    .about-topbar {
        padding: 0 24px;
    }

    .about-hero-content {
        padding: 40px 28px 56px;
    }

    .about-body {
        padding: 48px 24px 80px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-mgmt-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-mgmt-desc-area {
        padding: 32px 28px;
    }
}

@media(max-width:480px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-img-wrap {
        min-height: 320px;
    }
}


.about-story-img-wrap {
    width: 100%;
    margin-bottom: 80px;
    border-radius: 12px;
    overflow: hidden;
}

.about-story-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ── ABOUT GLOBE STAT CARD ── */
.about-stat-globe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: linear-gradient(135deg, #0a1628, #0d2240) !important;
    border-color: rgba(79, 195, 247, 0.2) !important;
    min-height: 220px;
}

.about-globe-wrap {
    width: 160px;
    height: 160px;
    position: relative;
    margin: 0 auto;
}

.about-globe-wrap canvas {
    display: block;
    width: 160px !important;
    height: 160px !important;
}

.about-stat-globe .about-stat-l {
    color: #7dd3fc !important;
    font-size: 12px;
    letter-spacing: .12em;
    margin-top: 10px;
}

/* Match all stat cards to globe size */
.about-stat-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ── REACH PAGE ── */
#reachPage {
    position: fixed;
    inset: 0;
    z-index: 580;
    background: #080f1a;
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#reachPage.open {
    transform: translateX(0);
}

.reach-video-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
}

.reach-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 12, 26, 0.88) 0%, rgba(5, 20, 40, 0.75) 50%, rgba(5, 12, 26, 0.92) 100%);
    z-index: 1;
    pointer-events: none;
}

.reach-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    background: rgba(5, 12, 26, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reach-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, 0.7);
    transition: color .2s;
    padding: 0;
}

.reach-back-btn:hover {
    color: #fff;
}

.reach-topbar-title {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.reach-topbar-cta {
    background: #326E37;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.reach-topbar-cta:hover {
    background: #171917;
}

.reach-body {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 56px 120px;
    color: #fff;
}

.reach-hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #25BA30;
    margin-bottom: 16px;
}

.reach-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 400;
    line-height: 1.02;
    color: #fff;
    margin: 0 0 24px;
}

.reach-hero-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #25BA30;
}

.reach-hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 0 56px;
}

.reach-stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.reach-stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.reach-stat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #25BA30;
    line-height: 1;
    margin-bottom: 8px;
}

.reach-stat-l {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reach-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.reach-region-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: background .25s, transform .25s, border-color .25s;
    backdrop-filter: blur(8px);
}

.reach-region-card:hover {
    background: rgba(37, 186, 48, 0.1);
    border-color: rgba(37, 186, 48, 0.3);
    transform: translateY(-4px);
}

.reach-rc-flag {
    font-size: 32px;
    margin-bottom: 14px;
}

.reach-rc-name {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.reach-rc-detail {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.reach-rc-tag {
    display: inline-block;
    margin-top: 12px;
    background: rgba(50, 110, 55, 0.12);
    color: var(--accent-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.reach-section-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #25BA30;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reach-section-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: #25BA30;
}

.reach-section-h {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 40px;
}

.reach-region-continent {
    background: rgba(37, 186, 48, 0.08) !important;
    border-color: rgba(37, 186, 48, 0.25) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1/-1;
    padding: 18px 28px;
    min-height: auto;
}

.reach-rc-continent-label {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #25BA30;
    letter-spacing: .06em;
    text-transform: uppercase;
}


/* Section nav, mouse trail, toast notifications removed */

/* ── SPOTLIGHT EXPAND PANEL ── */
#spotPanel {
    position: fixed;
    inset: 0;
    z-index: 700;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#spotPanel.open {
    opacity: 1;
    pointer-events: auto;
}

.spot-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    width: min(720px, 90vw);
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    transform: scale(.92) translateY(20px);
    transition: transform .45s var(--ease-out-expo);
    position: relative;
}

#spotPanel.open .spot-card {
    transform: scale(1) translateY(0);
}

.spot-header {
    padding: 36px 40px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: sticky;
    top: 0;
    background: var(--card);
    z-index: 1;
    border-radius: 28px 28px 0 0;
}

.spot-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.spot-htext {
    flex: 1;
}

.spot-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    line-height: 1;
    color: var(--ink);
}

.spot-sub {
    font-size: 14px;
    color: var(--body);
    margin-top: 6px;
    line-height: 1.6;
}

.spot-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--muted);
    transition: all .2s;
    flex-shrink: 0;
}

.spot-close:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.spot-body {
    padding: 32px 40px 40px;
}

.spot-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.spot-feature-row:last-child {
    border-bottom: none;
}

.spot-f-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-tint);
    border: 1px solid var(--green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.spot-f-title {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.spot-f-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--body);
}

.spot-cta-row {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

/* ── HORIZONTAL SCROLL PROGRESS ── */
.hsect-wrap {
    position: relative;
}

.hsect-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    z-index: 10;
}

.hsect-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width .1s linear;
}

/* ── COUNTER ANIMATION ── */
.count-animated {
    transition: color .3s;
}

/* ── MARQUEE PAUSE ON HOVER ── */
.ticker-track {
    animation-play-state: running;
}

.ticker-band:hover .ticker-track {
    animation-play-state: paused;
}

/* ── SECTION HIGHLIGHT PULSE ── */
.section-highlight {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 4px;
    animation: hlPulse .6s ease-out both;
}

@keyframes hlPulse {
    0% {
        outline-offset: 0px;
        outline-color: rgba(50, 110, 55, 1);
    }

    100% {
        outline-offset: 4px;
        outline-color: rgba(50, 110, 55, 0);
    }
}

/* Live activity badge removed */

/* ── PARALLAX SECTIONS ── */
.parallax-bg {
    will-change: transform;
}

/* ── EXPAND ACCORDION for tiles ── */
.tile-expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease-out-expo), opacity .35s;
    opacity: 0;
}

.tile.expanded .tile-expanded-content {
    max-height: 300px;
    opacity: 1;
}

.tile.expanded .tile-icon {
    transform: scale(1.15) rotate(-8deg);
}

.tile-expand-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 14px;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1.5px solid var(--green-border);
    background: var(--accent-tint);
    cursor: pointer;
    transition: all .25s;
}

.tile-expand-toggle:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.toggle-arrow {
    transition: transform .35s var(--ease-out-expo);
    display: inline-block;
}

.tile.expanded .toggle-arrow {
    transform: rotate(180deg);
}

.expanded-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    font-size: 12px;
    color: var(--body);
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
}

.expanded-detail-row:last-child {
    border-bottom: none;
}

.expanded-detail-row::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── SHOPIFY-STYLE SCROLL NAV INDICATOR ── */
.nav-section-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 6px;
    animation: livePulse 2s ease-in-out infinite;
    vertical-align: middle;
}

/* Ambient glow removed */

/* ── FEATURE COUNTER PILLS ── */
.feature-count-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.feature-count-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--ink);
    transition: all .3s var(--ease-spring);
    cursor: pointer;
}

.feature-count-pill:hover {
    background: var(--accent-tint);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.feature-count-pill small {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: -2px;
}


/* ══ CAREERS PAGE ══ */
#careersPage {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--bg);
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform .7s cubic-bezier(0.16, 1, 0.3, 1);
}

#careersPage.open {
    transform: translateY(0);
}

/* Video bg for careers hero */
.careers-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.careers-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .18;
}

.careers-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.3) 60%, var(--bg) 100%);
    z-index: 1;
}

/* Topbar */
.careers-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 56px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.careers-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--body);
    background: none;
    border: 1.5px solid var(--border);
    padding: 9px 20px;
    border-radius: 100px;
    cursor: pointer;
    transition: all .25s;
}

.careers-back-btn:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.careers-topbar-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
}

.careers-topbar-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: transform .2s, box-shadow .3s;
}

.careers-topbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(50, 110, 55, .35);
}

/* Hero */
.careers-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: #0d1a0f;
    overflow: hidden;
    padding: 140px 56px 100px;
}

.careers-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.careers-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #25BA30;
    margin-bottom: 28px;
}

.careers-eyebrow::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: #25BA30;
}

.careers-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 110px);
    line-height: .92;
    letter-spacing: .01em;
    color: #fff;
    margin-bottom: 24px;
}

.careers-hero-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #25BA30;
    -webkit-text-fill-color: #25BA30;
}

.careers-hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .7);
    max-width: 560px;
    margin-bottom: 44px;
}

.careers-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.careers-btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .3s;
}

.careers-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(50, 110, 55, .4);
}

.careers-btn-outline {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .35);
    padding: 15px 36px;
    border-radius: 100px;
    cursor: pointer;
    transition: all .25s;
}

.careers-btn-outline:hover {
    background: #fff;
    color: var(--ink);
}

/* Stats strip */
.careers-stats-strip {
    background: var(--accent-tint);
    border-top: 1px solid var(--green-border);
    border-bottom: 1px solid var(--green-border);
    padding: 36px 56px;
}

.careers-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.careers-stat-item {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid var(--green-border);
}

.careers-stat-item:last-child {
    border-right: none;
}

.careers-stat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
    color: var(--accent);
}

.careers-stat-l {
    font-size: 12px;
    font-weight: 600;
    color: var(--body);
    margin-top: 4px;
    letter-spacing: .05em;
}

/* Body */
.careers-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 56px 120px;
}

/* Section header */
.careers-sec-tag {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.careers-sec-tag::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--accent);
}

.careers-sec-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    color: var(--ink);
    margin-bottom: 16px;
}

.careers-sec-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
}

.careers-sec-sub {
    font-size: 16px;
    color: var(--body);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 60px;
}

/* Growth grid */
.careers-growth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

/* Values grid */
.careers-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

.careers-value-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}

.careers-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.careers-value-card:hover::before {
    transform: scaleX(1);
}

.careers-value-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 48px rgba(50, 110, 55, .1);
    transform: translateY(-6px);
}

.careers-value-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.careers-value-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.careers-value-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
}

/* Jobs section */
.careers-jobs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.careers-filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.careers-jobs-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 80px;
}


.careers-job-left {
    flex: 1;
}

.careers-job-dept {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.careers-job-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.careers-job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.careers-job-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--bg-alt);
    color: var(--body);
    border: 1px solid var(--border);
}

.careers-job-tag.remote {
    background: var(--accent-tint);
    color: var(--accent);
    border-color: var(--green-border);
}

.careers-apply-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .25s, transform .2s;
}

.careers-apply-btn:hover {
    background: var(--accent);
    transform: scale(1.04);
}

/* CTA band */
.careers-cta-band {
    background: linear-gradient(135deg, #0d1a0f 0%, #326E37 100%);
    border-radius: 28px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.careers-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(48, 134, 54, .15), transparent);
}

.careers-cta-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #25BA30;
    margin-bottom: 20px;
}

.careers-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 84px);
    line-height: .95;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.careers-cta-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #25BA30;
}

.careers-cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

@media(max-width:900px) {
    .careers-topbar {
        padding: 0 24px;
    }

    .careers-hero {
        padding: 120px 28px 60px;
        min-height: auto;
    }

    .careers-body {
        padding: 48px 24px 80px;
    }

    .careers-growth-grid {
        grid-template-columns: 1fr;
    }

    .careers-values-grid {
        grid-template-columns: 1fr;
    }

    .careers-stats-strip {
        padding: 24px 24px;
    }

    .careers-stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .careers-stat-item {
        padding: 12px 16px;
        border-right: none;
        border-bottom: 1px solid var(--green-border);
    }

    .careers-stat-item:nth-child(odd) {
        border-right: 1px solid var(--green-border);
    }

    .careers-stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .careers-cta-band {
        padding: 48px 28px;
        border-radius: 16px;
    }
}

@media(max-width:480px) {
    .careers-hero-title {
        font-size: 42px;
    }

    .careers-stats-inner {
        grid-template-columns: 1fr;
    }

    .careers-stat-item {
        border-right: none !important;
    }
}

/* ══ CV PAGE OVERLAY ══ */
#cvPage {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--bg);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .7s cubic-bezier(0.16, 1, 0.3, 1);
}

#cvPage.open {
    transform: translateX(0);
}

.cv-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.cv-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    cursor: auto;
    padding: 8px 0;
    transition: color .2s;
}

.cv-back-btn:hover {
    color: var(--accent);
}

.cv-topbar-title {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: .04em;
}

.cv-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: calc(100vh - 64px);
}

/* LEFT PANEL */
.cv-left {
    background: linear-gradient(160deg, #0a1a0c 0%, #326E37 100%);
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
}

.cv-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 500px 500px at 20% 80%, rgba(48, 134, 54, .18), transparent);
    pointer-events: none;
}

.cv-left-inner {
    position: relative;
    z-index: 1;
}

.cv-left-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #25BA30;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cv-left-eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: #25BA30;
    display: block;
}

.cv-left-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 4vw, 62px);
    line-height: .95;
    color: #fff;
    margin-bottom: 24px;
}

.cv-left-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #25BA30;
}

.cv-left-sub {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 48px;
    max-width: 320px;
}

.cv-process {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 48px;
}

.cv-process-step {
    display: flex;
    gap: 20px;
    position: relative;
}

.cv-process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 36px;
    bottom: -12px;
    width: 1px;
    background: rgba(37, 186, 48, .25);
}

.cv-process-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(37, 186, 48, .15);
    border: 1.5px solid rgba(37, 186, 48, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: #25BA30;
    flex-shrink: 0;
    margin-top: 2px;
}

.cv-process-content {
    padding-bottom: 28px;
}

.cv-process-label {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.cv-process-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

.cv-left-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.cv-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
}

.cv-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25BA30;
}

/* RIGHT PANEL */
.cv-right {
    background: var(--bg);
    padding: 56px 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cv-form-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cv-form-eyebrow::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--accent);
    display: block;
}

.cv-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1;
    color: var(--ink);
    margin-bottom: 8px;
}

.cv-form-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
}

.cv-form-sub {
    font-size: 15px;
    color: var(--body);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

/* Form layout */
.cv-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 640px;
}

.cv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cv-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.cv-field:last-child {
    margin-bottom: 0;
}

.cv-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cv-label span {
    color: var(--accent);
    margin-left: 2px;
}

.cv-input,
.cv-select,
.cv-textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--ink);
    transition: border-color .3s, box-shadow .3s;
    outline: none;
    width: 100%;
}

.cv-input::placeholder,
.cv-textarea::placeholder {
    color: var(--muted);
}

.cv-input:focus,
.cv-select:focus,
.cv-textarea:focus {
    border-color: var(--accent);
    background: rgba(50, 110, 55, .02);
    box-shadow: 0 0 0 3px rgba(50, 110, 55, .08);
}

.cv-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.cv-textarea {
    min-height: 120px;
    resize: vertical;
}

/* File upload zone */
.cv-upload-zone {
    border: 2px dashed var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    background: var(--bg-alt);
    transition: border-color .3s, background .3s;
    position: relative;
    cursor: auto;
    margin-bottom: 20px;
}

.cv-upload-zone:hover,
.cv-upload-zone.drag-over {
    border-color: var(--accent);
    background: var(--accent-tint);
}

.cv-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.cv-upload-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.cv-upload-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.cv-upload-sub {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.cv-upload-sub strong {
    color: var(--accent);
}

.cv-file-selected {
    display: none;
    align-items: center;
    gap: 12px;
    background: var(--accent-tint);
    border: 1.5px solid var(--green-border);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.cv-file-selected.show {
    display: flex;
}

.cv-file-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.cv-file-info {
    flex: 1;
}

.cv-file-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.cv-file-size {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.cv-file-remove {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--muted);
    cursor: auto;
    padding: 4px;
    transition: color .2s;
}

.cv-file-remove:hover {
    color: #ef4444;
}

/* Checkbox interests */
.cv-check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cv-check-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    font-size: 13px;
    font-weight: 500;
    color: var(--body);
    cursor: auto;
    transition: all .2s;
    user-select: none;
}

.cv-check-item input {
    display: none;
}

.cv-check-item.checked {
    background: var(--accent-tint);
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 600;
}

/* Submit row */
.cv-submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cv-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: auto;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .3s;
}

.cv-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    transform: scale(0);
    border-radius: 100px;
    transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cv-submit-btn:hover::before {
    transform: scale(1);
}

.cv-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(50, 110, 55, .38);
}

.cv-submit-btn:disabled {
    opacity: .6;
    transform: none;
    box-shadow: none;
}

.cv-privacy-note {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 260px;
}

/* Success state */
.cv-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    min-height: 400px;
}

.cv-success.show {
    display: flex;
}

.cv-success-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: successPop .5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cv-success-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 16px;
}

.cv-success-sub {
    font-size: 16px;
    color: var(--body);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 36px;
}

.cv-success-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 12px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--body);
    cursor: auto;
    transition: all .25s;
}

.cv-success-back:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Upload progress bar */
.cv-progress-wrap {
    display: none;
    margin-bottom: 20px;
}

.cv-progress-wrap.show {
    display: block;
}

.cv-progress-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--body);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.cv-progress-bar {
    height: 6px;
    background: var(--bg-deep);
    border-radius: 100px;
    overflow: hidden;
}

.cv-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 100px;
    width: 0%;
    transition: width .4s ease;
}

@media(max-width:900px) {
    .cv-layout {
        grid-template-columns: 1fr;
    }

    .cv-left {
        padding: 48px 32px;
    }

    .cv-right {
        padding: 40px 28px;
    }

    .cv-row {
        grid-template-columns: 1fr;
    }

    .cv-topbar {
        padding: 0 24px;
    }
}


/* ══ CONTACT PAGE OVERLAY ══ */
#contactPage {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--bg);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .7s cubic-bezier(0.16, 1, 0.3, 1);
}

#contactPage.open {
    transform: translateX(0);
}

/* ── Topbar ── */
.cp-topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 56px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.cp-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--body);
    background: none;
    border: 1.5px solid var(--border);
    padding: 9px 20px;
    border-radius: 100px;
    cursor: auto;
    transition: all .25s;
}

.cp-back-btn:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.cp-topbar-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    letter-spacing: .04em;
}

/* ── Two-column layout ── */
.cp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 66px);
}

/* ── Left panel ── */
.cp-left {
    background: linear-gradient(160deg, #171917 0%, #326E37 60%, #308636 100%);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.cp-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 400px at 80% 20%, rgba(48, 134, 54, .15) 0%, transparent 65%),
        radial-gradient(ellipse 400px 500px at 10% 90%, rgba(48, 134, 54, .10) 0%, transparent 60%);
    pointer-events: none;
}

.cp-left-inner {
    position: relative;
    z-index: 1;
}

.cp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #25BA30;
    margin-bottom: 32px;
}

.cp-eyebrow::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: #25BA30;
}

.cp-left-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(54px, 5.5vw, 88px);
    line-height: .92;
    color: #fff;
    margin-bottom: 28px;
}

.cp-left-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #25BA30;
    -webkit-text-fill-color: #25BA30;
}

.cp-left-sub {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
    max-width: 420px;
    margin-bottom: 56px;
}

/* Contact info items */
.cp-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cp-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cp-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(48, 134, 54, .15);
    border: 1px solid rgba(37, 186, 48, .25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cp-info-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #25BA30;
    margin-bottom: 4px;
}

.cp-info-value {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
}

/* Left bottom badges */
.cp-left-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.cp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .8);
}

.cp-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25BA30;
    flex-shrink: 0;
}

/* ── Right panel (form) ── */
.cp-right {
    background: var(--bg);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cp-form-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cp-form-eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--accent);
}

.cp-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 4vw, 60px);
    line-height: 1;
    color: var(--ink);
    margin-bottom: 12px;
}

.cp-form-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
}

.cp-form-sub {
    font-size: 15px;
    color: var(--body);
    line-height: 1.7;
    margin-bottom: 44px;
}

/* Form fields */
.cp-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.cp-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.cp-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.cp-label span {
    color: var(--accent);
    margin-left: 2px;
}

.cp-input,
.cp-select,
.cp-textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    outline: none;
    transition: border-color .25s, box-shadow .25s, background .25s;
    width: 100%;
}

.cp-input::placeholder,
.cp-textarea::placeholder {
    color: var(--muted);
}

.cp-input:focus,
.cp-select:focus,
.cp-textarea:focus {
    border-color: var(--accent);
    background: var(--accent-tint);
    box-shadow: 0 0 0 4px rgba(50, 110, 55, .08);
}

.cp-select {
    appearance: none;
    cursor: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.cp-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Product interest checkboxes */
.cp-check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.cp-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--body);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    cursor: auto;
    transition: all .2s;
    user-select: none;
}

.cp-check-item input[type="checkbox"] {
    display: none;
}

.cp-check-item.checked {
    background: var(--accent-tint);
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 600;
}

.cp-check-item:hover {
    border-color: var(--accent);
}

/* Submit */
.cp-submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.cp-submit-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 44px;
    border-radius: 100px;
    cursor: auto;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cp-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .18);
    transform: scale(0);
    border-radius: 100px;
    transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cp-submit-btn:hover::before {
    transform: scale(1);
}

.cp-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(50, 110, 55, .38);
}

.cp-submit-btn .btn-text {
    position: relative;
    z-index: 1;
}

.cp-privacy-note {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 280px;
}

/* Success state */
.cp-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
    gap: 20px;
}

.cp-success.show {
    display: flex;
}

.cp-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-tint);
    border: 2px solid var(--green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    animation: successPop .5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.cp-success-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--ink);
}

.cp-success-sub {
    font-size: 15px;
    color: var(--body);
    line-height: 1.7;
    max-width: 360px;
}

.cp-success-back {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 100px;
    cursor: auto;
    margin-top: 8px;
    transition: background .25s;
}

.cp-success-back:hover {
    background: var(--accent);
}

/* Responsive */
@media(max-width:900px) {
    .cp-layout {
        grid-template-columns: 1fr;
    }

    .cp-left {
        padding: 60px 28px;
        min-height: auto;
    }

    .cp-right {
        padding: 60px 28px;
    }

    .cp-topbar {
        padding: 16px 24px;
    }

    .cp-row {
        grid-template-columns: 1fr;
    }
}


/* ══ COMPLIANCE PAGE ══ */
#compliancePage {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--bg);
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform .7s cubic-bezier(0.16, 1, 0.3, 1);
}

#compliancePage.open {
    transform: translateY(0);
}

/* Topbar */
.comp-topbar {
    position: sticky;
    top: 0;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 56px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.comp-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--body);
    background: none;
    border: 1.5px solid var(--border);
    padding: 9px 20px;
    border-radius: 100px;
    cursor: auto;
    transition: all .25s;
}

.comp-back-btn:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.comp-topbar-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
}

.comp-topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-tint);
    border: 1px solid var(--green-border);
    padding: 8px 18px;
    border-radius: 100px;
}

.comp-topbar-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* Hero */
.comp-hero {
    position: relative;
    background: linear-gradient(160deg, #171917 0%, #326E37 55%, #308636 100%);
    padding: 120px 56px 100px;
    overflow: hidden;
}

.comp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 500px at 70% 40%, rgba(48, 134, 54, .15) 0%, transparent 65%);
    pointer-events: none;
}

.comp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.comp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #25BA30;
    margin-bottom: 28px;
}

.comp-eyebrow::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: #25BA30;
}

.comp-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(58px, 7vw, 100px);
    line-height: .92;
    color: #fff;
    margin-bottom: 24px;
}

.comp-hero-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #25BA30;
    -webkit-text-fill-color: #25BA30;
}

.comp-hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .68);
    max-width: 540px;
}

/* Hero right stats card */
.comp-hero-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(12px);
}

.comp-hero-card-title {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #25BA30;
    margin-bottom: 20px;
}

.comp-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.comp-hero-stat {
    background: rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 18px 16px;
}

.comp-hero-stat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    line-height: 1;
    color: #fff;
}

.comp-hero-stat-n span {
    color: #25BA30;
}

.comp-hero-stat-l {
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    margin-top: 4px;
    font-weight: 500;
}

.comp-hero-bodies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.comp-body-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(48, 134, 54, .15);
    border: 1px solid rgba(37, 186, 48, .25);
    color: #25BA30;
}

/* ── Body ── */
.comp-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 56px 120px;
}

/* Section header */
.comp-sec-tag {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.comp-sec-tag::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--accent);
}

.comp-sec-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    color: var(--ink);
    margin-bottom: 16px;
}

.comp-sec-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
}

.comp-sec-sub {
    font-size: 16px;
    color: var(--body);
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 60px;
}

/* Importance grid */
.comp-importance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

.comp-imp-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}

.comp-imp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.comp-imp-card:hover::before {
    transform: scaleX(1);
}

.comp-imp-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 48px rgba(50, 110, 55, .1);
    transform: translateY(-6px);
}

.comp-imp-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.comp-imp-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.comp-imp-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
}

/* Regulatory bodies */
.comp-bodies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

.comp-body-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: border-color .3s, box-shadow .3s;
}

.comp-body-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(50, 110, 55, .1);
}

.comp-body-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent-tint);
    border: 1px solid var(--green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.comp-body-name {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.comp-body-abbr {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: .1em;
    margin-bottom: 10px;
}

.comp-body-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
}

/* Components — accordion-style numbered list */
.comp-components {
    margin-bottom: 100px;
}

.comp-component-item {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: border-color .3s;
}

.comp-component-item.open {
    border-color: var(--accent);
}

.comp-component-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    cursor: auto;
    background: var(--bg);
    transition: background .25s;
}

.comp-component-item.open .comp-component-header {
    background: var(--accent-tint);
}

.comp-component-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    line-height: 1;
    color: rgba(0, 0, 0, .08);
    flex-shrink: 0;
    width: 36px;
    transition: color .3s;
}

.comp-component-item.open .comp-component-num {
    color: var(--accent);
}

.comp-component-title {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    flex: 1;
}

.comp-component-arrow {
    font-size: 18px;
    color: var(--muted);
    transition: transform .35s;
}

.comp-component-item.open .comp-component-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.comp-component-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--bg);
}

.comp-component-item.open .comp-component-body {
    max-height: 600px;
}

.comp-component-content {
    padding: 0 28px 28px 84px;
}

.comp-component-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 12px;
}

.comp-component-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comp-component-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--body);
}

.comp-component-content li::before {
    content: '→';
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Challenges */
.comp-challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

.comp-challenge-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    transition: border-color .3s, transform .3s;
}

.comp-challenge-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.comp-challenge-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
    color: rgba(0, 0, 0, .04);
    margin-bottom: 8px;
}

.comp-challenge-title {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.comp-challenge-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--body);
}

/* Strategies */
.comp-strategies {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 100px;
}

.comp-strategy-row {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: border-color .3s, box-shadow .3s;
}

.comp-strategy-row:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 28px rgba(50, 110, 55, .08);
}

.comp-strategy-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent-tint);
    border: 1px solid var(--green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.comp-strategy-title {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.comp-strategy-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--body);
}

/* Global harmonization band */
.comp-global-band {
    background: linear-gradient(135deg, #171917 0%, #326E37 100%);
    border-radius: 28px;
    padding: 72px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.comp-global-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 500px 400px at 80% 50%, rgba(48, 134, 54, .12), transparent);
    pointer-events: none;
}

.comp-global-left {
    position: relative;
    z-index: 1;
}

.comp-global-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #25BA30;
    margin-bottom: 20px;
}

.comp-global-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5vw, 72px);
    line-height: .95;
    color: #fff;
    margin-bottom: 20px;
}

.comp-global-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #25BA30;
}

.comp-global-sub {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
}

.comp-global-right {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comp-global-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 18px 20px;
}

.comp-global-benefit-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.comp-global-benefit-text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .8);
}

.comp-global-benefit-text strong {
    color: #fff;
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}

@media(max-width:900px) {
    .comp-hero-inner {
        grid-template-columns: 1fr;
    }

    .comp-hero-card {
        display: none;
    }

    .comp-importance-grid,
    .comp-challenges-grid {
        grid-template-columns: 1fr;
    }

    .comp-bodies-grid {
        grid-template-columns: 1fr;
    }

    .comp-global-band {
        grid-template-columns: 1fr;
    }

    .comp-body {
        padding: 60px 24px 80px;
    }

    .comp-topbar {
        padding: 16px 24px;
    }

    .comp-hero {
        padding: 100px 24px 70px;
    }

    .comp-component-content {
        padding: 0 20px 24px 20px;
    }
}


/* Contact Form 7 integration styles */
span.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7 form {
    margin: 0;
}

.wpcf7-spinner {
    display: none !important;
}

.wpcf7 input[type="submit"],
.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .3s;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(50, 110, 55, .38);
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0 10px 10px 0;
}

.wpcf7-list-item-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 40px;
    border: 1px solid var(--border);
    font-size: 15px;
    font-weight: 500;
    color: var(--body);
    background: var(--bg);
    cursor: pointer;
    transition: all .22s;
}

.wpcf7-list-item input[type="checkbox"] {
    display: none;
}

.wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Dynamic WP Content Styles */
.wp-dynamic-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 1em;
}

.wp-dynamic-content strong {
    color: var(--body);
}

/* ══════════════════════════════════════════════════
   HOMEPAGE v2 — rebuilt to match Figma "Homepage" frame (node 394:2054)
══════════════════════════════════════════════════ */

/* ── Hero: two-column, image left / content right ── */
.home2-hero {
    padding: 140px 0 0;
    background: var(--bg);
}

.home2-hero-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.home2-hero-media {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    border: none;
}

.home2-hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    aspect-ratio: 4/3;
    transition: transform .6s var(--ease-out-expo);
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.12));
}

.home2-hero-media:hover .home2-hero-img {
    transform: scale(1.02);
}

.home2-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5.5vw, 80px);
    line-height: .98;
    color: var(--ink);
    margin-bottom: 24px;
}

.home2-hero-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: #106E18;
}

.home2-hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 28px;
    font-weight: 400;
}

.home2-hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.home2-hero-bullets li {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--body);
    padding-left: 0;
}

.home2-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
}

.home2-hero-stat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}

.home2-hero-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px var(--shadow-md);
    border-color: var(--accent-vivid);
}

.home2-hero-stat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 3.5vw, 44px);
    line-height: 1;
    color: var(--ink);
}

.home2-hero-stat-n span {
    color: var(--accent);
    font-size: clamp(14px, 1.5vw, 20px);
}

.home2-hero-stat-l {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(12px, 1.1vw, 14px);
    line-height: 1.2;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Certifications strip ── */
.home2-certs {
    background: var(--accent);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.home2-certs-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.home2-certs-scroll {
    display: flex;
    gap: 0;
    animation: certScroll 30s linear infinite;
    white-space: nowrap;
}

.home2-certs:hover .home2-certs-scroll {
    animation-play-state: paused;
}

@keyframes certScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.home2-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .9);
    white-space: nowrap;
    padding: 0 24px;
}

.home2-cert-logo-img {
    height: 24px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: inline-block;
    vertical-align: middle;
}

.home2-cert-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    flex-shrink: 0;
}

.home2-certs-see-more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(48, 134, 54, .92);
    opacity: 0;
    transition: opacity .3s;
    cursor: pointer;
    text-decoration: none;
}

.home2-certs:hover .home2-certs-see-more {
    opacity: 1;
}

.home2-certs-see-more span {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
}

/* ── Section title ("What We Offer" / "Products We Deliver" / "Meet The Team") ── */
.home2-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1;
    color: var(--ink);
    text-align: center;
    margin: 0 auto 48px;
    max-width: 1360px;
    padding: 0 56px;
}

.home2-section-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: #106E18;
}

/* ── What We Offer — zigzag two-column rows ── */
.home2-offer {
    padding: var(--section-pad-sm) 0;
    background: var(--bg-alt);
}

.home2-offer-row {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.home2-offer-row--reverse {
    direction: rtl;
}

.home2-offer-row--reverse>* {
    direction: ltr;
}

.home2-offer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 8px;
}

.home2-offer-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: #106E18;
}

.home2-offer-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 20px;
}

.home2-offer-sub em {
    font-style: italic;
    color: var(--body);
}

.home2-offer-stats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.home2-offer-stats li {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--body);
}

.home2-offer-stats strong {
    color: var(--ink);
}

.home2-offer-stats strong span {
    color: var(--accent);
}

.home2-offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #106E18 !important;
    color: #ffffff !important;
    border: 1.5px solid #106E18 !important;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(16, 110, 24, 0.2);
    transition: transform .3s var(--ease-spring), box-shadow .3s, background .3s, color .3s;
}

.home2-offer-btn:hover {
    background: #0D5813 !important;
    border-color: #0D5813 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16, 110, 24, 0.35);
}

.home2-offer-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow), 0 24px 64px var(--shadow-md);
    transition: box-shadow .3s;
}

.home2-offer-media:hover {
    box-shadow: 0 8px 24px var(--shadow-md), 0 32px 80px var(--shadow-lg);
}

.home2-offer-media--map {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    border: none !important;
}

.home2-offer-media--map:hover {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.home2-offer-media--map img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.10));
}

.home2-offer-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    border-radius: 24px;
    background: #000;
}

/* ── Ready to Begin CTA banner ── */
.home2-cta {
    background: var(--accent);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.home2-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 700px 400px at 15% 50%, rgba(255, 255, 255, .10), transparent 70%);
}

.home2-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.home2-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 3.5vw, 44px);
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.home2-cta-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
}

.home2-cta-sub strong {
    color: #fff;
}

.home2-cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.home2-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    border: 1.5px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform .3s var(--ease-spring), box-shadow .3s, background .3s, color .3s, border-color .3s;
}

.home2-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.home2-cta-btn--solid {
    background: #fff;
    color: var(--accent);
}

.home2-cta-btn--solid:hover {
    background: var(--ink);
    color: #fff;
}

.home2-cta-btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

.home2-cta-btn--ghost:hover {
    background: #fff;
    border-color: #fff;
    color: var(--accent);
}

/* ── Products We Deliver ── */
.home2-products {
    padding: var(--section-pad-sm) 0;
    background: var(--bg);
}

.home2-products-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
}

.home2-products-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.home2-products-lines {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.home2-products-lines li {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--body);
}

.home2-products-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow), 0 24px 64px var(--shadow-md);
    transition: box-shadow .3s;
}

.home2-products-media:hover {
    box-shadow: 0 8px 24px var(--shadow-md), 0 32px 80px var(--shadow-lg);
}

.home2-products-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 360px;
    transition: transform .6s var(--ease-out-expo);
}

.home2-products-media:hover img {
    transform: scale(1.03);
}

/* ── Meet The Team ── */
.home2-team {
    padding: var(--section-pad-sm) 0;
    background: var(--bg-alt);
}

.home2-team-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.home2-team-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow), 0 24px 64px var(--shadow-md);
    transition: box-shadow .3s;
}

.home2-team-media:hover {
    box-shadow: 0 8px 24px var(--shadow-md), 0 32px 80px var(--shadow-lg);
}

.home2-team-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    transition: transform .6s var(--ease-out-expo);
}

.home2-team-media:hover img {
    transform: scale(1.03);
}

.home2-team-mission-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.home2-team-mission-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    color: var(--accent);
    line-height: 1.3;
    margin-bottom: 16px;
}

.home2-team-mission-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: 24px;
}

/* ── Homepage v2 responsive ── */
@media(max-width:1100px) {

    .home2-hero-inner,
    .home2-offer-row,
    .home2-products-inner,
    .home2-team-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .home2-offer-row--reverse {
        direction: ltr;
    }

    .home2-hero-media {
        order: -1;
    }

    .home2-offer-row--reverse .home2-offer-media {
        order: -1;
    }

    .home2-products-media img {
        min-height: 280px;
    }
}

@media(max-width:768px) {
    .home2-hero {
        padding-top: 100px;
    }

    .home2-hero-inner,
    .home2-offer-row,
    .home2-cta-inner,
    .home2-products-inner,
    .home2-team-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .home2-section-title {
        padding-left: 24px;
        padding-right: 24px;
        margin-bottom: 32px;
    }

    .home2-certs-title {
        font-size: 12px;
        margin-bottom: 8px;
    }

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

    .home2-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width:480px) {
    .home2-hero-title {
        font-size: 38px;
    }
}

/* ══════════════════════════════════════════════════
   MANUFACTURING PAGE v2 — page-capabilities.php
   (reuses .home2-hero / .home2-certs / .home2-cta / .dosage-row / .pkg-grid)
══════════════════════════════════════════════════ */
.cap-certs-title {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px, 2.6vw, 32px);
    color: #fff;
    margin: 0 auto 16px;
    max-width: 1360px;
}

.cap-sub-title {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--ink);
    margin: 0 auto 40px;
    max-width: 1360px;
    padding: 0 56px;
}

/* Delivering Life-Saving Medicine */
.cap-mission {
    padding: var(--section-pad-sm) 0;
    background: var(--bg);
}

.cap-mission-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.cap-mission-media {
    border-radius: 24px;
    overflow: hidden;
    max-height: 280px;
}

.cap-mission-media img,
.cap-mission-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 280px;
}

.cap-mission-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 24px;
	margin-right: 32px;
}

.cap-mission-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 20px;
}

.cap-mission-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: #106E18;
}

/* Dosage Formats */
.cap-dosage {
    padding: 64px 0;
    background: var(--bg-alt);
}

.cap-dosage-row {
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* KSPs Section */
.cap-ksps {
    padding: var(--section-pad-sm) 0;
    background: var(--bg);
}

.cap-ksp-grid--3col {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 0px;
    align-items: stretch;
}

.cap-ksp-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cap-ksp-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
    flex: 1;
}

.cap-ksp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px var(--shadow-md);
    border-color: var(--accent-vivid);
}

/* Tighten the gap between this section's heading and its cards.
   .home2-section-title is shared globally — scope, don't edit the original. */
.cap-ksps .home2-section-title {
    margin-bottom: 16px;
}

.cap-ksp-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.25;
}

.cap-ksp-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-style: italic;
    color: var(--body);
    margin: 0 0 12px;
}

.cap-ksp-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cap-ksp-points li {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--body);
    padding-left: 16px;
    position: relative;
}

.cap-ksp-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Card CTA — override the global button sizing, which is too large for a card */
.cap-ksp-card .home2-offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 8px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .01em;
}

.cap-ksp-image {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cap-ksp-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    display: block;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.06));
}

/* Packaging */
.cap-packaging {
    max-width: 1360px;
    margin: 0 auto;
    padding: var(--section-pad-sm) 56px;
}

/* Numbered process steps */
.cap-steps {
    padding: 56px 0;
    background: var(--bg-alt);
}

.cap-steps-row {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    align-items: center;
}

.cap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cap-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    background: var(--card);
    border: 1.5px solid var(--accent);
    color: var(--accent);
}

.cap-step-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--body);
    white-space: nowrap;
}

.cap-step-line {
    flex: 1;
    height: 1.5px;
    background: var(--border);
    margin: 0 8px 24px;
}

@media(max-width:1100px) {
    .cap-mission-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cap-ksp-grid--3col {
        grid-template-columns: 1fr;
    }

    .cap-ksp-col {
        gap: 16px;
    }

    .cap-ksp-image {
        min-height: 240px;
    }
}

@media(max-width:768px) {

    .cap-sub-title,
    .cap-dosage-row {
        padding-left: 24px;
        padding-right: 24px;
    }

    .cap-mission-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .cap-ksp-grid--3col {
        padding-left: 24px;
        padding-right: 24px;
    }

    .cap-packaging {
        padding-left: 24px;
        padding-right: 24px;
    }

    .cap-steps-row {
        padding-left: 24px;
        padding-right: 24px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 0;
    }

    .cap-step-line {
        display: none;
    }

    .cap-step {
        min-width: 33.3%;
    }
}

/* ══════════════════════════════════════════════════
   GLOBAL SUPPLY PAGE
══════════════════════════════════════════════════ */
.gs-maps {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px var(--section-pad-sm);
}

.gs-map-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 0;
}

.gs-map-tab {
    padding: 14px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
}

.gs-map-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.gs-map-window {
    background: var(--bg-alt);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    min-height: 480px;
    position: relative;
}

.gs-map-frame {
    width: 100%;
    height: 480px;
    border: none;
    display: none;
}

.gs-map-frame.active {
    display: block;
}

.gs-map-placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--muted);
    text-align: center;
    padding: 40px;
    height: 480px;
}

.gs-map-placeholder.active {
    display: flex;
}

.gs-pillars {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px var(--section-pad-sm);
}

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

.gs-pillar-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: border-color .25s, box-shadow .25s;
}

.gs-pillar-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px var(--shadow);
}

.gs-pillar-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.gs-pillar-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.gs-pillar-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
}

.gs-markets {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px var(--section-pad-sm);
}

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

.gs-market-card {
    background: var(--accent);
    border-radius: 16px;
    padding: 28px 24px;
}

.gs-market-region {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 12px;
}

.gs-market-countries {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
}

@media(max-width:1100px) {

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

@media(max-width:768px) {

    .gs-maps,
    .gs-pillars,
    .gs-markets {
        padding-left: 24px;
        padding-right: 24px;
    }

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

    .gs-map-tab {
        padding: 10px 16px;
        font-size: 13px;
    }

    .gs-map-window,
    .gs-map-frame,
    .gs-map-placeholder {
        min-height: 320px;
        height: 320px;
    }
}

@media(max-width:480px) {

    .gs-pillars-grid,
    .gs-markets-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════
   PRODUCTS / BULK APIs hero image — matches the "Hero Image"
   slot shown in Figma's Product List / API List frames
══════════════════════════════════════════════════ */
.inter-hero-text-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inter-hero-media {
    width: 280px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--shadow), 0 24px 64px var(--shadow-md);
}

.inter-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inter-hero-media--transparent {
    width: auto;
    max-width: 520px;
    height: 360px;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.inter-hero-media--transparent img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.12));
}

.inter-hero-band--full-bg {
    position: relative;
    overflow: hidden;
    padding: 90px 56px;
    min-height: 440px;
}

.inter-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.inter-hero-bg-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
    display: block;
}

.inter-hero-band--full-bg .inter-hero-inner {
    position: relative;
    z-index: 2;
    display: block;
}

.inter-hero-band--full-bg .inter-hero-text-col {
    max-width: 640px;
    position: relative;
    z-index: 2;
}

/* ══════════════════════════════════════════════════
   FACILITY SHOWCASE SLIDER (What We Offer section)
══════════════════════════════════════════════════ */
.home2-offer-media--slider {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow), 0 24px 64px var(--shadow-md);
}

.facility-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.facility-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease-in-out;
    pointer-events: none;
}

.facility-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.facility-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.facility-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.facility-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .3s ease;
}

.facility-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 12px;
}

.facility-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    border: none;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background .3s;
}

.facility-slider-btn:hover {
    background: rgba(16, 110, 24, .9);
}

.facility-slider-prev {
    left: 12px;
}

.facility-slider-next {
    right: 12px;
}

@media(max-width:1100px) {
    .inter-hero-inner {
        grid-template-columns: 1fr;
    }

    .inter-hero-media {
        width: 100%;
        height: 220px;
    }

    .inter-hero-media--transparent {
        width: 100%;
        max-width: 100%;
        height: 260px;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════════════
   ABOUT US — "Our Journey" timeline (page-about.php)
   matches the Figma "About Us" frame's timeline section
══════════════════════════════════════════════════ */
.about-journey-section {
    text-align: center;
}

.about-journey-img-wrap {
    max-width: 820px;
    margin: 32px auto 48px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow), 0 24px 64px var(--shadow-md);
}

.about-journey-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 380px;
}

.about-journey-timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.about-journey-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    width: 110px;
}

.about-journey-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--accent-tint);
}

.about-journey-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--ink);
}

.about-journey-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}

.about-journey-line {
    flex: 1;
    height: 1.5px;
    background: var(--border);
    margin-top: 6px;
}

@media(max-width:768px) {
    .about-journey-timeline {
        flex-wrap: wrap;
        gap: 16px 0;
    }

    .about-journey-line {
        display: none;
    }

    .about-journey-point {
        width: 45%;
    }
}

/* ══════════════════════════════════════════════════
   CONTACT — "Simple Google Map" (page-contact.php)
   matches the map section shown in the Figma "Contact Us" frame
══════════════════════════════════════════════════ */
.cp-map-section {
    max-width: 1360px;
    margin: 0 auto;
    padding: 64px 56px;
}

.cp-map-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3vw, 36px);
    color: var(--ink);
    margin-bottom: 20px;
}

.cp-map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow), 0 24px 64px var(--shadow-md);
}

.cp-map-wrap iframe {
    display: block;
}

@media(max-width:768px) {
    .cp-map-section {
        padding: 48px 24px;
    }
}

/* ══════════════════════════════════════════════════
   CERTIFICATIONS — new page-certifications.php
   matches the badge-grid Figma "Certifications" frame
══════════════════════════════════════════════════ */
.certs-hero {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px;
    text-align: center;
}

.certs-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--body);
    max-width: 640px;
    margin: 16px auto 0;
}

.certs-grid-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 56px var(--section-pad-sm);
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.certs-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}

.certs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px var(--shadow-md);
    border-color: var(--accent-vivid);
}

.certs-card img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.certs-card-icon {
    font-size: 32px;
}

.certs-card-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--body);
}

.certs-card--link {
    text-decoration: none;
    cursor: pointer;
}

.certs-card--link:hover {
    border-color: var(--accent);
}

.certs-card-view {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 4px;
}

.certs-card-pending {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: var(--muted);
    margin-top: 4px;
    font-style: italic;
}

.certs-click-hint {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 24px;
}

@media(max-width:1100px) {
    .certs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {

    .certs-hero,
    .certs-grid-section {
        padding-left: 24px;
        padding-right: 24px;
    }

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

/* ══ CONTACT POPUP ══ */
.contact-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.contact-popup-overlay.open {
    opacity: 1;
    pointer-events: auto;

}

.contact-popup {
    background: var(--bg);
    border-radius: 20px;
    width: min(820px, 95vw);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .3);
    position: relative;
    transform: translateY(24px) scale(.96);
    transition: transform .4s var(--ease-out-expo);
}

.contact-popup-overlay.open .contact-popup {
    transform: translateY(0) scale(1);
}

.contact-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-alt);
    color: var(--ink);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.contact-popup-close:hover {
    background: var(--border);
}

.contact-popup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

/* The Background Gradient & Padding */
.contact-popup-info {
    background: linear-gradient(135deg, #062b10 0%, #165620 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

/* Main Heading */
.contact-popup-info h3 {
    color: #ffffff;
    font-size: 42px;
    line-height: 0.95;
    margin-bottom: 12px;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The word "Conversation" */
.contact-popup-info h3 em {
    font-size: 50px;
    color: #64E776;
    font-family: 'Instrument Serif', serif;
    text-transform: none;
    font-style: italic;
}

/* Paragraph Text */
.contact-popup-info p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 5px;
}

/* Detail Blocks (Spacing) */
.cp-detail-block {
    margin-top: 12px;
}

/* Labels (Call Us, Email Us, etc.) */
.cp-detail-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 700;
	opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* SVG Icon Colors */
.cp-detail-label svg {
    width: 16px;
    height: 16px;
}

.icon-phone { fill: #ef4444; }
.icon-email { fill: #ffffff; }
.icon-whatsapp { fill: #25D366; }
.icon-map { fill: #64E776; }

/* The Clickable Links */
.cp-detail-links a {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    margin-bottom: 0px;
    transition: color 0.3s ease;
    cursor: pointer;
}

/* Address specific styling to prevent it from looking like a giant blue link */
.cp-detail-links a.address-link {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

/* HOVER STATES */
.cp-detail-links a:hover {
    color: #64E776;
}

/* ═══ CONTACT POPUP: RIGHT COLUMN ═══ */
#contactPopup .contact-popup-form {
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
}

#contactPopup .contact-popup-form .cp-form-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 20px;
    opacity: 0.9;
}

#contactPopup .contact-popup-form h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px; /* Matched size to the left h3 */
    line-height: 0.95;
    margin-bottom: 12px;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#contactPopup .contact-popup-form h3 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #1a5e20;
    text-transform: none;
    font-size: 50px; /* Matched size to the left em */
}

/* CF7 Grid Alignment */
#contactPopup .contact-popup-form .cp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    margin-bottom: 0px;
}

/* ─── Contact popup: form field labels ─── */
#contactPopup .contact-popup-form .cp-field,
#contactPopup .contact-popup-form .cp-field-full {
    display: flex;
    flex-direction: column;
}

#contactPopup .contact-popup-form .cp-label {
    display: block;
    margin-bottom: 0px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(61, 61, 61, 0.8);
    line-height: 1.2;
}

#contactPopup .contact-popup-form .cp-label span {
    color: #2FA84F;
}

#contactPopup .contact-popup-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Input Fields & Textareas Styling */
#contactPopup .contact-popup-form .wpcf7 input:not([type="submit"]),
#contactPopup .contact-popup-form .wpcf7 textarea,
#contactPopup .contact-popup-form .wpcf7 select {
    width: 100%;
    background-color: #f7f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #111111;
    outline: none;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

#contactPopup .contact-popup-form .wpcf7 textarea {
    height: 70px;
    resize: none;
}

/* Placeholder Styling */
#contactPopup .contact-popup-form .wpcf7 input::placeholder,
#contactPopup .contact-popup-form .wpcf7 textarea::placeholder {
    color: #94a3b8;
}

/* Focus States */
#contactPopup .contact-popup-form .wpcf7 input:focus,
#contactPopup .contact-popup-form .wpcf7 textarea:focus {
    border-color: #1a5e20;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(26, 94, 32, 0.1);
}

/* Kill CF7 Default Margins */
#contactPopup .contact-popup-form .wpcf7 p {
    margin: 0;
    padding: 0;
}

/* Submit Button Matching Figma */
#contactPopup .contact-popup-form .wpcf7 input[type="submit"],
#contactPopup .contact-popup-form .wpcf7 button[type="submit"] {
    width: auto;
    border: none;
    background: #1a5e20;
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    margin-top: 6px;
    transition: transform 0.2s, background-color 0.3s;
}

#contactPopup .contact-popup-form .wpcf7 input[type="submit"]:hover,
#contactPopup .contact-popup-form .wpcf7 button[type="submit"]:hover {
    transform: translateY(-2px);
    background: #062b10;
}

/* CF7 response message (success/error) styling */
#contactPopup .contact-popup-form .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

/* Success */
#contactPopup .contact-popup-form .wpcf7-mail-sent-ok {
    border: 1.5px solid #1a5e20;
    background: rgba(26, 94, 32, 0.06);
    color: #1a5e20;
}

/* Validation errors / failed send */
#contactPopup .contact-popup-form .wpcf7-validation-errors,
#contactPopup .contact-popup-form .wpcf7-mail-sent-ng {
    border: 1.5px solid #c0392b;
    background: rgba(192, 57, 43, 0.06);
    color: #c0392b;
}

/* Responsive Media Queries */
@media(max-width:480px) {
    #contactPopup .contact-popup-body {
        grid-template-columns: 1fr;
    }
    #contactPopup .contact-popup-form .cp-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ══ GLOBAL SUPPLY LOGISTICAL SUPPORT CARDS (FIGMA 1:1 MATCH) ══ */
.gs-logistics-section {
    padding: 80px 0 100px;
    background: #ffffff;
}

.gs-logistics-header {
    text-align: center;
    margin-bottom: 60px;
}

.gs-logistics-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: #000000;
    text-transform: uppercase;
}

.gs-logistics-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: #106E18;
    text-transform: none;
    position: relative;
    display: inline-block;
}

.gs-logistics-title em::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: #106E18;
    border-radius: 2px;
}

.gs-logistics-layout {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 380px;
    position: relative;
    align-items: center;
}

.gs-logistics-center-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    max-width: 32vw;
    height: auto;
    z-index: 30;
    pointer-events: none;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.16));
}

.gs-logistics-card {
    background: #186F24;
    border-radius: 24px;
    padding: 22px 26px;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
    transition: transform .35s var(--ease-out-expo), box-shadow .35s ease;
}

.gs-logistics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(24, 111, 36, 0.3);
}

.gs-logistics-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.25;
}

.gs-logistics-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gs-logistics-card-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.35;
}

.gs-logistics-card-list li::before {
    content: '✓';
    font-weight: 900;
    font-size: 15px;
    color: #55E169;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .gs-logistics-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 24px;
    }

    .gs-logistics-center-img {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 30px auto;
        display: block;
        width: 280px;
        max-width: 80%;
    }
}

/* ══ UNIFIED BUTTON TYPOGRAPHY & STYLING SYSTEM ══ */
.btn-primary,
.btn-secondary,
.nav-btn,
#navContactBtn,
.home2-cta-btn,
.home2-offer-btn,
.cp-submit-btn,
.inter-inquire-btn,
.prod-pdf-btn,
[data-open-contact],
button[type="submit"],
input[type="submit"],
.wpcf7-submit,
.gs-map-tab {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.3 !important;
    cursor: pointer !important;
}

/* ══ POINTER CURSOR FOR LOGO AND ALL CONTACT BUTTONS ══ */
.logo-wrap,
.logo-wrap *,
.logo-img,
.logo-wordmark,
.nav-btn,
.nav-btn *,
.nav-btn::before,
.nav-btn:hover,
#navContactBtn,
#navContactBtn *,
#navContactBtn::before,
#navContactBtn:hover,
.home2-cta-btn,
.home2-cta-btn *,
.home2-cta-btn:hover,
[data-open-contact],
[data-open-contact] *,
[data-open-contact]:hover {
    cursor: pointer !important;
}