@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* --- DESIGN SYSTEM & VARIABLES (LIGHT THEME) --- */
:root {
    /* Color Palette: Warm Off-White, Cream, Deep Forest Green Charcoal, Vibrant Leaf Accents */
    --bg-light: #faf9f5;
    --bg-white: #ffffff;
    --bg-cream: #f4f2eb;
    --bg-accent: rgba(22, 163, 74, 0.05);
    
    --primary-grad: linear-gradient(135deg, #15803d 0%, #166534 100%);
    --primary-color: #15803d; /* Rich forest green */
    --secondary-color: #16a34a; /* Kelly green */
    --accent-color: #84cc16; /* Lime green */
    --accent-glow: rgba(21, 128, 61, 0.08);
    
    --text-dark: #0d1e16; /* Forest dark slate */
    --text-secondary: #475569; /* Slate grey */
    --text-muted: #94a3b8;
    
    --border-color: rgba(13, 30, 22, 0.08);
    --border-hover: rgba(22, 163, 74, 0.25);
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(13, 30, 22, 0.03);
    --shadow-medium: 0 15px 40px rgba(13, 30, 22, 0.06);
    --shadow-hover: 0 20px 45px rgba(21, 128, 61, 0.1);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.4s var(--transition-premium);
    --transition-slow: 0.8s var(--transition-premium);
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

body.preloader-active {
    overflow: hidden;
    height: 100vh;
}

/* --- PRELOADER --- */
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F8F6EF;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-visual-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    display: grid;
    place-items: center;
    margin-bottom: 2rem;
}

.loader-ring {
    position: absolute;
    border: 1.5px solid transparent;
    border-radius: 50%;
    will-change: transform;
}

.loader-ring-outer {
    width: 160px;
    height: 160px;
    border-top-color: #128447;
    border-bottom-color: rgba(18, 132, 71, 0.12);
    animation: rotateOuter 2s linear infinite;
}

.loader-ring-inner {
    width: 120px;
    height: 120px;
    border-right-color: #8FC86B;
    border-left-color: rgba(143, 200, 107, 0.12);
    animation: rotateInner 1.5s linear infinite reverse;
}

.loader-leaf-container {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.85);
    opacity: 0;
    animation: leafIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.loader-leaf-icon {
    font-size: 90px;
    color: #063D26;
}

.loader-pulse-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(143, 200, 107, 0.18);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 2.2s infinite ease-in-out;
}

.loader-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    text-align: center;
}

.preloader-company {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #063D26;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

.preloader-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(6, 61, 38, 0.8);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
}

.loader-dots {
    display: flex;
    gap: 6px;
    margin-top: 0.4rem;
    opacity: 0;
    animation: fadeInDots 0.6s ease 0.8s forwards;
}

.loader-dot {
    width: 5px;
    height: 5px;
    background-color: #128447;
    border-radius: 50%;
    animation: dotBounce 1.4s infinite ease-in-out both;
}

.loader-dot:nth-child(1) { animation-delay: -0.32s; }
.loader-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes rotateOuter {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateInner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes leafIn {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.85);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.65;
    }
    100% {
        transform: scale(0.85);
        opacity: 0.3;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDots {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Responsive Preloader adjustments */
@media (max-width: 1024px) {
    .loader-visual-wrapper {
        width: 150px;
        height: 150px;
    }
    .loader-ring-outer {
        width: 130px;
        height: 130px;
    }
    .loader-ring-inner {
        width: 100px;
        height: 100px;
    }
    .loader-leaf-icon {
        font-size: 78px;
    }
    .loader-pulse-glow {
        width: 82px;
        height: 82px;
    }
}

@media (max-width: 480px) {
    .loader-visual-wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }
    .loader-ring-outer {
        width: 100px;
        height: 100px;
    }
    .loader-ring-inner {
        width: 75px;
        height: 75px;
    }
    .loader-leaf-icon {
        font-size: 65px;
    }
    .loader-pulse-glow {
        width: 60px;
        height: 60px;
    }
    .preloader-company {
        font-size: 1.05rem !important;
    }
    .preloader-tagline {
        font-size: 0.8rem !important;
        padding: 0 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .loader-ring-outer,
    .loader-ring-inner,
    .loader-leaf-container,
    .loader-pulse-glow,
    .preloader-company,
    .preloader-tagline,
    .loader-dots,
    .loader-dot,
    .hero-bg-video,
    .why-card-icon-wrap {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .site-preloader,
    .preloader-inner,
    .reveal,
    .product-card-mockup,
    .service-card-mockup,
    .why-card,
    .network-detail-card,
    .contact-info-panel,
    .contact-form-panel {
        transition-duration: 0.01ms !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #84cc16, #15803d);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #15803d;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-dark);
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section {
    padding: 9rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 6rem auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--primary-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Accent shapes in light background */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.blob-primary {
    background: #dcfce7; /* Very soft light green */
    width: 600px;
    height: 600px;
    top: -5%;
    right: -5%;
}

.blob-secondary {
    background: #fef08a; /* Soft yellow accent */
    width: 500px;
    height: 500px;
    bottom: 15%;
    left: -10%;
}

/* --- REUSABLE BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.4rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-grad);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 25px rgba(21, 128, 61, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(21, 128, 61, 0.25);
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--bg-cream);
    border-color: rgba(13, 30, 22, 0.15);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* --- HEADER / NAVBAR STYLES --- */
custom-header {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition-normal);
    background: #ffffff; /* Solid white background by default */
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(13, 30, 22, 0.04);
}

.navbar-container {
    width: 100%;
    max-width: 100%;
    padding: 0 4.5rem;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 2rem;
    }
}
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1.5rem;
    }
}

.header-active {
    background: rgba(255, 255, 255, 0.95) !important; /* Premium semi-transparent white on scroll */
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(13, 30, 22, 0.06) !important;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 142px;
    margin: 0;
    padding: 0;
    transition: var(--transition-normal);
}

.header-active .navbar {
    height: 118px;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.logo-brand-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0.85rem;
}

.logo-brand-stack .logo-text { margin-left: 0; }
.logo-brand-stack .logo-tagline { display: block; margin-top: 0.55rem !important; white-space: nowrap; }

.logo-img {
    height: 140px;
    width: auto;
    margin: 0;
    padding: 0;
    transition: var(--transition-normal);
}

.header-active .logo-img {
    height: 115px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-left: 0.85rem;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.logo-tagline {
    font-family: var(--font-heading) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
    margin-top: 0.35rem !important;
    line-height: 1.15 !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-grad);
    transition: var(--transition-normal);
    border-radius: 2px;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown-toggle {
    display: grid;
    place-items: center;
    isolation: isolate;
    border: 0;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.68rem;
    padding: 0.45rem 0.2rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
    color: var(--primary-color);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    width: 285px;
    padding: 0.65rem;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(13, 30, 22, 0.13);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
    background: var(--bg-accent);
    color: var(--primary-color);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown.open .nav-dropdown-toggle {
    transform: rotate(180deg);
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-normal);
}

/* --- HERO SECTION --- */
/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: calc(100vh - 110px);
    height: calc(100vh - 110px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 126px; /* Offset to sit properly below enlarged fixed navbar */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    isolation: isolate;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.0);
    z-index: 1;
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 30, 22, 0.35) 0%, rgba(13, 30, 22, 0.1) 100%);
    z-index: 2;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 2;
}

.hero-section::before {
    width: 42vw;
    height: 42vw;
    min-width: 340px;
    min-height: 340px;
    right: -8%;
    top: 8%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
    filter: blur(8px);
}

.hero-section::after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, rgba(250, 249, 245, 0) 0%, rgba(250, 249, 245, 0.82) 70%, var(--bg-light) 100%);
}

@keyframes heroDrift {
    0% { transform: scale(1.0) translate3d(0, 0, 0); }
    100% { transform: scale(1.03) translate3d(0, -5px, 0); }
}

/* --- ABOUT US SECTION (Mockup Match Redesign) --- */
.about-section {
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

/* Background gold lines overlay similar to the mockup image */
.about-section::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -10%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(184, 156, 102, 0.12);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 3%;
    right: -8%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(184, 156, 102, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 7rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-visual-block {
    position: relative;
    width: 100%;
}

.about-img-container {
    position: relative;
    width: min(100%, 610px);
    aspect-ratio: 1;
    margin-inline: auto;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 24px 38px rgba(13, 30, 22, 0.18));
    perspective: 1000px;
    transform-style: preserve-3d;
}

.about-img-box {
    width: 86%;
    height: 86%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    isolation: isolate;
    background: #fff;
    border: 3px solid rgba(184, 156, 102, 0.9);
    box-shadow:
        inset -32px -22px 55px rgba(3, 20, 13, 0.54),
        inset 22px 14px 40px rgba(255, 255, 255, 0.15),
        0 0 0 10px rgba(21, 128, 61, 0.08),
        0 24px 55px rgba(13, 30, 22, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-img-box:hover {
    transform: translateY(-8px) rotateX(3deg) rotateY(-3deg) scale(1.015);
}

.about-globe-slides,
.about-globe-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-globe-slides {
    z-index: 1;
    overflow: hidden;
    border-radius: 50%;
    background: #0a355f;
}

.about-real-globe {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    color: #b9e7c7;
    background:
        radial-gradient(circle at 29% 23%, rgba(255,255,255,.38), transparent 17%),
        radial-gradient(circle at 37% 35%, #26965a 0%, #137540 45%, #0b4d2d 72%, #062c1d 100%);
    box-shadow:
        inset 22px 16px 34px rgba(255,255,255,.15),
        inset -38px -24px 56px rgba(2,18,11,.62),
        0 0 34px rgba(38,150,90,.26);
}

.about-real-globe::after {
    content: '';
    position: absolute;
    inset: 1.5%;
    border: 1px solid rgba(218,255,230,.42);
    border-radius: 50%;
    box-shadow: inset 0 0 26px rgba(210,255,225,.16);
}

.about-real-globe i {
    font-size: clamp(15rem, 27vw, 25rem);
    line-height: 1;
    filter: drop-shadow(-8px 12px 14px rgba(2,24,14,.34));
    animation: aboutRealGlobeDrift 12s ease-in-out infinite alternate;
}

.about-globe-slide {
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    animation: aboutGlobeSlideshow 42s linear infinite;
    will-change: opacity, transform;
}

.about-globe-slide:nth-child(2) { animation-delay: 3s; }
.about-globe-slide:nth-child(3) { animation-delay: 6s; }
.about-globe-slide:nth-child(4) { animation-delay: 9s; }
.about-globe-slide:nth-child(5) { animation-delay: 12s; }
.about-globe-slide:nth-child(6) { animation-delay: 15s; }
.about-globe-slide:nth-child(7) { animation-delay: 18s; }
.about-globe-slide:nth-child(8) { animation-delay: 21s; }
.about-globe-slide:nth-child(9) { animation-delay: 24s; }
.about-globe-slide:nth-child(10) { animation-delay: 27s; }
.about-globe-slide:nth-child(11) { animation-delay: 30s; }
.about-globe-slide:nth-child(12) { animation-delay: 33s; }
.about-globe-slide:nth-child(13) { animation-delay: 36s; }
.about-globe-slide:nth-child(14) { animation-delay: 39s; }

.about-globe-slide.about-globe-logo-slide {
    z-index: 4;
    object-fit: contain;
    box-sizing: border-box;
    inset: -10%;
    width: 120%;
    height: 120%;
    max-width: none;
    padding: 0;
    background: #0a355f;
}

.about-globe-slide.about-globe-paper-slide {
    object-fit: cover;
    object-position: right center;
    padding: 0;
    background: #f8f6ef;
}

.about-globe-slide.about-globe-rubber-slide {
    animation-name: aboutGlobeRubberSlideshow;
    object-fit: cover;
}

@keyframes aboutGlobeRubberSlideshow {
    0% { opacity: 1; transform: scale(0.92); }
    7.5% { opacity: 1; transform: scale(0.87); }
    9% { opacity: 0; transform: scale(0.85); }
    100% { opacity: 0; transform: scale(0.85); }
}

.about-globe-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at 29% 20%, rgba(255,255,255,.4), transparent 22%),
        radial-gradient(circle at 42% 38%, transparent 40%, rgba(3,20,13,.18) 68%, rgba(3,20,13,.68) 100%),
        linear-gradient(115deg, rgba(255,255,255,.12), transparent 38%, rgba(3,20,13,.2));
    box-shadow:
        inset 18px 10px 28px rgba(255,255,255,.1),
        inset -28px -18px 45px rgba(3,20,13,.36);
}

.about-globe-grid {
    position: absolute;
    inset: 2.5%;
    z-index: 3;
    border-radius: 50%;
    overflow: hidden;
    opacity: .38;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,.3);
    box-shadow: inset 0 0 24px rgba(255,255,255,.08);
}

.globe-longitude,
.globe-latitude {
    position: absolute;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
}

.globe-longitude {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 42%;
    transform: translateX(-50%);
}

.longitude-two {
    width: 76%;
}

.globe-latitude {
    left: 0;
    right: 0;
    top: 50%;
    height: 36%;
    transform: translateY(-50%);
}

.latitude-two {
    height: 70%;
}

.about-globe-orbit {
    position: absolute;
    inset: 1%;
    z-index: 1;
    border: 1px solid rgba(21, 128, 61, .28);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    transform: rotate(18deg) scaleY(.42);
    animation: aboutOrbitPulse 5s ease-in-out infinite alternate;
}

.orbit-two {
    inset: -2%;
    border-color: rgba(184, 156, 102, .32);
    transform: rotate(-38deg) scaleY(.74);
    animation: aboutOrbitPulse 5s 1s ease-in-out infinite alternate-reverse;
}

@keyframes aboutGlobeSlideshow {
    0% { opacity: 1; transform: scale(1.06); }
    7.5% { opacity: 1; transform: scale(1.015); }
    9% { opacity: 0; transform: scale(1); }
    100% { opacity: 0; transform: scale(1); }
}

@keyframes aboutRealGlobeDrift {
    from { transform: rotate(-4deg) scale(1.01); }
    to { transform: rotate(4deg) scale(1.035); }
}

@keyframes aboutOrbitPulse {
    from { opacity: .45; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .about-globe-slide {
        animation: none;
        opacity: 0;
        transform: none;
    }

    .about-globe-slide:first-child {
        opacity: 1;
    }

    .about-globe-orbit {
        animation: none;
    }

    .about-real-globe i {
        animation: none;
    }
}

/* Overlapping green-gold badge card on the bottom left of the image */
.about-badge-card-overlay {
    position: absolute;
    bottom: 25px;
    left: 30px;
    background: #0f291e; /* Dark green background */
    padding: 1.5rem 2.2rem 1.5rem 1.8rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(13, 30, 22, 0.25);
    border: 2px solid #b89c66; /* Elegant gold border */
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 10;
}

.about-badge-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1.5px solid #b89c66;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b89c66;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-badge-text-wrap {
    display: flex;
    flex-direction: column;
}

.about-badge-large-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.about-badge-subtext {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.about-content {
    padding-left: 0;
}

.about-tag-container {
    margin-bottom: 1.5rem;
}

.about-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    display: inline-block;
}

.about-tag-line {
    width: 40px;
    height: 2px;
    background-color: #b89c66; /* Elegant gold tag line decoration */
    margin-top: 0.4rem;
}

.about-lead-green {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: justify;
    text-align-last: left;
    text-justify: auto;
    word-spacing: normal;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.about-heading {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(13, 30, 22, 0.08);
    margin: 1.8rem 0;
}

.about-text {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    word-spacing: normal;
    overflow-wrap: break-word;
}

/* Features list card */
.about-features-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: rgba(244, 242, 235, 0.5); /* Matching cream background */
    border: 1px solid rgba(13, 30, 22, 0.06);
    border-radius: 20px;
    padding: 1.8rem 1rem;
    margin: 1.2rem 0;
    box-shadow: 0 8px 25px rgba(13, 30, 22, 0.01);
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-features-card:hover {
    transform: rotateX(4deg) rotateY(4deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 30, 22, 0.12);
}

.about-feature-col {
    text-align: center;
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transform-style: preserve-3d;
}

.about-feature-col:not(:last-child) {
    border-right: 1px solid rgba(13, 30, 22, 0.08);
}

.about-feature-icon {
    font-size: 1.7rem;
    color: var(--primary-color);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease;
    transform-style: preserve-3d;
}

.about-feature-col:hover .about-feature-icon {
    transform: rotateY(360deg) translateZ(20px);
    color: var(--secondary-color);
}

.about-feature-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

/* Dark Green Pill Button */
.about-btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.9rem 2.4rem;
    background-color: #0f291e; /* Dark forest green */
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: 0 6px 15px rgba(15, 41, 30, 0.15);
    border: none;
    cursor: pointer;
}

.about-btn-pill:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(21, 128, 61, 0.2);
}

.about-btn-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.85rem;
}

/* --- PRODUCTS SECTION (Mockup Redesign) --- */
.products-section {
    background:
        radial-gradient(circle at top left, rgba(184, 156, 102, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(21, 128, 61, 0.08), transparent 22%),
        linear-gradient(180deg, #fffdf7 0%, #faf9f5 100%);
    overflow: hidden;
}

.products-section::before,
.products-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.products-section::before {
    top: 4rem;
    left: -12rem;
    width: 32rem;
    height: 32rem;
    border: 1px solid rgba(184, 156, 102, 0.12);
    border-radius: 50%;
}

.products-section::after {
    top: 7rem;
    right: -3rem;
    width: 12rem;
    height: 12rem;
    background: radial-gradient(circle at 30% 30%, rgba(132, 204, 22, 0.22), rgba(21, 128, 61, 0.04) 62%, transparent 70%);
    border-radius: 48% 52% 50% 50%;
    filter: blur(3px);
    animation: leafFloat 8s ease-in-out infinite alternate;
}

.products-section .container {
    position: relative;
    z-index: 1;
}

.products-header {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 4.5rem auto;
}

.products-kicker {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: #0E7A43;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.products-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
    color: #7da84d;
}

.products-divider span {
    width: 66px;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 156, 102, 0.2), rgba(184, 156, 102, 0.85), rgba(184, 156, 102, 0.2));
}

.products-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.6vw, 3.6rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 1.35rem;
}

@media (min-width: 1025px) {
    .products-title {
        white-space: nowrap;
    }
}

.products-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card-mockup {
    background: var(--bg-white);
    border: 1px solid rgba(21, 128, 61, 0.2);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(13, 30, 22, 0.06);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    isolation: isolate;
}

