/* ══════════════════════════════════════════
   CALADON — Design tokens from Framer source
   ══════════════════════════════════════════ */

/* Lenis Smooth Scroll Essential CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

:root {
    /* ── Framer color tokens (exact) ── */
    --c-bg: #000000;
    /* token-ccc1bf5d */
    --c-bg-dark: #0d0d12;
    /* token-0fad4860  footer bottom */
    --c-bg-card: #000000;
    /* token-ccc1bf5d  card bg */
    --c-border: #1a1d31;
    /* token-586a694b  card border */
    --c-text: #7b7c8c;
    /* token-ea45e4c5  body text */
    --c-heading: rgba(255, 255, 255, 0.87);
    /* token-a5fc87b0  headings = #ffffffde */
    --c-white: #ffffff;
    --c-underline: rgba(207, 207, 207, 0.2);
    /* token-d960941b  nav line = #cfcfcf33 */
    --c-ring-light: #d0d0d0;
    /* token-965d2dcc  globe ring */
    --c-accent: #6e86ff;
    /* token-e3366ad4  accent blue */
    --c-copyright: rgb(143, 143, 143);

    /* ── preset-6exjfw: Poppins 400 16px 1.6em #7b7c8c ── */
    --text-size: 16px;
    --text-weight: 400;
    --text-lh: 1.6em;
    --text-spacing: 10px;
    /* paragraph-spacing */

    /* ── preset-u31o60: Poppins 500 20px 1.4em #ffffffde ── */
    --h5-size: 20px;
    --h5-weight: 500;
    --h5-lh: 1.4em;

    /* ── preset-j1ird0: Poppins 400 24px 1.4em #ffffffde (bottom card h4) ── */
    --h4-size: 24px;
    --h4-weight: 400;
    --h4-lh: 1.4em;

    /* ── preset-hf90t8: Poppins 600 14px 1.2em (card label) ── */
    --label-size: 14px;
    --label-weight: 600;
    --label-lh: 1.2em;
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* scroll-behavior: smooth; - Removed to avoid conflict with Lenis */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: var(--text-size);
    font-weight: var(--text-weight);
    line-height: var(--text-lh);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL — Framer-style fade+rise
   ══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--reveal-delay, 0s);
}

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

.max-w {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

/* ══════════════════════════════════════════
   NAVBAR  — dark frosted-glass, always visible
   ══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 99999;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    padding: 16px 0;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-bottom 0.3s ease;
}

.navbar.scrolled {
    background-color: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Framer: framer-hh2dwb → gap:56px, padding:16px 40px, width:1200px */
.navbar-container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
    justify-self: start;
}

/* Framer: framer-1fyrhyo → width:221px height:48px */
.logo-img {
    width: 221px;
    height: 48px;
    object-fit: contain;
    object-position: left center;
}

/* Framer: framer-ntqnfl → gap:28px */
.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-self: center;
}

.nav-links li a {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: var(--text-size);
    font-weight: var(--text-weight);
    color: var(--c-white);
    /* Exact Framer token: #7B7C8C */
    transition: color 0.25s;
    white-space: nowrap;
}

/* Framer-style underline: scaleX 0 → 1 on hover */
.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.nav-underline {
    height: 1.5px;
    width: 100%;
    background-color: var(--c-white);
    transform: scaleX(0);
    transform-origin: left;
    /* Framer: left: -6px → left: 0 */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li a:hover {
    color: var(--c-white);
}

.nav-links li a:hover .nav-underline {
    transform: scaleX(1);
}

/* Active Navigation Item Styles */
.nav-links li a.active {
    color: var(--c-white) !important;
}

.nav-links li a.active .nav-underline {
    transform: scaleX(1) !important;
    background-color: var(--c-white) !important;
}

/* ── CTA Button ── */
.nav-btn {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.2px;
    white-space: nowrap;
    z-index: 1001;
    cursor: pointer;
}

.nav-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-1.5px);
}

.nav-btn:active {
    transform: translateY(0);
}

.mobile-only-link {
    display: none !important;
}

/* ══════════════════════════════════════════
   HERO — Premium, cohesive with page design
   ══════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    overflow: hidden;
    padding-top: 80px;
}

/* Cinematic Glow Backdrop */
.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    z-index: 1;
}

.hero-backdrop::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    right: -15%;
    bottom: -20%;
    background:
        radial-gradient(circle at 18% 45%, rgba(255, 114, 173, 0.22) 0%, transparent 52%),
        radial-gradient(circle at 55% 55%, rgba(154, 103, 255, 0.28) 0%, transparent 58%),
        radial-gradient(circle at 82% 35%, rgba(45, 111, 196, 0.3) 0%, transparent 48%),
        radial-gradient(circle at 38% 70%, rgba(110, 134, 255, 0.22) 0%, transparent 52%);
    filter: blur(80px);
    z-index: 2;
    opacity: 0.9;
    animation: hero-glow-pulse 10s ease-in-out infinite alternate;
}

