body {
            background-color: #080808 ;
            color: #F3EFE0 ;
        }

        .editorial-container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .editorial-section {
            padding: 5.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .section-eyebrow {
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-headline {
            font-family: 'Outfit', sans-serif;
            font-size: 2.75rem;
            font-weight: 900;
            color: #FFFFFF;
            line-height: 1.15;
            margin-bottom: 1.25rem;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: #BBB;
            line-height: 1.7;
            max-width: 820px;
            margin-bottom: 3.5rem;
        }

        .hero-badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 175, 55, 0.12);
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .hero-title-main {
            font-family: 'Outfit', sans-serif;
            font-size: 3.4rem;
            font-weight: 900;
            color: #FFFFFF;
            line-height: 1.08;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .hero-desc-main {
            font-size: 1.15rem;
            line-height: 1.75;
            color: #DDD;
            margin-bottom: 2.25rem;
        }

        .hero-metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .hero-metric-card {
            background: #111111;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            padding: 1rem 0.8rem;
            text-align: center;
        }

        .hero-metric-val {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--gold);
        }

        .hero-metric-lbl {
            font-size: 0.72rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
            font-weight: 700;
        }

        /* 5-Step Process Timeline Cards */
        .process-steps-stack {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .process-step-card {
            background: #0d0d0d;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            display: grid;
            grid-template-columns: 80px 1.2fr 1fr;
            gap: 2.5rem;
            align-items: center;
            transition: border-color 0.3s ease, transform 0.3s ease;
        }

        .process-step-card:hover {
            border-color: var(--gold);
            transform: translateY(-2px);
        }

        .step-number-box {
            width: 70px;
            height: 70px;
            background: rgba(212, 175, 55, 0.12);
            border: 2px solid var(--gold);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--gold);
        }

        .step-content-box h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: #FFFFFF;
            margin-bottom: 0.5rem;
        }

        .step-content-box p {
            color: #BBB;
            font-size: 1rem;
            line-height: 1.65;
            margin-bottom: 1.25rem;
        }

        .step-pills-list {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .step-pill {
            background: #181818;
            border: 1px solid #333;
            color: var(--gold);
            font-size: 0.78rem;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 8px;
        }

        .step-image-wrap {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.25);
            height: 220px;
        }

        .step-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Encyclopedia Modules */
        .encyclopedia-stack {
            display: flex;
            flex-direction: column;
            gap: 3.5rem;
        }

        .encyclopedia-module {
            background: #0d0d0d;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 24px;
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.5rem;
            align-items: center;
        }

        .encyclopedia-module:nth-child(even) {
            grid-template-columns: 1fr 1fr;
        }

        .encyclopedia-module:nth-child(even) .module-image-col {
            order: 2;
        }

        .encyclopedia-module:nth-child(even) .module-content-col {
            order: 1;
        }

        .module-image-col {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.3);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
        }

        .module-image-col img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            display: block;
        }

        .module-tag-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(0, 0, 0, 0.85);
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 0.72rem;
            font-weight: 800;
            padding: 5px 12px;
            border-radius: 8px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            backdrop-filter: blur(8px);
        }

        .module-headline {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #FFFFFF;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }

        .module-subtitle {
            font-size: 1.05rem;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 1.25rem;
        }

        .module-body {
            font-size: 0.98rem;
            color: #CCC;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .module-connoisseur-box {
            background: #141414;
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-radius: 14px;
            padding: 1.25rem;
        }

        .connoisseur-box-title {
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .connoisseur-pills {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .connoisseur-pills span {
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: #FFF;
            font-size: 0.82rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
        }

        /* FAQ Styling */
        .faq-item-custom {
            background: #0d0d0d;
            border: 1px solid #222;
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: border-color 0.2s ease;
        }

        .faq-item-custom:hover {
            border-color: rgba(212, 175, 55, 0.4);
        }

        .faq-item-custom summary {
            padding: 1.2rem 1.5rem;
            font-weight: 700;
            font-size: 1.05rem;
            color: #FFF;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item-custom summary::-webkit-details-marker {
            display: none;
        }

        .faq-item-custom summary::after {
            content: "+";
            font-size: 1.4rem;
            color: var(--gold);
        }

        .faq-item-custom p {
            padding: 0 1.5rem 1.4rem 1.5rem;
            color: #BBB;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* ANIMATED INTERACTIVE DEGASSING & FULFILLMENT TIMELINE */
        .degassing-timeline-container {
            margin-top: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .timeline-track-header-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Outfit', sans-serif;
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #AAAAAA;
            margin-bottom: -1rem;
        }

        .track-endpoint {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(212, 175, 55, 0.25);
            padding: 6px 14px;
            border-radius: 12px;
            color: #FFFFFF;
        }

        .track-endpoint i {
            color: var(--gold);
            font-size: 1rem;
        }

        .track-endpoint.right i {
            color: #55FF88;
        }

        .track-elapsed-badge {
            background: linear-gradient(135deg, rgba(38, 32, 18, 0.98) 0%, rgba(18, 15, 10, 0.99) 100%);
            border: 1.5px solid var(--gold);
            color: var(--gold);
            padding: 8px 20px;
            border-radius: 14px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.35s ease;
        }

        .animated-timeline-track {
            position: relative;
            width: 100%;
            height: 10px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            margin: 1.5rem 0 2.5rem;
            overflow: visible;
        }

        .animated-timeline-progress {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, #d4af37 0%, #fff0b3 70%, #ffffff 100%);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 10px rgba(212, 175, 55, 1);
            transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
            animation: pulseGlow 2.5s infinite ease-in-out;
        }

        .animated-truck-runner {
            position: absolute;
            right: -20px;
            top: -17px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--gold);
            color: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.95), 0 0 40px rgba(212, 175, 55, 0.7);
            transition: transform 0.3s ease, background 0.3s ease;
            animation: truckDrive 3s infinite alternate ease-in-out;
        }

        @keyframes truckDrive {
            0% { transform: scale(1) translateX(0); }
            50% { transform: scale(1.15) translateX(4px); }
            100% { transform: scale(1) translateX(0); }
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.85; filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6)); }
            50% { opacity: 1; filter: drop-shadow(0 0 22px rgba(212, 175, 55, 1)); }
        }

        .timeline-steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .timeline-step-card {
            background: linear-gradient(165deg, rgba(22, 22, 22, 0.96) 0%, rgba(12, 12, 12, 0.99) 100%);
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-radius: 20px;
            padding: 1.85rem 1.5rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            cursor: pointer;
        }

        .timeline-step-card:hover {
            border-color: var(--gold);
            transform: translateY(-8px);
            box-shadow: 0 25px 55px rgba(0,0,0,0.95), 0 0 30px rgba(212,175,55,0.3);
        }

        .timeline-step-card.active-hover {
            border-color: var(--gold) ;
            background: linear-gradient(165deg, rgba(42, 35, 20, 0.98) 0%, rgba(20, 16, 10, 0.99) 100%) ;
            box-shadow: 0 25px 55px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.4) ;
            transform: translateY(-8px) ;
        }

        .timeline-step-card.active-target {
            border: 2px solid var(--gold);
            background: linear-gradient(165deg, rgba(38, 32, 18, 0.98) 0%, rgba(18, 15, 10, 0.99) 100%);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.3);
            transform: translateY(-4px);
        }

        .timeline-node-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.25rem;
        }

        .timeline-node-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(212, 175, 55, 0.12);
            border: 1px solid rgba(212, 175, 55, 0.35);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
        }

        .timeline-step-card.active-target .timeline-node-icon {
            background: var(--gold);
            color: #000000;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        }

        .timeline-step-num {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 900;
            color: rgba(212, 175, 55, 0.3);
        }

        .timeline-step-card.active-target .timeline-step-num {
            color: var(--gold);
        }

        .timeline-day-badge {
            font-family: 'Outfit', sans-serif;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 0.4rem;
        }

        .timeline-step-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 0.65rem;
        }

        .timeline-step-desc {
            color: #BBB;
            font-size: 0.92rem;
            line-height: 1.55;
        }

        /* Floating CO2 Bubble Effect */
        .co2-bubble-animation {
            position: absolute;
            top: 12px;
            right: 14px;
            display: flex;
            gap: 4px;
            opacity: 0.6;
        }

        .co2-bubble {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            animation: co2Float 2s infinite ease-in-out;
        }

        .co2-bubble:nth-child(2) { animation-delay: 0.4s; }
        .co2-bubble:nth-child(3) { animation-delay: 0.8s; }

        @keyframes co2Float {
            0% { transform: translateY(0); opacity: 1; }
            100% { transform: translateY(-16px); opacity: 0; }
        }

        @media (max-width: 992px) {
            .timeline-steps-grid { grid-template-columns: 1fr 1fr; }
            .timeline-track-header-bar { flex-direction: column; gap: 10px; text-align: center; }
        }

        @media (max-width: 600px) {
            .timeline-steps-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 992px) {
            .hero-layout-grid,
            .process-step-card,
            .encyclopedia-module,
            .encyclopedia-module:nth-child(even) {
                grid-template-columns: 1fr;
            }
            .hero-metrics-grid {
                grid-template-columns: 1fr 1fr;
            }
            .encyclopedia-module:nth-child(even) .module-image-col {
                order: 1;
            }
            .encyclopedia-module:nth-child(even) .module-content-col {
                order: 2;
            }
        }

        /* Luxury Tabbed Slideshow for How It Works (Logistics / Engineering Standard) */
        .how-tabs-nav {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 2rem auto 2.25rem auto;
            max-width: 1240px;
        }

        .how-tab-btn {
            background: rgba(18, 16, 12, 0.85);
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-radius: 40px;
            padding: 0.8rem 1.4rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            color: #CCCCCC;
            font-family: 'Outfit', sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }

        .how-tab-btn .tab-badge {
            font-size: 0.72rem;
            font-weight: 800;
            color: var(--gold);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 3px 8px;
            border-radius: 20px;
        }

        .how-tab-btn:hover {
            color: #FFFFFF;
            border-color: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
        }

        .how-tab-btn.active {
            background: rgba(212, 175, 55, 0.15);
            border-color: var(--gold);
            color: var(--gold);
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.35), inset 0 0 10px rgba(212, 175, 55, 0.15);
        }

        .how-tab-btn.active .tab-badge {
            background: var(--gold);
            color: #000000;
            font-weight: 900;
        }

        .how-slideshow-container {
            max-width: 1240px;
            margin: 0 auto;
            background: linear-gradient(165deg, rgba(22, 20, 16, 0.98) 0%, rgba(12, 10, 8, 0.99) 100%);
            border: 1.5px solid rgba(212, 175, 55, 0.4);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(0,0,0,0.9), 0 0 35px rgba(212, 175, 55, 0.12);
            position: relative;
        }

        .how-slides-track {
            display: flex;
            width: 100%;
            transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform;
        }

        .how-slide {
            flex: 0 0 100%;
            width: 100%;
            min-width: 100%;
            display: grid;
            grid-template-columns: 1fr 1.18fr;
            min-height: 480px;
            box-sizing: border-box;
        }

        .how-slide-media {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 440px;
            overflow: hidden;
        }

        .how-slide-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .how-slide:hover .how-slide-media img {
            transform: scale(1.03);
        }

        .how-slide-content {
            padding: 2.75rem 2.75rem 2.5rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
        }

        .how-slide-eyebrow {
            font-family: 'Outfit', sans-serif;
            font-size: 0.76rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .how-slide-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.85rem;
            font-weight: 900;
            color: #FFFFFF;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        .how-slide-sub {
            font-size: 0.98rem;
            font-weight: 600;
            color: var(--gold);
            line-height: 1.45;
            margin-bottom: 1.15rem;
        }

        .how-slide-desc {
            color: #CCCCCC;
            font-size: 0.92rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .how-slide-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }

        @media (max-width: 900px) {
            .how-slide {
                grid-template-columns: 1fr;
            }
            .how-slide-media {
                min-height: 280px;
                max-height: 340px;
            }
            .how-slide-content {
                padding: 1.75rem 1.5rem;
            }
        }