.product-card-mockup:hover {
    transform: translateY(-12px);
    border-color: rgba(21, 128, 61, 0.35);
    box-shadow: 0 26px 60px rgba(14, 122, 67, 0.14);
}


.product-card-img-box {
    width: 100%;
    height: 290px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
    position: relative;
    border-bottom: none;
}

.product-card-img-box img,
.product-card-img-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card-mockup:hover .product-card-img-box img,
.product-card-mockup:hover .product-card-img-box video {
    transform: scale(1.08);
}

.product-card-badge-wrap {
    position: absolute;
    top: 290px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.product-card-outer-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border: 1.5px solid rgba(21, 128, 61, 0.55);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
}

.product-card-outer-circle::before,
.product-card-outer-circle::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
}

.product-card-outer-circle::before {
    left: -3px;
    transform: translateY(-50%);
}

.product-card-outer-circle::after {
    right: -3px;
    transform: translateY(-50%);
}

.product-card-hexagon-wrap {
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, #d7bf8b 0%, #86bf54 100%);
    padding: 1.5px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-hexagon {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #0f291e 0%, #145c35 100%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
}

.product-card-content {
    padding: 3.8rem 1.7rem 1.8rem 1.7rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: clamp(0.92rem, 1.08vw, 1.28rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    white-space: nowrap;
}

.product-card-divider {
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, #84cc16 0%, #15803d 100%);
    margin-bottom: 1.2rem;
}

.product-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.product-card-num {
    display: none !important;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(21, 128, 61, 0.08);
    line-height: 1;
    margin-top: auto;
    transition: var(--transition-fast);
}

.product-card-mockup:hover .product-card-num {
    color: rgba(21, 128, 61, 0.14);
    transform: scale(1.05);
}

/* --- SUSTAINABILITY SECTION (Orbit hologram mockup) --- */
.sustainability-section {
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.sustainability-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.sustainability-heading {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.sustainability-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.65;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    word-spacing: normal;
    overflow-wrap: break-word;
    max-width: 640px;
}

.sustainability-subtext {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.65;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    word-spacing: normal;
    overflow-wrap: break-word;
    max-width: 640px;
}

/* --- GLOBAL NETWORK SECTION --- */
.network-section {
    background:
        radial-gradient(circle at top left, rgba(21, 128, 61, 0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(184, 156, 102, 0.14), transparent 24%),
        linear-gradient(180deg, #f8fbf7 0%, #ffffff 100%);
    overflow: hidden;
}

.network-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.6rem;
    align-items: stretch;
}

.network-top-row {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(680px, 1.2fr);
    gap: 2rem;
    align-items: center;
}

.network-tag-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}

.network-tag {
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0E7A43;
}

.network-tag-line {
    width: 46px;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 156, 102, 0.1), rgba(184, 156, 102, 0.85));
}

.network-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.85rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    max-width: 18ch;
}

.network-intro {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 860px;
    margin-bottom: 0;
}

.network-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.network-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    perspective: 1000px;
}

.network-detail-card {
    position: relative;
    padding: 1.8rem 1.5rem 1.55rem 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 244, 0.96) 100%);
    border: 1px solid rgba(21, 128, 61, 0.12);
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(13, 30, 22, 0.05);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.45s ease, background 0.45s ease;
    min-height: 100%;
    transform-style: preserve-3d;
}

.network-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #15803d 0%, #84cc16 55%, #d7bf8b 100%);
}

.network-detail-card::after {
    content: '';
    position: absolute;
    top: -3rem;
    right: -3rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.14), transparent 68%);
    pointer-events: none;
    transition: transform 0.45s var(--transition-premium), opacity 0.45s var(--transition-premium);
}

.network-detail-card:hover {
    transform: translateY(-10px) rotateX(6deg) rotateY(6deg);
    box-shadow: 0 28px 60px rgba(14, 122, 67, 0.13);
    border-color: rgba(21, 128, 61, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(240, 248, 239, 0.98) 100%);
}

.network-detail-card:hover::after {
    transform: scale(1.1);
    opacity: 0.95;
}

.network-card-num {
    display: none !important;
    position: absolute;
    top: 1.1rem;
    right: 1.3rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(14, 122, 67, 0.24);
    letter-spacing: 0.12em;
}

.network-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(160deg, #0f291e 0%, #15803d 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    box-shadow: 0 14px 30px rgba(14, 122, 67, 0.18);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
}

.network-detail-card:hover .network-card-icon {
    transform: rotateY(360deg) translateZ(15px);
    box-shadow: 0 20px 38px rgba(14, 122, 67, 0.22);
}

.network-detail-card h3 {
    font-size: 1.18rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}


.network-globe-label {
    display: inline-block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.6rem;
}

.network-globe-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 520px;
}

.trade-globe-stage {
    position: relative;
    aspect-ratio: 1 / 1;
    width: min(100%, 860px);
    margin: 0 auto;
    border-radius: 0;
    background: transparent;
    border: none;
    overflow: hidden;
    cursor: grab;
    touch-action: none;
}

.trade-globe-stage.dragging {
    cursor: grabbing;
}

.trade-globe-stage::before {
    display: none;
}

.trade-globe-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.global-network-earth-section .network-top-row {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.95fr);
    gap: clamp(2.2rem, 4vw, 4.5rem);
}

.global-network-earth-section .network-globe-shell {
    width: min(100%, 560px);
    margin: 0 auto;
}

.global-network-earth-section .global-network-earth-stage {
    width: min(100%, 520px);
    min-width: 0;
    margin: 0 auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(132, 204, 22, 0.14), transparent 32%),
        radial-gradient(circle at 50% 50%, rgba(21, 128, 61, 0.12), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(184, 156, 102, 0.09), transparent 64%);
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    outline: none;
    overflow: visible;
    isolation: isolate;
}

.global-network-earth-section .global-network-earth-stage:focus-visible {
    box-shadow: 0 0 0 4px rgba(132, 204, 22, 0.2);
}

.global-network-earth-section .global-network-earth-stage.dragging {
    cursor: grabbing;
    touch-action: none;
}

.global-network-earth-section .global-network-earth-stage canvas {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    user-select: none;
    -webkit-user-drag: none;
}

.global-network-earth-section .global-network-earth-stage::before,
.global-network-earth-section .global-network-earth-stage::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.global-network-earth-section .global-network-earth-stage::before {
    inset: 5%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 53%);
    filter: blur(22px);
    z-index: 0;
}

.global-network-earth-section .global-network-earth-stage::after {
    left: 14%;
    right: 14%;
    bottom: 0;
    height: 15%;
    background: radial-gradient(ellipse at center, rgba(13, 30, 22, 0.16), transparent 70%);
    filter: blur(12px);
    z-index: 0;
}

.global-network-earth-section .global-network-earth-marker-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.global-network-earth-section .global-network-earth-marker {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.72);
    transition: opacity 0.22s ease, transform 0.22s ease;
    will-change: transform, opacity;
}

.global-network-earth-section .global-network-earth-marker.visible {
    left: var(--marker-x);
    top: var(--marker-y);
    opacity: var(--marker-opacity, 1);
    transform: translate3d(-50%, -50%, 0) scale(var(--marker-scale, 1));
}

/* Directional label offsets to prevent overlapping country names */
.global-network-earth-section .global-network-earth-marker.pos-top-left {
    flex-direction: row-reverse;
}
.global-network-earth-section .global-network-earth-marker.pos-top-left.visible {
    transform: translate3d(-92%, -92%, 0) scale(var(--marker-scale, 1));
}

.global-network-earth-section .global-network-earth-marker.pos-bottom-left {
    flex-direction: row-reverse;
}
.global-network-earth-section .global-network-earth-marker.pos-bottom-left.visible {
    transform: translate3d(-92%, 8%, 0) scale(var(--marker-scale, 1));
}

.global-network-earth-section .global-network-earth-marker.pos-bottom-right.visible {
    transform: translate3d(8%, 8%, 0) scale(var(--marker-scale, 1));
}

.global-network-earth-section .global-network-earth-marker.pos-top-right.visible {
    transform: translate3d(8%, -92%, 0) scale(var(--marker-scale, 1));
}

.global-network-earth-section .global-network-earth-marker-dot {
    position: relative;
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #10b981;
    border: 1.5px solid #ffffff;
    box-shadow:
        0 0 0 3px rgba(16, 185, 129, 0.3),
        0 0 16px rgba(16, 185, 129, 0.95);
}

.global-network-earth-section .global-network-earth-marker-dot::after {
    content: '';
    position: absolute;
    inset: -7px;
    border: 1.5px solid rgba(16, 185, 129, 0.75);
    border-radius: 50%;
    animation: globalNetworkMarkerPulse 2s ease-out infinite;
}

.global-network-earth-section .global-network-earth-marker-label {
    padding: 0.32rem 0.65rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(7, 30, 20, 0.92) 0%, rgba(15, 60, 38, 0.92) 100%);
    border: 1px solid rgba(74, 222, 128, 0.5);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(16, 185, 129, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.global-network-earth-section .global-network-earth-marker:hover .global-network-earth-marker-label {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.45);
}

.global-network-earth-section .global-network-earth-loader,
.global-network-earth-section .global-network-earth-fallback {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    gap: 0.75rem;
    width: min(250px, 70%);
    text-align: center;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    pointer-events: none;
}

.global-network-earth-section .global-network-earth-loader span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(21, 128, 61, 0.14);
    border-top-color: var(--primary-color);
    animation: globalNetworkEarthLoader 0.8s linear infinite;
}

.global-network-earth-section .global-network-earth-loader p {
    margin: 0;
}

.global-network-earth-section .global-network-earth-fallback {
    display: none;
}

.global-network-earth-section .global-network-earth-stage.loaded .global-network-earth-loader {
    display: none;
}

.global-network-earth-section .global-network-earth-stage.webgl-unavailable .global-network-earth-loader {
    display: none;
}

.global-network-earth-section .global-network-earth-stage.webgl-unavailable .global-network-earth-fallback {
    display: grid;
}

@keyframes globalNetworkMarkerPulse {
    0% { opacity: 0.7; transform: scale(0.5); }
    100% { opacity: 0; transform: scale(1.8); }
}

@keyframes globalNetworkEarthLoader {
    to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .global-network-earth-section .network-top-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 3rem;
    }

    .global-network-earth-section .network-visual {
        order: -1;
    }

    .global-network-earth-section .global-network-earth-stage {
        width: min(100%, 420px);
    }
}

@media (max-width: 768px) {
    .global-network-earth-section .network-visual {
        order: 0;
    }

    .global-network-earth-section .global-network-earth-stage {
        width: min(100%, 350px);
    }

    .global-network-earth-section .global-network-earth-marker-label {
        font-size: 0.62rem;
        padding: 0.2rem 0.45rem;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .global-network-earth-section .global-network-earth-stage {
        width: min(100%, 310px);
    }

    .network-asia-banner {
        padding: 0.75rem 0.9rem;
    }

    .network-asia-text {
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .global-network-earth-section .global-network-earth-loader span,
    .global-network-earth-section .global-network-earth-marker-dot::after {
        animation: none !important;
    }
}

.trade-globe-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
    margin-bottom: 1.15rem;
}

.trade-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    font-weight: 700;
}

.trade-legend-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.trade-legend-dot.supplier {
    background: #8fe26d;
}

.trade-legend-dot.customer {
    background: #ffd15c;
}

.trade-legend-dot.hub {
    background: #7ce0ff;
}

.trade-market-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.trade-market-chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
    margin-bottom: 1.15rem;
}

.trade-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    font-weight: 700;
}

.trade-legend-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.trade-legend-dot.supplier {
    background: #8fe26d;
}

.trade-legend-dot.customer {
    background: #ffd15c;
}

.trade-legend-dot.hub {
    background: #7ce0ff;
}

.trade-market-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.trade-market-chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.77rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

/* --- Orbit Diagram on the Right --- */
.sus-interactive-box {
    position: relative;
    width: 530px;
    height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.8rem auto 0 auto;
    isolation: isolate;
    perspective: 1200px;
}

/* Banner overlay above the globe */
.sus-globe-commitment-banner {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(14, 122, 67, 0.96) 0%, rgba(7, 40, 24, 0.98) 100%);
    border: 1.5px solid rgba(184, 156, 102, 0.65);
    box-shadow: 0 14px 32px rgba(14, 122, 67, 0.35), 0 0 20px rgba(184, 156, 102, 0.25);
    border-radius: 30px;
    padding: 0.65rem 1.6rem;
    text-align: center;
    z-index: 12;
    white-space: nowrap;
}

.sus-interactive-box::before,
.sus-interactive-box::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.sus-interactive-box::before {
    width: 78%;
    height: 78%;
    background:
        radial-gradient(circle at 50% 50%, rgba(21, 128, 61, 0.09), transparent 36%),
        radial-gradient(circle at 50% 50%, transparent 50%, rgba(184, 156, 102, 0.12) 51%, transparent 70%);
    filter: blur(0.2px);
    z-index: 0;
}

.sus-interactive-box::after {
    width: 48%;
    height: 48%;
    background: radial-gradient(ellipse at center, rgba(13, 30, 22, 0.18), transparent 63%);
    transform: translateY(130px) rotateX(72deg);
    filter: blur(12px);
    z-index: 0;
}

/* Outer solid green rotating orbit */
.sus-orbit-line-outer {
    position: absolute;
    width: 84%;
    height: 84%;
    border: 1px solid rgba(21, 128, 61, 0.22);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: rotateClockwise 50s linear infinite;
    box-shadow:
        0 0 0 10px rgba(21, 128, 61, 0.025),
        inset 0 0 28px rgba(21, 128, 61, 0.06),
        0 0 30px rgba(21, 128, 61, 0.09);
}

/* Inner dashed gold rotating orbit */
.sus-orbit-line-inner {
    position: absolute;
    width: 60%;
    height: 60%;
    border: 1px dashed rgba(184, 156, 102, 0.42);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: rotateCounter 35s linear infinite;
    box-shadow: inset 0 0 24px rgba(184, 156, 102, 0.08);
}

/* Centered Rotating Globe Sphere */
.sus-globe-center {
    width: 226px;
    height: 226px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    box-shadow:
        inset -32px -24px 42px rgba(2, 20, 36, 0.76),
        inset 22px 18px 36px rgba(148, 230, 255, 0.2),
        0 20px 48px rgba(14, 122, 67, 0.28),
        0 0 64px rgba(56, 189, 248, 0.25);
    overflow: hidden;
    background:
        radial-gradient(circle at 29% 24%, rgba(196, 244, 255, 0.95) 0%, rgba(88, 191, 223, 0.55) 17%, transparent 29%),
        radial-gradient(circle at 42% 48%, #126f97 0%, #064a75 43%, #03263f 74%, #061523 100%);
    border: 4px solid rgba(255, 255, 255, 0.9);
}

.sus-globe-real {
    background: #071624;
}

.sus-globe-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 178%;
    height: 178%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 2;
    filter: saturate(1.04) contrast(1.04);
    animation: susRealGlobeDrift 28s ease-in-out infinite alternate;
}

.sus-globe-real .sus-globe-continents-wrapper,
.sus-globe-real .sus-globe-grid {
    display: none;
}

/* Ensure label is visible over real globe sphere with sleek glass backdrop */
.sus-globe-real .sus-globe-label {
    display: flex !important;
    background: rgba(7, 22, 36, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.6rem 0.8rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    width: 85%;
}



.sus-banner-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 800;
    color: #b89c66;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sus-banner-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0.1rem;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 5 Commitment Pillars Showcase */
.sus-commitments-showcase {
    margin-top: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 249, 245, 0.96) 100%);
    border: 1.5px solid rgba(14, 122, 67, 0.22);
    border-radius: 20px;
    padding: 1.25rem 1.4rem;
    box-shadow: 0 12px 30px rgba(14, 122, 67, 0.08);
}

.sus-commitments-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: #0E7A43;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(14, 122, 67, 0.2);
}

.sus-commitments-grid {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sus-commitment-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(14, 122, 67, 0.12);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sus-commitment-item:hover,
.sus-commitment-item.active {
    background: linear-gradient(135deg, rgba(14, 122, 67, 0.08) 0%, rgba(184, 156, 102, 0.14) 100%);
    border-color: #0E7A43;
    transform: translateX(6px);
    box-shadow: 0 6px 18px rgba(14, 122, 67, 0.12);
}

.sus-comm-badge {
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0E7A43 0%, #15803d 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(14, 122, 67, 0.25);
}

.sus-commitment-item:hover .sus-comm-badge,
.sus-commitment-item.active .sus-comm-badge {
    background: linear-gradient(135deg, #b89c66 0%, #d4af37 100%);
    box-shadow: 0 4px 12px rgba(184, 156, 102, 0.35);
}

.sus-comm-content h5 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.15rem 0;
    line-height: 1.3;
}
.network-detail-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    word-spacing: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

.network-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.network-asia-banner {
    position: relative;
    margin-bottom: 1.2rem;
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 41, 30, 0.95) 0%, rgba(21, 92, 53, 0.95) 100%);
    border: 1.5px solid rgba(184, 156, 102, 0.5);
    border-radius: 20px;
    padding: 1rem 1.4rem;
    box-shadow: 0 16px 36px rgba(15, 41, 30, 0.18), 0 0 20px rgba(184, 156, 102, 0.12);
    z-index: 10;
    text-align: left;
}

.network-asia-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: #b89c66;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.network-asia-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    margin: 0;
}

.network-asia-text strong {
    color: #4ade80;
    font-weight: 700;
}

.network-globe-shell {
    position: relative;
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.sus-comm-content p {
    font-size: 0.78rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

.sus-globe-real .sus-globe-shadow {
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
        radial-gradient(circle at 78% 72%, rgba(0, 0, 0, 0.34), transparent 48%);
    z-index: 5;
    mix-blend-mode: multiply;
}

.sus-globe-center::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.8), transparent 18%),
        linear-gradient(112deg, rgba(255, 255, 255, 0.22), transparent 34%, rgba(255, 255, 255, 0.08) 72%, transparent);
    mix-blend-mode: screen;
    z-index: 7;
    pointer-events: none;
}

.sus-globe-center::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 75% 70%, rgba(0, 0, 0, 0.64), transparent 43%),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 23%);
    z-index: 6;
    pointer-events: none;
}

