/* ==========================================================================
   AAGAMAA — LUXURY FOOD-TECH & SUSTAINABLE INGREDIENTS DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Brand Color Palette */
    --green-deep: #041B0E;
    --green-dark: #072B17;
    --green-forest: #0D4425;
    --green-emerald: #166534;
    --green-soft: #E8F5E9;
    --green-surface: #F2F8F4;

    /* Luxury Champagne & Gold Accents */
    --gold-primary: #D4AF37;
    --gold-light: #F7E7B4;
    --gold-hover: #BF9B2D;
    --gold-glow: rgba(212, 175, 55, 0.28);

    /* Surfaces & Neutrals */
    --bg-surface: #FAFAF7;
    --bg-surface-alt: #F3F3ED;
    --bg-card: #FFFFFF;
    --text-charcoal: #121A15;
    --text-muted: #5A6960;
    --border-light: rgba(0, 0, 0, 0.07);
    --border-glass: rgba(255, 255, 255, 0.14);

    /* Radii & Shadows */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 9999px;
    --shadow-subtle: 0 4px 20px rgba(7, 43, 23, 0.04);
    --shadow-card: 0 12px 36px rgba(7, 43, 23, 0.08);
    --shadow-hover: 0 20px 48px rgba(7, 43, 23, 0.16);

    /* Typography */
    --font-editorial: 'Fraunces', 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    color: var(--text-charcoal);
    background-color: #FFFFFF;
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-editorial);
    color: var(--green-deep);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.font-serif { font-family: var(--font-editorial); }
.text-gold { color: var(--gold-primary) !important; }
.bg-dark-botanical { background-color: var(--green-deep) !important; }
.bg-surface-clean { background-color: var(--bg-surface) !important; }
.bg-surface-alt { background-color: var(--bg-surface-alt) !important; }

/* ==========================================================================
   Header, Topbar & Navigation
   ========================================================================== */

.topbar-modern {
    background-color: var(--green-deep);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
}

.pulse-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-primary);
    animation: blink 1.6s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.topbar-socials a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.topbar-socials a:hover { color: var(--gold-primary); }

.navbar-wrapper {
    transition: all 0.35s ease;
    z-index: 1040;
}

.navbar-glass {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.navbar-wrapper.scrolled .navbar-glass {
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 40px rgba(7, 43, 23, 0.12);
}

.brand-logo {
    max-height: 65px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-family: var(--font-editorial);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--green-dark);
}

.navbar-nav .nav-link {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-charcoal);
    padding: 8px 14px !important;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.nav-chevron { font-size: 0.65rem; transition: transform 0.2s ease; }
.dropdown:hover .nav-chevron { transform: rotate(180deg); }

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--green-forest);
    background: var(--green-soft);
}

/* Glass Dropdown Menu */
.dropdown-glass {
    background: rgba(4, 27, 14, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.dropdown-glass .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.dropdown-glass .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.16);
    color: var(--gold-light);
    transform: translateX(4px);
}

.dropdown-divider { border-color: rgba(255, 255, 255, 0.08); }

/* Modern Hamburger */
.modern-hamburger {
    border: none;
    background: transparent;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.modern-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--green-deep);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.offcanvas-dark {
    background-color: var(--green-deep);
    color: #fff;
}

.mobile-nav-list .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-list .nav-link.active,
.mobile-nav-list .nav-link:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-luxury-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #BF9B2D 100%);
    color: #041B0E;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.btn-luxury-gold:hover {
    background: linear-gradient(135deg, #E2C04D 0%, #C9A637 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.5);
}

.btn-frosted-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-frosted-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-forest {
    background: var(--green-forest);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-forest:hover {
    background: var(--green-deep);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--green-deep);
}

/* ==========================================================================
   Hero Master Section (Living Food-Tech HUD)
   ========================================================================== */

.hero-master {
    position: relative;
    background-color: var(--green-deep);
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 120px 0 70px;
    overflow: hidden;
}

.hero-bg-cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65) saturate(1.2);
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 27, 14, 0.96) 0%, rgba(4, 27, 14, 0.85) 45%, rgba(7, 43, 23, 0.55) 80%, rgba(4, 27, 14, 0.25) 100%);
    z-index: 2;
}

.hero-glow-orb {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
    filter: blur(80px);
    z-index: 2;
    pointer-events: none;
}

.min-vh-hero { min-height: calc(85vh - 120px); }

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-primary);
}