/* Page-Specific Hero Backdrop Gradients */
.hero-backdrop.home-backdrop::before {
    background:
        radial-gradient(circle at 18% 45%, rgba(255, 114, 173, 0.22) 0%, transparent 52%),
        radial-gradient(circle at 55% 55%, rgba(154, 103, 255, 0.28) 0%, transparent 58%),
        radial-gradient(circle at 82% 35%, rgba(45, 111, 196, 0.3) 0%, transparent 48%),
        radial-gradient(circle at 38% 70%, rgba(110, 134, 255, 0.22) 0%, transparent 52%);
}

.hero-backdrop.careers-backdrop::before {
    background:
        radial-gradient(circle at 20% 50%, rgba(46, 204, 113, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 60% 60%, rgba(26, 188, 156, 0.28) 0%, transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(52, 152, 219, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 75%, rgba(22, 160, 133, 0.22) 0%, transparent 55%);
}

.hero-backdrop.contact-backdrop::before {
    background:
        radial-gradient(circle at 25% 45%, rgba(75, 0, 130, 0.25) 0%, transparent 52%),
        radial-gradient(circle at 55% 50%, rgba(0, 191, 255, 0.22) 0%, transparent 58%),
        radial-gradient(circle at 75% 40%, rgba(138, 43, 226, 0.28) 0%, transparent 48%),
        radial-gradient(circle at 35% 70%, rgba(65, 105, 225, 0.25) 0%, transparent 52%);
}

.hero-backdrop.commodity-backdrop::before {
    background:
        radial-gradient(circle at 20% 40%, rgba(149, 0, 255, 0.25) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(110, 14, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 85% 35%, rgba(50, 216, 216, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 35% 75%, rgba(0, 48, 255, 0.2) 0%, transparent 55%);
}

.hero-backdrop.financial-backdrop::before {
    background:
        radial-gradient(circle at 20% 50%, rgba(41, 128, 185, 0.35) 0%, transparent 55%),
        radial-gradient(circle at 65% 45%, rgba(52, 152, 219, 0.38) 0%, transparent 60%),
        radial-gradient(circle at 80% 60%, rgba(142, 68, 173, 0.42) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(44, 62, 80, 0.28) 0%, transparent 55%);
}

.hero-backdrop.metals-backdrop::before {
    background:
        radial-gradient(circle at 18% 45%, rgba(255, 114, 173, 0.22) 0%, transparent 52%),
        radial-gradient(circle at 55% 55%, rgba(154, 103, 255, 0.28) 0%, transparent 58%),
        radial-gradient(circle at 82% 35%, rgba(45, 111, 196, 0.3) 0%, transparent 48%),
        radial-gradient(circle at 38% 70%, rgba(110, 134, 255, 0.22) 0%, transparent 52%);
}

.hero-backdrop.oil-backdrop::before {
    background:
        radial-gradient(circle at 18% 45%, rgba(255, 114, 173, 0.22) 0%, transparent 52%),
        radial-gradient(circle at 55% 55%, rgba(154, 103, 255, 0.28) 0%, transparent 58%),
        radial-gradient(circle at 82% 35%, rgba(45, 111, 196, 0.3) 0%, transparent 48%),
        radial-gradient(circle at 38% 70%, rgba(110, 134, 255, 0.22) 0%, transparent 52%);
}

@keyframes hero-glow-pulse {
    0% {
        opacity: 0.55;
        transform: scale(0.97);
    }

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

.hero-bg-overlay-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.18;
    mix-blend-mode: screen;
    z-index: 3;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 60%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 95%);
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 50% 38%, transparent 25%, rgba(0, 0, 0, 0.65) 65%, #000 100%);
    z-index: 5;
    pointer-events: none;
}

/* Hero Content */
.hero-content-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px 60px;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    justify-content: center;
}

.hero-text-wrapper {
    max-width: 820px;
}

/* ─── Eyebrow label — matches card-label style ─── */
.hero-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(45, 111, 196, 0.9);
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(45, 111, 196, 0.3);
    border-radius: 50px;
    background: rgba(45, 111, 196, 0.06);
}

.hero-headline {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: clamp(34px, 4.8vw, 66px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.accent-gradient {
    color: rgba(255, 255, 255, 0.5);
    display: inline;
    font-weight: 400;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.4vw, 16px);
    color: #f3f3f3;
    max-width: 580px;
    margin: 0 auto 48px auto;
    line-height: 1.75;
    font-weight: 100;
}

.subtitle-highlight {
    display: inline-block;
    font-weight: 500;
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.02em;
}

/* CTA Buttons — match card border language */
.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.hero-primary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(45, 111, 196, 0.15);
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 10px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    border: 1px solid rgba(45, 111, 196, 0.45);
    box-shadow: 0 0 0 1px rgba(20, 60, 140, 0.15), 0 4px 20px rgba(0, 20, 80, 0.3);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
}

.hero-primary-btn:hover {
    background: rgba(45, 111, 196, 0.28);
    border-color: rgba(100, 160, 255, 0.6);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(20, 60, 140, 0.2), 0 8px 30px rgba(0, 20, 80, 0.45);
}

.hero-secondary-btn {
    background: transparent;
    color: #7b7c8c !important;
    border-radius: 10px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
}

.hero-secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

/* ─── Category Tray ─── */
.hero-tray-wrapper {
    position: relative;
    z-index: 15;
    background: transparent;
    border-top: 1px solid rgba(45, 111, 196, 0.15);
    margin-top: auto;
    padding: 44px 0 56px 0;
}

.hero-tray-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.tray-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px 0 0;
    border-right: 1px solid rgba(45, 111, 196, 0.12);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tray-item:last-child {
    border-right: none;
    padding-right: 0;
}

.tray-item:not(:first-child) {
    padding-left: 24px;
}

.tray-item:hover {
    transform: translateY(-3px);
}

.tray-icon-box {
    width: 32px;
    height: 32px;
    color: rgba(45, 111, 196, 0.85);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 6px rgba(45, 111, 196, 0.35));
    transition: transform 0.35s ease, color 0.35s ease, filter 0.35s ease;
}