.sus-globe-atmosphere {
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    background:
        radial-gradient(circle, transparent 58%, rgba(125, 211, 252, 0.22) 62%, rgba(132, 204, 22, 0.18) 70%, transparent 74%);
    animation: susPulseAura 4.8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.sus-globe-shadow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(118deg, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.34) 72%, rgba(0, 0, 0, 0.62) 100%);
    z-index: 5;
    pointer-events: none;
}

.sus-globe-specular {
    position: absolute;
    top: 20%;
    left: 18%;
    width: 36%;
    height: 22%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55), transparent 67%);
    filter: blur(2px);
    transform: rotate(-24deg);
    z-index: 8;
    pointer-events: none;
}

/* Centered Static label for the globe */
.sus-globe-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    text-align: center;
    color: #ffffff;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.78);
    width: 90%;
}

.sus-globe-label span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.92;
    font-weight: 500;
}

.sus-globe-label strong {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 900;
    color: #ffffff;
    display: block;
    margin: 0.15rem 0;
}

.sus-globe-continents-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
}

.sus-globe-sphere {
    position: absolute;
    top: 3%;
    left: -2%;
    width: 200%;
    height: 94%;
    animation: rotateGlobe 22s linear infinite;
    z-index: 1;
    filter: drop-shadow(0 2px 3px rgba(3, 38, 28, 0.28));
    opacity: 0.92;
}

.sus-globe-clouds {
    position: absolute;
    inset: 11%;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 26% 28%, rgba(255, 255, 255, 0.34) 0 8%, transparent 15%),
        radial-gradient(ellipse at 54% 38%, rgba(255, 255, 255, 0.22) 0 10%, transparent 19%),
        radial-gradient(ellipse at 35% 64%, rgba(255, 255, 255, 0.2) 0 11%, transparent 21%),
        radial-gradient(ellipse at 76% 58%, rgba(255, 255, 255, 0.24) 0 9%, transparent 17%);
    animation: susCloudDrift 14s linear infinite;
    opacity: 0.78;
    z-index: 3;
    mix-blend-mode: screen;
}

.sus-globe-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    opacity: 0.76;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.12));
}

/* Floating Tooltip details card that overlaps the globe */
.sus-orbit-tooltip {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 306px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 238, 0.92)),
        radial-gradient(circle at top right, rgba(132, 204, 22, 0.18), transparent 38%);
    border: 1px solid rgba(21, 128, 61, 0.18);
    border-radius: 18px;
    padding: 1.35rem 1.4rem 1.3rem;
    box-shadow:
        0 20px 48px rgba(13, 30, 22, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    z-index: 8;
    pointer-events: none;
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                top 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sus-orbit-tooltip::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #84cc16, #15803d, #b89c66);
}

.sus-orbit-tooltip::after {
    content: '';
    position: absolute;
    right: -42px;
    top: -42px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.2), transparent 66%);
    pointer-events: none;
}

/* Float positioning depending on the active node state on the parent wrapper */
.sus-interactive-box.active-node-1 .sus-orbit-tooltip {
    top: 16%;
    left: 50%;
    transform: translate(-50%, 0);
}

.sus-interactive-box.active-node-2 .sus-orbit-tooltip {
    top: 16%;
    left: 19%;
    transform: none;
}

.sus-interactive-box.active-node-3 .sus-orbit-tooltip {
    top: 47%;
    left: 8%;
    transform: none;
}

.sus-interactive-box.active-node-4 .sus-orbit-tooltip {
    top: 47%;
    left: 31%;
    transform: none;
}

.sus-interactive-box.active-node-5 .sus-orbit-tooltip {
    top: 16%;
    left: 13%;
    transform: none;
}

.sus-tooltip-kicker {
    display: inline-flex;
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 41, 30, 0.52);
}

.sus-tooltip-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.sus-tooltip-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Numbered nodes overlay (placed statically at orbit intersections) */
.sus-orbit-node {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    cursor: pointer;
    z-index: 10;
}

.sus-orbit-node::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.24), transparent 62%);
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.35s var(--transition-premium), transform 0.35s var(--transition-premium);
}

.sus-orbit-node-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(243, 248, 241, 0.96));
    border: 1px solid rgba(21, 128, 61, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f291e;
    box-shadow:
        0 10px 22px rgba(13, 30, 22, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    transition: background 0.4s var(--transition-premium), color 0.4s var(--transition-premium), border-color 0.4s var(--transition-premium), box-shadow 0.4s var(--transition-premium), transform 0.4s var(--transition-premium);
}

.sus-orbit-node-inner::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -55%;
    width: 44%;
    height: 160%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56), transparent);
    transform: rotate(24deg);
    transition: left 0.55s var(--transition-premium);
}

.sus-orbit-node:hover .sus-orbit-node-inner,
.sus-orbit-node.active .sus-orbit-node-inner {
    background:
        radial-gradient(circle at 26% 20%, rgba(255, 255, 255, 0.28), transparent 22%),
        linear-gradient(145deg, #123325 0%, #15803d 58%, #0f291e 100%);
    color: #ffffff;
    border-color: rgba(132, 204, 22, 0.7);
    box-shadow:
        0 0 0 7px rgba(132, 204, 22, 0.12),
        0 16px 32px rgba(21, 128, 61, 0.24),
        0 0 28px rgba(132, 204, 22, 0.42);
    transform: translateY(-4px) scale(1.12);
}

.sus-orbit-node:hover::before,
.sus-orbit-node.active::before {
    opacity: 1;
    transform: scale(1);
}

.sus-orbit-node:hover .sus-orbit-node-inner::after,
.sus-orbit-node.active .sus-orbit-node-inner::after {
    left: 115%;
}

.sus-orbit-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d8f99d;
    box-shadow: 0 0 18px rgba(132, 204, 22, 0.86);
    pointer-events: none;
    z-index: 2;
}

.sus-particle-1 {
    animation: susParticleOrbit 12s linear infinite;
}

.sus-particle-2 {
    width: 6px;
    height: 6px;
    opacity: 0.78;
    animation: susParticleOrbit 16s linear infinite reverse;
}

.sus-particle-3 {
    width: 5px;
    height: 5px;
    opacity: 0.7;
    animation: susParticleOrbitSmall 10s linear infinite;
}

/* Node layout positioning (pentagonal configuration) */
.sus-node-1 { left: 50%; top: 8%; }
.sus-node-2 { left: 90%; top: 37%; }
.sus-node-3 { left: 75%; top: 84%; }
.sus-node-4 { left: 25%; top: 84%; }
.sus-node-5 { left: 10%; top: 37%; }

/* Animations keyframes */
@keyframes rotateClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateCounter {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes rotateGlobe {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes susCloudDrift {
    0% { transform: translateX(8%) rotate(0deg); }
    100% { transform: translateX(-8%) rotate(360deg); }
}

@keyframes susPulseAura {
    0%, 100% { opacity: 0.72; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.04); }
}

@keyframes susRealGlobeDrift {
    0% { transform: translate(-50%, -50%) scale(1.02) rotate(-1.2deg); }
    100% { transform: translate(-50%, -50%) scale(1.08) rotate(1.2deg); }
}

@keyframes susParticleOrbit {
    0% { transform: rotate(0deg) translateX(222px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(222px) rotate(-360deg); }
}

@keyframes susParticleOrbitSmall {
    0% { transform: rotate(0deg) translateX(158px) rotate(0deg); }
    100% { transform: rotate(-360deg) translateX(158px) rotate(360deg); }
}

/* --- OUR SERVICES (Bento Grid Redesign) --- */
.services-section {
    background:
        radial-gradient(circle at top left, rgba(21, 128, 61, 0.12), transparent 24%),
        linear-gradient(180deg, #f5f8f3 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 4rem auto auto -8rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    border: 1px solid rgba(21, 128, 61, 0.08);
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    right: -10rem;
    bottom: -8rem;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 156, 102, 0.12), transparent 68%);
    pointer-events: none;
}

.services-header {
    margin-bottom: 4.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    perspective: 1000px;
}

.service-card-mockup {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 251, 246, 0.98) 100%);
    border: 1px solid rgba(21, 128, 61, 0.12);
    border-radius: 28px;
    padding: 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(13, 30, 22, 0.05);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.45s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.service-card-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top right, rgba(132, 204, 22, 0.12), transparent 35%),
        linear-gradient(135deg, rgba(21, 128, 61, 0.04) 0%, rgba(184, 156, 102, 0.08) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.service-card-mockup:hover {
    transform: translateY(-10px) rotateX(6deg) rotateY(6deg);
    border-color: rgba(21, 128, 61, 0.28);
    box-shadow: 0 28px 56px rgba(14, 122, 67, 0.12);
}

.service-card-mockup:hover::before {
    opacity: 1;
}

.service-card-beam {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #15803d 0%, #84cc16 45%, #d7bf8b 100%);
    transform: scaleX(0.35);
    transform-origin: left center;
    transition: transform 0.5s var(--transition-premium);
}

.service-card-mockup:hover .service-card-beam {
    transform: scaleX(1);
}

.service-card-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #edf5ea 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(21, 128, 61, 0.08);
    box-shadow: inset 0 -10px 24px rgba(21, 128, 61, 0.05);
    transform-style: preserve-3d;
}

.service-card-mockup:hover .service-card-icon-wrap {
    background: linear-gradient(160deg, #0f291e 0%, #15803d 100%);
    color: #ffffff;
    border-color: rgba(184, 156, 102, 0.65);
    transform: rotateY(360deg) translateZ(15px);
    box-shadow: 0 16px 28px rgba(15, 41, 30, 0.18);
}

.service-card-chip {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(21, 128, 61, 0.07);
    border: 1px solid rgba(21, 128, 61, 0.08);
    color: #166534;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.service-card-line {
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, #84cc16 0%, #15803d 100%);
    margin-bottom: 1.2rem;
    transition: width 0.4s var(--transition-premium), transform 0.4s var(--transition-premium);
}

.service-card-mockup:hover .service-card-line {
    width: 72px;
    transform: translateX(4px);
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    flex-grow: 1;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    margin-top: 1.4rem;
    border-top: 1px solid rgba(13, 30, 22, 0.07);
    color: #166534;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.service-card-footer i {
    transition: transform 0.35s var(--transition-premium);
}

.service-card-mockup:hover .service-card-footer i {
    transform: translateX(5px);
}

.service-card-num {
    display: none !important;
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.35;
    transition: var(--transition-fast);
}

.service-card-mockup:hover .service-card-num {
    opacity: 0.7;
    color: var(--secondary-color);
}

/* Hidden cards and Toggle Button */
.service-card-mockup.hidden-card {
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.hidden-service {
    display: none !important;
}

.services-toggle-container {
    text-align: center;
    margin-top: 3rem;
}

.services-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2.2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
}

.services-btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(21, 128, 61, 0.15);
    transform: translateY(-2px);
}

/* --- WHY GREEN EARTH (Luxury Bento Magazine Redesign) --- */
/* --- WHY GREEN EARTH (Interactive Split Console & 3D Parallax Redesign) --- */
.why-section {
    background: radial-gradient(circle at center, #0a1f16 0%, #040c08 100%);
    position: relative;
    z-index: 1;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

/* Background elements styling */
.why-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    transition: opacity 1.5s ease;
}

.why-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.why-bg-blur.blur-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #15803d 0%, transparent 70%);
    top: 10%;
    left: 5%;
}

.why-bg-blur.blur-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #b89c66 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
}

/* Section headers overrides for Dark Theme */
.why-section .section-title {
    color: #ffffff;
}

.why-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Bento Grid Layout */
.why-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.8rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
}

.why-bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.why-bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mx, 0px) var(--my, 0px), rgba(132, 204, 22, 0.12), transparent 45%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.why-hero-mini {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.why-hero-copy h3 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.why-hero-copy p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 42rem;
    font-size: 1rem;
}

.why-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.why-proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.why-proof-pill i {
    color: #bfe46c;
}

.why-orbit-stage {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-orbit-core {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #1e8a4d 0%, #103725 70%, #0d2018 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 35px rgba(255, 255, 255, 0.08), 0 18px 35px rgba(6, 18, 13, 0.34);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    animation: floatCore 6s ease-in-out infinite;
}

.why-orbit-core strong {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    line-height: 1;
    color: #ffffff;
    margin: 0.45rem 0;
}

.why-orbit-label-top,
.why-orbit-label-bottom {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

.why-orbit-ring-outer {
    width: 320px;
    height: 320px;
    border-style: dashed;
    animation: rotateClockwise 28s linear infinite;
}

.why-orbit-ring-inner {
    width: 260px;
    height: 260px;
    border-color: rgba(191, 228, 108, 0.24);
    animation: rotateCounter 18s linear infinite;
}

.why-orbit-node {
    position: absolute;
    width: 122px;
    min-height: 92px;
    padding: 0.95rem 0.9rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 35px rgba(8, 22, 15, 0.18);
    text-align: center;
    z-index: 3;
    transition: transform 0.4s var(--transition-premium), background 0.4s var(--transition-premium);
}

.why-orbit-node:hover {
    transform: translateY(-6px) scale(1.03);
    background: rgba(255, 255, 255, 0.16);
}

.why-orbit-node strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.why-orbit-node span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    line-height: 1.4;
}

.why-orbit-node-1 {
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
}

.why-orbit-node-2 {
    right: 0;
    bottom: 14%;
}

.why-orbit-node-3 {
    left: 0;
    bottom: 14%;
}

.why-signal-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 0 2.5rem 0;
    position: relative;
    z-index: 3;
}

.why-signal-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 245, 0.98) 100%);
    border: 1px solid rgba(21, 128, 61, 0.12);
    border-radius: 26px;
    padding: 1.8rem;
    box-shadow: 0 14px 35px rgba(13, 30, 22, 0.04);
    position: relative;
    overflow: hidden;
}

.why-signal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #15803d 0%, #84cc16 35%, #b89c66 70%, #00c6ff 100%);
}

.why-signal-label {
    display: none !important;
    display: inline-block;
    margin-bottom: 1rem;
    color: #0E7A43;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.why-signal-card h3 {
    font-size: 1.18rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.why-signal-card p {
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--text-color);
}

@keyframes floatCore {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 3;
    perspective: 1000px;
}