.hero-headline {
    font-size: clamp(2.4rem, 4.4vw, 3.9rem);
    line-height: 1.12;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.hero-headline em {
    font-family: var(--font-editorial);
    font-style: italic;
    color: var(--gold-primary);
}

.hero-sub-ribbon {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.hero-sub-ribbon span {
    color: var(--gold-primary);
    padding: 0 4px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    line-height: 1.6;
}

.hero-actions-deck {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Floating HUD Console Card */
.hero-hud-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.hero-hud-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.hud-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.hud-status {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.hud-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    padding: 3px 8px;
    border-radius: 4px;
}

.hud-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.hud-metric-box {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 14px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.hud-metric-box:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.4);
}

.hud-num {
    font-family: var(--font-mono);
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.hud-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.hud-avatar-stack {
    display: flex;
    align-items: center;
    font-size: 1rem;
    gap: 2px;
}

/* ==========================================================================
   Trust Marquee Infinite Stream
   ========================================================================== */

.trust-marquee-deck {
    background-color: #03140A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-content {
    display: flex;
    gap: 30px;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pillar Mini Chips */
.pillar-mini-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.pillar-mini-chip:hover {
    background: var(--green-soft);
}

.pillar-mini-chip i { font-size: 1.4rem; }
.pillar-mini-chip strong { display: block; font-size: 0.85rem; color: var(--green-deep); line-height: 1.2; }
.pillar-mini-chip span { font-size: 0.75rem; color: var(--text-muted); }

/* ==========================================================================
   Business Verticals (Filterable Modern Matrix)
   ========================================================================== */

.section-master-padding { padding: 90px 0; }

.eyebrow-accent {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--green-forest);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.line-gold { width: 30px; height: 2px; background: var(--gold-primary); display: inline-block; }

.display-title {
    font-size: clamp(2rem, 3.3vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.lead-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* Filter Pills */
.verticals-filter-bar {
    margin-bottom: 30px;
}

.btn-filter-pill {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-filter-pill:hover,
.btn-filter-pill.active {
    background: var(--green-deep);
    color: #FFFFFF;
    border-color: var(--green-deep);
    box-shadow: 0 4px 15px rgba(4, 27, 14, 0.2);
}

/* Luxury Vertical Card */
.card-vertical-luxury {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-subtle);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-vertical-luxury:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.4);
}

.card-vertical-media {
    height: 165px;
    position: relative;
    overflow: hidden;
}

.card-vertical-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-vertical-luxury:hover .card-vertical-media img { transform: scale(1.09); }

.card-vertical-media:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(4, 27, 14, 0.4) 100%);
}

.vertical-index-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--green-deep);
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.vertical-cat-pill {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--green-deep);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.card-vertical-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-v-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    min-height: 48px;
}

.card-v-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 18px;
    flex-grow: 1;
}

.card-v-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-v-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 12px;
}

.btn-card-explore {
    color: var(--green-forest);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.btn-card-explore:hover {
    color: var(--gold-hover);
    gap: 10px;
}

/* ==========================================================================
   Capabilities: Bento Grid
   ========================================================================== */

.bento-cap-card {
    position: relative;
    min-height: 230px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.35s ease;
}

.bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.bento-cap-card:hover .bento-bg { transform: scale(1.08); }

.bento-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 27, 14, 0.15) 0%, rgba(4, 27, 14, 0.95) 75%);
}

.bento-body {
    position: relative;
    z-index: 2;
}

.bento-icon-wrap {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.bento-title {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.bento-desc {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    max-width: 480px;
}

/* ==========================================================================
   3-Column Modern Intelligence Dashboard
   ========================================================================== */

.dashboard-panel {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 28px;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
}

.panel-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-forest);
}

.panel-heading-text {
    font-size: 1.4rem;
    margin-top: 2px;
    margin-bottom: 0;
}

.panel-action-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green-forest);
    text-decoration: none;
}

.panel-action-btn:hover { color: var(--gold-hover); }

/* Product Modern Item */
.product-modern-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-modern-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    background: var(--bg-surface);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.25s ease;
}

.product-modern-item:hover {
    background: #FFFFFF;
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: var(--shadow-subtle);
    transform: translateX(4px);
}

.prod-thumb {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-details { flex-grow: 1; overflow: hidden; }

.prod-cat-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-hover);
}

.prod-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prod-sub { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0; }
.prod-arrow { color: var(--text-muted); font-size: 0.9rem; }

/* Why AAGAMAA Luxury Box */
.why-aagamaa-luxury {
    background: linear-gradient(155deg, var(--green-deep) 0%, var(--green-dark) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #fff;
}

.why-luxury-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-luxury-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.why-icon {
    font-size: 1.2rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.why-luxury-item strong {
    display: block;
    font-size: 0.92rem;
    color: #fff;
}

.why-luxury-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Insight Editorial Stack */
.insight-editorial-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insight-editorial-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.25s ease;
}

.insight-editorial-card:hover {
    background: #FFFFFF;
    box-shadow: var(--shadow-subtle);
    transform: translateX(4px);
}

.insight-editorial-thumb {
    width: 75px;
    height: 75px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.insight-editorial-thumb img { width: 100%; height: 100%; object-fit: cover; }
.insight-tag-meta { font-size: 0.72rem; font-weight: 600; color: var(--green-forest); }
.insight-headline { font-size: 0.9rem; font-weight: 700; color: var(--green-deep); margin: 3px 0; line-height: 1.3; }
.insight-read-link { font-size: 0.78rem; font-weight: 700; color: var(--gold-hover); }

/* ==========================================================================
   Sustainability Spotlight & Final CTA
   ========================================================================== */

.sustain-visual-frame img {
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.sustain-floating-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: rgba(4, 27, 14, 0.96);
    border: 1px solid var(--gold-primary);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon-box { font-size: 1.6rem; }

.sustain-feature-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

/* Final CTA Banner (farmers.jpg background) */
.final-cta-section {
    position: relative;
    background-color: var(--green-deep);
    padding: 70px 0;
    overflow: hidden;
}

.cta-backdrop-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.cta-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 27, 14, 0.98) 0%, rgba(7, 43, 23, 0.85) 100%);
    z-index: 2;
}