.tray-icon-box svg {
    width: 100%;
    height: 100%;
}

.tray-item:hover .tray-icon-box {
    transform: scale(1.1);
    color: rgba(100, 160, 255, 0.95);
    filter: drop-shadow(0 0 8px rgba(100, 160, 255, 0.5));
}

.tray-item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.tray-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tray-item-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #7b7c8c;
    line-height: 1.4;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.tray-item:hover .tray-item-list li {
    color: rgba(255, 255, 255, 0.55);
}

.tray-item-list li:hover {
    color: rgba(255, 255, 255, 0.88) !important;
    transform: translateX(2px);
}


/* 📱 Responsive Overrides for Category Board */
@media (max-width: 1200px) {
    .hero-tray-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .tray-item {
        border-right: none;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content-container {
        padding: 100px 24px 60px;
    }

    .hero-headline {
        font-size: clamp(32px, 7vw, 44px);
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        margin-bottom: 36px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }

    .hero-primary-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: rgb(45, 111, 196);
        color: #ffffff !important;
        border-color: rgb(45, 111, 196);
    }

    .hero-primary-btn:hover {
        background: rgb(60, 130, 220);
        border-color: rgb(60, 130, 220);
    }

    .hero-secondary-btn {
        width: 100%;
        text-align: center;
        background: #1a1d31;
        color: #ffffff !important;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .hero-secondary-btn:hover {
        background: #252942;
        border-color: rgba(255, 255, 255, 0.3);
    }

    .hero-tray-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
        padding: 0 24px;
    }

    .hero-tray-wrapper {
        padding: 40px 0;
    }

    .tray-item {
        align-items: center;
        text-align: center;
    }

    .tray-item:last-child {
        grid-column: span 2;
    }

    .tray-item-list {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-tray-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
        padding: 0 20px;
    }
}

/* ══════════════════════════════════════════
   DESCRIPTION
   ══════════════════════════════════════════ */
.description-section {
    padding: 80px 40px 100px;
}

.description-container {
    /* Framer: framer-1fim26j → width:965px, max-width:1006% */
    max-width: 965px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Framer: preset-6exjfw → Poppins 400 16px 1.6em #7b7c8c, paragraph-spacing:10px */
.description-container p {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: var(--text-size);
    font-weight: var(--text-weight);
    color: var(--c-text);
    line-height: var(--text-lh);
    margin-bottom: var(--text-spacing);
}

/* ══════════════════════════════════════════
   CARDS GRID — 2 columns, 3 rows
   ══════════════════════════════════════════ */
.cards-section {
    padding: 0 40px 100px;
}

#explore {
    scroll-margin-top: 110px;
}

.cards-container {
    max-width: 1124px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ── Card — matches reference: dark navy bg, blue border, image fill ── */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    /* Pure black background for the text area at the bottom */
    background-color: #000000;
    /* Blue-tinted border like the reference */
    border: 1px solid rgba(45, 111, 196, 0.35);
    box-shadow:
        0 0 0 1px rgba(20, 60, 140, 0.15),
        0 4px 32px rgba(0, 20, 80, 0.45),
        inset 0 1px 0 rgba(100, 160, 255, 0.08);
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: var(--c-accent);
    background-color: #030408;
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.85),
        0 0 30px rgba(110, 134, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card:active {
    transform: translateY(-2px) scale(0.995);
    transition: transform 0.15s ease;
}

/* Full-bleed image layer with strong bottom fade */
.card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1.60331;
    background-size: cover;
    background-position: center;
    /* Increased inner bottom shadow for more dramatic transition */
    box-shadow: inset 0 -120px 100px -40px rgba(56, 56, 56, 0.4);
    filter: brightness(0.9) saturate(0.85);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-img {
    transform: scale(1.05);
    filter: brightness(1.22) saturate(1.30);
}

/* Dark gradient overlay removed as text is now below */
.card::after {
    display: none;
}

/* Label — Framer preset-u31o60: Poppins 500 20px, centered at bottom */
.card-label {
    height: 60px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4em;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
    z-index: 2;
    transition: color 0.4s ease, letter-spacing 0.4s ease, text-shadow 0.4s ease, transform 0.4s ease;
}

.card:hover .card-label {
    color: #ffffff;
    letter-spacing: 0.08em;
    text-shadow: 0 0 15px rgba(110, 134, 255, 0.6), 0 2px 14px rgba(0, 0, 0, 0.95);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   SPLIT SECTION
   ══════════════════════════════════════════ */
.split-section {
    padding: 40px 0 120px;
    position: relative;
    z-index: 1;
}

.split-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 12px 12px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%);
    z-index: -1;
    pointer-events: none;
}