/* Card base styling - Rich Gradient & Animated Border (No plain white!) */
.why-card {
    background: linear-gradient(145deg, #ffffff 0%, #f3faf5 50%, #f9f7f2 100%) padding-box,
                linear-gradient(135deg, #0E7A43 0%, #b89c66 35%, #00c6ff 70%, #10b981 100%) border-box;
    border: 2px solid transparent;
    background-size: 200% 200%;
    animation: borderGlowPulse 5s ease infinite;
    border-radius: 24px;
    padding: 2.6rem 2.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(14, 122, 67, 0.08);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.45s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 1;
    transform-style: preserve-3d;
}

/* Dynamic Hover Color Borders for Different Cards */
.why-card[data-index="1"]:hover,
.why-card[data-index="5"]:hover {
    background: linear-gradient(145deg, #ffffff 0%, #f0faf3 100%) padding-box,
                linear-gradient(135deg, #0E7A43, #2ecc71, #b89c66, #0E7A43) border-box;
    box-shadow: 0 25px 55px rgba(14, 122, 67, 0.22);
}

.why-card[data-index="2"]:hover,
.why-card[data-index="6"]:hover {
    background: linear-gradient(145deg, #ffffff 0%, #edf9ff 100%) padding-box,
                linear-gradient(135deg, #00b4d8, #00c6ff, #0E7A43, #00b4d8) border-box;
    box-shadow: 0 25px 55px rgba(0, 180, 216, 0.22);
}

.why-card[data-index="3"]:hover,
.why-card[data-index="7"]:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fdf8ed 100%) padding-box,
                linear-gradient(135deg, #b89c66, #f59e0b, #d4af37, #b89c66) border-box;
    box-shadow: 0 25px 55px rgba(184, 156, 102, 0.25);
}

.why-card[data-index="4"]:hover,
.why-card[data-index="8"]:hover {
    background: linear-gradient(145deg, #ffffff 0%, #f2fcf6 100%) padding-box,
                linear-gradient(135deg, #10b981, #0E7A43, #34d399, #10b981) border-box;
    box-shadow: 0 25px 55px rgba(16, 185, 129, 0.22);
}

/* Glowing mask background on hover */
.why-card-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(14, 122, 67, 0.05) 0%, transparent 75%);
    top: -110px;
    left: -110px;
    pointer-events: none;
    transition: background 0.5s ease;
}

.why-card:hover .why-card-glow {
    background: radial-gradient(circle, rgba(14, 122, 67, 0.16) 0%, transparent 75%);
}

/* Hover scales & rotations */
.why-card:hover {
    transform: translateY(-16px) scale(1.03) rotateX(6deg) rotateY(6deg);
    z-index: 10;
}

/* Active card overlay fade on neighbors */
.why-grid:hover .why-card:not(:hover) {
    opacity: 0.88;
}

/* Shimmer styling for numbers */
.why-card-number {
    display: none !important;
    position: absolute;
    top: 2rem;
    right: 2.2rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(120deg, #0E7A43 30%, #b89c66 50%, #00c6ff 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerNumber 5s linear infinite;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shimmerNumber {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.why-card:hover .why-card-number {
    transform: scale(1.25);
    background: linear-gradient(120deg, #0E7A43 30%, #b89c66 50%, #0E7A43 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating icon container with gradient ring */
.why-card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0E7A43 0%, #15803d 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.6rem;
    box-shadow: 0 10px 22px rgba(14, 122, 67, 0.28);
    animation: iconPulseFloat 4s ease-in-out infinite;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
    transform-style: preserve-3d;
}

.why-card:hover .why-card-icon-wrap {
    background: linear-gradient(135deg, #b89c66 0%, #d4af37 100%);
    color: #ffffff;
    transform: rotateY(360deg) translateZ(15px);
    box-shadow: 0 12px 28px rgba(184, 156, 102, 0.4);
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}



/* Titles and description texts */
.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.25;
}

.why-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Spacing and custom bento properties */
.why-card-tall {
    grid-row: span 2;
    justify-content: space-between;
}

.why-card-wide {
    grid-column: span 2;
}

.why-card-stat-box {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(13, 30, 22, 0.05);
}

.why-card-stat {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #0E7A43;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.why-card-stat span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.why-card-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(13, 30, 22, 0.05);
}

.why-card-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.why-card-checklist li i {
    color: #0E7A43;
    font-size: 0.8rem;
}

/* Sliding hover arrows styling */
.why-card-arrow-container {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    height: 20px;
}

.why-card-arrow {
    transform: translateX(-20px);
    opacity: 0;
    color: #0E7A43;
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* 3D Tilt Card rules */
.why-tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.why-bento-card:hover {
    border-color: rgba(132, 204, 22, 0.45);
    box-shadow: 0 20px 45px rgba(21, 128, 61, 0.25);
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.18) 0%, rgba(15, 41, 30, 0.3) 100%);
}

/* Span classes */
.why-bento-tall {
    grid-row: span 2;
}

.why-bento-wide {
    grid-column: span 2;
}

/* Card content */
.bento-card-num {
    position: absolute;
    top: 1.8rem;
    right: 2.2rem;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
    user-select: none;
}

.why-bento-card:hover .bento-card-num {
    color: rgba(132, 204, 22, 0.08);
    transform: translateY(-2px);
}

.bento-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
    z-index: 2;
    position: relative;
}

.bento-card-content.flex-row-layout {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.bento-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bento-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #84cc16;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-bento-card:hover .bento-card-icon {
    background: #84cc16;
    color: #0c2017;
    box-shadow: 0 5px 15px rgba(132, 204, 22, 0.4);
    border-color: #84cc16;
}

.bento-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 750;
    color: #ffffff;
    margin: 0;
}

.bento-card-content p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Card inner visualizers */
.bento-visual-stat {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding-top: 1.5rem;
}

.bento-circle-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
}

.bento-circular-chart {
    display: block;
    width: 100%;
    height: 100%;
}

.bento-circular-chart .circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 2.8;
}

.bento-circular-chart .circle-fg {
    fill: none;
    stroke: #84cc16;
    stroke-width: 2.8;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease-in-out;
}

.bento-circle-percentage {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 850;
    color: #84cc16;
    line-height: 1;
}

.bento-circle-percentage span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.bento-visual-route {
    flex: 0.9;
    background: rgba(15, 41, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bento-route-svg text {
    font-family: var(--font-sans);
}

.bento-visual-checks {
    flex: 0.8;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
}

.bento-checks-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bento-checks-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.bento-checks-list li i {
    color: #84cc16;
    font-size: 1.05rem;
}

/* Card Accents */
.bento-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #15803d 0%, #84cc16 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-bento-card:hover .bento-card-accent {
    transform: scaleX(1);
}

/* Bottom CTA panel styling */
.why-cta-container {
    text-align: center;
    margin-top: 6rem;
    padding: 3.5rem 2rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(132, 204, 22, 0.16), transparent 25%),
        linear-gradient(135deg, #0f291e 0%, #145c35 52%, #d0b476 160%);
    position: relative;
    z-index: 5;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 41, 30, 0.15);
}

.why-cta-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.why-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.15rem 3rem;
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
    color: #ffffff;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(21, 128, 61, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.why-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b89c66 0%, #15803d 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.why-cta-btn span, .why-cta-btn i {
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-cta-btn i {
    transform: translateX(0);
}

.why-cta-btn:hover {
    box-shadow: 0 15px 35px rgba(21, 128, 61, 0.35);
    transform: translateY(-3px);
}

.why-cta-btn:hover::before {
    opacity: 1;
}

.why-cta-btn:hover i {
    transform: translateX(5px);
}

/* --- CONTACT US SECTION --- */
.contact-section {
    padding: 4.5rem 0 6rem 0 !important;
    background:
        radial-gradient(circle at top right, rgba(184, 156, 102, 0.14), transparent 22%),
        radial-gradient(circle at bottom left, rgba(21, 128, 61, 0.12), transparent 28%),
        linear-gradient(180deg, #f6f8f2 0%, #ffffff 100%);
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 3.5rem;
    align-items: stretch;
    margin-top: 0;
}

/* Info Panel (Left Side) */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2.8rem 2.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 245, 0.98) 100%);
    border: 1px solid rgba(21, 128, 61, 0.14);
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(13, 30, 22, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #0E7A43 0%, #b89c66 100%);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.6rem 0 1.2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(21, 128, 61, 0.08);
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(13, 30, 22, 0.02);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #ffffff;
    border-color: rgba(21, 128, 61, 0.2);
    box-shadow: 0 8px 25px rgba(13, 30, 22, 0.05);
    transform: translateY(-2px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(14, 122, 67, 0.08);
    color: #0E7A43;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(14, 122, 67, 0.12);
}

.contact-item-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 750;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-item-value {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-item-value:hover {
    color: #0E7A43;
}

/* WhatsApp Banner Card */
.whatsapp-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.22);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0.8rem 0;
}

.whatsapp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.35);
}

.whatsapp-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #ffffff;
}

.whatsapp-info {
    flex: 1;
}

.whatsapp-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.whatsapp-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 0.15rem;
}

.whatsapp-arrow {
    font-size: 1.1rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.whatsapp-card:hover .whatsapp-arrow {
    transform: translateX(4px);
}

.contact-info-footer {
    padding-top: 1rem;
    border-top: 1px dashed rgba(21, 128, 61, 0.15);
}

.contact-footer-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: #0E7A43;
    font-weight: 600;
}

/* Form Panel (Right Side) */
.contact-form-panel {
    display: flex;
    flex-direction: column;
    padding: 2.8rem 2.6rem;
    background: #ffffff;
    border: 1px solid rgba(21, 128, 61, 0.14);
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(13, 30, 22, 0.05);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    margin-bottom: 1.6rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: #f8faf7;
    border: 1.5px solid rgba(14, 122, 67, 0.18);
    border-radius: 14px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    background: #ffffff;
    border-color: #0E7A43;
    box-shadow: 0 0 0 4px rgba(14, 122, 67, 0.12);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #0E7A43 0%, #15803d 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    box-shadow: 0 10px 25px rgba(14, 122, 67, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(14, 122, 67, 0.35);
}

.whatsapp-action:hover .action-card-icon {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

.mail-action:hover .action-card-icon {
    background: #15803d;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(21, 128, 61, 0.4);
}

/* Message Desk (Right side) */
.contact-form-panel {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(21, 128, 61, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.form-panel-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.form-icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(21, 128, 61, 0.06);
    color: #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.form-panel-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.form-panel-header p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin: 2px 0 0 0;
}

/* Form Styles */
.premium-contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.premium-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.premium-contact-form .form-group-full {
    grid-column: span 2;
}

.premium-contact-form .form-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 750;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.premium-contact-form .form-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(21, 128, 61, 0.12);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.premium-contact-form .form-input:focus {
    border-color: #15803d;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(21, 128, 61, 0.1);
    transform: translateY(-1px);
}

.premium-contact-form textarea.form-input {
    resize: none;
    min-height: 120px;
}

/* Premium Submit Button */
.premium-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0f291e 0%, #15803d 40%, #84cc16 70%, #0f291e 100%);
    background-size: 300% auto;
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 14px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 750;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(15, 41, 30, 0.15);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.premium-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.premium-submit-btn:hover::before {
    transform: translateX(100%);
}

.btn-arrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.premium-submit-btn:hover {
    box-shadow: 0 15px 30px rgba(132, 204, 22, 0.25);
    transform: translateY(-2px);
    background-position: right center;
}

.premium-submit-btn:hover .btn-arrow-wrap {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.2);
}

/* Success Message Alert */
.form-notification {
    display: none;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.45;
}

.form-notification.success {
    display: flex;
    align-items: center;
    background: rgba(21, 128, 61, 0.08);
    border: 1px solid rgba(21, 128, 61, 0.2);
    color: #15803d;
}

.form-notification.error {
    display: flex;
    align-items: center;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #b91c1c;
}

/* --- FOOTER STYLES (Light style) --- */
custom-footer {
    display: block;
    background: var(--bg-cream);
    border-top: 1px solid var(--border-color);
    padding: 6rem 0 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    gap: 0;
    text-decoration: none;
}

.footer-logo-img {
    height: 190px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: -0.35rem;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-left: 0;
    line-height: 1.1;
    text-align: left;
    letter-spacing: 0.02em;
}

.footer-logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.08rem;
}

.footer-logo-tagline {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0;
    text-transform: none;
    margin-top: 0.45rem;
    line-height: 1.35;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(21, 128, 61, 0.25);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: transform var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.footer-social-links a:hover {
    color: #ffffff;
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.footer-link-item a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-link-item a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    display: grid;
    gap: 1.1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(13, 30, 22, 0.08);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-grad);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(21, 128, 61, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    border: none;
}

.back-to-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 128, 61, 0.35);
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-premium), transform 0.8s var(--transition-premium);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .section {
        padding: 7rem 0;
    }

    .container {
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual-container {
        order: -1;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-heading {
        font-size: 2.8rem;
    }
    
    .about-visual-block {
        display: flex;
        justify-content: center;
    }
    
    .about-img-box {
        width: 100%;
        max-width: 500px;
        height: 500px;
    }
    
    .products-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .network-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .network-top-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .network-heading {
        max-width: none;
    }

    .network-detail-grid {
        grid-template-columns: 1fr;
    }

    .network-visual {
        justify-content: center;
    }

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

    .contact-header-shell {
        padding: 2.2rem 2rem;
    }
    
    .sustainability-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .sustainability-visual-box {
        order: -1;
    }
    
    .sustainability-heading {
        font-size: 2.8rem;
    }

    .sus-interactive-box {
        width: min(530px, 92vw);
        height: min(530px, 92vw);
    }

    .sus-globe-center {
        width: 206px;
        height: 206px;
    }

    .sus-orbit-tooltip {
        width: 286px;
    }

    .sus-circle-wrapper {
        width: 360px;
        height: 360px;
    }
    
    .sus-circle-container {
        width: 335px;
        height: 335px;
    }
    
    /* Removed old why-grid properties */
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1.4fr 1fr 1.2fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-section {
        min-height: calc(72vh - 68px);
        height: calc(72vh - 68px);
        margin-top: 68px;
    }

    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(250, 249, 245, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 5rem 3rem;
        gap: 2rem;
        transition: var(--transition-normal);
        border-left: 1px solid var(--border-color);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(13, 30, 22, 0.05);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-trigger {
        justify-content: space-between;
    }

    .nav-dropdown-toggle {
        min-width: 44px;
        min-height: 44px;
        font-size: 0.8rem;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 0 0 0.75rem;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        overflow: hidden;
        transform: none;
        transition: max-height var(--transition-normal), padding var(--transition-normal);
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 420px;
        padding-top: 0.6rem;
        transform: none;
    }

    .nav-dropdown-menu a {
        padding: 0.55rem 0.65rem;
        font-size: 0.95rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Toggle active state */
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-heading {
        font-size: 2.2rem;
    }
    
    .hero-desc {
        font-size: 1.05rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-blob-mask {
        max-width: 300px;
        height: 300px;
    }
    
    .hero-ring {
        width: 320px;
        height: 320px;
    }
    
    .products-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    .why-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .why-bento-tall {
        grid-row: auto;
    }
    .why-bento-wide {
        grid-column: auto;
    }
    .bento-card-content.flex-row-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .network-section {
        padding-top: 6.5rem;
        padding-bottom: 6.5rem;
    }

    .network-heading {
        font-size: 2.1rem;
    }

    .network-intro {
        font-size: 1rem;
    }

    .network-detail-card {
        padding: 1.45rem 1.2rem;
        border-radius: 20px;
    }

    .trade-globe-stage {
        width: min(100%, 560px);
        margin: 0 auto;
        border-radius: 20px;
    }

    .products-header,
    .services-header,
    .why-header-shell {
        margin-bottom: 3rem;
    }

    .contact-header-shell {
        padding: 1.8rem 1.4rem;
        border-radius: 22px;
    }

    .products-title {
        font-size: 2.6rem;
    }

    .product-card-img-box {
        height: 250px;
    }

    .product-card-badge-wrap {
        top: 250px;
    }

    .why-hero-panel {
        padding: 1.6rem;
        border-radius: 24px;
    }

    .why-proof-row {
        gap: 0.65rem;
    }

    .why-proof-pill {
        width: 100%;
        justify-content: center;
    }

    .why-orbit-stage {
        min-height: 320px;
    }

    .why-orbit-core {
        width: 150px;
        height: 150px;
    }

    .why-orbit-core strong {
        font-size: 1.55rem;
    }

    .why-orbit-ring-outer {
        width: 270px;
        height: 270px;
    }

    .why-orbit-ring-inner {
        width: 220px;
        height: 220px;
    }

    .why-orbit-node {
        width: 102px;
        min-height: 82px;
        padding: 0.8rem 0.7rem;
    }

    .why-orbit-node strong {
        font-size: 1.3rem;
    }

    .why-signal-card {
        padding: 1.4rem;
    }

    .why-cta-container {
        padding: 2.4rem 1.2rem;
        border-radius: 22px;
    }
    
    .why-card-tall, .why-card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .sustainability-heading {
        font-size: 2.4rem;
    }

    .sus-interactive-box {
        width: min(420px, 94vw);
        height: min(420px, 94vw);
    }

    .sus-globe-center {
        width: 174px;
        height: 174px;
    }

    .sus-orbit-tooltip {
        top: auto !important;
        left: 50% !important;
        bottom: 10%;
        width: min(290px, 78vw);
        padding: 1.1rem 1.15rem;
        transform: translateX(-50%) !important;
    }

    .sus-tooltip-title {
        font-size: 0.95rem;
    }

    .sus-tooltip-desc {
        font-size: 0.82rem;
    }

    .sus-orbit-node {
        width: 48px;
        height: 48px;
    }

    .sus-node-1 { top: 6%; }
    .sus-node-2 { left: 91%; top: 35%; }
    .sus-node-3 { left: 76%; top: 86%; }
    .sus-node-4 { left: 24%; top: 86%; }
    .sus-node-5 { left: 9%; top: 35%; }

    @keyframes susParticleOrbit {
        0% { transform: rotate(0deg) translateX(168px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(168px) rotate(-360deg); }
    }

    @keyframes susParticleOrbitSmall {
        0% { transform: rotate(0deg) translateX(116px) rotate(0deg); }
        100% { transform: rotate(-360deg) translateX(116px) rotate(360deg); }
    }
    
    .sus-circle-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .sus-circle-container {
        width: 290px;
        height: 290px;
    }
    
    .sus-circle-ring {
        width: 360px !important;
        height: 360px !important;
        top: -20px !important;
        left: -20px !important;
    }
    
    .sus-banner-card {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }
    
    .sus-banner-icon {
        font-size: 1.8rem;
    }
    
    .contact-premium-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form-panel {
        padding: 2rem;
    }

    .premium-contact-form .form-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-contact-form .form-group-full {
        grid-column: span 1;
    }
    
    .contact-premium-banner {
        padding: 2.2rem 2rem;
    }
    
    .contact-premium-banner h2 {
        font-size: 1.8rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .about-img-container {
        width: 100%;
        max-width: 500px;
    }

    .about-features-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem 1rem;
        padding: 1.8rem 1rem;
    }

    .about-feature-col {
        border-right: none !important;
    }

    .about-feature-col:nth-child(odd) {
        border-right: 1px solid rgba(13, 30, 22, 0.08) !important;
    }
}

@media (max-width: 480px) {
    .about-features-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-feature-col {
        border-right: none !important;
    }

    .about-badge-subtext {
        font-size: 0.7rem;
    }

    .sus-interactive-box {
        width: min(350px, 94vw);
        height: min(350px, 94vw);
    }

    .sus-globe-center {
        width: 148px;
        height: 148px;
    }

    .sus-globe-label strong {
        font-size: 0.64rem;
    }

    .sus-globe-label span {
        font-size: 0.55rem;
    }

    .sus-orbit-tooltip {
        bottom: 8%;
        width: min(260px, 80vw);
    }

    .sus-orbit-node {
        width: 42px;
        height: 42px;
    }

    .sus-orbit-node-inner {
        font-size: 0.78rem;
    }
}

/* --- PREMIUM WEBPAGE ANIMATIONS & HOVER INTERACTIONS --- */

/* Fallback: default values for reveal system when JS is enabled */
.js-enabled .reveal-up {
    opacity: 0;
    transform: perspective(1200px) translateY(80px) rotateX(12deg) scale(0.96);
    filter: blur(4px);
}
.js-enabled .reveal-down {
    opacity: 0;
    transform: perspective(1200px) translateY(-80px) rotateX(-12deg) scale(0.96);
    filter: blur(4px);
}
.js-enabled .reveal-left {
    opacity: 0;
    transform: perspective(1200px) translateX(-90px) rotateY(-12deg) scale(0.96);
    filter: blur(4px);
}
.js-enabled .reveal-right {
    opacity: 0;
    transform: perspective(1200px) translateX(90px) rotateY(12deg) scale(0.96);
    filter: blur(4px);
}
.js-enabled .reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(4px);
}
.js-enabled .reveal-blur {
    opacity: 0;
    filter: blur(12px);
}
.js-enabled .reveal-up-3d {
    opacity: 0;
    transform: perspective(1200px) rotateX(15deg) translateY(60px);
}

/* Reveal transition trigger */
.js-enabled .reveal-up.visible,
.js-enabled .reveal-down.visible,
.js-enabled .reveal-left.visible,
.js-enabled .reveal-right.visible,
.js-enabled .reveal-scale.visible,
.js-enabled .reveal-blur.visible,
.js-enabled .reveal-up-3d.visible {
    opacity: 1;
    transform: perspective(1200px) translate(0, 0) scale(1) rotateX(0deg) rotateY(0deg);
    filter: blur(0px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0ms);
    will-change: transform, opacity, filter;
}

/* Page Load Timeline (triggered by .page-loaded class on body) */
.js-enabled custom-header {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-loaded custom-header {
    opacity: 1;
    transform: translateY(0);
}

.js-enabled .hero-bg-video {
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-loaded .hero-bg-video {
    opacity: 1;
    transform: scale(1.0); /* Zoomed out to scale(1.0) */
}

.js-enabled .hero-overlay {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-loaded .hero-overlay {
    opacity: 1;
}

/* About Heading (treated as hero heading) line-by-line reveal */
.line-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}
.line-text {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-loaded #about-us .about-heading .line-wrapper:nth-of-type(1) .line-text {
    transition-delay: 350ms;
}
.page-loaded #about-us .about-heading .line-wrapper:nth-of-type(2) .line-text {
    transition-delay: 480ms;
}
.page-loaded #about-us .about-heading .line-text {
    transform: translateY(0);
}

/* Staggered text & buttons for page load */
.js-enabled #about-us .about-lead-green,
.js-enabled #about-us .about-btn-pill,
.js-enabled #about-us .about-tag-container,
.js-enabled #about-us .about-text,
.js-enabled #about-us .about-badge-card-overlay,
.js-enabled #about-us .about-features-card {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-enabled #about-us .about-border-overlay {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loaded #about-us .about-tag-container { opacity: 1; transform: translateY(0); transition-delay: 250ms; }
.page-loaded #about-us .about-lead-green { opacity: 1; transform: translateY(0); transition-delay: 580ms; }
.page-loaded #about-us .about-text:nth-of-type(2) { opacity: 1; transform: translateY(0); transition-delay: 660ms; }
.page-loaded #about-us .about-text:nth-of-type(3) { opacity: 1; transform: translateY(0); transition-delay: 720ms; }
.page-loaded #about-us .about-features-card { opacity: 1; transform: translateY(0); transition-delay: 800ms; }
.page-loaded #about-us .about-btn-pill { opacity: 1; transform: translateY(0); transition-delay: 880ms; }
.page-loaded #about-us .about-badge-card-overlay { opacity: 1; transform: translateY(0); transition-delay: 950ms; }
.page-loaded #about-us .about-border-overlay { opacity: 1; transition-delay: 750ms; }

/* Slow float looping animations for visual cards */
@keyframes cardFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}
.about-badge-card-overlay {
    animation: cardFloat 3s ease-in-out infinite alternate;
}

/* Ambient blobs floating */
@keyframes blobFloat {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.04); }
    100% { transform: translateY(0) scale(1); }
}
.blob-primary {
    animation: blobFloat 22s ease-in-out infinite alternate;
}
.blob-secondary {
    animation: blobFloat 26s ease-in-out infinite alternate-reverse;
}

/* Nav links upward movement on hover */
.nav-link {
    transition: color var(--transition-fast), transform var(--transition-fast);
}
.nav-link:hover {
    transform: translateY(-1px);
}

/* Logo container hover */
.logo-container {
    transition: transform var(--transition-normal);
}
.logo-container:hover {
    transform: scale(1.02);
}

/* Header CTA button hover effects */
.nav-cta .btn-secondary {
    position: relative;
    overflow: hidden;
}
.nav-cta .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(21, 128, 61, 0.08), transparent);
    transition: left 0.5s ease;
    z-index: 0;
    pointer-events: none;
}
.nav-cta .btn-secondary:hover::before {
    left: 100%;
}