.cta-banner-title {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

/* ==========================================================================
   Luxury Footer
   ========================================================================== */

.site-footer-luxury {
    background-color: #020F08;
    color: #FFFFFF;
    position: relative;
}

.footer-subpage-cta {
    background: linear-gradient(135deg, var(--green-forest) 0%, var(--green-deep) 100%);
    padding: 45px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-core { padding: 70px 0 40px; }
.footer-brand-logo { max-height: 42px; object-fit: contain; }
.footer-bio-text { font-size: 0.88rem; max-width: 320px; }

.footer-column-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 18px;
}

.footer-nav-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-nav-links li { margin-bottom: 8px; }

.footer-nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.86rem;
    transition: all 0.2s ease;
}

.footer-nav-links a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.social-circle {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-circle:hover {
    background: var(--gold-primary);
    color: var(--green-deep);
    transform: translateY(-3px);
}

.footer-bottom-deck {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-sub-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin: 0 4px;
}

.footer-sub-links a:hover { color: #fff; }

/* Back to top button */
.btn-back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--gold-primary);
    color: var(--green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1030;
}

.btn-back-to-top.show { opacity: 1; visibility: visible; }
.btn-back-to-top:hover { background: #fff; transform: translateY(-3px); }

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 991.98px) {
    .navbar-glass { border-radius: var(--radius-md); }
    .hero-master { padding: 90px 0 50px; }
    .sustain-floating-badge { position: static; margin-top: 20px; }
    .hud-metrics-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575.98px) {
    .hero-headline { font-size: 2.1rem; }
    .hud-metrics-grid { grid-template-columns: 1fr; }
    .hero-actions-deck .btn { width: 100%; }
}

/* ==========================================================================
   Page Master Hero & Breadcrumbs
   ========================================================================== */

.page-master-hero {
    position: relative;
    background-color: var(--green-deep);
    padding: 130px 0 65px;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 27, 14, 0.96) 0%, rgba(4, 27, 14, 0.85) 50%, rgba(7, 43, 23, 0.6) 100%);
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 0;
}

.page-hero-title em {
    font-family: var(--font-editorial);
    font-style: italic;
    color: var(--gold-primary);
}

.custom-breadcrumb {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    display: inline-flex;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 0;
    font-size: 0.82rem;
    font-weight: 500;
}

.custom-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.custom-breadcrumb a:hover {
    color: var(--gold-primary);
}

.custom-breadcrumb .breadcrumb-item.active {
    color: var(--gold-light);
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   About Page Components
   ========================================================================== */

.about-visual-frame img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.floating-story-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: rgba(4, 27, 14, 0.96);
    border: 1px solid var(--gold-primary);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.story-badge-icon {
    font-size: 1.6rem;
}

.story-check-chip {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-deep);
}

/* Purpose, Vision, Mission Pillar Cards */
.pillar-luxury-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 32px 28px;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.4);
}

.pillar-luxury-card.highlight-pillar {
    background: linear-gradient(155deg, var(--green-deep) 0%, var(--green-dark) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.pillar-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pillar-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--green-forest);
}

.pillar-icon-box {
    font-size: 1.8rem;
    color: var(--green-forest);
}

.pillar-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.pillar-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Step Workflow Cards */
.step-workflow-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.step-workflow-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
}

.step-num {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.18);
    position: absolute;
    top: 14px;
    right: 18px;
}

.step-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 14px;
}

.step-title {
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.step-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .page-master-hero { padding: 100px 0 45px; }
    .about-visual-frame img { height: 320px; }
    .floating-story-badge { position: static; margin-top: 16px; }
}
/* ==========================================================================
   Businesses Page Components
   ========================================================================== */