.split-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.split-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 450px;
}

.split-text p {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: var(--text-size);
    font-weight: var(--text-weight);
    color: #7b7c8c;
    line-height: 1.7em;
    text-align: left;
}

/* Framer: framer-1hurhnq → flex:1 width:730px max */
.split-visual {
    flex-shrink: 0;
    width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ── Glow ring — silver border, purple-violet outer glow ── */
.glow-ring {
    aspect-ratio: 1;
    height: 420px;
    border-radius: 50%;
    /* Thinner, more elegant silver border */
    background: linear-gradient(135deg,
            #e0e0e0 0%,
            #444444 50%,
            #e0e0e0 100%);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Multi-colored outer glow */
.glow-ring::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    z-index: -1;
    background:
        radial-gradient(circle at 25% 35%, rgba(255, 114, 173, 0.75), transparent 65%),
        radial-gradient(circle at 75% 65%, rgba(154, 103, 255, 0.85), transparent 65%),
        radial-gradient(circle at 50% 50%, rgba(255, 133, 212, 0.4), transparent 70%);
    filter: blur(45px);
    animation: pulse-glow 6s ease-in-out infinite alternate;
}

/* Dark inner circle */
.glow-ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.6;
        transform: scale(0.96);
    }

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

/* Centered V-icon inside the ring */
.glow-logo {
    width: 48%;
    height: 48%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 12px rgba(0, 160, 255, 0.2));
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════
   BOTTOM CARDS — same card style as Framer
   ══════════════════════════════════════════ */
.bottom-cards-section {
    padding: 0 0 120px;
}

.bottom-cards-container {
    max-width: 1104px;
    margin: 0 auto;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.bottom-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--c-border);
    /* Framer: #1a1d31 */
    background-color: var(--c-bg-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.bottom-card:hover {
    transform: translateY(-6px);
    border-color: rgba(110, 134, 255, 0.35);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(110, 134, 255, 0.12);
}

/* Framer: framer-1j2dohc-container → aspect-ratio:1.60331, height:313px desktop */
.bottom-card-img {
    aspect-ratio: 1.60331;
    width: 100%;
    height: auto;
    background-size: 110% 125%;
    background-position: center -20px;
    background-repeat: no-repeat;
    flex-shrink: 0;
    filter: brightness(1.24);
    /* Framer: filter:brightness(1.24) */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bottom-card:hover .bottom-card-img {
    transform: scale(1.03);
    filter: brightness(1.35);
}

/* Framer: framer-1deklgw → padding: 0 24px 32px, gap:8px */
.bottom-card-body {
    padding: 0 24px 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Framer: preset-j1ird0 → Poppins 400 24px 1.4em #ffffffde */
.bottom-card-body h3 {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: var(--h4-size);
    /* 24px — framer-styles-preset-j1ird0 */
    font-weight: var(--h4-weight);
    /* 400 */
    line-height: var(--h4-lh);
    /* 1.4em */
    color: var(--c-heading);
    /* #ffffffde */
    letter-spacing: 0em;
    margin-bottom: 20px;
    /* preset-j1ird0 paragraph-spacing:20px */
}

/* Framer: preset-6exjfw → Poppins 400 16px 1.6em #7b7c8c */
.bottom-card-body p {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: var(--text-size);
    font-weight: var(--text-weight);
    color: var(--c-text);
    line-height: var(--text-lh);
}

/* ══════════════════════════════════════════
   FOOTER DESCRIPTION — asterisk dividers
   ══════════════════════════════════════════ */
.footer-desc-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 1;
}

.footer-desc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 12px 12px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%);
    z-index: -1;
    pointer-events: none;
}

.footer-desc-container {
    max-width: 860px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.star-divider {
    color: #2e2e3e;
    font-size: 11px;
    letter-spacing: 2px;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1;
}

.footer-desc-container p {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: var(--text-size);
    font-weight: var(--text-weight);
    color: var(--c-text);
    line-height: var(--text-lh);
    margin: 6px 0 0;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
    position: relative;
    background-color: #000;
    overflow: hidden;
    min-height: auto;
    display: flex;
    flex-direction: column;
}



/* Globe image — upper right of footer */
.footer-globe-wrap {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 140vw;
    max-width: 2200px;
    aspect-ratio: 16 / 9;
    height: auto;
    z-index: 2;
    mix-blend-mode: screen;
    opacity: 0.96;
    filter: saturate(0.92) brightness(1.05);
    pointer-events: none;
    overflow: visible;
}



.footer-logo-section {
    padding: 0 60px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

@media (max-width: 1200px) {
    .footer-logo-section {
        padding: 0 0px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #000;
    }
}

.footer-small-logo {
    width: 85px;
    height: auto;
    opacity: 0.95;
    filter: drop-shadow(0 0 12px rgba(110, 134, 255, 0.35));
}

.footer-globe-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    z-index: 1;
}

/* Nav links — bottom left */
.footer-links-section {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 280px 9.375% 84px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-nav a {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: 16px;
    font-weight: var(--text-weight);
    color: var(--c-text);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
    padding-bottom: 4px;
    position: relative;
    width: fit-content;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--c-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav a:hover {
    color: var(--c-white);
}

.footer-nav a:hover::after {
    transform: scaleX(1);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    color: inherit;
    opacity: 0.8;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav a:hover .arrow-icon {
    transform: rotate(45deg);
    opacity: 1;
}

/* Copyright bar */
.footer-bottom {
    position: relative;
    z-index: 2;
    background-color: var(--c-bg-dark);
    /* Framer: #0d0d12 */
    border: 1px solid rgba(26, 29, 49, 0.7);
    border-radius: 24px;
    text-align: center;
    width: min(76.2%, 1558px);
    min-height: 67px;
    margin: 0 auto 6px;
    padding: 16px 24px;
    /* Framer: padding 16px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: 16px;
    font-weight: var(--text-weight);
    color: var(--c-copyright);
    /* Framer: rgb(143,143,143) */
    letter-spacing: 0.3px;
}

.hero-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ══════════════════════════════════════════
   CONTACT PAGE SPECIFIC
   ══════════════════════════════════════════ */
.contact-hero-section {
    padding-top: 0;
    background-color: #000;
    position: relative;
}

.contact-hero-container {
    width: 100%;
    margin: 0 auto;
    padding-top: 80px;
    /* Offset for navbar */
    position: relative;
}

.contact-hero-image-box {
    position: relative;
    width: 100%;
}

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

.contact-hero-content {
    position: absolute;
    top: 20%;
    left: 10%;
    max-width: 500px;
    z-index: 10;
}

.contact-title {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 0px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.text-blue {
    color: var(--c-accent);
    /* Use #6e86ff */
}

.contact-title-underline {
    width: 140px;
    height: 2px;
    background: var(--c-accent);
    margin-top: 10px;
    margin-bottom: 24px;
    box-shadow: 0 0 12px rgba(110, 134, 255, 0.6);
}

.contact-subtitle {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card-box {
    background: rgba(4, 10, 30, 0.3);
    border: 1px solid rgba(110, 134, 255, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.contact-card-box:hover {
    transform: translateY(-2px);
    border-color: rgba(110, 134, 255, 0.5);
    background: rgba(4, 10, 30, 0.5);
}

.c-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(110, 134, 255, 0.1);
    border: 1px solid rgba(110, 134, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 10px rgba(110, 134, 255, 0.1);
}

.c-icon {
    width: 24px;
    height: 24px;
    color: var(--c-accent);
}

.c-card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.c-card-info h4 {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-accent);
    letter-spacing: 1px;
    margin: 0;
}

.c-card-info p {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.c-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-line span {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.c-small-icon {
    width: 14px;
    height: 14px;
}

.contact-features-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 10%;
    gap: 40px;
}

.feature-col {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.f-icon-wrap {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.f-icon {
    width: 100%;
    height: 100%;
}

.f-text-wrap h5 {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-accent);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.f-text-wrap p {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.f-text-wrap ul {
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
}

.f-text-wrap ul li {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    position: relative;
    padding-left: 12px;
}

.f-text-wrap ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--c-accent);
}



/* ══════════════════════════════════════════
   SERVICES PAGE SPECIFIC
   ══════════════════════════════════════════ */
.services-hero {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    background-color: #000;
    position: relative;
}


.services-hero::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 300px;
    background:
        radial-gradient(ellipse at 20% 100%, rgba(220, 80, 50, 0.35) 0%, transparent 65%),
        radial-gradient(ellipse at 80% 100%, rgba(90, 110, 255, 0.35) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.services-hero .hero-content {
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.services-hero h1 .text-hero-muted {
    color: #7d84a3;
}

.services-hero h1 .text-hero-accent {
    color: #6e86ff;
}

.services-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.467);
    font-weight: 400;
    max-width: 880px;
    margin: 0 auto;
    line-height: 1.5;
    padding-top: 30px;
}

.services-grid-section {
    padding: 0 40px 80px;
}

.services-grid-container {
    max-width: 1124px;
    margin: 0 auto 30px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.offset-col {
    margin-top: 140px;
}


.services-card {
    background: #000;
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.services-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(110, 134, 255, 0.3);
}

.s-card-img {
    width: 100%;
    aspect-ratio: 1.60331;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}

.s-card-content {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.s-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--c-white);
    margin: 0;
}

.s-card-content p {
    font-family: 'Poppins', 'Poppins Placeholder', sans-serif;
    font-size: var(--text-size);
    font-weight: var(--text-weight);
    color: var(--c-text);
    line-height: var(--text-lh);
    margin: var(--text-spacing) 0 0 0;
}

/* Carbon credits is wide */
.s-card-wide {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.s-card-wide .s-card-img {
    height: 460px;
}

.sustainability-section {
    text-align: center;
    padding: 40px 40px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.sustainability-logo {
    width: 48px;
    margin-bottom: 24px;
}

.sustainability-section h2 {
    font-size: 24px;
    color: var(--c-white);
    margin-bottom: 24px;
}

.sustainability-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ══════════════════════════════════════════
   OIL & PRODUCTS PAGE SPECIFIC
   ══════════════════════════════════════════ */
.oil-hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: #000;
    position: relative;
    overflow: hidden;
    z-index: 2;
}


.oil-hero-image-wrapper {
    max-width: 1344px;
    /* Matches Framer wide look */
    margin: 0 auto;
    width: 80%;
    position: relative;
    border-radius: 12px;
}

/* Cinematic Glow behind hero */
.oil-hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    background: radial-gradient(circle at 20% 40%, rgba(244, 136, 186, 0.418) 0%, transparent 60%),
        radial-gradient(circle at 50% 60%, rgba(190, 120, 255, 0.567) 0%, transparent 65%),
        radial-gradient(circle at 80% 40%, rgba(110, 134, 255, 0.45) 0%, transparent 60%),
        radial-gradient(circle at 30% 50%, rgba(255, 177, 114, 0.411) 0%, transparent 55%);
    filter: blur(80px);
    z-index: 0;
    opacity: 0.8;
    animation: glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

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

.oil-hero-full-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    animation: floating-hero 10s ease-in-out infinite;
}



.oil-description-section {
    padding: 40px 40px 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #000;
    position: relative;
    z-index: 2;
}

.oil-description-section p {
    font-size: 18px;
    color: var(--c-text);
    line-height: 1.6;
}

.oil-cards-section {
    padding: 0 40px 100px;
    position: relative;
    z-index: 2;
}

.oil-cards-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(110, 134, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.oil-cards-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    pointer-events: none;
    z-index: -1;
}

.oil-cards-container {
    max-width: 1124px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.oil-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.oil-card {
    background-color: transparent;
    /* token-0fad4860 */
    border: 2px solid rgba(244, 244, 244, 0.078);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    box-shadow: none;
}

.oil-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(74, 164, 255, 0.3);
}

.oil-card-img-wrap {
    width: 100%;
    aspect-ratio: 1.60331;
    height: auto;
    position: relative;
    overflow: hidden;
}

.oil-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 -120px 100px -40px rgba(0, 0, 0, 0.9);
    pointer-events: none;
    z-index: 2;
}

.oil-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

.oil-card:hover .oil-card-img {
    transform: scale(1.04);
    filter: brightness(1.18);
}

/* Helper to fully show images without masks/shadows */
.oil-card-img-wrap.no-mask::after {
    box-shadow: inset 0 -45px 30px -20px rgba(0, 0, 0, 0.95) !important;
}

.oil-card-img.no-mask {
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
}

.oil-card-content {
    padding: 28px 32px 40px;
    text-align: left;
}

.oil-card-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--c-heading);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.oil-card-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Staggered effect for cards */
.stagger-col {
    margin-top: 60px;
}





/* ══════════════════════════════════════════
   CAPITAL PAGE SPECIFIC
   ══════════════════════════════════════════ */

.derivatives-hero-section {
    padding: 100px 40px 40px;
    background-color: #000;
}

.derivatives-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #040914;
    background-image: linear-gradient(rgba(4, 9, 20, 0.7), rgba(4, 9, 20, 0.9)), url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    border: 1px solid rgba(45, 111, 196, 0.3);
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 20, 80, 0.5), inset 0 0 40px rgba(0, 40, 100, 0.5);
}

.derivatives-title {
    font-size: 56px;
    font-weight: 700;
    color: #40a0ff;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(64, 160, 255, 0.6);
}

.derivatives-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.derivatives-desc {
    max-width: 600px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

.derivatives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.deriv-feature {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deriv-feature-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(64, 160, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #40a0ff;
    margin-bottom: 8px;
}

.deriv-feature-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.deriv-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: #40a0ff;
    text-transform: uppercase;
}

.deriv-feature p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.deriv-markets-title {
    font-size: 14px;
    font-weight: 600;
    color: #40a0ff;
    text-transform: uppercase;
}

.deriv-markets-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.deriv-market-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 16px;
}

.deriv-market-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.deriv-market-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.swaps-section {
    padding: 40px 40px 80px;
    background-color: #000;
}

.swaps-container {
    max-width: 1124px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.swap-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    border: 1px solid rgba(232, 232, 232, 0.147);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.swap-card:hover {
    transform: translateY(-6px);
    border-color: rgba(110, 134, 255, 0.45);
    box-shadow:
        0 15px 36px rgba(0, 0, 0, 0.65),
        0 0 22px rgba(110, 134, 255, 0.15);
}

.swap-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1.60331;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 -120px 100px -40px rgba(0, 0, 0, 0.9);
    border-bottom: none;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swap-card:hover .swap-card-img {
    transform: scale(1.04);
    filter: brightness(1.18);
}

.swap-label {
    height: 60px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    background-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}



/* ── Hamburger Button ── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 12px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--c-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(2) {
    display: none;
}

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

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

/* ── Media Queries ── */

@media (max-width: 1200px) {
    .navbar-container {
        display: flex !important;
        padding: 0 20px;
        justify-content: space-between;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-btn {
        display: none !important;
    }

    .mobile-only-link {
        display: block !important;
    }

    nav.navbar .navbar-container ul.nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        z-index: 5000;
        padding: 100px 24px 40px 24px;
        margin: 0;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
        pointer-events: none;
    }

    nav.navbar .navbar-container ul.nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    nav.navbar .navbar-container ul.nav-links li a {
        font-size: 18px !important;
        color: rgba(255, 255, 255, 0.5) !important;
        font-weight: 400 !important;
        letter-spacing: 0.8px !important;
        transition: color 0.4s ease !important;
        text-transform: none !important;
        display: block !important;
        text-align: center;
    }

    nav.navbar .navbar-container ul.nav-links li a:hover {
        color: #ffffff !important;
    }

    .nav-underline {
        display: none !important;
    }

    .menu-toggle {
        z-index: 10001 !important;
    }

    .logo {
        z-index: 10001 !important;
    }

    /* Hero */
    .hero-container {
        padding: 100px 20px 0;
    }

    .hero-image {
        width: 100%;
        margin-left: 0;
    }

    /* Description */
    .description-section {
        padding: 40px 20px;
    }

    /* Cards */
    .cards-section {
        padding: 0 20px 40px;
    }

    /* Split Section */
    .split-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .split-visual {
        width: 100%;
        max-width: 420px;
    }

    .glow-ring {
        height: 320px;
    }

    /* Bottom Cards */
    .bottom-cards-container {
        grid-template-columns: 1fr;
        width: 100%;
    }

    /* Footer Globe */
    .footer-globe-wrap {
        width: 250vw;
        top: 200px;
    }

    .footer-links-section {
        padding: 400px 20px 60px;
        align-items: center;
        text-align: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-nav a {
        justify-content: center;
    }

    /* Capital Page */
    .derivatives-grid {
        grid-template-columns: 1fr 1fr;
    }

    .deriv-markets-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Services & Oil */
    .services-grid-container,
    .oil-cards-row {
        grid-template-columns: 1fr;
    }

    .offset-col,
    .stagger-col {
        margin-top: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .navbar-container {
        padding: 0 24px;
    }

    .logo-img {
        width: 170px;
        height: 38px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links li a {
        font-size: 12px;
    }

    .nav-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* Laptop Optimization for Desktop Header (1201px to 1600px) */
@media (min-width: 1300px) and (max-width: 1600px) {
    .navbar-container {
        padding: 0 24px;
    }

    .logo-img {
        width: 170px;
        height: 38px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links li a {
        font-size: 14px;
    }

    .nav-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {

    /* Navbar */
    .logo-img {
        width: 160px;
        height: 35px;
    }

    /* Section Spacing */
    section {
        padding-bottom: 40px !important;
    }

    /* Grid Rows */
    .cards-row {
        grid-template-columns: 1fr;
    }

    /* Typography */
    .contact-title,
    .services-hero h1,
    .derivatives-title {
        font-size: 36px !important;
    }

    .oil-card-title {
        font-size: 22px;
    }

    .oil-card-img-wrap {
        height: 240px;
    }

    /* Contact Features */
    .contact-features-overlay {
        grid-template-columns: 1fr 1fr;
        padding: 40px 20px;
        position: relative;
        background: #000;
        gap: 20px;
    }

    /* Capital Page */
    .derivatives-hero-container {
        padding: 30px;
    }

    .deriv-markets-grid {
        grid-template-columns: 1fr 1fr;
    }

    .swaps-container {
        grid-template-columns: 1fr;
    }

    /* Footer Copyright Bar */
    .footer-bottom {
        width: 95%;
        padding: 12px 20px;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    /* Footer Refinements */
    .footer-globe-wrap {
        width: 250vw;
        top: 100px;
    }

    .footer-links-section {
        padding: 380px 10% 60px;
        align-items: flex-start;
        display: flex;
        justify-content: flex-start;
    }

    .footer-nav {
        gap: 22px;
        width: 100%;
    }

    .footer-nav a {
        font-size: 18px;
        width: 100%;
        justify-content: flex-start;
        color: rgba(255, 255, 255, 0.6);
    }
}

@media (max-width: 480px) {

    .contact-title,
    .services-hero h1,
    .derivatives-title {
        font-size: 28px !important;
    }

    .contact-features-overlay {
        grid-template-columns: 1fr;
    }

    .deriv-markets-grid {
        grid-template-columns: 1fr;
    }

    .footer-globe-wrap {
        width: 320vw;
        top: 80px;
    }

    .footer-links-section {
        padding: 300px 10% 50px;
    }

    .footer-nav {
        gap: 18px;
    }

    .footer-nav a {
        font-size: 17px;
    }

    .glow-ring {
        height: 260px;
    }

    .contact-hero-content {
        left: 5%;
        right: 5%;
        width: 90%;
        top: 15%;
    }
}

/* ══════════════════════════════════════════
   OIL & PRODUCTS HERO SECTION
   ══════════════════════════════════════════ */
.hero-features-wrapper {
    position: relative;
    z-index: 15;
    padding: 50px 40px;
    max-width: 1204px;
    /* Mathematically aligns content to 1124px width of cards below */
    width: 100%;
    margin: 0 auto;
    border-top: none;
}

/* Page-specific spacing adjustment for Oil & Products: matches top gap of 106px */
.oil-backdrop~.hero-features-wrapper {
    padding-bottom: 106px;
}

.hero-features-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 24px;
    background: rgba(10, 20, 42, 0.45);
    border: 1px solid rgba(74, 164, 255, 0.16);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: inset 0 0 12px rgba(74, 164, 255, 0.03), 0 8px 32px rgba(0, 0, 0, 0.45);
}

.feature-item:hover {
    transform: translateY(-6px);
    background: rgba(16, 32, 64, 0.6);
    border-color: rgba(74, 164, 255, 0.38);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 0 25px rgba(74, 164, 255, 0.15);
}

.feature-icon {
    width: 34px;
    height: 34px;
    color: #4AA4FF;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 6px rgba(74, 164, 255, 0.3));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease, filter 0.4s ease;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-item:hover .feature-icon {
    transform: scale(1.12) translateY(-1px);
    color: #64B5FF;
    filter: drop-shadow(0 0 10px rgba(100, 180, 255, 0.55));
}

.feature-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #fff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.feature-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-item:hover p {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive overrides for features grid cards */
@media (max-width: 1200px) {
    .hero-features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-features-wrapper {
        padding: 40px 20px;
    }

    .oil-backdrop~.hero-features-wrapper {
        padding-bottom: 40px;
    }

    .hero-features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-item {
        padding: 24px 20px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-features-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ══════════════════════════════════════════
   PRODUCTS CHIP GRID — Hero Products Section
   ══════════════════════════════════════════ */
.hero-products-wrapper {
    position: relative;
    z-index: 10;
    margin-top: auto;
    padding: 40px 40px 56px;
    border-top: 1px solid rgba(45, 111, 196, 0.15);
    text-align: center;
}

.products-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    opacity: 0.95;
}

.products-chips-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    max-width: 860px;
    margin: 0 auto;
}

.product-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: default;
    position: relative;
    transition: opacity 0.25s ease;
}

/* Subtle vertical divider between chips */
.product-chip+.product-chip::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.product-chip svg {
    width: 16px;
    height: 16px;
    color: rgba(74, 164, 255, 0.75);
    flex-shrink: 0;
    transition: color 0.25s ease;
}

.product-chip span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.product-chip:hover {
    opacity: 1;
}

.product-chip:hover svg {
    color: rgba(100, 180, 255, 0.95);
}

.product-chip:hover span {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .hero-products-wrapper {
        padding: 36px 20px 48px;
    }

    .products-chips-grid {
        gap: 8px 10px;
    }

    .product-chip {
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .products-chips-grid {
        gap: 8px;
    }

    .product-chip span {
        font-size: 13px;
    }
}

/* ══════════════════════════════════════════
   5-COLUMN TRAY RESPONSIVE SYSTEM
   ══════════════════════════════════════════ */
.tray-5-cols {
    max-width: 1124px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.tray-5-cols .tray-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(45, 111, 196, 0.12);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tray-5-cols .tray-item:last-child {
    border-right: none;
}

.tray-5-cols .tray-item-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
}

.tray-5-cols .tray-item:hover {
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .tray-5-cols {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 32px;
    }

    .tray-5-cols .tray-item {
        flex: 0 1 260px;
        border-right: none;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .tray-5-cols {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 16px;
    }

    .tray-5-cols .tray-item {
        border-right: none;
        padding: 0 !important;
    }

    .tray-5-cols .tray-item:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .tray-5-cols {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 12px;
    }

    .tray-5-cols .tray-item {
        border-right: none;
        padding: 0 !important;
    }

    .tray-5-cols .tray-item:last-child {
        grid-column: span 2;
    }
}