/* About features cards lift */
.about-feature-col {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about-feature-col:hover {
    transform: translateY(-8px) rotateX(8deg) rotateY(8deg);
}

/* About button pill shine */
.about-btn-pill {
    position: relative;
    overflow: hidden;
}
.about-btn-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.65s ease;
    z-index: 1;
}
.about-btn-pill:hover::before {
    left: 150%;
}

/* Product Cards Interactions */
.product-card-mockup {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease !important;
    transform-style: preserve-3d;
}
.product-card-mockup:hover {
    transform: translateY(-10px) rotateX(6deg) rotateY(6deg);
    border-color: rgba(21, 128, 61, 0.4) !important;
    box-shadow: 0 25px 50px rgba(14, 122, 67, 0.12) !important;
}
.product-card-img-box {
    position: relative;
    overflow: hidden;
}
.product-card-img-box img,
.product-card-img-box video {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.product-card-mockup:hover .product-card-img-box img,
.product-card-mockup:hover .product-card-img-box video {
    transform: scale(1.05) !important;
}
.product-card-hexagon-wrap {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
}
.product-card-mockup:hover .product-card-hexagon-wrap {
    transform: scale(1.1) rotateY(360deg);
}
.product-card-title {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card-mockup:hover .product-card-title {
    transform: translateY(-2px);
}

/* Sibling dimming for products grid */
.products-grid:hover .product-card-mockup:not(:hover) {
    opacity: 0.88;
}

/* Moving light reflection on products card */
.product-card-img-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: left 0.75s ease;
    z-index: 2;
    pointer-events: none;
}
.product-card-mockup:hover .product-card-img-box::before {
    left: 150%;
}

/* Sustainability Orbit Node loop floating */
@keyframes orbitFloat1 {
    0% { transform: translate(-50%, -50%) translateY(0); }
    100% { transform: translate(-50%, -50%) translateY(-4px); }
}
@keyframes orbitFloat2 {
    0% { transform: translate(-50%, -50%) translateX(0); }
    100% { transform: translate(-50%, -50%) translateX(4px); }
}
.sus-node-1 { animation: orbitFloat1 3s ease-in-out infinite alternate; }
.sus-node-2 { animation: orbitFloat2 3.5s ease-in-out infinite alternate; }
.sus-node-3 { animation: orbitFloat1 4s ease-in-out infinite alternate-reverse; }
.sus-node-4 { animation: orbitFloat2 4.5s ease-in-out infinite alternate-reverse; }
.sus-node-5 { animation: orbitFloat1 3.2s ease-in-out infinite alternate; }

/* Scale checklist check icons */
.fa-circle-check, .fa-clipboard-check {
    transform: scale(0.7);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.visible .fa-circle-check, .visible .fa-clipboard-check,
.active .fa-circle-check, .active .fa-clipboard-check {
    transform: scale(1);
}

/* Scale interactive orb box */
.sustainability-visual-box .sus-interactive-box {
    transform: scale(0.96);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.sustainability-visual-box.visible .sus-interactive-box {
    transform: scale(1);
}

/* Global Sourcing Globe floats and card lift */
@keyframes stageFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}
.trade-globe-stage.visible {
    animation: stageFloat 4s ease-in-out infinite alternate;
}
.network-detail-card {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
    transform-style: preserve-3d;
}
.network-detail-card:hover {
    transform: translateY(-8px) rotateX(6deg) rotateY(6deg);
    border-color: rgba(21, 128, 61, 0.24) !important;
    box-shadow: 0 20px 45px rgba(14, 122, 67, 0.1) !important;
}
.network-detail-card:hover .network-card-icon {
    transform: rotateY(360deg) translateZ(15px) !important;
}

/* Services section card hover animations */
.service-card-mockup {
    position: relative;
    overflow: hidden;
    --service-rotate-x: 0deg;
    --service-rotate-y: 0deg;
    --service-lift: 0px;
    transform: perspective(1100px) translateY(var(--service-lift)) rotateX(var(--service-rotate-x)) rotateY(var(--service-rotate-y));
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.service-card-mockup:hover {
    --service-lift: -12px;
    border-color: rgba(21, 128, 61, 0.24) !important;
    box-shadow: 0 24px 50px rgba(13, 30, 22, 0.1) !important;
}
.services-page .service-card-mockup > :not(.card-shine):not(.service-card-beam) {
    transform: translateZ(22px);
    transform-style: preserve-3d;
}
.services-page .service-card-mockup .service-card-icon-wrap {
    transform: translateZ(38px);
}
.services-page .service-card-mockup:hover .service-card-icon-wrap {
    transform: translateZ(38px) rotateY(360deg);
}
.service-card-mockup .service-card-icon-wrap i {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card-mockup:hover .service-card-icon-wrap i {
    transform: rotate(6deg) scale(1.05);
}
.service-card-line {
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card-mockup:hover .service-card-line {
    width: 80px;
}
.service-card-footer i {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card-mockup:hover .service-card-footer i {
    transform: translateX(5px);
}
.service-card-num {
    transition: color 0.4s ease;
}
.service-card-mockup:hover .service-card-num {
    color: rgba(21, 128, 61, 0.16);
}
.service-card-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    z-index: 5;
    pointer-events: none;
}
.service-card-mockup:hover::after {
    left: 150%;
}

@media (hover: none), (prefers-reduced-motion: reduce) {
    .services-page .service-card-mockup {
        --service-rotate-x: 0deg !important;
        --service-rotate-y: 0deg !important;
        will-change: auto;
    }

}

.services-btn-outline {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.services-btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 128, 61, 0.12);
    background: var(--bg-cream);
}
.services-btn-outline i {
    transition: transform 0.3s ease;
}
.services-btn-outline:hover i {
    transform: translateY(3px);
}



/* Contact form inputs underline expand & smooth label transition */
.form-group {
    position: relative;
}
.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
    z-index: 10;
    pointer-events: none;
}
.form-group:focus-within::after {
    width: 100%;
    left: 0;
}
.form-label {
    transition: color 0.3s ease, transform 0.3s ease;
}
.form-group:focus-within .form-label {
    color: var(--primary-color);
    transform: translateX(4px);
}
.form-input {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease !important;
}
.form-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 12px rgba(21, 128, 61, 0.15) !important;
    background: #ffffff !important;
    transform: translateY(-1px) !important;
}

.form-submit-btn {
    position: relative;
    overflow: hidden;
}
.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.75s ease;
}
.premium-submit-btn:hover::before {
    left: 150%;
}

/* Pulse contact icon once */
@keyframes iconPulseOnce {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.contact-info-deck.visible .info-card-icon {
    animation: iconPulseOnce 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1;
}

/* Footer Link animated underlines & hover transforms */
.footer-links a {
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.footer-links a:hover::after {
    width: 100%;
}

.footer-social-icon:hover,
.footer-social a:hover,
.social-icon:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

/* Back to top button pulse and rotation */
@keyframes backToTopPulse {
    0% { box-shadow: 0 4px 15px rgba(21, 128, 61, 0.25); }
    50% { box-shadow: 0 4px 28px rgba(21, 128, 61, 0.45); }
    100% { box-shadow: 0 4px 15px rgba(21, 128, 61, 0.25); }
}
#back-to-top {
    animation: backToTopPulse 2.5s ease-in-out infinite;
}
#back-to-top i {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
#back-to-top:hover i {
    transform: rotate(360deg);
}

/* ACCESSIBILITY & REDUCED MOTION OVERRIDES */
@media (prefers-reduced-motion: reduce) {
    .reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur, .reveal-up-3d,
    .line-text, .blob-primary, .blob-secondary, .trade-globe-stage,
    .about-badge-card-overlay, .sus-globe-center, .why-hero-panel,
    .why-orbit-ring, .why-orbit-ring-outer, .why-orbit-ring-inner,
    .sus-orbit-line-outer, .sus-orbit-line-inner, .sus-globe-sphere,
    .sus-globe-clouds, .sus-globe-atmosphere, .sus-orbit-particle,
    .sus-node-1, .sus-node-2,
    .sus-node-3, .sus-node-4, .sus-node-5, #back-to-top, .logo-container,
    .nav-link, .product-card-mockup, .product-card-img-box img, .product-card-img-box video,
    .service-card-mockup, .why-card, .why-card-glow, .why-card-icon-wrap,
    .why-card-number, .why-card-title, .why-card-accent-line, .form-input,
    .form-label, .form-submit-btn, .about-feature-col, .about-btn-pill {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
    }

    .sus-globe-center {
        transform: translate(-50%, -50%) !important;
    }

    .sus-orbit-node {
        transform: translate(-50%, -50%) !important;
    }
    .js-enabled .reveal-up,
    .js-enabled .reveal-left,
    .js-enabled .reveal-right,
    .js-enabled .reveal-scale,
    .js-enabled .reveal-blur,
    .js-enabled .reveal-up-3d {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* Unified Heading Font, Size, and Responsive Behavior */
.about-heading,
.products-title,
.sustainability-heading,
.network-heading,
.services-section .section-title,
.why-header-shell .section-title,
.contact-header-shell .section-title,
.form-title {
    font-family: var(--font-heading) !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
}

@media (max-width: 991px) {
    .about-heading,
    .products-title,
    .sustainability-heading,
    .network-heading,
    .services-section .section-title,
    .why-header-shell .section-title,
    .contact-header-shell .section-title,
    .form-title {
        font-size: 2.4rem !important;
    }
}

@media (max-width: 768px) {
    .about-heading,
    .products-title,
    .sustainability-heading,
    .network-heading,
    .services-section .section-title,
    .why-header-shell .section-title,
    .contact-header-shell .section-title,
    .form-title {
        font-size: 2rem !important;
    }
}

/* Line text visibility correction for reveal-line-by-line */
.js-enabled .reveal-line-by-line .line-text {
    transform: translateY(100%);
}
.reveal-line-by-line.visible .line-text {
    transform: translateY(0);
}

/* 3D Perspective Hover Tilt transitions for homepage cards */
.product-card-mockup, 
.service-card-mockup, 
.network-detail-card,
.info-detail-card,
.info-action-card,
.contact-form-panel {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE OPTIMIZATIONS
   ========================================== */

/* Prevent horizontal scroll & right whitespace on mobile */
html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.why-section, .about-cta-section, .contact-section {
    max-width: 100% !important;
    overflow: hidden !important;
}

/* --- WHY CHOOSE US MOBILE OPTIMIZATIONS --- */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.4rem !important;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 3.5rem 0 !important;
    }

    .why-header-shell {
        text-align: center;
        margin-bottom: 2.5rem !important;
        padding: 0 1rem;
    }

    .why-header-shell .section-title {
        font-size: clamp(2rem, 7vw, 2.6rem) !important;
        line-height: 1.2 !important;
    }

    .why-signal-band {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .why-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
        margin-top: 2rem !important;
    }

    .why-card, .why-card-tall, .why-card-wide {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        padding: 2rem 1.4rem !important;
        border-radius: 20px !important;
    }

    .why-card-number {
        top: 1.4rem !important;
        right: 1.4rem !important;
        font-size: 1.15rem !important;
    }

    .why-card-icon-wrap {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.25rem !important;
        margin-bottom: 1.2rem !important;
    }

    .why-card-title {
        font-size: 1.18rem !important;
    }

    .why-card-desc {
        font-size: 0.88rem !important;
    }

    .why-cta-container {
        margin-top: 3.5rem !important;
        padding: 2.5rem 1.2rem !important;
        border-radius: 22px !important;
    }

    .why-cta-heading {
        font-size: 1.6rem !important;
    }

    .why-cta-btn {
        padding: 0.95rem 2rem !important;
        font-size: 0.92rem !important;
        width: 100% !important;
        justify-content: center !important;
    }
}

/* --- CONTACT US SECTION MOBILE OPTIMIZATIONS --- */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0 4rem 0 !important;
    }

    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-info-panel, .contact-form-panel {
        padding: 1.8rem 1.2rem !important;
        border-radius: 20px !important;
    }

    .contact-details {
        gap: 1rem !important;
        margin: 1.2rem 0 !important;
    }

    .contact-item {
        padding: 0.9rem 1rem !important;
        gap: 0.9rem !important;
    }

    .contact-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.05rem !important;
    }

    .contact-item-value {
        font-size: 0.88rem !important;
        word-break: break-word !important;
    }

    .whatsapp-card {
        padding: 1rem 1.2rem !important;
        gap: 0.9rem !important;
        border-radius: 16px !important;
    }

    .whatsapp-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.3rem !important;
    }

    .whatsapp-title {
        font-size: 0.95rem !important;
    }

    .whatsapp-desc {
        font-size: 0.78rem !important;
    }

    .form-title {
        font-size: 1.75rem !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .form-group-full {
        grid-column: span 1 !important;
    }

    .form-input {
        padding: 0.85rem 1rem !important;
        font-size: 0.9rem !important;
    }

    .form-submit-btn {
        padding: 1rem !important;
        font-size: 0.95rem !important;
    }
}

/* --- ABOUT PAGE STYLES --- */
.about-banner-section {
    position: relative;
    width: 100%;
    height: 650px;
    margin-top: 126px; /* Offset for enlarged sticky header */
    padding: 0;
    overflow: hidden;
    background-color: var(--bg-light);
}

.about-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resize without stretching */
    object-position: 25% center;
    display: block;
    transition: transform 1.2s var(--transition-premium);
}

@media (max-width: 768px) {
    .about-banner-section {
        height: 420px;
    }
}

.about-banner-section:hover .about-banner-img {
    transform: scale(1.015); /* Subtle premium hover zoom */
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 30, 22, 0.12) 0%, rgba(13, 30, 22, 0.25) 100%);
    z-index: 3;
    pointer-events: none;
}

/* --- ABOUT DETAILS (WHO WE ARE) STYLES --- */
.about-details-section .about-showcase-card,
.about-details-section .about-pillars-title-box,
.about-details-section .about-pillars-layout,
.about-details-section .about-watermark { display: none !important; }