.btn-quickjump {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    color: var(--text-charcoal);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.btn-quickjump:hover {
    background: var(--green-deep);
    color: #FFFFFF;
    border-color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.biz-media-frame img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.biz-floating-tag {
    position: absolute;
    bottom: -18px;
    right: 20px;
    background: rgba(4, 27, 14, 0.96);
    border: 1px solid var(--gold-primary);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.biz-floating-tag .tag-num {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.biz-spec-pill {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    padding: 9px 12px;
    border-radius: var(--radius-md);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--green-deep);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.biz-spec-pill:hover {
    background: var(--green-soft);
}

/* Ecosystem Portal Cards */
.ecosystem-portal-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.ecosystem-portal-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.portal-icon-box {
    font-size: 2rem;
}

.portal-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.portal-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.portal-link {
    color: var(--gold-light);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.portal-link:hover {
    color: #FFFFFF;
    gap: 10px;
}

@media (max-width: 991.98px) {
    .biz-media-frame img { height: 320px; }
    .biz-floating-tag { position: static; margin-top: 14px; }
}

/* ==========================================================================
   Careers Page Components
   ========================================================================== */

.culture-mini-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.culture-mini-chip:hover {
    background: var(--green-soft);
}

.culture-mini-chip i {
    font-size: 1.4rem;
}

.culture-mini-chip strong {
    display: block;
    font-size: 0.85rem;
    color: var(--green-deep);
    line-height: 1.2;
}

.culture-mini-chip span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Career Roles Stack */
.career-roles-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.career-role-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.career-role-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.4);
}

.role-icon-box {
    width: 44px;
    height: 44px;
    background: var(--green-soft);
    color: var(--green-forest);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.role-title {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.role-dept-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-hover);
    letter-spacing: 0.04em;
}

.role-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 12px 0 14px;
}

.role-skills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    color: var(--green-deep);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

/* Careers Application Card */
.careers-application-card {
    background: linear-gradient(155deg, var(--green-deep) 0%, var(--green-dark) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.app-card-title {
    font-size: 1.45rem;
    margin-top: 4px;
    margin-bottom: 8px;
}

.app-card-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.84rem;
}

.hr-direct-box {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hr-email:hover {
    color: #FFFFFF !important;
}

@media (max-width: 991.98px) {
    .careers-application-card {
        margin-top: 20px;
    }
}
/* ==========================================================================
   Consulting Page Components
   ========================================================================== */

.consulting-service-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.consulting-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.4);
}

.svc-icon-box {
    width: 48px;
    height: 48px;
    background: var(--green-soft);
    color: var(--green-forest);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.svc-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-hover);
    background: rgba(212, 175, 55, 0.12);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.svc-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--green-deep);
}

.svc-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.text-forest {
    color: var(--green-forest) !important;
}

.border-light-dark {
    border-color: var(--border-light) !important;
}
/* ==========================================================================
   Contact & RFQ Page Components
   ========================================================================== */

.contact-trust-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.contact-trust-card:hover {
    background: var(--green-soft);
}

.contact-icon-pill {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    color: var(--green-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-subtle);
    flex-shrink: 0;
}

.contact-form-luxury-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    box-shadow: var(--shadow-card);
}

.form-title {
    font-size: 1.5rem;
    color: var(--green-deep);
    margin-top: 4px;
}

.custom-form-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.input-icon-group {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
}

.custom-input {
    background-color: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    padding: 12px 14px 12px 42px;
    font-size: 0.9rem;
    color: var(--text-charcoal);
    transition: all 0.25s ease;
}

textarea.custom-input {
    padding-left: 14px;
}

.custom-input:focus {
    background-color: #FFFFFF;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
    outline: none;
}

/* Custom Accordion */
.custom-accordion .accordion-item {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.custom-accordion .accordion-button {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    color: var(--green-deep);
    background: #FFFFFF;
    padding: 18px 22px;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--green-forest);
    background: var(--green-soft);
}

.custom-accordion .accordion-body {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    padding: 20px 22px;
    background: #FFFFFF;
}

@media (max-width: 767.98px) {
    .contact-form-luxury-card {
        padding: 24px 18px;
    }
}
/* ==========================================================================
   Industries Page Components
   ========================================================================== */

.industry-luxury-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.industry-luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.4);
}

.ind-icon-box {
    width: 46px;
    height: 46px;
    background: var(--green-soft);
    color: var(--green-forest);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.ind-sector-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-hover);
    background: rgba(212, 175, 55, 0.12);
    padding: 4px 8px;
    border-radius: var(--radius-pill);
}

.ind-title {
    font-size: 1.15rem;
    color: var(--green-deep);
    margin-bottom: 8px;
    line-height: 1.25;
}

.ind-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.ind-solutions-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-forest);
    display: block;
    margin-bottom: 6px;
}

.ind-solutions-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
}

.ind-solutions-list li {
    font-size: 0.8rem;
    color: var(--text-charcoal);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}
/* ==========================================================================
   Knowledge Centre Page Components
   ========================================================================== */

.knowledge-lead-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s ease;
}

.knowledge-lead-card:hover {
    box-shadow: var(--shadow-hover);
}

.lead-media-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--green-deep);
    color: var(--gold-primary);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.lead-card-title {
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    color: var(--green-deep);
    line-height: 1.25;
}

.article-category-chip {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-hover);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    background: var(--green-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.x-small {
    font-size: 0.72rem;
}

/* Article Luxury Card */
.article-luxury-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.article-luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.4);
}

.art-card-media {
    height: 185px;
    overflow: hidden;
}

.art-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-luxury-card:hover .art-card-media img {
    transform: scale(1.08);
}

.art-cat-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(4, 27, 14, 0.92);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(6px);
}