.about-page .about-details-section > .container {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.about-details-section .section-header { text-align: left; width: 100%; max-width: none; margin: 0; padding-left: 4.5rem; padding-right: 4.5rem; }
.about-main-title span { color: #1f6c18; }
.about-details-section .products-divider { justify-content: flex-start; margin-left: 0; max-width: 500px; }

.who-we-are-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: none;
    margin: 1rem 0 0;
    border: 1px solid rgba(44, 104, 28, .2);
    border-radius: 0;
    overflow: hidden;
    background: rgba(255,255,255,.88);
    box-shadow: 0 20px 60px rgba(28, 70, 20, .08);
}

.who-we-are-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 1.1rem 1.75rem; }
.who-card { display: grid; grid-template-columns: 88px 1fr; gap: 1.2rem; align-items: start; padding: 2rem 1.25rem; position: relative; overflow: hidden; isolation: isolate; }
.who-card:nth-child(odd) { border-right: 1px solid rgba(44, 104, 28, .18); }
.who-card:nth-child(n+3) { border-top: 1px dashed rgba(44, 104, 28, .25); }
.who-card::before { display: none; }
.who-icon { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; color: #2c7a1e; background: linear-gradient(135deg, rgba(241,247,233,.94), rgba(223,234,212,.94)); box-shadow: 0 8px 24px rgba(42, 105, 27, .08); font-size: 1.9rem; position: relative; z-index: 1; }
.who-card p {
    width: 100%;
    min-width: 0;
    margin: 0;
    color: #142019;
    font-size: .98rem;
    line-height: 1.55;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    word-spacing: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
}
.who-card strong { color: #237019; }
.who-card p.who-card-readable {
    text-align: left;
    text-align-last: auto;
    text-justify: auto;
    word-spacing: normal;
    letter-spacing: 0;
}
.who-visual { min-height: 100%; position: relative; overflow: hidden; background: #000000; }
.who-visual img, .who-visual video { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; position: absolute; inset: 0; }
.who-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(8, 35, 20, .7) 100%); }
.who-visual-caption { position: absolute; left: 2rem; right: 2rem; bottom: 2rem; z-index: 2; color: #fff; display: flex; flex-direction: column; gap: .6rem; }
.who-visual-caption span { width: max-content; padding: .55rem .85rem; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; background: rgba(255,255,255,.14); backdrop-filter: blur(10px); font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.who-visual-caption span i { margin-right: .4rem; color: #b9e87c; }
.who-visual-caption strong { color: #fff; font-family: var(--font-heading); font-size: clamp(1.45rem, 2vw, 2.3rem); line-height: 1.15; }

@media (max-width: 1100px) {
    .who-we-are-layout { grid-template-columns: 1fr; }
    .who-visual { min-height: 360px; }
    .who-visual img, .who-visual video { object-position: center 54%; }
}

@media (max-width: 720px) {
    .about-details-section .section-header { padding-left: 1.25rem; padding-right: 1.25rem; }
    .who-we-are-grid { grid-template-columns: 1fr; padding: .75rem 1rem; }
    .who-card { grid-template-columns: 60px 1fr; padding: 1.5rem .5rem; gap: .9rem; }
    .who-card:nth-child(odd) { border-right: 0; }
    .who-card:nth-child(n+2) { border-top: 1px dashed rgba(44, 104, 28, .25); }
    .who-icon { width: 54px; height: 54px; font-size: 1.35rem; }
    .who-card p { font-size: .92rem; }
    .who-visual { min-height: 260px; }
    .logo-img { height: 118px; }
    .header-active .logo-img { height: 98px; }
    .logo-brand-stack { margin-left: .35rem; }
    .logo-brand-stack .logo-tagline { font-size: .72rem !important; }
}

.about-details-section {
    padding: 7rem 0;
    background: linear-gradient(120deg, #fff 0%, #fbfcf8 72%, #eef4e6 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .about-details-section {
        padding: 4rem 0;
    }
}

.about-watermark {
    position: absolute;
    top: 5%;
    right: -2%;
    font-family: var(--font-heading);
    font-size: 11rem;
    font-weight: 900;
    color: rgba(22, 163, 74, 0.02);
    letter-spacing: 0.1em;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.about-kicker, .industries-kicker {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.about-main-title, .industries-main-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Showcase Card */
.about-showcase-card {
    background-color: #041f13;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 0;
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(13, 30, 22, 0.15);
    position: relative;
    z-index: 2;
}

.showcase-left-panel {
    background: linear-gradient(135deg, #093c24 0%, #031c11 100%);
    padding: 2.75rem 4.5rem 2.75rem 3.5rem; /* Reduced padding to decrease height */
    display: flex;
    flex-direction: column;
    gap: 1.25rem; /* Reduced gap */
    position: relative;
    z-index: 2;
    /* Create the slanted cut on the right */
    clip-path: polygon(0 0, 96% 0, 89% 100%, 0 100%);
    width: 110%; /* Overlap into the image side */
}

.showcase-badge-custom {
    align-self: flex-start;
    padding: 0.45rem 1rem;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.showcase-badge-custom i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.showcase-title-custom {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.showcase-title-custom .highlight-green {
    color: var(--accent-color);
}

.showcase-divider-custom {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: -0.5rem;
}

.showcase-divider-custom i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.showcase-divider-custom span {
    display: block;
    width: 80px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.showcase-lead-para-custom {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    font-weight: 400;
    max-width: 90%;
}

.showcase-badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 86%; /* Push it leftward to clear slant clipping */
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.badge-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s var(--transition-premium), background-color 0.4s var(--transition-premium), color 0.4s var(--transition-premium);
    transform-style: preserve-3d;
}

.badge-item:hover .badge-circle {
    transform: translateY(-5px) scale(1.05) rotateY(10deg);
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: #ffffff;
}

.badge-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    max-width: 85px;
}

.showcase-right-panel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    margin-left: -10%; /* Slide under slant */
    width: 110%;
}

.showcase-img-custom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s var(--transition-premium);
}

.about-showcase-card:hover .showcase-img-custom {
    transform: scale(1.03);
}

/* Responsiveness overrides inside media queries */
@media (max-width: 1024px) {
    .about-showcase-card {
        grid-template-columns: 1fr;
    }
    .showcase-left-panel {
        width: 100%;
        clip-path: none;
        padding: 3rem 2rem;
    }
    .showcase-right-panel {
        margin-left: 0;
        width: 100%;
        height: 350px;
    }
    .showcase-slant-divider {
        display: none;
    }
}

@media (max-width: 580px) {
    .showcase-badges-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .showcase-title-custom {
        font-size: 2rem;
    }
}

/* Pillars Section Title */
.about-pillars-title-box {
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 3.5rem;
}

.pillars-section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.pillars-section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Pillars Layout V2 */
.about-pillars-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.pillar-card-v2 {
    background-color: var(--bg-white);
    background-image: radial-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    background-size: 16px 16px;
    background-position: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 3rem 2.2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: transform 0.5s var(--transition-premium), border-color 0.5s var(--transition-premium), box-shadow 0.5s var(--transition-premium);
    overflow: hidden;
    min-height: 330px;
    display: flex;
    align-items: center;
}

.pillar-card-v2:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(21, 128, 61, 0.09);
}

.pillar-left {
    padding-left: 180px !important;
    padding-right: 2.8rem !important;
}

.pillar-right {
    padding-right: 180px !important;
    padding-left: 2.8rem !important;
}

.pillar-text-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.pillar-sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(180deg, #15803d 0%, #166534 100%);
    z-index: 1;
    transition: background 0.4s var(--transition-premium);
}

.pillar-card-v2:hover .pillar-sidebar {
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
}

.sidebar-left {
    left: 0;
    /* Waist curve: top-right and bottom-right curve inward at 35%-65% height */
    clip-path: polygon(0 0, 120px 0, 85px 35%, 85px 65%, 120px 100%, 0 100%);
}

.sidebar-right {
    right: 0;
    /* Waist curve: top-left and bottom-left curve inward at 35%-65% height */
    clip-path: polygon(35px 0, 120px 0, 120px 100%, 35px 100%, 70px 65%, 70px 35%);
}

.card-number-badge {
    position: absolute;
    top: 0;
    width: 65px;
    height: 45px;
    background-color: #14532d;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background-color 0.4s var(--transition-premium);
}

.pillar-card-v2:hover .card-number-badge {
    background-color: var(--secondary-color);
}

.sidebar-left .card-number-badge {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    border-top-left-radius: 24px;
    padding-right: 10px;
}

.sidebar-right .card-number-badge {
    right: 0;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    border-top-right-radius: 24px;
    padding-left: 10px;
}

.pillar-tag-v2 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary-color);
}

.pillar-title-v2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.pillar-desc-v2 {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    word-spacing: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

.pillar-desc-compact {
    font-size: 0.88rem;
    letter-spacing: -0.012em;
    word-spacing: -0.025em;
    hyphenate-limit-chars: 6 3 3;
}

/* Icon centered on the waistline boundary */
.pillar-icon-v2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.85rem;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s var(--transition-premium), background-color 0.4s var(--transition-premium), color 0.4s var(--transition-premium), border-color 0.4s var(--transition-premium);
    flex-shrink: 0;
}

.pillar-icon-v2::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dotted rgba(14, 122, 67, 0.35);
    pointer-events: none;
    transition: border-color 0.4s var(--transition-premium);
}

.pillar-card-v2:hover .pillar-icon-v2 {
    transform: scale(1.05) rotate(5deg);
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: #ffffff;
}

.pillar-card-v2:hover .pillar-icon-v2::before {
    border-color: var(--secondary-color);
}

.pillar-left .pillar-icon-v2 {
    position: absolute;
    left: 102.5px; /* Centers exactly on the waist border */
    top: 50%;
    transform: translate(-50%, -50%);
}

.pillar-right .pillar-icon-v2 {
    position: absolute;
    right: 102.5px; /* Centers exactly on the waist border */
    top: 50%;
    transform: translate(50%, -50%);
}

/* Center Hub Visual */
.pillars-center-hub {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hub-outer-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px dotted rgba(14, 122, 67, 0.25);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: transparent;
}

.hub-inner-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 122, 67, 0.05) 0%, rgba(255, 255, 255, 1) 70%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 15px rgba(14, 122, 67, 0.05);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(14, 122, 67, 0.1);
}

.hub-globe-atmosphere {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    box-shadow: 0 0 35px rgba(22, 163, 74, 0.25), inset 0 0 20px rgba(22, 163, 74, 0.15);
    background-color: transparent;
    z-index: 1;
    animation: hubPulse 3s ease-in-out infinite;
}

.hub-globe-photo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 50%;
    z-index: 2;
    animation: rotateHubGlobe 45s linear infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
}

/* Floating Leaves on Hub */
.hub-leaf {
    position: absolute;
    color: var(--accent-color);
    z-index: 3;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.12));
    animation: floatLeaf 4s ease-in-out infinite;
}

.hub-leaf.leaf-1 {
    font-size: 2.2rem;
    top: 15%;
    left: 10%;
}

.hub-leaf.leaf-2 {
    font-size: 1.5rem;
    bottom: 25%;
    left: 5%;
    animation-delay: 1.5s;
}

/* Connector nodes on the outer ring */
.hub-connector-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 1.5px solid #ffffff;
    z-index: 4;
    box-shadow: 0 0 8px rgba(14, 122, 67, 0.6);
}

/* Quad nodes aligned with card positions */
.c-dot-1 { top: 38%; left: 0%; }
.c-dot-2 { top: 38%; right: 0%; }
.c-dot-3 { bottom: 38%; left: 0%; }
.c-dot-4 { bottom: 38%; right: 0%; }

@keyframes hubPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes rotateHubGlobe {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(-6px) rotate(-40deg); }
}

/* Responsive configurations */
@media (max-width: 1200px) {
    .about-pillars-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .pillars-center-hub {
        display: none; /* Hide hub on tablet to keep space clean */
    }
}

@media (max-width: 900px) {
    .about-pillars-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pillar-right {
        padding-left: 180px !important;
        padding-right: 2.8rem !important;
    }
    .pillar-right .pillar-icon-v2 {
        left: 102.5px;
        right: auto;
        transform: translate(-50%, -50%);
    }
    .pillar-right .pillar-sidebar {
        left: 0;
        right: auto;
        clip-path: polygon(0 0, 120px 0, 85px 35%, 85px 65%, 120px 100%, 0 100%);
    }
    .sidebar-right .card-number-badge {
        left: 0;
        right: auto;
        clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
        border-top-right-radius: 0;
        border-top-left-radius: 24px;
        padding-right: 10px;
        padding-left: 0;
    }
}

/* --- INDUSTRIES SECTION --- */
.industries-section {
    padding: 6.5rem 0;
    background-image: url('image/image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax background scroll effect */
    position: relative;
    isolation: isolate;
}

.industries-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(244, 242, 235, 0.9); /* Cream theme overlay for legibility */
    z-index: -1;
}

.industries-subtitle {
    margin-top: 1.25rem;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.industry-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s var(--transition-premium), border-color 0.4s var(--transition-premium), box-shadow 0.4s var(--transition-premium);
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.industry-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.05) 0%, rgba(21, 128, 61, 0.05) 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.4s var(--transition-premium), background-color 0.4s var(--transition-premium);
}

.industry-card:hover .industry-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
}

.industry-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.industries-conclusion {
    margin-top: 5rem;
}

.conclusion-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    border-left: 4px solid var(--secondary-color);
}