.art-title {
    font-size: 1.15rem;
    color: var(--green-deep);
    line-height: 1.3;
    margin-bottom: 8px;
}

.art-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

/* White Paper Card */
.whitepaper-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.whitepaper-card:hover {
    background: #FFFFFF;
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.wp-icon {
    font-size: 2rem;
    color: var(--gold-primary);
}

.wp-pages-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
}

.wp-title {
    font-size: 1.15rem;
    color: var(--green-deep);
    line-height: 1.3;
}

.wp-desc {
    font-size: 0.85rem;
    line-height: 1.5;
}

.btn-outline-forest {
    border: 1.5px solid var(--green-forest);
    color: var(--green-forest);
    background: transparent;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 9px 16px;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-forest:hover {
    background: var(--green-forest);
    color: #FFFFFF;
}
/* ==========================================================================
   Product Catalog Page Components
   ========================================================================== */

.product-luxury-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.4);
}

.prod-card-media {
    height: 195px;
    overflow: hidden;
}

.prod-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-luxury-card:hover .prod-card-media img {
    transform: scale(1.08);
}

.prod-badge-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green-deep);
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.prod-cert-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--green-deep);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(6px);
}

.prod-card-title {
    font-size: 1.25rem;
    color: var(--green-deep);
    line-height: 1.25;
}

.prod-card-desc {
    font-size: 0.85rem;
    line-height: 1.5;
}

.prod-specs-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-forest);
    display: block;
    margin-bottom: 6px;
}

.prod-specs-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.prod-specs-list li {
    font-size: 0.82rem;
    color: var(--text-charcoal);
    margin-bottom: 3px;
    display: flex;
    align-items: center;
}

.prod-app-chip {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
}
/* ==========================================================================
   Turnkey Projects Page Components
   ========================================================================== */

.turnkey-plant-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.turnkey-plant-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.4);
}

.plant-card-media {
    height: 185px;
    overflow: hidden;
}

.plant-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.turnkey-plant-card:hover .plant-card-media img {
    transform: scale(1.08);
}

.plant-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green-deep);
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.plant-icon-sm {
    font-size: 1.2rem;
    color: var(--gold-hover);
}

.plant-title {
    font-size: 1.15rem;
    color: var(--green-deep);
    line-height: 1.25;
}

.plant-desc {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Lifecycle Cards (Design • Build • Operate) */
.lifecycle-luxury-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.lifecycle-luxury-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.lifecycle-phase-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.15);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.lifecycle-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.lifecycle-title {
    font-size: 1.6rem;
    font-family: var(--font-editorial);
    letter-spacing: 0.02em;
}

.lifecycle-sub {
    font-size: 0.85rem;
    font-weight: 600;
}

.lifecycle-points-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.lifecycle-points-list li {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    line-height: 1.45;
}

/* ==========================================================================
   4 Primary Expertise Pillar Master Cards (Section 2)
   ========================================================================== */

.pillar-master-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.pillar-master-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.45);
}

.pillar-media-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.pillar-media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pillar-master-card:hover .pillar-media-wrap img {
    transform: scale(1.08);
}

.pillar-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 27, 14, 0.1) 0%, rgba(4, 27, 14, 0.7) 100%);
}

.pillar-num-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--green-deep);
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(212, 175, 55, 0.4);
    z-index: 2;
}

.pillar-body-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pillar-main-title {
    font-size: 1.45rem;
    color: var(--green-deep);
    letter-spacing: 0.02em;
}

.pillar-tagline-text {
    font-size: 0.95rem;
}

.pillar-desc-text {
    font-size: 0.88rem;
    line-height: 1.6;
}

.cap-box-heading {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-forest);
    display: block;
}

.cap-bullet-item {
    font-size: 0.82rem;
    color: var(--text-charcoal);
    display: flex;
    align-items: center;
}

.btn-pillar-cta {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--green-forest);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.btn-pillar-cta:hover {
    color: var(--gold-hover);
    transform: translateX(4px);
}

/* ==========================================================================
   Horizontal Ecosystem Flow (Section 3)
   ========================================================================== */

.ecosystem-flow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding: 20px 0;
}

.ecosystem-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 22px 16px;
    text-align: center;
    min-width: 175px;
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}

.ecosystem-step:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
}

.ecosystem-step.highlight-step {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-primary);
}

.eco-circle-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.eco-step-num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    margin-bottom: 4px;
}

.eco-step-title {
    font-size: 0.98rem;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.eco-step-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.4;
}

.eco-arrow-connector {
    color: var(--gold-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    opacity: 0.7;
}

/* ==========================================================================
   Industry & Product & Differentiator Cards
   ========================================================================== */

.industry-icon-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 26px 18px;
    transition: all 0.3s ease;
}

.industry-icon-card:hover {
    background: var(--green-deep);
    color: #FFFFFF !important;
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.industry-icon-card:hover .ind-card-title {
    color: #FFFFFF !important;
}

.industry-icon-card:hover .ind-card-icon {
    color: var(--gold-primary) !important;
}

.ind-card-icon {
    font-size: 2rem;
    color: var(--green-forest);
}

.ind-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-deep);
}