.conclusion-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(22, 163, 74, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.conclusion-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.75;
    font-weight: 500;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    word-spacing: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

@media (max-width: 1024px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-visual-column {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-details-section, .industries-section {
        padding: 4.5rem 0;
    }
    .about-main-title, .industries-main-title {
        font-size: 2.15rem;
    }
    .about-middle-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-commitment-card, .about-circular-card {
        padding: 1.75rem;
    }
    .about-mission-card {
        padding: 2.25rem;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .mission-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    .conclusion-card {
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* --- PREMIUM 3D HOVER EFFECTS & CARD ROTATE --- */
/* Apply to pillar-card (About details), industry-card (Industries we serve), and why-card (Why choose us) */
.pillar-card-v2, .industry-card, .why-card, .product-card-mockup, .about-showcase-card, .conclusion-card {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d !important;
    perspective: 1000px !important;
    position: relative;
    overflow: hidden;
}

/* 3D Rotate and Tilt on Hover Fallbacks (for when JS is disabled) */
.pillar-card-v2:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(-4deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(21, 128, 61, 0.12);
    border-color: var(--border-hover) !important;
}

.industry-card:hover {
    transform: translateY(-8px) rotateX(5deg) rotateY(-5deg) scale(1.03);
    box-shadow: 0 20px 45px rgba(21, 128, 61, 0.1);
    border-color: var(--border-hover) !important;
}

.why-card:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(-4deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(21, 128, 61, 0.1);
    border-color: var(--border-hover) !important;
}

/* Shine Overlay for Card reflection */
.card-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle 250px at var(--shine-x, 50%) var(--shine-y, 50%),
        rgba(255, 255, 255, 0.22) 0%,
        rgba(22, 163, 74, 0.08) 35%,
        transparent 75%
    );
    z-index: 99;
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card-v2:hover .card-shine, 
.industry-card:hover .card-shine, 
.why-card:hover .card-shine,
.product-card-mockup:hover .card-shine,
.services-page .service-card-mockup:hover .card-shine,
.about-showcase-card:hover .card-shine,
.conclusion-card:hover .card-shine {
    opacity: 1;
}

/* Pop Children forward in 3D Space (TranslateZ) */
.pillar-card-v2:hover .pillar-icon-v2,
.industry-card:hover .industry-icon-wrapper,
.why-card:hover .why-card-icon-wrap {
    transform: translateZ(40px) scale(1.1) !important;
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.15) !important;
}

.pillar-card-v2:hover .pillar-title-v2,
.industry-card:hover .industry-name,
.why-card:hover .why-card-title {
    transform: translateZ(25px) !important;
}

.pillar-card-v2:hover .pillar-desc-v2,
.why-card:hover .why-card-desc {
    transform: translateZ(15px) !important;
}

.pillar-card-v2:hover .pillar-corner-badge,
.why-card:hover .why-card-number {
    transform: translateZ(10px) !important;
}

/* Ensure child elements support 3D transitions */
.pillar-icon-v2, .pillar-title-v2, .pillar-desc-v2, .pillar-corner-badge,
.industry-icon-wrapper, .industry-name,
.why-card-icon-wrap, .why-card-title, .why-card-desc, .why-card-number {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform-style: preserve-3d !important;
}

/* --- DEDICATED CTA SECTION STYLING --- */
.about-cta-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-card {
    background: linear-gradient(135deg, #0a1f16 0%, #05120d 100%);
    border: 1px solid rgba(22, 163, 74, 0.15);
    border-radius: 32px;
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-glow-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(22, 163, 74, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(184, 156, 102, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 760px;
    width: 100%;
}

.cta-kicker {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #84cc16;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.cta-heading-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-subtitle-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta-actions-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    background: var(--primary-grad);
    color: #ffffff !important;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.4s var(--transition-premium);
    box-shadow: 0 10px 25px rgba(21, 128, 61, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(21, 128, 61, 0.45);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.4s var(--transition-premium);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-card {
        padding: 3.5rem 2rem;
    }
    
    .cta-heading-title {
        font-size: 2.2rem;
    }
    
    .cta-actions-row {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   SERVICES PAGE CUSTOM STYLES
   ========================================== */
.services-banner-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(13, 30, 22, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(13, 30, 22, 0.35);
}

.services-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.services-banner-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
}

/* Services Intro Section (Split Layout) */
.services-intro-section {
    padding: 8rem 0 7rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.services-intro-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    aspect-ratio: 9 / 16;
    max-height: 880px;
    width: 100%;
    margin-inline: auto;
}

.services-intro-visual img,
.services-intro-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.services-intro-visual:hover img,
.services-intro-visual:hover video {
    transform: scale(1.03);
}

.services-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-intro-kicker {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.services-intro-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 2.85rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 2.5rem;
}

.services-intro-title span {
    color: var(--primary-color);
}

.services-intro-desc {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 2.2rem;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    word-spacing: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

.services-intro-highlight {
    font-weight: 600;
    color: var(--text-dark);
    border-left: 3px solid var(--secondary-color);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
    text-align-last: auto;
    text-justify: auto;
    word-spacing: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

@media (max-width: 992px) {
    .services-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-intro-visual {
        max-width: 550px;
        margin: 0 auto;
    }
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float-btn {
    position: fixed;
    bottom: 5.75rem;
    right: 1.7rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background 0.4s ease;
    border: none;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: whatsapp-pulse 2.2s cubic-bezier(0.12, 0.8, 0.32, 1) infinite;
    opacity: 0;
    pointer-events: none;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-6px);
    box-shadow: 0 14px 32px rgba(18, 140, 126, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.whatsapp-float-btn:hover i {
    transform: scale(1.05);
}

.whatsapp-float-btn i {
    transition: transform 0.3s ease;
}

/* Slide-in Tooltip from left */
.whatsapp-float-btn .whatsapp-tooltip {
    position: absolute;
    right: 72px;
    left: auto;
    background-color: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 0.55rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px) scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.02em;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.85;
    }
    50% {
        opacity: 0.45;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* --- CANVAS BACKGROUND & PARALLAX --- */
#services-particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.65;
}

/* Parallax adjustment: disable transition on transform for banners to ensure scroll is buttery smooth */
.js-enabled .about-banner-img {
    will-change: transform;
    transition: transform 0.05s linear !important;
}

/* Ensure the banner wrapper doesn't clip badly and allows the image to overflow for parallax */
.about-banner-section {
    overflow: hidden;
    position: relative;
}

/* --- HOME PAGE: DEVICE-RESPONSIVE FINISHING LAYER --- */
.home-page {
    overflow-x: clip;
}

.home-page img,
.home-page video,
.home-page canvas,
.home-page svg {
    max-width: 100%;
}

.home-page .container {
    width: min(100%, 1460px);
    padding-inline: clamp(1rem, 3.2vw, 3rem);
}

.home-page .section {
    padding-block: clamp(4.5rem, 8vw, 9rem);
}

.home-page :is(
    .about-heading,
    .products-title,
    .sustainability-heading,
    .network-heading,
    .section-title,
    .why-cta-heading
) {
    overflow-wrap: anywhere;
}

.home-page :is(
    .about-wrapper,
    .products-grid,
    .sustainability-wrapper,
    .network-top-row,
    .network-detail-grid,
    .services-grid,
    .why-grid,
    .contact-wrapper
) > * {
    min-width: 0;
}

.home-page .hero-section {
    width: 100%;
    margin-inline: 0;
    min-height: clamp(420px, calc(100svh - 126px), 900px);
    height: clamp(420px, calc(100svh - 126px), 900px);
}

.home-page .hero-bg-video {
    max-width: none;
}

@media (max-width: 1280px) {
    .home-page .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .products-grid .product-card-mockup:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .home-page .network-top-row {
        grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    }
}

@media (max-width: 1024px) {
    .home-page .hero-section {
        min-height: clamp(420px, calc(82svh - 96px), 720px);
        height: clamp(420px, calc(82svh - 96px), 720px);
        margin-top: 96px;
    }

    .home-page .about-wrapper,
    .home-page .sustainability-wrapper,
    .home-page .network-top-row,
    .home-page .contact-wrapper {
        gap: clamp(2.5rem, 6vw, 4rem);
    }

    .home-page .about-img-container {
        max-width: 680px;
        margin-inline: auto;
    }

    .home-page .about-img-box {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .home-page .sustainability-visual-box {
        width: 100%;
        display: grid;
        place-items: center;
    }

    .home-page .network-top-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-page .network-content {
        max-width: 800px;
    }

    .home-page .network-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .network-detail-grid > :last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .home-page .section {
        padding-block: clamp(4rem, 12vw, 6rem);
    }

    .home-page .hero-section {
        min-height: clamp(360px, 64svh, 620px);
        height: clamp(360px, 64svh, 620px);
        margin-top: 68px;
    }

    .home-page .hero-bg-video {
        animation: none;
        transform: scale(1.4) !important;
        transform-origin: top center !important;
    }

    .home-page .hero-section::after {
        height: 110px;
    }

    .home-page .products-grid,
    .home-page .services-grid,
    .home-page .network-detail-grid,
    .home-page .why-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-page .products-grid .product-card-mockup,
    .home-page .network-detail-grid > *,
    .home-page .why-grid > * {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .home-page .product-card-mockup {
        width: min(100%, 560px);
        margin-inline: auto;
        border-radius: 24px;
    }

    .home-page .product-card-img-box {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .home-page .product-card-badge-wrap {
        top: min(350px, calc(62.5vw - 1.5625rem));
    }

    .home-page .about-img-box {
        aspect-ratio: 1 / 1;
    }

    .home-page .about-heading,
    .home-page .sustainability-heading {
        font-size: clamp(2rem, 8vw, 2.65rem);
    }

    .home-page .products-title {
        font-size: clamp(2.15rem, 9vw, 3rem);
    }

    .home-page .contact-info-panel,
    .home-page .contact-form-panel {
        padding: clamp(1.25rem, 5vw, 2rem);
        border-radius: 22px;
    }

    .home-page .premium-contact-form :is(input, select, textarea, button),
    .home-page .menu-toggle,
    .home-page .nav-link {
        min-height: 44px;
    }

    .home-page .nav-menu {
        width: min(86vw, 320px);
        max-width: 100%;
        padding: 5rem clamp(1.5rem, 8vw, 3rem);
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .home-page .hero-section {
        min-height: clamp(320px, 56svh, 500px);
        height: clamp(320px, 56svh, 500px);
    }

    .home-page .products-header,
    .home-page .services-header,
    .home-page .why-header-shell {
        margin-bottom: 2.5rem;
    }

    .home-page .products-divider span {
        width: clamp(36px, 12vw, 54px);
    }

    .home-page .product-card-content {
        padding: 3.5rem 1.2rem 1.5rem;
    }

    .home-page .product-card-title {
        font-size: clamp(0.78rem, 3.5vw, 1.05rem);
        white-space: nowrap;
    }

    .home-page .product-card-desc {
        font-size: 0.9rem;
    }

    .home-page .about-features-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 0.5rem;
    }

    .home-page .about-feature-col {
        padding: 1rem 0.55rem;
    }

    .home-page .about-feature-col:nth-child(odd) {
        border-right: 1px solid rgba(13, 30, 22, 0.08) !important;
    }

    .home-page .about-feature-col:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(13, 30, 22, 0.08);
    }

    .home-page .about-btn-pill {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
        padding-inline: 1rem;
    }

    .home-page .sus-interactive-box {
        width: min(330px, calc(100vw - 2rem));
        height: min(330px, calc(100vw - 2rem));
    }

    .home-page .global-network-earth-section .global-network-earth-stage {
        width: min(100%, 300px);
    }

    .home-page .contact-item {
        align-items: flex-start;
        gap: 0.85rem;
    }

    .home-page .contact-item-value,
    .home-page .footer-contact-item a {
        overflow-wrap: anywhere;
    }

    .home-page .whatsapp-float-btn {
        right: max(1rem, env(safe-area-inset-right));
        bottom: max(1rem, env(safe-area-inset-bottom));
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .home-page .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 360px) {
    .home-page .container {
        padding-inline: 0.85rem;
    }

    .home-page .about-features-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-page .about-feature-col {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(13, 30, 22, 0.08);
    }

    .home-page .about-feature-col:last-child {
        border-bottom: 0;
    }

    .home-page .sus-interactive-box {
        width: min(300px, calc(100vw - 1.5rem));
        height: min(300px, calc(100vw - 1.5rem));
    }
}

@media (hover: none) {
    .home-page :is(
        .product-card-mockup,
        .network-detail-card,
        .service-card-mockup,
        .why-card,
        .contact-item
    ):hover {
        transform: none;
    }
}

@media (orientation: landscape) and (max-height: 540px) and (max-width: 1024px) {
    .home-page .hero-section {
        min-height: calc(100svh - 72px);
        height: calc(100svh - 72px);
        margin-top: 72px;
    }
}

/* --- MOBILE HEADER, SUSTAINABILITY VISUAL & FOOTER POLISH --- */
@media (max-width: 768px) {

    /* ---- HEADER / NAVBAR MOBILE FIX ---- */
    custom-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .navbar-container {
        padding: 0 1rem !important;
    }

    .navbar {
        height: 68px !important;
        min-height: 68px !important;
    }

    .header-active .navbar {
        height: 62px !important;
    }

    /* Logo image: much smaller on mobile */
    .logo-img {
        height: 52px !important;
        width: auto !important;
    }

    .header-active .logo-img {
        height: 46px !important;
    }

    /* Brand stack: tighten spacing */
    .logo-brand-stack {
        margin-left: 0.5rem !important;
        gap: 0 !important;
    }

    /* Company name: smaller */
    .logo-text {
        font-size: 1.05rem !important;
        line-height: 1.1 !important;
        margin-left: 0 !important;
    }

    /* "Commodity FZ LLC" sub-label */
    .logo-text span {
        font-size: 0.6rem !important;
        letter-spacing: 0.1em !important;
        margin-top: 0.1rem !important;
    }

    /* Hide tagline on mobile to save space */
    .logo-tagline {
        display: none !important;
    }

    /* Hero section: push down to match new header height */
    .hero-section {
        margin-top: 68px !important;
    }

    /* About banner pages */
    .about-banner-section {
        margin-top: 68px !important;
    }

    /* Product banner pages */
    .product-banner-section {
        margin-top: 68px !important;
    }

    .product-inner-page .product-banner-slideshow {
        margin-top: 68px !important;
    }

    /* ---- END HEADER MOBILE FIX ---- */

    .menu-toggle {
        width: 26px;
        height: auto;
        min-height: 44px;
        justify-content: center;
        gap: 5px;
        padding: 8px 0;
        border: 0;
        background: transparent;
    }

    .menu-toggle .bar {
        width: 26px;
        height: 2px;
        flex: 0 0 2px;
        border-radius: 999px;
        transform-origin: center;
        transition: transform 0.3s ease, opacity 0.2s ease;
    }

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

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

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

    custom-footer {
        padding: 4.5rem 0 1.5rem;
        overflow: hidden;
    }

    custom-footer .container {
        padding-inline: clamp(1rem, 5vw, 1.5rem);
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.75rem 1.5rem;
        margin-bottom: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        gap: 1.15rem;
        text-align: center;
    }

    .footer-logo {
        align-self: center;
        justify-content: center;
        align-items: center;
    }

    .footer-logo-img {
        height: clamp(150px, 38vw, 180px);
    }

    .footer-logo-text {
        color: var(--primary-color);
        text-align: center;
    }

    .footer-logo-subtitle,
    .footer-logo-tagline {
        color: var(--primary-color) !important;
    }

    .footer-brand-desc {
        max-width: 560px;
        line-height: 1.75;
    }

    .footer-social-links {
        justify-content: center;
        gap: 0.9rem;
    }

    .footer-social-links a {
        width: 44px;
        height: 44px;
        color: var(--primary-color);
        border-color: rgba(21, 128, 61, 0.25);
        background: transparent;
    }

    .footer-column-title {
        margin-bottom: 1.25rem;
        letter-spacing: 0.14em;
    }

    .footer-links {
        gap: 0.7rem;
    }

    .footer-link-item a {
        display: flex;
        align-items: flex-start;
        gap: 0.55rem;
        font-size: 0.86rem;
    }

    .footer-link-item a::before {
        content: '—';
        color: var(--primary-color);
        flex: 0 0 auto;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-contact-list {
        gap: 0.75rem;
    }

    .footer-contact-item {
        min-height: 62px;
        align-items: center;
        gap: 0.9rem;
        padding: 0.9rem 1rem;
        background: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: 16px;
    }

    .footer-contact-item i {
        width: 38px;
        height: 38px;
        margin-top: 0;
        border: 1px solid rgba(132, 204, 22, 0.45);
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: #84cc16;
        flex: 0 0 38px;
    }

    .footer-contact-item a {
        color: var(--text-secondary) !important;
        overflow-wrap: anywhere;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
        border-color: var(--border-color);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding-inline: 0.75rem !important;
    }

    .navbar {
        height: 62px !important;
        min-height: 62px !important;
    }

    .logo-img {
        height: 46px !important;
    }

    .logo-text {
        font-size: 0.95rem !important;
    }

    .hero-section {
        margin-top: 62px !important;
    }

    .about-banner-section {
        margin-top: 62px !important;
    }

    .product-banner-section {
        margin-top: 62px !important;
    }

    .product-inner-page .product-banner-slideshow {
        margin-top: 62px !important;
    }

    :is(.home-page, .about-page) .sustainability-wrapper {
        gap: 2rem;
    }

    :is(.home-page, .about-page) .sustainability-visual-box {
        order: 0;
        overflow: visible;
    }

    :is(.home-page, .about-page) .sus-interactive-box {
        width: 100%;
        height: 510px;
        margin: 0 auto;
    }

    :is(.home-page, .about-page) .sus-globe-commitment-banner {
        top: 0;
        width: min(100%, 320px);
        padding: 0.6rem 1rem;
        border-radius: 18px;
        white-space: normal;
    }

    :is(.home-page, .about-page) .sus-banner-title {
        font-size: 0.92rem;
        line-height: 1.25;
    }

    :is(.home-page, .about-page) .sus-orbit-line-outer {
        width: 290px;
        height: 290px;
        top: 82px;
        left: 50%;
        transform: translateX(-50%);
        animation: none;
    }

    :is(.home-page, .about-page) .sus-orbit-line-inner {
        width: 205px;
        height: 205px;
        top: 124px;
        left: 50%;
        transform: translateX(-50%);
        animation: none;
    }

    :is(.home-page, .about-page) .sus-globe-center {
        width: 142px;
        height: 142px;
        top: 227px;
    }

    :is(.home-page, .about-page) .sus-interactive-box::before {
        width: 300px;
        height: 300px;
        top: 77px;
        left: 50%;
        transform: translateX(-50%);
    }

    :is(.home-page, .about-page) .sus-interactive-box::after,
    :is(.home-page, .about-page) .sus-orbit-particle {
        display: none;
    }

    :is(.home-page, .about-page) .sus-orbit-node {
        width: 42px;
        height: 42px;
        animation: none;
    }

    :is(.home-page, .about-page) .sus-node-1 {
        left: 50%;
        top: 78px;
    }

    :is(.home-page, .about-page) .sus-node-2 {
        left: calc(50% + 135px);
        top: 170px;
    }

    :is(.home-page, .about-page) .sus-node-3 {
        left: calc(50% + 84px);
        top: 350px;
    }

    :is(.home-page, .about-page) .sus-node-4 {
        left: calc(50% - 84px);
        top: 350px;
    }

    :is(.home-page, .about-page) .sus-node-5 {
        left: calc(50% - 135px);
        top: 170px;
    }

    :is(.home-page, .about-page) .sus-interactive-box[class*="active-node-"] .sus-orbit-tooltip,
    :is(.home-page, .about-page) .sus-orbit-tooltip {
        top: auto !important;
        left: 50% !important;
        bottom: 0;
        width: min(100%, 320px);
        padding: 1rem 1.1rem;
        transform: translateX(-50%) !important;
        border-radius: 16px;
    }

    :is(.home-page, .about-page) .sus-tooltip-kicker {
        margin-bottom: 0.25rem;
    }

    :is(.home-page, .about-page) .sus-tooltip-title {
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
    }

    :is(.home-page, .about-page) .sus-tooltip-desc {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .footer-top {
        gap: 2.5rem 1rem;
    }

    .footer-column-title {
        font-size: 0.78rem;
    }

    .footer-link-item a {
        font-size: 0.8rem;
    }

    .footer-contact-item {
        padding: 0.85rem;
        font-size: 0.8rem;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.25rem;
    }
}

@media (max-width: 360px) {
    :is(.home-page, .about-page) .sus-orbit-line-outer {
        width: 260px;
        height: 260px;
        top: 92px;
    }

    :is(.home-page, .about-page) .sus-orbit-line-inner {
        width: 184px;
        height: 184px;
        top: 130px;
    }

    :is(.home-page, .about-page) .sus-globe-center {
        width: 128px;
        height: 128px;
        top: 222px;
    }

    :is(.home-page, .about-page) .sus-node-1 {
        top: 88px;
    }

    :is(.home-page, .about-page) .sus-node-2 {
        left: calc(50% + 120px);
    }

    :is(.home-page, .about-page) .sus-node-3 {
        left: calc(50% + 74px);
        top: 334px;
    }

    :is(.home-page, .about-page) .sus-node-4 {
        left: calc(50% - 74px);
        top: 334px;
    }

    :is(.home-page, .about-page) .sus-node-5 {
        left: calc(50% - 120px);
    }
}

/* --- ABOUT & SERVICES PAGES: RESPONSIVE FINISHING LAYER --- */
:is(.about-page, .services-page) {
    overflow-x: clip;
}

:is(.about-page, .services-page) img,
:is(.about-page, .services-page) video,
:is(.about-page, .services-page) svg {
    max-width: 100%;
}

:is(.about-page, .services-page) .container {
    width: min(100%, 1460px);
    padding-inline: clamp(1rem, 3.2vw, 3rem);
}

:is(.about-page, .services-page) .section {
    padding-block: clamp(4.5rem, 8vw, 8rem);
}

:is(.about-page, .services-page) :is(
    .about-main-title,
    .industries-main-title,
    .sustainability-heading,
    .services-intro-title,
    .service-card-title,
    .cta-heading-title,
    .why-cta-heading
) {
    overflow-wrap: anywhere;
}

:is(.about-page, .services-page) :is(
    .who-we-are-layout,
    .who-we-are-grid,
    .sustainability-wrapper,
    .why-grid,
    .services-intro-grid,
    .services-grid,
    .industries-grid,
    .about-pillars-layout
) > * {
    min-width: 0;
}

:is(.about-page, .services-page) .about-banner-section {
    height: clamp(420px, 48vw, 650px);
}

.about-page .about-banner-img {
    object-position: center center;
}

.services-page .about-banner-img {
    object-position: center;
}

@media (max-width: 1280px) {
    .about-page .who-we-are-layout {
        grid-template-columns: 1fr 1fr;
    }

    .about-page .who-card {
        grid-template-columns: 66px minmax(0, 1fr);
        gap: 0.9rem;
        padding: 1.6rem 1rem;
    }

    .about-page .who-icon {
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
    }

    .services-page .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    :is(.about-page, .services-page) .industries-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .about-page .who-we-are-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-page .who-visual {
        min-height: clamp(300px, 45vw, 460px);
    }

    .about-page .who-visual img,
    .about-page .who-visual video {
        position: absolute;
    }

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

    .about-page .why-grid > * {
        grid-column: auto !important;
        grid-row: auto !important;
    }

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

@media (max-width: 992px) {
    :is(.about-page, .services-page) .about-banner-section {
        height: clamp(360px, 52vw, 520px);
        margin-top: 96px;
    }

    .services-page .services-intro-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.75rem;
    }

    .services-page .services-intro-visual {
        width: min(100%, 380px);
        margin-inline: auto;
        aspect-ratio: 9 / 16;
    }

    .services-page .services-intro-visual img,
    .services-page .services-intro-visual video {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
    }

    :is(.about-page, .services-page) .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    :is(.about-page, .services-page) .conclusion-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    :is(.about-page, .services-page) .section,
    .services-page .services-intro-section {
        padding-block: clamp(4rem, 12vw, 5.5rem) !important;
    }

    :is(.about-page, .services-page) .about-banner-section {
        height: clamp(300px, 58vw, 420px);
        margin-top: 68px;
    }

    :is(.about-page, .services-page) .about-banner-img {
        transform: none !important;
    }

    .about-page .about-details-section > .container {
        padding-inline: 0;
    }

    .about-page .about-details-section .section-header {
        padding-inline: 1.25rem;
    }

    .about-page .who-we-are-layout {
        margin-top: 1.5rem;
        border-inline: 0;
    }

    .about-page .who-we-are-grid {
        grid-template-columns: minmax(0, 1fr);
        padding: 0.5rem 1rem;
    }

    .about-page .who-card {
        grid-template-columns: 54px minmax(0, 1fr);
        padding: 1.35rem 0.25rem;
        gap: 0.8rem;
        border-right: 0 !important;
        border-top: 1px dashed rgba(44, 104, 28, 0.2);
    }

    .about-page .who-card:first-child {
        border-top: 0;
    }

    .about-page .who-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .about-page .who-card p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .about-page .who-visual {
        min-height: clamp(240px, 68vw, 360px);
    }

    .about-page .who-visual-caption {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1.25rem;
    }

    .about-page .why-grid,
    .services-page .services-grid,
    :is(.about-page, .services-page) .industries-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-page .why-card,
    .services-page .service-card-mockup {
        width: min(100%, 600px);
        margin-inline: auto;
    }

    .about-page .why-card {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .about-page .why-card-checklist {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-page .services-grid-section .section-header,
    .services-page .industries-section .section-header {
        margin-bottom: 3rem !important;
    }

    .services-page .service-card-mockup {
        padding: clamp(1.4rem, 6vw, 2rem);
        min-height: 0;
    }

    .services-page .service-card-title {
        font-size: 1.25rem;
    }

    .services-page .service-card-desc {
        font-size: 0.9rem;
    }

    :is(.about-page, .services-page) .industry-card {
        width: min(100%, 560px);
        min-height: 86px;
        margin-inline: auto;
        padding: 1.25rem;
    }

    :is(.about-page, .services-page) .industries-conclusion {
        margin-top: 3rem;
    }

    :is(.about-page, .services-page) .conclusion-card {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    :is(.about-page, .services-page) .conclusion-text {
        font-size: 0.92rem;
    }

    .services-page .cta-card {
        padding: clamp(2rem, 8vw, 3rem) clamp(1.25rem, 5vw, 2rem);
        border-radius: 24px;
    }

    .services-page .cta-heading-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .services-page .cta-actions-row {
        flex-direction: column;
        align-items: stretch;
    }

    .services-page :is(.btn-cta-primary, .btn-cta-secondary) {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        padding-inline: 1rem;
    }
}

@media (max-width: 480px) {
    :is(.about-page, .services-page) .about-banner-section {
        height: clamp(240px, 66vw, 320px);
    }

    .about-page .about-banner-img {
        object-position: 30% center;
    }

    .services-page .about-banner-img {
        object-position: 48% center;
    }

    :is(.about-page, .services-page) :is(.about-main-title, .industries-main-title) {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }

    .services-page .services-intro-title {
        font-size: clamp(1.9rem, 8.5vw, 2.35rem);
    }

    .services-page .services-intro-desc,
    .services-page .services-intro-highlight {
        font-size: 0.92rem;
    }

    .about-page .who-card {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .about-page .who-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    :is(.about-page, .services-page) .industry-card {
        min-height: 76px;
        gap: 0.9rem;
        padding: 1rem;
    }

    :is(.about-page, .services-page) .industry-icon-wrapper {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    :is(.about-page, .services-page) .industry-name {
        font-size: 0.88rem;
    }

    :is(.about-page, .services-page) .conclusion-card {
        align-items: flex-start;
        text-align: left;
    }

    :is(.about-page, .services-page) .conclusion-badge {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
        font-size: 1.4rem;
    }
}

@media (max-width: 360px) {
    .about-page .who-we-are-grid {
        padding-inline: 0.75rem;
    }

    .about-page .who-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-page .who-icon {
        margin-bottom: 0.25rem;
    }
}

/* --- INNER PAGE BANNERS: PRESERVE COMPLETE SOURCE ARTWORK --- */
:is(.about-page, .services-page, .contact-page) .about-banner-section {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 126px;
    overflow: hidden;
    background: #f4f6ef;
}

:is(.about-page, .services-page) .about-banner-section {
    aspect-ratio: 2.75 / 1;
}

.contact-page .about-banner-section {
    aspect-ratio: 2.172 / 1;
    margin-top: 126px;
}

:is(.about-page, .services-page, .contact-page) .about-banner-img,
.js-enabled :is(.about-page, .services-page, .contact-page) .about-banner-img,
.page-loaded :is(.about-page, .services-page, .contact-page) .about-banner-img,
:is(.about-page, .services-page, .contact-page) .about-banner-section:hover .about-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
    transition: none !important;
}

.about-page .about-banner-img,
.js-enabled .about-page .about-banner-img,
.page-loaded .about-page .about-banner-img {
    object-position: center center !important;
}

@media (max-width: 768px) {
    :is(.about-page, .services-page, .contact-page) .about-banner-section {
        height: auto;
        min-height: 0;
        margin-top: 68px !important;
    }

    /* About page: taller aspect ratio on mobile for a proper looking banner */
    .about-page .about-banner-section {
        aspect-ratio: 16 / 9 !important;
    }

    :is(.about-page, .services-page) .about-banner-section {
        aspect-ratio: 1.8 / 1;
    }

    .contact-page .about-banner-section {
        aspect-ratio: 1.5 / 1;
    }

    :is(.about-page, .services-page, .contact-page) .about-banner-img {
        object-fit: cover !important;
        object-position: center center !important;
    }

    /* Reduce gap between banner and WHO WE ARE section on mobile */
    .about-page .about-details-section {
        padding-top: 2.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .about-page .about-details-section .section-header {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* --- PRODUCT CARD ACTION BUTTONS --- */
.btn-card-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff !important;
    background-color: var(--primary-color, #16a34a);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
    margin-top: 1.5rem;
    width: max-content;
}

.btn-card-more:hover {
    background-color: var(--text-dark, #0d1e16);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 30, 22, 0.2);
}

.btn-card-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-card-more:hover i {
    transform: translateX(3px);
}

/* --- PRODUCT BANNER SLIDESHOW --- */
.product-banner-slideshow {
    position: relative;
    height: clamp(550px, 52vw, 720px) !important;
    overflow: hidden;
    width: 100%;
}

.product-inner-page .product-banner-slideshow {
    width: 100%;
    height: clamp(520px, 42vw, 650px) !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    margin-top: 126px !important;
}

.product-inner-page .banner-slide {
    background-position: center center;
}

.product-inner-page .banner-text-left {
    max-width: 1080px;
}

.product-inner-page .banner-title {
    font-size: clamp(2.15rem, 3.55vw, 4rem);
    white-space: nowrap;
    text-wrap: nowrap;
}

.product-inner-page .banner-subtitle {
    max-width: 720px;
}

.product-banner-slideshow .about-banner-overlay {
    z-index: 2;
    background: linear-gradient(90deg, rgba(8, 35, 20, 0.8) 0%, rgba(8, 35, 20, 0.45) 50%, rgba(8, 35, 20, 0.15) 100%);
}

.banner-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slideshow-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-left: clamp(2rem, 8vw, 6rem);
    padding-right: clamp(2rem, 8vw, 6rem);
    z-index: 3;
    color: #ffffff;
    max-width: 1460px;
    margin: 0 auto;
    width: 100%;
}

.banner-text-left {
    max-width: min(100%, 1180px);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpSlideshow 1s forwards ease-out 0.5s;
    text-align: left;
}

.banner-kicker {
    font-size: 0.9rem;
    font-weight: 700;
    color: #b9e87c;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.35vw, 4.25rem);
    font-weight: 900;
    color: #b9e87c;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    white-space: nowrap;
}

.banner-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.6;
    color: #f1f5f9;
}

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

@media (max-width: 768px) {
    .product-banner-slideshow {
        height: 400px !important;
    }
    .banner-text-left {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    .banner-title {
        font-size: clamp(2.1rem, 9vw, 3rem);
        white-space: normal;
    }
    .banner-slideshow-content {
        justify-content: center;
        padding-inline: 1.5rem;
    }
}

/* --- PRODUCT PAGE STATIC BANNER --- */
.product-banner-section {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1961 / 802 !important;
    margin-top: 126px;
    position: relative !important;
    overflow: hidden;
    background-color: #f4f6ef;
}
.product-banner-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block;
    transform: none !important;
    transition: none !important;
}

/* Product listing and category pages: responsive layout */
/* Keep every product layout bounded and prevent long content from widening the page. */
.product-list-page,
.product-inner-page {
    overflow-x: clip;
}

.product-list-page .products-grid,
.product-inner-page .product-detail-grid,
.product-inner-page .product-info,
.product-inner-page .product-slideshow {
    min-width: 0;
}

.product-list-page .product-card-img-box video,
.product-inner-page .product-slideshow .slide {
    transform: translateZ(0);
}

@media (min-width: 1201px) {
    .product-list-page .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }

    .product-list-page .product-card-mockup {
        max-width: 440px;
        width: 100%;
        justify-self: center;
    }

    .product-inner-page .product-detail-grid {
        grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr) !important;
        gap: clamp(3rem, 4vw, 4.5rem) !important;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .product-list-page .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem;
    }

    .product-list-page .product-card-mockup {
        width: 100%;
        max-width: 520px;
        justify-self: center;
    }

    .product-list-page .product-card-img-box {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .product-list-page .product-card-badge-wrap {
        top: min(325px, calc(31.25vw - 1rem));
    }

    .product-inner-page .product-detail-container {
        padding: 4.5rem 2rem !important;
    }

    .product-inner-page .product-banner-slideshow {
        height: clamp(470px, 44vw, 540px) !important;
        margin-top: 96px !important;
    }

    .product-inner-page .product-detail-grid {
        grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr) !important;
        gap: 2.5rem !important;
    }

    .product-inner-page .product-slideshow {
        height: clamp(450px, 46vw, 540px) !important;
        margin-top: 7rem !important;
    }

    .product-inner-page .spec-list {
        gap: 1rem 1.4rem !important;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .product-list-page .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .product-list-page .product-card-img-box {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .product-list-page .product-card-badge-wrap {
        top: calc(31.25vw - 1.25rem);
    }

    .product-inner-page .product-detail-container {
        padding: 4.5rem 2rem !important;
    }

    .product-inner-page .product-banner-slideshow {
        height: clamp(420px, 50vw, 500px) !important;
        margin-top: 96px !important;
    }

    .product-inner-page .product-detail-grid {
        gap: 2.5rem !important;
    }

    .product-inner-page .product-slideshow {
        height: clamp(390px, 52vw, 500px) !important;
    }
}

@media (max-width: 768px) {
    .product-list-page .product-banner-section {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 1.8 / 1 !important;
        margin-top: 68px !important;
    }

    .product-list-page .product-banner-img {
        object-fit: cover !important;
        object-position: left center !important;
    }

    .product-list-page .products-section {
        padding: 4rem 0 4.5rem !important;
    }

    .product-list-page .products-header {
        margin-bottom: 2.5rem;
    }

    .product-list-page .products-title {
        font-size: clamp(2rem, 8.5vw, 2.75rem);
        line-height: 1.14;
    }

    .product-list-page .products-subtitle {
        font-size: 1rem;
        line-height: 1.65;
    }

    .product-list-page .products-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }

    .product-list-page .product-card-mockup {
        width: min(100%, 560px);
        margin-inline: auto;
        border-radius: 22px;
    }

    .product-list-page .product-card-img-box {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .product-list-page .product-card-badge-wrap {
        top: min(350px, calc(62.5vw - 1.5625rem));
    }

    .product-list-page .product-card-content {
        padding: 3.65rem 1.35rem 1.5rem;
    }

    .product-list-page .product-card-desc {
        margin-bottom: 1.35rem;
    }

    .product-list-page .btn-card-more {
        min-height: 44px;
        padding: 0.75rem 1.15rem;
    }

    .product-list-page .about-cta-section {
        padding-block: 4rem;
    }

    .product-inner-page .product-banner-slideshow {
        height: clamp(380px, 80vw, 460px) !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        margin-top: 68px !important;
    }

    .product-banner-slideshow .about-banner-overlay {
        background: rgba(8, 35, 20, 0.6) !important;
    }

    .product-inner-page .banner-slideshow-content {
        padding-inline: 1.25rem;
    }

    .product-inner-page .banner-kicker {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
    }

    .product-inner-page .banner-title {
        font-size: clamp(1.55rem, 6.6vw, 2.8rem);
        white-space: normal;
        overflow-wrap: normal;
    }

    .product-inner-page .banner-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .product-inner-page .product-detail-container {
        padding: 3.5rem 1.25rem !important;
    }

    .product-inner-page .product-detail-container > .section-header {
        margin-bottom: 2.5rem !important;
    }

    .product-inner-page .product-detail-container > .section-header p {
        font-size: 1rem !important;
        line-height: 1.65 !important;
        text-align: left !important;
    }

    .product-inner-page .product-detail-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 2.25rem !important;
        margin-bottom: 4rem !important;
    }

    .product-inner-page .product-slideshow {
        width: 100%;
        height: clamp(245px, 70vw, 380px) !important;
        margin-top: 0 !important;
        border-width: 4px;
        border-radius: 18px;
    }

    .product-inner-page .slide-nav {
        width: 44px;
        height: 44px;
        opacity: 0.92;
    }

    .product-inner-page .product-info-title {
        font-size: clamp(1.8rem, 7.5vw, 2.35rem);
        line-height: 1.2;
        margin-bottom: 1.1rem;
    }

    .product-inner-page .product-info-desc,
    .product-inner-page .spec-list li {
        text-align: left;
        text-align-last: auto;
        hyphens: none;
    }

    .product-inner-page .spec-list {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.7rem !important;
    }

    .product-inner-page .spec-list li {
        padding-left: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .product-inner-page .product-info .btn,
    .product-inner-page .btn-cta-primary,
    .product-inner-page .btn-cta-secondary {
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .product-list-page .container,
    .product-inner-page .container {
        padding-inline: 1rem;
    }

    .product-list-page .product-card-img-box {
        aspect-ratio: 4 / 3;
    }

    .product-list-page .product-card-badge-wrap {
        top: calc(75vw - 1.5rem);
    }

    .product-list-page .product-card-content {
        padding: 3.45rem 1.1rem 1.35rem;
    }

    .product-list-page .product-card-title {
        font-size: clamp(0.78rem, 3.5vw, 1.05rem);
        white-space: nowrap;
    }

    .product-list-page .product-card-desc {
        font-size: 0.9rem;
    }

    .product-inner-page .product-detail-container {
        padding: 3rem 1rem !important;
    }

    .product-inner-page .product-banner-slideshow {
        height: clamp(320px, 75vw, 380px) !important;
    }

    .product-inner-page .banner-slideshow-content {
        padding-inline: 1rem;
    }

    .product-inner-page .banner-title {
        font-size: clamp(1.35rem, 6.5vw, 2.4rem);
        margin-bottom: 0.85rem;
        white-space: normal;
    }

    .product-inner-page .banner-subtitle {
        font-size: 0.94rem;
    }

    .product-inner-page .product-slideshow {
        height: clamp(230px, 72vw, 320px) !important;
    }

    .product-inner-page .product-info .btn,
    .product-inner-page .btn-cta-primary,
    .product-inner-page .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.services-page .services-intro-text .services-intro-highlight {
    text-align: left !important;
    text-align-last: auto !important;
    text-justify: auto !important;
    word-spacing: normal !important;
    letter-spacing: 0 !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
}

/* --- MOBILE PAGE BANNER NORMALIZATION --- */
.about-page:not(.product-inner-page) .about-banner-section,
.services-page .about-banner-section,
.contact-page .about-banner-section,
.product-list-page .product-banner-section {
    isolation: isolate;
    background: #f4f6ef;
}

.about-page:not(.product-inner-page) .about-banner-img,
.services-page .about-banner-img,
.contact-page .about-banner-img,
.product-list-page .product-banner-img {
    object-fit: cover !important;
    object-position: center center !important;
}

.product-inner-page .product-banner-slideshow {
    background: #112218;
}

.product-inner-page .banner-slide {
    background-size: cover;
    background-position: center center;
}

@media (max-width: 768px) {
    .about-page:not(.product-inner-page) .about-banner-section,
    .services-page .about-banner-section,
    .contact-page .about-banner-section,
    .product-list-page .product-banner-section {
        height: auto !important;
        min-height: 0 !important;
        margin-top: 68px !important;
    }

    .about-page:not(.product-inner-page) .about-banner-section,
    .services-page .about-banner-section {
        aspect-ratio: 2.75 / 1 !important;
    }

    .product-list-page .product-banner-section {
        aspect-ratio: 1961 / 802 !important;
    }

    .contact-page .about-banner-section {
        aspect-ratio: 2.172 / 1 !important;
    }

    .about-page:not(.product-inner-page) .about-banner-img,
    .services-page .about-banner-img,
    .contact-page .about-banner-img,
    .product-list-page .product-banner-img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
        object-position: center center !important;
        transform: none !important;
        transition: none !important;
    }

    .contact-page .about-banner-img {
        object-position: center bottom !important;
    }

    .product-inner-page .product-banner-slideshow {
        height: clamp(390px, 92svw, 520px) !important;
        margin-top: 68px !important;
    }

    .product-inner-page .banner-slide {
        background-size: cover !important;
        background-position: center center !important;
    }

    .product-inner-page .banner-slideshow-content {
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0 1.15rem clamp(2rem, 8vw, 3rem);
    }

    .product-inner-page .banner-text-left {
        max-width: 100%;
        margin: 0;
        text-align: left;
    }

    .product-inner-page .banner-title {
        font-size: clamp(1.45rem, 6.2vw, 2.35rem);
        line-height: 1.14;
    }

    .product-inner-page .banner-subtitle {
        max-width: 36rem;
        font-size: clamp(0.9rem, 3.9vw, 1rem);
    }

    .product-inner-page .product-banner-slideshow .about-banner-overlay {
        background: linear-gradient(180deg, rgba(8, 35, 20, 0.18) 0%, rgba(8, 35, 20, 0.34) 44%, rgba(8, 35, 20, 0.82) 100%) !important;
    }
}

@media (max-width: 480px) {
    .about-page:not(.product-inner-page) .about-banner-section,
    .services-page .about-banner-section,
    .contact-page .about-banner-section,
    .product-list-page .product-banner-section,
    .product-inner-page .product-banner-slideshow {
        margin-top: 62px !important;
    }

    .product-inner-page .product-banner-slideshow {
        height: clamp(340px, 96svw, 430px) !important;
    }

    .product-inner-page .banner-kicker {
        font-size: 0.68rem;
    }

    .product-inner-page .banner-title {
        font-size: clamp(1.28rem, 6vw, 1.9rem);
        margin-bottom: 0.75rem;
    }

    .product-inner-page .banner-subtitle {
        font-size: 0.88rem;
        line-height: 1.45;
    }
}

@media (max-width: 380px) {
    .product-inner-page .banner-subtitle {
        display: none;
    }
}

.services-intro-readable {
    display: block;
    visibility: visible;
    opacity: 1;
    color: #0d1e16;
    background: transparent;
    border-left: 3px solid var(--secondary-color);
    padding: 0 0 0 1rem;
    margin: 1.8rem 0 1.8rem;
    max-width: 760px;
    font-size: 0.94rem;
    font-weight: 800;
    font-style: italic;
    line-height: 1.72;
    text-align: left;
    text-align-last: auto;
    text-justify: auto;
    word-spacing: normal;
    letter-spacing: 0;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
    overflow-wrap: break-word;
}