.differentiator-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    transition: all 0.3s ease;
}

.differentiator-card:hover {
    background: #FFFFFF;
    box-shadow: var(--shadow-card);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

.diff-icon-box {
    width: 50px;
    height: 50px;
    background: var(--green-soft);
    color: var(--green-forest);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.diff-title {
    font-size: 1.15rem;
    color: var(--green-deep);
    margin-bottom: 8px;
}

.diff-text {
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.core-expertise-ribbon {
    font-family: var(--font-mono);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

.core-expertise-ribbon b {
    color: var(--gold-primary);
    padding: 0 4px;
}

.final-cta-bullet-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.05rem;
}

.final-cta-bullet-list li {
    margin-bottom: 4px;
}

@media (max-width: 991.98px) {
    .ecosystem-flow-container {
        flex-direction: column;
    }
    .eco-arrow-connector {
        transform: rotate(90deg);
        margin: 6px 0;
    }
    .ecosystem-step {
        width: 100%;
    }
}

/* ==========================================================================
   AAGAMAA — LUXURY FOOD-TECH DESIGN SYSTEM
   ========================================================================== */

:root {
    --green-deep: #041B0E;
    --green-dark: #072B17;
    --green-forest: #0D4425;
    --green-emerald: #166534;
    --green-soft: #E8F5E9;
    --green-surface: #F2F8F4;

    --gold-primary: #D4AF37;
    --gold-light: #F7E7B4;
    --gold-hover: #BF9B2D;
    --gold-glow: rgba(212, 175, 55, 0.28);

    --bg-surface: #FAFAF7;
    --bg-surface-alt: #F3F3ED;
    --bg-card: #FFFFFF;
    --text-charcoal: #121A15;
    --text-muted: #5A6960;
    --border-light: rgba(0, 0, 0, 0.08);
    --border-glass: rgba(255, 255, 255, 0.14);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-pill: 9999px;
    --shadow-subtle: 0 4px 20px rgba(7, 43, 23, 0.04);
    --shadow-card: 0 12px 36px rgba(7, 43, 23, 0.08);
    --shadow-hover: 0 18px 45px rgba(7, 43, 23, 0.14);

    --font-editorial: 'Fraunces', 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    color: var(--text-charcoal);
    background-color: #FFFFFF;
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-editorial);
    color: var(--green-deep);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.text-gold { color: var(--gold-primary) !important; }
.text-forest { color: var(--green-forest) !important; }
.bg-dark-botanical { background-color: var(--green-deep) !important; }
.bg-surface-clean { background-color: var(--bg-surface) !important; }
.bg-surface-alt { background-color: var(--bg-surface-alt) !important; }
.border-light-dark { border-color: var(--border-light) !important; }

.text-white-70 { color: rgba(255, 255, 255, 0.7) !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.8) !important; }
.text-white-90 { color: rgba(255, 255, 255, 0.9) !important; }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.topbar-modern {
    background-color: var(--green-deep);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
}

.pulse-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-primary);
}

.topbar-socials a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.topbar-socials a:hover { color: var(--gold-primary); }

.navbar-wrapper {
    transition: all 0.35s ease;
    z-index: 1040;
}

.navbar-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    transition: all 0.3s ease;
}

.navbar-wrapper.scrolled .navbar-glass {
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 40px rgba(7, 43, 23, 0.12);
}



.brand-text {
    font-family: var(--font-editorial);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--green-dark);
}

.navbar-nav .nav-link {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-charcoal);
    padding: 8px 14px !important;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.nav-chevron { font-size: 0.65rem; transition: transform 0.2s ease; }
.dropdown:hover .nav-chevron { transform: rotate(180deg); }

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--green-forest);
    background: var(--green-soft);
}

.dropdown-glass {
    background: rgba(4, 27, 14, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.dropdown-glass .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.dropdown-glass .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.16);
    color: var(--gold-light);
    transform: translateX(4px);
}

.modern-hamburger {
    border: none;
    background: transparent;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.modern-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--green-deep);
    border-radius: 2px;
}

.offcanvas-dark {
    background-color: var(--green-deep);
    color: #fff;
}

.mobile-nav-list .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-list .nav-link.active,
.mobile-nav-list .nav-link:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-luxury-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #BF9B2D 100%);
    color: #041B0E;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 11px 22px;
    border-radius: var(--radius-pill);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.btn-luxury-gold:hover {
    background: linear-gradient(135deg, #E2C04D 0%, #C9A637 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.5);
}

.btn-frosted-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-frosted-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-forest {
    background: var(--green-forest);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-forest:hover {
    background: var(--green-deep);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--green-deep);
}

/* ==========================================================================
   Section Headers & Master Spacing
   ========================================================================== */

.section-master-padding { padding: 90px 0; }

.eyebrow-accent {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--green-forest);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.line-gold { width: 30px; height: 2px; background: var(--gold-primary); display: inline-block; }

.display-title {
    font-size: clamp(2rem, 3.3vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.lead-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* ==========================================================================
   SECTION 1 — HERO
   ========================================================================== */

.hero-master {
    position: relative;
    background-color: var(--green-deep);
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 120px 0 70px;
    overflow: hidden;
}

.hero-bg-cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65) saturate(1.2);
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 27, 14, 0.96) 0%, rgba(4, 27, 14, 0.85) 45%, rgba(7, 43, 23, 0.55) 80%, rgba(4, 27, 14, 0.25) 100%);
    z-index: 2;
}

.hero-glow-orb {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
    filter: blur(80px);
    z-index: 2;
    pointer-events: none;
}

.min-vh-hero { min-height: calc(85vh - 120px); }

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-primary);
}

.hero-headline {
    font-size: clamp(2.4rem, 4.4vw, 3.9rem);
    line-height: 1.12;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.hero-headline em {
    font-family: var(--font-editorial);
    font-style: italic;
    color: var(--gold-primary);
}

.hero-supporting-statement {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 620px;
}

.core-expertise-ribbon {
    font-family: var(--font-mono);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

.core-expertise-ribbon b {
    color: var(--gold-primary);
    padding: 0 4px;
}

.hero-actions-deck {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Floating HUD Console Card */
.hero-hud-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.hero-hud-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.hud-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.hud-status { font-size: 0.82rem; font-weight: 700; color: #fff; }

.hud-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    padding: 3px 8px;
    border-radius: 4px;
}

.hud-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.hud-metric-box {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 14px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.hud-metric-box:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.4);
}

.hud-num {
    font-family: var(--font-mono);
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.hud-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

/* ==========================================================================
   SECTION 2 — FOUR AREAS OF EXPERTISE (MASTER PILLARS)
   ========================================================================== */

.pillar-master-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.pillar-master-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.45);
}

.pillar-media-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #041B0E;
}

.pillar-media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pillar-master-card:hover .pillar-media-wrap img {
    transform: scale(1.08);
}

.pillar-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 27, 14, 0.1) 0%, rgba(4, 27, 14, 0.7) 100%);
}

.pillar-num-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--green-deep);
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(212, 175, 55, 0.4);
    z-index: 2;
}

.pillar-body-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pillar-main-title {
    font-size: 1.45rem;
    color: var(--green-deep);
    letter-spacing: 0.02em;
}

.pillar-tagline-text {
    font-size: 0.95rem;
}

.pillar-desc-text {
    font-size: 0.88rem;
    line-height: 1.6;
}

.cap-box-heading {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-forest);
    display: block;
}

.cap-bullet-item {
    font-size: 0.82rem;
    color: var(--text-charcoal);
    display: flex;
    align-items: center;
}

.btn-pillar-cta {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--green-forest);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.btn-pillar-cta:hover {
    color: var(--gold-hover);
    transform: translateX(4px);
}

/* ==========================================================================
   SECTION 3 — THE AAGAMAA ECOSYSTEM FLOW
   ========================================================================== */

.ecosystem-flow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding: 20px 0;
}

.ecosystem-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 22px 16px;
    text-align: center;
    min-width: 175px;
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}

.ecosystem-step:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
}

.ecosystem-step.highlight-step {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-primary);
}

.eco-circle-icon { font-size: 1.8rem; margin-bottom: 8px; }

.eco-step-num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    margin-bottom: 4px;
}

.eco-step-title {
    font-size: 0.98rem;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.eco-step-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.4;
}

.eco-arrow-connector {
    color: var(--gold-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    opacity: 0.7;
}

/* ==========================================================================
   SECTION 4 — FEATURED PRODUCTS & INGREDIENTS
   ========================================================================== */

.featured-prod-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.featured-prod-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.45);
}

.prod-card-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
    background-color: #072B17;
}

.prod-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-prod-card:hover .prod-card-thumb img {
    transform: scale(1.08);
}

.prod-num-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--green-deep);
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(212, 175, 55, 0.4);
    z-index: 2;
    line-height: 1;
}

.prod-card-body {
    padding: 24px;
}

.prod-title {
    font-size: 1.25rem;
    font-family: var(--font-editorial);
    color: var(--green-deep);
    line-height: 1.3;
}

.prod-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.btn-card-explore {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--green-forest);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.btn-card-explore:hover {
    color: var(--gold-hover);
    gap: 10px;
}

/* ==========================================================================
   SECTION 5 — INDUSTRIES WE SERVE
   ========================================================================== */

.industry-icon-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 26px 18px;
    transition: all 0.3s ease;
}

.industry-icon-card:hover {
    background: var(--green-deep);
    color: #FFFFFF !important;
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.industry-icon-card:hover .ind-card-title { color: #FFFFFF !important; }
.industry-icon-card:hover .ind-card-icon { color: var(--gold-primary) !important; }

.ind-card-icon {
    font-size: 2rem;
    color: var(--green-forest);
}

.ind-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-deep);
}

/* ==========================================================================
   SECTION 6 — WHY AAGAMAA (DIFFERENTIATORS)
   ========================================================================== */

.differentiator-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    transition: all 0.3s ease;
}

.differentiator-card:hover {
    background: #FFFFFF;
    box-shadow: var(--shadow-card);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

.diff-icon-box {
    width: 50px;
    height: 50px;
    background: var(--green-soft);
    color: var(--green-forest);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.diff-title {
    font-size: 1.15rem;
    color: var(--green-deep);
    margin-bottom: 8px;
}

.diff-text {
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 0;
}

/* ==========================================================================
   SECTION 7 — SUSTAINABILITY CHIPS & FRAMES
   ========================================================================== */

.about-visual-frame img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.floating-story-badge {
    position: absolute;
    bottom: -18px;
    right: 20px;
    background: rgba(4, 27, 14, 0.96);
    border: 1px solid var(--gold-primary);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.story-badge-icon { font-size: 1.6rem; }

.sustain-feature-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #FFFFFF;
}

/* ==========================================================================
   SECTION 8 — PARTNER WITH AAGAMAA (FINAL CTA BANNER)
   ========================================================================== */

.final-cta-section {
    position: relative;
    background-color: var(--green-deep);
    overflow: hidden;
    padding: 70px 0;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.cta-backdrop-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: saturate(1.2);
    z-index: 1;
}

.cta-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 27, 14, 0.98) 0%, rgba(7, 43, 23, 0.92) 50%, rgba(4, 27, 14, 0.85) 100%);
    z-index: 2;
}

.cta-banner-title {
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-family: var(--font-editorial);
    color: #FFFFFF;
    line-height: 1.15;
}

.final-cta-bullet-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.final-cta-bullet-list li {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.final-cta-bullet-list li i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    line-height: 1;
    margin-right: 4px;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer-luxury {
    background-color: #020F08;
    color: #FFFFFF;
    position: relative;
}

.footer-core { padding: 70px 0 40px; }
.footer-brand-logo { max-height: 42px; object-fit: contain; }
.footer-bio-text { font-size: 0.88rem; max-width: 320px; }

.footer-column-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 18px;
}

.footer-nav-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-nav-links li { margin-bottom: 8px; }

.footer-nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.86rem;
    transition: all 0.2s ease;
}

.footer-nav-links a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.social-circle {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-circle:hover {
    background: var(--gold-primary);
    color: var(--green-deep);
    transform: translateY(-3px);
}

.footer-bottom-deck {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-sub-links span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.btn-back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--gold-primary);
    color: var(--green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1030;
}

.btn-back-to-top.show { opacity: 1; visibility: visible; }
.btn-back-to-top:hover { background: #fff; transform: translateY(-3px); }

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 991.98px) {
    .navbar-glass { border-radius: var(--radius-md); }
    .hero-master { padding: 90px 0 50px; }
    .ecosystem-flow-container { flex-direction: column; }
    .eco-arrow-connector { transform: rotate(90deg); margin: 6px 0; }
    .ecosystem-step { width: 100%; }
    .floating-story-badge { position: static; margin-top: 20px; }
}

@media (max-width: 575.98px) {
    .hero-headline { font-size: 2.1rem; }
    .hud-metrics-grid { grid-template-columns: 1fr; }
    .hero-actions-deck .btn { width: 100%; }
}

/* ==========================================================================
   Team & Leadership Cards
   ========================================================================== */

.team-luxury-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.08));
    border-radius: var(--radius-lg, 18px);
    overflow: hidden;
    box-shadow: var(--shadow-subtle, 0 4px 20px rgba(0, 0, 0, 0.04));
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.team-luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover, 0 16px 40px rgba(7, 43, 23, 0.12));
    border-color: rgba(212, 175, 55, 0.45);
}

.team-media-wrap {
    
    position: relative;
    overflow: hidden;
    background-color: var(--green-dark, #072B17);
}

.team-media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.team-luxury-card:hover .team-media-wrap img {
    transform: scale(1.06);
}

.team-media-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(4, 27, 14, 0.6) 100%);
}

.team-name {
    font-size: 1.15rem;
    font-family: var(--font-editorial, 'Fraunces', serif);
    color: var(--green-deep, #041B0E);
    line-height: 1.25;
}

.team-role-tag {
    font-family: var(--font-mono, 'Space Grotesk', monospace);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;
}

.team-bio {
    line-height: 1.55;
}

/* ==========================================================================
   Mobile Offcanvas Drawer (Light Theme)
   ========================================================================== */

.offcanvas-light {
    background-color: #FFFFFF !important;
    color: #121A15;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}

.mobile-nav-list-light .nav-link {
    color: #1A2E20;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: var(--radius-sm, 8px);
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.mobile-nav-list-light .nav-link i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.mobile-nav-list-light .nav-link:hover,
.mobile-nav-list-light .nav-link.active {
    background-color: var(--green-soft, #E8F5E9);
    color: var(--green-forest, #0D4425);
    transform: translateX(4px);
}