/* ============================================================
                   DESIGN SYSTEM — CSS Variables
                   ============================================================ */
:root {
    /* --- Primary --- */
    --primary: #0E3B2E;
    --primary-rgb: 14, 59, 46;
    --secondary: #C59D43;
    --secondary-rgb: 197, 157, 67;
    --accent: #0F6CBD;
    --accent-rgb: 15, 108, 189;

    /* --- Backgrounds --- */
    --bg: #F8FAFB;
    --bg-dark: #08151F;
    --bg-dark-rgb: 8, 21, 31;
    --surface: #FFFFFF;
    --surface-rgb: 255, 255, 255;
    --bg-light: #F2F5F7;

    /* --- Text --- */
    --heading: #112233;
    --body: #556270;
    --body-light: #7A8A9A;

    /* --- Status --- */
    --success: #2E8B57;
    --warning: #D97706;

    /* --- Borders --- */
    --border: #E6EBF0;

    /* --- Shadows --- */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.10);

    /* --- Typography --- */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-data: 'IBM Plex Sans', sans-serif;

    /* --- Layout --- */
    --max-width: 1320px;
    --container-padding-desktop: 80px;
    --container-padding-tablet: 48px;
    --container-padding-mobile: 24px;

    /* --- Spacing --- */
    --section-large: 140px;
    --section-medium: 100px;
    --section-small: 80px;

    /* --- Radius --- */
    --radius-card: 20px;
    --radius-btn: 15px;
    --radius-input: 12px;

    /* --- Transitions --- */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* ============================================================
                   DARK MODE
                   ============================================================ */
[data-theme="dark"] {
    --bg: #0A121A;
    --bg-light: #0E1924;
    --surface: #111E2A;
    --surface-rgb: 17, 30, 42;
    --heading: #E8EDF2;
    --body: #9AACBD;
    --body-light: #6A7F92;
    --border: #1E2F3D;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.6);
    --bg-dark: #050D14;
}

/* ============================================================
                   RESET & BASE
                   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--body);
    background-color: var(--bg);
    transition: background-color 0.4s ease, color 0.4s ease;
}

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

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--container-padding-desktop);
    padding-right: var(--container-padding-desktop);
}

/* ============================================================
                   UTILITY
                   ============================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: var(--secondary);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-tag .line {
    width: 32px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--heading);
    margin-bottom: 20px;
}

.section-heading .highlight {
    color: var(--secondary);
}

.section-desc {
    font-size: 16px;
    line-height: 1.5;
    color: var(--body);
    max-width: 600px;
}

/* ============================================================
                   BUTTONS
                   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
    position: relative;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(var(--primary-rgb), 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--heading);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--heading);
    padding: 16px 20px;
}

.btn-ghost .arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease-out);
}

.btn-ghost:hover .arrow {
    transform: translateX(6px);
}

.btn-gold {
    background: var(--secondary);
    color: #fff;
}

.btn-gold:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    /* box-shadow: 0 12px 32px rgba(var(--secondary-rgb), 0.3); */
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* ============================================================
                   HEADER (existing - keep)
                   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s var(--ease-out);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(var(--surface-rgb), 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
}

[data-theme="dark"] .site-header.scrolled {
    background: rgba(var(--bg-dark-rgb), 0.92);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--heading);
    transition: color 0.3s ease;
}

.logo img {
    max-width: 150px;
}

.logo svg {
    flex-shrink: 0;
}

.logo .logo-text {
    letter-spacing: -0.3px;
}

.logo .logo-text span {
    color: var(--secondary);
}

.site-header.scrolled .logo {
    color: var(--heading);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    font-size: 15px;
    font-weight: 500;
    color: var(--body);
    transition: color 0.25s ease;
    position: relative;
}

.nav-desktop a:hover {
    color: var(--secondary);
}

.nav-desktop a.active {
    color: var(--secondary);
}

.nav-desktop .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
}

.nav-desktop .nav-link .chevron {
    transition: transform 0.3s ease;
}

.nav-desktop .nav-link:hover .chevron {
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    background: var(--surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s var(--ease-out);
    border: 1px solid var(--border);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: var(--heading);
    background: rgba(var(--primary-rgb), 0.04);
    border-left-color: var(--secondary);
}

.dropdown-menu .menu-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--body-light);
    padding: 8px 24px 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-actions .btn {
    padding: 12px 28px;
    font-size: 14px;
}

.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    color: var(--body);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.theme-toggle:hover {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--heading);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--secondary);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(var(--primary-rgb), 0.06);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: var(--surface);
    padding: 80px 32px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-in-out);
    z-index: 1001;
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--heading);
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--heading);
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
    color: var(--secondary);
}

.mobile-menu .btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-overlay.open {
    opacity: 1;
}

/* ============================================================
                   HERO (existing)
                   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(14, 59, 46, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(197, 157, 67, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 20%, rgba(15, 108, 189, 0.10) 0%, transparent 50%),
        var(--bg-dark);
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.hero-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.3;
}

.hero-dots span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulseDot 4s ease-in-out infinite;
}

.hero-dots span:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.hero-dots span:nth-child(2) {
    top: 35%;
    left: 75%;
    animation-delay: 1.2s;
    width: 5px;
    height: 5px;
}

.hero-dots span:nth-child(3) {
    top: 60%;
    left: 25%;
    animation-delay: 2.4s;
}

.hero-dots span:nth-child(4) {
    top: 75%;
    left: 70%;
    animation-delay: 0.8s;
    width: 4px;
    height: 4px;
}

.hero-dots span:nth-child(5) {
    top: 45%;
    left: 45%;
    animation-delay: 1.8s;
    width: 6px;
    height: 6px;
}

.hero-dots span:nth-child(6) {
    top: 10%;
    left: 55%;
    animation-delay: 3s;
}

.hero-dots span:nth-child(7) {
    top: 85%;
    left: 10%;
    animation-delay: 0.4s;
}

.hero-dots span:nth-child(8) {
    top: 50%;
    left: 88%;
    animation-delay: 2s;
    width: 5px;
    height: 5px;
}

@keyframes pulseDot {

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

    50% {
        opacity: 1;
        transform: scale(1.6);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 60px 0 80px;
}

.hero-text {
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.12);
    padding: 6px 18px 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    border: 1px solid rgba(var(--secondary-rgb), 0.15);
}

.hero-eyebrow svg {
    width: 16px;
    height: 16px;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 24px;
}

.hero-heading .highlight {
    color: var(--secondary);
}

.hero-desc {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.earth-viz {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1/1;
    position: relative;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(14, 59, 46, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(15, 108, 189, 0.2) 0%, transparent 50%),
        #0A1A24;
    box-shadow: 0 0 80px rgba(14, 59, 46, 0.3), inset 0 0 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: floatEarth 10s ease-in-out infinite;
}

@keyframes floatEarth {

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

    50% {
        transform: translateY(-12px) scale(1.02);
    }
}

.earth-continents {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.earth-continents svg {
    width: 100%;
    height: 100%;
}

.earth-ring {
    position: absolute;
    inset: -12%;
    border-radius: 50%;
    border: 1px solid rgba(var(--secondary-rgb), 0.15);
    animation: ringPulse 6s ease-in-out infinite;
}

.earth-ring:nth-child(2) {
    inset: -20%;
    border-color: rgba(var(--accent-rgb), 0.08);
    animation-delay: 2s;
}

@keyframes ringPulse {

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

    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

.orbit-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(var(--secondary-rgb), 0.6);
    animation: orbit 12s linear infinite;
}

.orbit-particle:nth-child(3) {
    width: 6px;
    height: 6px;
    animation-duration: 18s;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.5);
}

.orbit-particle:nth-child(4) {
    width: 3px;
    height: 3px;
    animation-duration: 8s;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(160px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(160px) rotate(-360deg);
    }
}

.hero-stats .stat-number .currency {
    font-size: 18px;
    color: var(--secondary);
}

.hero-stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.stat-float {
    position: absolute;
    background: rgba(var(--surface-rgb), 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-card);
    padding: 16px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    animation: floatStat 6s ease-in-out infinite;
    min-width: 140px;
}

.stat-float .stat-number {
    font-family: var(--font-data);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.stat-float .stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 2px;
}

.stat-float:nth-child(1) {
    top: 8%;
    right: -4%;
    animation-delay: 0s;
}

.stat-float:nth-child(2) {
    bottom: 18%;
    right: -8%;
    animation-delay: 1.6s;
}

.stat-float:nth-child(3) {
    top: 25%;
    left: -8%;
    animation-delay: 3.2s;
}

.stat-float:nth-child(4) {
    bottom: 10%;
    left: -4%;
    animation-delay: 0.8s;
}



@keyframes floatStat {

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

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

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s ease 1s both;
}

.scroll-indicator .mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--secondary);
    border-radius: 4px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.2;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================================
    SECTION: OPPORTUNITY
    ============================================================ */
.opportunity {
    padding: var(--section-large) 0;
    background: var(--bg);
    position: relative;
    border-top: 2px solid var(--border);
}

.opportunity .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.opportunity-left .section-desc {
    max-width: 520px;
    margin-bottom: 32px;
}

.opportunity-left .btn {
    margin-top: 8px;
}

/* Revenue diagram / chart */
.opportunity-chart {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 32px 32px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.opportunity-chart:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.chart-header .chart-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
}

.chart-header .chart-value {
    font-family: var(--font-data);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
}

.chart-header .chart-label {
    font-size: 13px;
    color: var(--body-light);
    font-weight: 500;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 160px;
    padding-top: 8px;
}

.chart-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    max-width: 40px;
    border-radius: 4px 4px 0 0;
    background: var(--primary);
    transition: height 0.8s var(--ease-out), background 0.3s ease;
    min-height: 8px;
    position: relative;
}

.chart-bar.gold {
    background: var(--secondary);
}

.chart-bar.accent {
    background: var(--accent);
}

.chart-bar.light {
    background: var(--border);
    opacity: 0.5;
}

.chart-bar-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.chart-legend {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.chart-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--body);
}

.chart-legend-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

.chart-legend-item .dot.primary {
    background: var(--primary);
}

.chart-legend-item .dot.gold {
    background: var(--secondary);
}

.chart-legend-item .dot.accent {
    background: var(--accent);
}

/* Animated icons row */
.opportunity-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.opp-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.opp-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--secondary-rgb), 0.2);
}

.opp-icon-card svg {
    width: 32px;
    height: 32px;
    color: var(--secondary);
    margin-bottom: 10px;
    transition: transform 0.4s ease;
}

.opp-icon-card:hover svg {
    transform: scale(1.08);
}

.opp-icon-card .label {
    font-size: 13px;
    font-weight: 600;
    color: var(--heading);
}

.opp-icon-card .sub {
    font-size: 12px;
    color: var(--body-light);
    margin-top: 2px;
}

/* ============================================================
    OPPORTUNITY — RESPONSIVE
    ============================================================ */

/* Tablet: Stack to 1 column, reduce gaps */
@media (max-width: 1024px) {
    .opportunity .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .opportunity-left .section-desc {
        max-width: 100%;
    }

    .opportunity-chart {
        padding: 28px 24px 20px;
    }

    .chart-bars {
        height: 150px;
        gap: 10px;
    }

    .chart-bar {
        max-width: 36px;
    }

    .chart-header .chart-value {
        font-size: 24px;
    }
}

/* Mobile: Compact but fully visible */
@media (max-width: 768px) {
    .opportunity {
        padding: var(--section-medium) 0;
    }

    .opportunity .container {
        gap: 36px;
    }

    .opportunity-left .section-desc {
        font-size: 15px;
    }

    /* Icons: 2 columns */
    .opportunity-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 24px;
    }

    .opp-icon-card {
        padding: 16px 12px;
    }

    .opp-icon-card svg {
        width: 28px;
        height: 28px;
    }

    .opp-icon-card .label {
        font-size: 13px;
    }

    .opp-icon-card .sub {
        font-size: 11px;
    }

    /* Chart: compact but fully functional */
    .opportunity-chart {
        padding: 20px 16px 16px;
    }

    .chart-header {
        margin-bottom: 16px;
        flex-wrap: wrap;
        gap: 4px;
    }

    .chart-header .chart-title {
        font-size: 15px;
    }

    .chart-header .chart-value {
        font-size: 22px;
    }

    .chart-header .chart-label {
        font-size: 12px;
    }

    .chart-bars {
        height: 130px;
        gap: 8px;
        padding-top: 4px;
    }

    .chart-bar {
        max-width: 32px;
        border-radius: 3px 3px 0 0;
    }

    .chart-bar-label {
        font-size: 10px;
    }

    .chart-legend {
        gap: 14px;
        margin-top: 14px;
        padding-top: 12px;
    }

    .chart-legend-item {
        font-size: 12px;
    }

    .chart-legend-item .dot {
        width: 8px;
        height: 8px;
    }
}

/* Small mobile: Icons 1 column (horizontal layout), chart minimal but clear */
@media (max-width: 480px) {
    .opportunity .container {
        gap: 28px;
    }

    .opportunity-left .section-desc {
        font-size: 14px;
    }

    /* Icons: 1 column, horizontal layout */
    .opportunity-icons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .opp-icon-card {
        flex-direction: row;
        padding: 12px 16px;
        gap: 14px;
        text-align: left;
        align-items: center;
    }

    .opp-icon-card svg {
        width: 24px;
        height: 24px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .opp-icon-card .label {
        font-size: 13px;
    }

    .opp-icon-card .sub {
        font-size: 11px;
    }

    .opp-icon-card .label,
    .opp-icon-card .sub {
        text-align: left;
    }

    /* Chart: smaller but all elements visible */
    .opportunity-chart {
        padding: 16px 12px 14px;
    }

    .chart-header .chart-title {
        font-size: 13px;
    }

    .chart-header .chart-value {
        font-size: 18px;
    }

    .chart-header .chart-label {
        font-size: 11px;
    }

    .chart-bars {
        height: 100px;
        gap: 5px;
        padding-top: 2px;
    }

    .chart-bar {
        max-width: 24px;
        border-radius: 2px 2px 0 0;
        min-height: 4px;
    }

    .chart-bar-label {
        font-size: 8px;
        letter-spacing: 0.2px;
    }

    .chart-legend {
        gap: 10px;
        margin-top: 10px;
        padding-top: 10px;
    }

    .chart-legend-item {
        font-size: 11px;
    }

    .chart-legend-item .dot {
        width: 6px;
        height: 6px;
    }
}

/* ============================================================
                   SECTION: WHY NOW
                   ============================================================ */
.why-now {
    padding: var(--section-large) 0;
    background: var(--bg-light);
    position: relative;
}

.why-now-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.why-now-header .section-desc {
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.why-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all 0.35s var(--ease-out);
    position: relative;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--secondary-rgb), 0.15);
}

.why-card .card-number {
    font-family: var(--font-data);
    font-size: 42px;
    font-weight: 700;
    color: rgba(var(--secondary-rgb), 0.15);
    line-height: 1;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.why-card:hover .card-number {
    color: rgba(var(--secondary-rgb), 0.3);
}

.why-card .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(var(--primary-rgb), 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.why-card:hover .card-icon {
    background: rgba(var(--secondary-rgb), 0.12);
    color: var(--secondary);
}

.why-card .card-icon svg {
    width: 24px;
    height: 24px;
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
    flex: 1;
}

.why-card .card-tag {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Timeline connector */
.why-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin: 40px 0 48px;
    position: relative;
}

.why-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--border);
    transform: translateY(-50%);
}

.why-timeline .tl-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.why-timeline .tl-point .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--surface);
    border: 3px solid var(--border);
    transition: all 0.3s ease;
}

.why-timeline .tl-point.active .dot {
    border-color: var(--secondary);
    background: var(--secondary);
    box-shadow: 0 0 20px rgba(var(--secondary-rgb), 0.3);
}

.why-timeline .tl-point .tl-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.why-timeline .tl-point.active .tl-label {
    color: var(--secondary);
}

/* Market graph */
.market-graph {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 32px 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.market-graph:hover {
    box-shadow: var(--shadow-md);
}

.market-graph .graph-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.market-graph .graph-head h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
}

.market-graph .graph-head .graph-stat {
    font-family: var(--font-data);
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
}

.graph-line {
    position: relative;
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding-bottom: 4px;
}

.graph-line .gl-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: var(--primary);
    transition: height 0.8s var(--ease-out), background 0.3s ease;
    min-height: 6px;
    position: relative;
}

.graph-line .gl-bar:nth-child(3n) {
    background: var(--secondary);
}

.graph-line .gl-bar:nth-child(5n) {
    background: var(--accent);
}

.graph-line .gl-bar:hover {
    opacity: 0.7;
}

.graph-line .gl-bar .gl-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--heading);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.graph-line .gl-bar:hover .gl-tooltip {
    opacity: 1;
}

.graph-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 11px;
    color: var(--body-light);
    font-weight: 500;
}

/* ============================================================
                   SECTION: ABOUT
                   ============================================================ */
.about {
    padding: var(--section-large) 0;
    background: var(--surface);
    position: relative;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-left .section-desc {
    max-width: 520px;
    margin-bottom: 40px;
}

.about-right {
    position: sticky;
    top: 120px;
}

/* Timeline 20 years */
.about-timeline {
    position: relative;
    padding-left: 32px;
    border-left: 3px solid var(--secondary);
}

.about-timeline .tl-item {
    padding-bottom: 36px;
    position: relative;
    padding-left: 20px;
}

.about-timeline .tl-item:last-child {
    padding-bottom: 0;
}

.about-timeline .tl-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--surface);
    border: 3px solid var(--secondary);
    transition: all 0.3s ease;
}

.about-timeline .tl-item:hover::before {
    background: var(--secondary);
    box-shadow: 0 0 20px rgba(var(--secondary-rgb), 0.2);
}

.about-timeline .tl-item .tl-year {
    font-family: var(--font-data);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-timeline .tl-item h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin: 4px 0 4px;
}

.about-timeline .tl-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
}

/* Ecosystem illustration */
.about-ecosystem {
    background: var(--bg-light);
    border-radius: var(--radius-card);
    padding: 40px 32px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.about-ecosystem .eco-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-ecosystem .eco-title .badge {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.1);
    padding: 2px 12px;
    border-radius: 100px;
}

.eco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.eco-node {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.eco-node:hover {
    transform: translateX(4px);
    border-color: rgba(var(--secondary-rgb), 0.2);
    box-shadow: var(--shadow-sm);
}

.eco-node .eco-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(var(--primary-rgb), 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    transition: all 0.3s ease;
}

.eco-node:hover .eco-icon {
    background: rgba(var(--secondary-rgb), 0.1);
    color: var(--secondary);
}

.eco-node .eco-icon svg {
    width: 20px;
    height: 20px;
}

.eco-node .eco-info .eco-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    line-height: 1.2;
}

.eco-node .eco-info .eco-desc {
    font-size: 12px;
    color: var(--body-light);
}

.eco-connector {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 8px 0;
    color: var(--body-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 12px;
    align-items: center;
}

.eco-connector .line {
    flex: 1;
    height: 1px;
    background: var(--border);
    max-width: 80px;
}

/* ============================================================
                   FOOTER (existing)
                   ============================================================ */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 20px;
}

.footer-brand .logo svg path {
    fill: #fff;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: var(--secondary);
}

.footer-col ul a.active {
    color: var(--secondary);
}

.footer-newsletter p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.footer-newsletter .newsletter-form {
    display: flex;
    gap: 8px;
}

.footer-newsletter .newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-input);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border 0.2s ease;
}

.footer-newsletter .newsletter-form input:focus {
    border-color: var(--secondary);
}

.footer-newsletter .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter .newsletter-form .btn {
    padding: 12px 20px;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.25s ease;
}

.footer-social a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.08);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom span {
    color: var(--secondary)
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--secondary);
}

.footer-bottom .legal-links {
    display: flex;
    gap: 24px;
}

/* ============================================================
                   RESPONSIVE
                   ============================================================ */

@media (max-width: 1024px) {
    .container {
        padding-left: var(--container-padding-tablet);
        padding-right: var(--container-padding-tablet);
    }

    .header-inner {
        padding: 0 var(--container-padding-tablet);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 70px 0 60px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-heading {
        font-size: 52px;
    }

    .hero-visual {
        min-height: 380px;
    }

    .earth-viz {
        max-width: 420px;
    }

    @keyframes orbit {
        0% {
            transform: rotate(0deg) translateX(120px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
        }
    }

    .stat-float:nth-child(1) {
        top: 4%;
        right: 0%;
    }

    .stat-float:nth-child(2) {
        bottom: 10%;
        right: -2%;
    }

    .stat-float:nth-child(3) {
        top: 30%;
        left: -2%;
    }

    .stat-float:nth-child(4) {
        bottom: 24%;
        left: -4%;
    }

    .opportunity .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .opportunity-left .section-desc {
        max-width: 100%;
    }

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

    .about .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-overlay.open {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding-desktop: var(--container-padding-mobile);
        --container-padding-tablet: var(--container-padding-mobile);
        --section-large: 80px;
        --section-medium: 60px;
    }

    .header-inner {
        padding: 0 var(--container-padding-mobile);
    }

    .container {
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
    }

    .hero-heading {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        min-height: 300px;
    }

    .earth-viz {
        max-width: 300px;
    }

    @keyframes orbit {
        0% {
            transform: rotate(0deg) translateX(80px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translateX(80px) rotate(-360deg);
        }
    }

    .stat-float {
        padding: 10px 14px;
        min-width: 100px;
    }

    .stat-float .stat-number {
        font-size: 18px;
    }

    .stat-float .stat-label {
        font-size: 10px;
    }

    .stat-float:nth-child(1) {
        top: 0%;
        right: 0%;
    }

    .stat-float:nth-child(2) {
        bottom: 4%;
        right: 0%;
    }

    .stat-float:nth-child(3) {
        top: 22%;
        left: 0%;
    }

    .stat-float:nth-child(4) {
        bottom: 16%;
        left: 0%;
    }

    .section-heading {
        font-size: 30px;
    }

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

    .why-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 16px 0;
    }

    .why-timeline::before {
        display: none;
    }

    .opportunity-icons {
        grid-template-columns: 1fr 1fr;
    }

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

    .eco-connector {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .footer-bottom .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-newsletter .newsletter-form {
        flex-direction: column;
    }

    .mobile-menu {
        max-width: 100%;
        padding: 80px 24px 24px;
    }

    .logo .logo-text {
        font-size: 17px;
    }

    .header-actions .btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .chart-bars {
        height: 120px;
    }

    .chart-header .chart-value {
        font-size: 22px;
    }

    .market-graph .graph-head .graph-stat {
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .hero-heading {
        font-size: 28px;
    }

    .earth-viz {
        max-width: 220px;
    }

    .stat-float {
        padding: 8px 12px;
        min-width: 80px;
    }

    .stat-float .stat-number {
        font-size: 15px;
    }

    .stat-float .stat-label {
        font-size: 9px;
    }

    .opportunity-icons {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-grid {
        animation: none;
    }

    .hero-dots span {
        animation: none;
    }

    .earth-viz {
        animation: none;
    }

    .stat-float {
        animation: none;
    }

    .orbit-particle {
        animation: none;
    }

    .chart-bar,
    .graph-line .gl-bar {
        transition: none !important;
    }
}

/* ============================================================
        HOW IT WORKS
        ============================================================ */
.how-it-works {
    padding: var(--section-large) 0;
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}

.how-it-works .section-heading {
    color: #fff;
}

.how-it-works .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* Timeline */
.hiw-timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 60px 0 48px;
    position: relative;
}

.hiw-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.hiw-stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    cursor: default;
}

.stage-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.stage-number {
    font-family: var(--font-data);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    background: var(--bg-dark);
    padding: 0 8px;
    position: relative;
    z-index: 2;
}

.stage-line {
    width: 2px;
    height: 20px;
    background: var(--secondary);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.hiw-stage:hover .stage-line {
    opacity: 1;
}

.stage-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-card);
    padding: 24px 20px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s var(--ease-out);
    width: 100%;
    max-width: 260px;
    position: relative;
}

.hiw-stage:hover .stage-content {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-8px);
    border-color: rgba(var(--secondary-rgb), 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.stage-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(var(--secondary-rgb), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--secondary);
}

.stage-icon svg {
    width: 24px;
    height: 24px;
}

.stage-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.stage-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.stage-detail {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
}

.stage-detail .detail-label {
    color: var(--secondary);
}

.stage-arrow {
    font-size: 20px;
    color: var(--secondary);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateX(-8px);
}

.hiw-stage:hover .stage-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsibilities */
.hiw-responsibilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0 48px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-card);
    padding: 40px 48px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.resp-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.resp-col h4 span {
    align-self: center;
    display: flex;
}

.resp-col h4 svg {
    color: var(--secondary);
    font-size: 22px;
}

/* .resp-col.state h4::before {
    content: '🏛️';
    font-size: 22px;
}

.resp-col.ninja h4::before {
    content: '⚡';
    font-size: 22px;
} */

.resp-col ul {
    list-style: none;
    padding: 0;
}

.resp-col ul li {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.resp-col ul li::before {
    content: '▹';
    color: var(--secondary);
    font-size: 14px;
}

/* Satellite visual */
.hiw-satellite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    min-height: 80px;
}

.satellite-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(var(--secondary-rgb), 0.2);
    position: relative;
    animation: spin 12s linear infinite;
}

.satellite-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(var(--secondary-rgb), 0.3);
}

.satellite-dot {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 10%;
    left: 70%;
    animation: orbitDot 8s linear infinite;
}

.satellite-pulse {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--secondary-rgb), 0.06);
    animation: pulseRing 2s ease-in-out infinite;
    position: absolute;
    left: 20%;
}

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

@keyframes orbitDot {
    0% {
        transform: rotate(0deg) translateX(30px);
    }

    100% {
        transform: rotate(360deg) translateX(30px);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

@media (max-width: 1024px) {
    .hiw-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .hiw-timeline::before {
        display: none;
    }

    .hiw-stage {
        width: 100%;
        max-width: 400px;
    }

    .stage-content {
        max-width: 100%;
    }

    .hiw-responsibilities {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }
}

/* ============================================================
        REVENUE CALCULATOR
        ============================================================ */
.revenue-calculator {
    padding: var(--section-large) 0;
    background: var(--bg);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.calc-controls {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.slider-group {
    margin-bottom: 28px;
}

.slider-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-wrapper input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    outline: none;
    transition: background 0.2s;
}

.slider-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(var(--secondary-rgb), 0.3);
}

.slider-wrapper input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    border: none;
}

.slider-value {
    font-family: var(--font-data);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    min-width: 60px;
    text-align: right;
}

.calc-result {
    background: var(--bg-light);
    border-radius: var(--radius-card);
    padding: 20px 24px;
    text-align: center;
    border: 1px solid var(--border);
    margin-top: 12px;
}

.result-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-number {
    font-family: var(--font-data);
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin: 6px 0 4px;
}

.result-footnote {
    font-size: 13px;
    color: var(--body-light);
}

.calc-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.chart-container {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 20px 20px 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.chart-container .chart-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
}

.bar-item {
    flex: 1;
    background: var(--primary);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 0.6s var(--ease-out);
    min-height: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.bar-item span {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    padding: 0 4px 4px;
    opacity: 0.8;
    white-space: nowrap;
}

.bar-item:nth-child(2) {
    background: var(--secondary);
}

.bar-item:nth-child(3) {
    background: var(--accent);
}

.bar-item:nth-child(4) {
    background: var(--body-light);
}

.area-chart {
    height: 100px;
    position: relative;
}

.area-chart svg {
    width: 100%;
    height: 100%;
}

.area-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--body-light);
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .calc-charts {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .calc-charts {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-number {
        font-size: 28px;
    }
}

/* ============================================================
    PROGRAMME TYPES
    ============================================================ */
.programme-types {
    padding: var(--section-large) 0;
    background: var(--bg-light);
}

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

.pt-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.pt-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(var(--secondary-rgb), 0.2);
}

/* --- Image with overlay --- */
.pt-image {
    height: 140px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

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

.pt-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

/* --- Tag --- */
.pt-tag {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    z-index: 2;
}

/* --- Card Body --- */
.pt-body {
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pt-body-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pt-body h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 4px;
}

.pt-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 12px;
}

.pt-metrics {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.pt-metrics div {
    font-size: 13px;
    font-weight: 500;
    color: var(--body);
}

.pt-metrics div span {
    font-weight: 400;
    color: var(--body-light);
    margin-right: 4px;
}

.pt-detail {
    font-size: 13px;
    color: var(--body);
    background: var(--bg-light);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 14px;
    border-left: 3px solid var(--secondary);
}

.pt-detail strong {
    color: var(--heading);
}

/* --- Learn More (pinned to bottom) --- */
.pt-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    padding: 6px 0;
    transition: gap 0.3s ease, color 0.2s ease;
    border-bottom: 2px solid transparent;
    margin-top: auto;
    align-self: flex-start;
}

.pt-learn-more:hover {
    gap: 10px;
    color: var(--primary);
    border-bottom-color: var(--secondary);
}

/* ============================================================
    RESPONSIVE — PROGRAMME TYPES
    ============================================================ */

@media (max-width: 1024px) {
    .pt-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pt-image {
        height: 120px;
    }
}

@media (max-width: 640px) {
    .pt-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pt-image {
        height: 160px;
    }

    .pt-body {
        padding: 16px 16px 20px;
    }

    .pt-body h4 {
        font-size: 17px;
    }

    .pt-metrics {
        gap: 12px;
    }

    .pt-metrics div {
        font-size: 13px;
    }

    .pt-detail {
        font-size: 13px;
    }

    .pt-tag {
        font-size: 10px;
        padding: 4px 12px;
        bottom: 10px;
        right: 12px;
    }
}

/* ============================================================
    WHAT WE DELIVER
    ============================================================ */
.what-we-deliver {
    padding: var(--section-large) 0;
    background: var(--bg-dark);
    position: relative;
    background-image: url('/assets/images/9ja-img-0111114.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
}

/* Very dark overlay */
.what-we-deliver::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

.what-we-deliver .container {
    position: relative;
    z-index: 1;
}

.what-we-deliver .section-heading {
    color: #fff;
}

.wwd-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
    gap: 32px;
}

.wwd-group h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    margin-bottom: 16px;
    border-bottom: 2px solid rgba(var(--secondary-rgb), 0.2);
    padding-bottom: 8px;
}

.wwd-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wwd-card {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    cursor: default;
}

.wwd-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--secondary-rgb), 0.15);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.wwd-card span {
    display: block;
}

@media (max-width: 1024px) {
    .wwd-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .wwd-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================================
        PARTNERSHIP MODEL
        ============================================================ */
.partnership-model {
    padding: var(--section-large) 0;
    background: var(--bg);
}

.pm-flow {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.pm-node {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pm-node:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pm-node-center {
    border-color: rgba(var(--secondary-rgb), 0.3);
    background: rgba(var(--secondary-rgb), 0.03);
}

.pm-node .pm-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.pm-icon svg {
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: transform 0.4s ease;
}

.pm-node h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.pm-node p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
}

.pm-arrow {
    display: flex;
    align-items: center;
    font-size: 28px;
    color: var(--secondary);
    font-weight: 300;
    padding: 0 4px;
    align-self: center;
}

/* Table */
.pm-table-wrapper {
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    padding: 28px 24px 24px;
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
}

.pm-table-wrapper h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 16px;
}

.pm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.pm-table thead th {
    text-align: left;
    font-weight: 700;
    color: var(--heading);
    padding: 12px 16px;
    border-bottom: 2px solid var(--border);
    background: var(--bg-light);
}

.pm-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--body);
    vertical-align: top;
}

.pm-table tbody tr:last-child td {
    border-bottom: none;
}

.pm-table tbody tr:hover td {
    background: rgba(var(--primary-rgb), 0.02);
}

.pm-table tbody td:first-child {
    font-weight: 600;
    color: var(--heading);
}

@media (max-width: 768px) {
    .pm-flow {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .pm-node {
        max-width: 100%;
        width: 100%;
    }

    .pm-arrow {
        transform: rotate(90deg);
        padding: 4px 0;
    }

    .pm-table tbody td,
    .pm-table thead th {
        padding: 8px 10px;
        font-size: 13px;
    }
}

/* ============================================================
        PROGRAMME PROTECTION
        ============================================================ */
.programme-protection {
    padding: var(--section-large) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.programme-protection::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(197, 157, 67, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(15, 108, 189, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.pp-radar {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 48px;
}

.radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(var(--secondary-rgb), 0.15);
    width: 100%;
    height: 100%;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    transform-origin: 0% 0%;
    background: linear-gradient(45deg, rgba(197, 157, 67, 0.15) 0%, transparent 100%);
    border-radius: 0 0 100% 0;
    animation: radarSweep 4s linear infinite;
}

@keyframes radarSweep {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.radar-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 12px rgba(var(--secondary-rgb), 0.6);
    animation: pulseDot 2s ease-in-out infinite;
}

.radar-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pp-layers {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pp-layer {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 20px;
    transition: all 0.3s ease;
    cursor: default;
}

.pp-layer:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(var(--secondary-rgb), 0.15);
    transform: translateX(6px);
}

.pp-layer .layer-icon {
    font-size: 24px;
    flex-shrink: 0;
    color: var(--secondary);
}

.pp-layer .layer-info {
    flex: 1;
}

.pp-layer .layer-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.pp-layer .layer-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.pp-layer .layer-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.pp-layer .layer-status.active {
    background: #2E8B57;
    box-shadow: 0 0 12px rgba(46, 139, 87, 0.4);
}

@media (max-width: 640px) {
    .pp-layer {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pp-layer .layer-info strong {
        font-size: 14px;
    }

    .pp-layer .layer-info span {
        font-size: 13px;
    }
}

/* ============================================================
        COMMUNITY IMPACT
        ============================================================ */
.community-impact {
    position: relative;
    padding: var(--section-large) 0 150px;
    background: var(--bg-light);
    overflow: hidden;
}

.ci-forest-divider {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    opacity: .28;
    pointer-events: none;
}

.ci-forest-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tree {
    transform-origin: center bottom;
    animation: sway 5s ease-in-out infinite;
}

.tree:nth-child(even) {
    animation-duration: 7s;
}

.tree:nth-child(3n) {
    animation-duration: 6s;
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(1deg);
    }

    75% {
        transform: rotate(-1deg);
    }
}

.hill-1 {
    animation: drift 20s linear infinite alternate;
}

.hill-2 {
    animation: drift 28s linear infinite alternate;
}

@keyframes drift {
    from {
        transform: translateX(-10px);
    }

    to {
        transform: translateX(10px);
    }
}

.ci-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ci-illustration {
    margin-top: 16px;
    /* max-width: 280px; */
}

.ci-illustration svg {
    width: 100%;
    height: auto;
}

.ci-counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
}

.ci-counter {
    border-bottom: 2px solid rgba(var(--secondary-rgb), 0.2);
    padding-bottom: 8px;
}

.ci-counter .counter-number {
    font-family: var(--font-data);
    font-size: 42px;
    font-weight: 700;
    color: var(--heading);
    display: block;
    line-height: 1.1;
}

.ci-counter .counter-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

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

    .ci-counters {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .ci-counters {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ci-counter .counter-number {
        font-size: 32px;
    }
}

/* ============================================================
        TIMELINE
        ============================================================ */
.section-timeline {
    padding: var(--section-large) 0;
    background: var(--bg);
    overflow: hidden;
}

.tl-scroll {
    overflow-x: auto;
    padding: 20px 0 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.tl-scroll::-webkit-scrollbar {
    height: 4px;
}

.tl-scroll::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 4px;
}

.tl-scroll::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

.tl-track {
    display: flex;
    gap: 40px;
    padding: 0 20px;
    width: fit-content;
    position: relative;
}

.tl-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 250px;
    position: relative;
    z-index: 1;
}

.tl-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.tl-node .tl-year {
    font-family: var(--font-data);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.tl-node .tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--surface);
    border: 3px solid var(--secondary);
    box-shadow: 0 0 0 4px rgba(var(--secondary-rgb), 0.1);
}

.tl-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 18px 18px 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.tl-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.tl-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 2px;
}

.tl-card .tl-preview {
    font-size: 14px;
    color: var(--body);
    margin-bottom: 6px;
}

.tl-card .tl-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.tl-card .tl-detail p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    margin-top: 6px;
}

.tl-card.expanded .tl-detail {
    max-height: 200px;
    opacity: 1;
}

.tl-card.expanded .tl-toggle {
    transform: rotate(45deg);
}

.tl-toggle {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 300;
    color: var(--secondary);
    cursor: pointer;
    padding: 0 4px;
    transition: transform 0.3s ease;
    position: absolute;
    top: 12px;
    right: 12px;
}

@media (max-width: 768px) {
    .tl-item {
        flex: 0 0 160px;
    }

    .tl-track {
        gap: 24px;
    }
}

/* ============================================================
        FAQ
        ============================================================ */
.faq-section {
    padding: var(--section-large) 0;
    background: var(--bg-light);
}

.faq-toolbar {
    max-width: 720px;
    margin: 0 auto 32px;
}

#faqSearch {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-input);
    border: 1px solid var(--border);
    background: var(--surface);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--heading);
    transition: border 0.2s ease;
    margin-bottom: 16px;
}

#faqSearch:focus {
    border-color: var(--secondary);
    outline: none;
}

#faqSearch::placeholder {
    color: var(--body-light);
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.faq-cat {
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 13px;
    font-weight: 500;
    color: var(--body);
    cursor: pointer;
    transition: all 0.25s ease;
}

.faq-cat:hover {
    border-color: var(--secondary);
    color: var(--heading);
}

.faq-cat.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(var(--secondary-rgb), 0.15);
}

.faq-item.hidden {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question .faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body);
    margin: 0;
}

/* ============================================================
        CTA
        ============================================================ */
.cta-section {
    position: relative;
    padding: var(--section-large) 0;
    background: var(--bg-dark);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(14, 59, 46, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(197, 157, 67, 0.08) 0%, transparent 40%),
        var(--bg-dark);
}

.cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 157, 67, 0.08) 0%, transparent 70%);
    top: 20%;
    right: 10%;
    animation: glowFloat 8s ease-in-out infinite;
}

@keyframes glowFloat {

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

    50% {
        transform: translate(-20px, -30px) scale(1.1);
    }
}

.cta-orbits {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orbits span {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.03);
    animation: orbitSpin 20s linear infinite;
}

.cta-orbits span:nth-child(1) {
    width: 60%;
    height: 60%;
    transform: translate(-50%, -50%);
}

.cta-orbits span:nth-child(2) {
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    border-color: rgba(var(--secondary-rgb), 0.05);
}

.cta-orbits span:nth-child(3) {
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
    border-color: rgba(var(--accent-rgb), 0.04);
}

@keyframes orbitSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 100px;
    background: rgba(var(--secondary-rgb), 0.1);
    border: 1px solid rgba(var(--secondary-rgb), 0.15);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin: 0 auto 32px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-heading {
        font-size: 36px;
    }

    .cta-desc {
        font-size: 16px;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
        PAGE TITLE / HERO (About Page)
        ============================================================ */
.page-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(14, 59, 46, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(197, 157, 67, 0.10) 0%, transparent 40%),
        var(--bg-dark);
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

.page-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 157, 67, 0.06) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    animation: glowFloat 10s ease-in-out infinite;
}

@keyframes glowFloat {

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

    50% {
        transform: translate(-30px, -20px) scale(1.1);
    }
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 20px;
    text-align: center;
}

.breadcrumbs ol {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs ol li::after {
    content: '/';
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumbs ol li:last-child::after {
    content: '';
    margin: 0;
}

.breadcrumbs ol li a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.breadcrumbs ol li a:hover {
    color: var(--secondary);
}

.breadcrumbs ol li span {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-content {
    max-width: 780px;
    margin: 40px auto 20px;
}

.page-hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.10);
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.10);
    margin-bottom: 20px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 360px;
        padding: 100px 0 60px;
    }

    .page-hero-title {
        font-size: 36px;
    }

    .page-hero-desc {
        font-size: 17px;
    }

    .breadcrumbs ol {
        font-size: 13px;
        gap: 8px;
    }
}

@media (max-width: 420px) {
    .page-hero-title {
        font-size: 28px;
    }

    .page-hero-desc {
        font-size: 15px;
    }
}

/* ============================================================
    COMPANY STORY
    ============================================================ */
.company-story {
    padding: var(--section-large) 0;
    background: var(--bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content .section-desc {
    max-width: 100%;
}

.story-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-card);
    border-left: 4px solid var(--secondary);
    margin-top: 8px;
}

.story-stat .stat-number {
    font-family: var(--font-data);
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
}

.story-stat .stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--body);
}

.story-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-img-wrapper {
    width: 100%;
    /* max-width: 480px; */
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.story-img-wrapper:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-xl);
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--bg-light);
}

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

    /* On mobile, image still appears first (above content) */
    .story-image {
        order: -1;
    }

    .story-img-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .story-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .story-stat .stat-number {
        font-size: 28px;
    }
}

/* ============================================================
        QIETUR HERITAGE
        ============================================================ */
.qietur-heritage {
    padding: var(--section-large) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.qietur-heritage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(197, 157, 67, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(15, 108, 189, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.qietur-heritage .section-heading {
    color: #fff;
}

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

.heritage-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-card);
    padding: 28px 24px 24px;
    text-align: center;
    transition: all 0.35s ease;
}

.heritage-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-6px);
    border-color: rgba(var(--secondary-rgb), 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.heritage-card .heritage-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.heritage-card .heritage-icon svg {
    width: 36px;
    height: 36px;
    color: var(--secondary);
}

.heritage-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.heritage-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
}

.heritage-card .heritage-year {
    display: inline-block;
    font-family: var(--font-data);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.08);
    padding: 2px 14px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.08);
}

.heritage-visual {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.heritage-visual svg {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .heritage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .heritage-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .heritage-card {
        padding: 20px 16px;
    }

    .heritage-visual {
        display: none;
    }
}

/* ============================================================
        LEADERSHIP
        ============================================================ */
.leadership {
    padding: var(--section-large) 0;
    background: var(--bg-light);
}

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

.leader-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 28px 22px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--secondary-rgb), 0.12);
}

.leader-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border);
    transition: border-color 0.3s ease;
}

.leader-card:hover .leader-image {
    border-color: var(--secondary);
}

.leader-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.leader-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 2px;
}

.leader-card .leader-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    display: block;
    margin-bottom: 8px;
}

.leader-card .leader-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    margin: 0;
}

@media (max-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .leader-card {
        padding: 20px 16px;
    }

    .leader-image {
        width: 80px;
        height: 80px;
    }
}

/* ============================================================
    CARBON MANDATE
    ============================================================ */
.carbon-mandate {
    padding: var(--section-large) 0;
    background: var(--bg);
}

.mandate-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mandate-content .section-tag {
    margin-bottom: 12px;
}

.mandate-quote {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--heading);
    padding: 0;
    margin: 0 0 16px 0;
    border: none;
    letter-spacing: -0.01em;
}

.mandate-quote::before {
    content: '"';
    color: var(--secondary);
    font-size: 48px;
    line-height: 1;
    margin-right: 4px;
    opacity: 0.6;
}

.mandate-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--body);
    max-width: 520px;
    margin-bottom: 24px;
}

/* --- Mandate Pillars (Grid 2 columns) --- */
.mandate-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--body);
    padding: 4px 0;
}

.pillar-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--secondary);
    stroke: var(--secondary);
    stroke-width: 3;
}

/* --- Visual: Image --- */
.mandate-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mandate-image-wrapper {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mandate-image-wrapper:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-xl);
}

.mandate-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: var(--bg-light);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .mandate-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mandate-visual {
        order: -1;
    }

    .mandate-image-wrapper {
        max-width: 100%;
    }

    .mandate-quote {
        font-size: 26px;
    }

    .mandate-desc {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .mandate-quote {
        font-size: 22px;
    }

    .mandate-desc {
        font-size: 16px;
    }

    .mandate-pillars {
        grid-template-columns: 1fr;
        gap: 6px 0;
    }

    .pillar-item {
        font-size: 14px;
    }

    .mandate-image {
        aspect-ratio: 16 / 9;
    }
}

/* ============================================================
        WHAT MAKES US DIFFERENT
        ============================================================ */
.what-different {
    padding: var(--section-large) 0;
    background: var(--bg-light);
}

.wd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wd-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 32px 28px 28px;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.wd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: var(--secondary);
    border-radius: 0 0 4px 0;
    opacity: 0.5;
    transition: height 0.3s ease;
}

.wd-card:hover::before {
    height: 100%;
    opacity: 1;
}

.wd-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--secondary-rgb), 0.10);
}

.wd-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(var(--secondary-rgb), 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.wd-card:hover .wd-icon {
    background: rgba(var(--secondary-rgb), 0.12);
    transform: scale(1.05);
}

.wd-icon svg {
    width: 28px;
    height: 28px;
}

.wd-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.wd-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: 16px;
}

.wd-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
    padding: 4px 16px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.06);
    transition: all 0.3s ease;
}

.wd-card:hover .wd-tag {
    background: rgba(var(--secondary-rgb), 0.10);
    border-color: rgba(var(--secondary-rgb), 0.15);
}

@media (max-width: 1024px) {
    .wd-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .wd-grid {
        grid-template-columns: 1fr;
    }

    .wd-card {
        padding: 24px 20px;
    }
}

/* ============================================================
        VALUES
        ============================================================ */
.values-section {
    padding: var(--section-large) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 60%, rgba(197, 157, 67, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.values-section .section-heading {
    color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-card);
    padding: 32px 28px 28px;
    position: relative;
    transition: all 0.35s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    border-color: rgba(var(--secondary-rgb), 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.value-card .value-number {
    font-family: var(--font-data);
    font-size: 48px;
    font-weight: 700;
    color: rgba(var(--secondary-rgb), 0.2);
    line-height: 1;
    display: block;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.value-card:hover .value-number {
    color: rgba(var(--secondary-rgb), 0.25);
}

.value-card .value-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.value-card .value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--secondary);
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 24px 20px;
    }

    .value-card .value-number {
        font-size: 36px;
    }

    .value-card h4 {
        font-size: 18px;
    }
}

/* ============================================================
        CTA (About Page)
        ============================================================ */
.cta-about {
    position: relative;
    padding: var(--section-large) 0;
    background: var(--bg-dark);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    text-align: center;
}

.cta-about-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 60% 50%, rgba(14, 59, 46, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(197, 157, 67, 0.06) 0%, transparent 40%),
        var(--bg-dark);
}

.cta-about-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
}

.cta-about-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 157, 67, 0.06) 0%, transparent 70%);
    bottom: 10%;
    left: 5%;
    animation: glowFloat 10s ease-in-out infinite;
}

.cta-about-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-about-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 100px;
    background: rgba(var(--secondary-rgb), 0.08);
    border: 1px solid rgba(var(--secondary-rgb), 0.10);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.cta-about-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.cta-about-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto 32px;
}

.cta-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-about {
        min-height: 340px;
        padding: 60px 0;
    }

    .cta-about-heading {
        font-size: 32px;
    }

    .cta-about-desc {
        font-size: 16px;
    }

    .cta-about-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .cta-about-heading {
        font-size: 26px;
    }

    .cta-about-desc {
        font-size: 15px;
    }
}


/* ============================================================
    SOLUTIONS PAGE
    ============================================================ */

/* --- Hero --- */
.solutions-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 120px 0 80px;
    text-align: center;
}

.solutions-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 40% 50%, rgba(14, 59, 46, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 70%, rgba(197, 157, 67, 0.08) 0%, transparent 40%),
        var(--bg-dark);
}

.solutions-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

.solutions-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 157, 67, 0.05) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    animation: glowFloat 10s ease-in-out infinite;
}

.solutions-hero-content {
    max-width: 780px;
    margin: 40px auto 20px;
    position: relative;
    z-index: 1;
}

.solutions-hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.10);
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.10);
    margin-bottom: 20px;
}

.solutions-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.solutions-hero-desc {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Intro --- */
.solutions-intro {
    position: relative;
    padding: var(--section-medium) 0 var(--section-small);
    background: var(--bg);
}

@media screen and (min-width: 900px) {
    .solutions-intro {
        padding-bottom: 150px;
    }
}

.solutions-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solutions-intro-text .section-desc {
    max-width: 100%;
}

.solutions-intro-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
}

.intro-stat {
    text-align: center;
}

.intro-stat .stat-number {
    font-family: var(--font-data);
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    line-height: 1.1;
}

.intro-stat .stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* --- Solution Blocks --- */
.solution-block {
    padding: var(--section-large) 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.solution-block.alt {
    background: var(--bg-light);
}

.solution-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.solution-inner.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.solution-inner.reverse .solution-visual {
    order: 2;
}

.solution-inner.reverse .solution-content {
    order: 1;
}

/* Visual */
.solution-visual {
    position: sticky;
    top: 120px;
}

.solution-visual-content {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.solution-visual-content:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-xl);
}

.solution-visual-content svg {
    width: 100%;
    height: auto;
    display: block;
}

.solution-visual-content .solution-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--bg-light);
}

.solution-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    background: rgba(var(--surface-rgb), 0.9);
    backdrop-filter: blur(8px);
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

/* Content */
.solution-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    border-bottom: 2px solid rgba(var(--secondary-rgb), 0.15);
    padding-bottom: 12px;
}

.solution-header .solution-number {
    font-family: var(--font-data);
    font-size: 32px;
    font-weight: 700;
    color: rgba(var(--secondary-rgb), 0.15);
    line-height: 1;
}

.solution-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -0.01em;
}

.solution-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-overview h4,
.solution-benefits h4,
.solution-how h4,
.solution-deliverables h4,
.solution-standards h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.solution-overview p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--body);
    margin: 0;
}

.solution-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.solution-benefits ul,
.solution-how ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

.solution-benefits ul li,
.solution-how ol li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--body);
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
}

.solution-benefits ul li:last-child,
.solution-how ol li:last-child {
    border-bottom: none;
}

.solution-benefits ul li strong {
    color: var(--heading);
}

.solution-how ol li {
    counter-increment: step;
    display: flex;
    gap: 8px;
}

.solution-how ol li::before {
    content: counter(step);
    font-family: var(--font-data);
    font-weight: 700;
    color: var(--secondary);
    flex-shrink: 0;
}

.solution-how ol {
    counter-reset: step;
}

.solution-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.solution-deliverables {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.solution-deliverables span {
    font-size: 14px;
    color: var(--body);
    padding: 3px 0;
    border-bottom: 1px solid var(--border);
}

.solution-deliverables span:last-child {
    border-bottom: none;
}

.solution-standards {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 8px;
}

.solution-standards h4 {
    width: 100%;
    margin-bottom: 2px;
}

.std-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--body-light);
    background: var(--bg-light);
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.std-tag:hover {
    border-color: var(--secondary);
    color: var(--heading);
}

.solution-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
}

.solution-cta .btn {
    padding: 12px 28px;
    font-size: 14px;
}

.solution-cta .btn-ghost {
    padding: 12px 20px;
}

/* --- Solutions CTA --- */
.solutions-cta {
    position: relative;
    padding: var(--section-large) 0;
    background: var(--bg-dark);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
}

.solutions-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 50% 60%, rgba(14, 59, 46, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 30%, rgba(197, 157, 67, 0.05) 0%, transparent 40%),
        var(--bg-dark);
}

.solutions-cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.solutions-cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 157, 67, 0.05) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    animation: glowFloat 12s ease-in-out infinite;
}

.solutions-cta-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.solutions-cta-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 100px;
    background: rgba(var(--secondary-rgb), 0.08);
    border: 1px solid rgba(var(--secondary-rgb), 0.10);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.solutions-cta-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.solutions-cta-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto 32px;
}

.solutions-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ============================================================
        RESPONSIVE – SOLUTIONS
        ============================================================ */

@media (max-width: 1024px) {
    .solutions-hero-title {
        font-size: 40px;
    }

    .solutions-hero-desc {
        font-size: 17px;
    }

    .solutions-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .solutions-intro-stats {
        justify-content: center;
    }

    .solution-inner,
    .solution-inner.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-inner.reverse .solution-visual {
        order: 1;
    }

    .solution-inner.reverse .solution-content {
        order: 2;
    }

    .solution-visual {
        position: relative;
        top: 0;
    }

    .solution-grid-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution-footer {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution-header h3 {
        font-size: 24px;
    }

    .solution-header .solution-number {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .solutions-hero {
        min-height: 320px;
        padding: 100px 0 60px;
    }

    .solutions-hero-title {
        font-size: 32px;
    }

    .solutions-hero-desc {
        font-size: 16px;
    }

    .solutions-intro-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .intro-stat .stat-number {
        font-size: 32px;
    }

    .solution-block {
        padding: 60px 0;
    }

    .solution-header h3 {
        font-size: 20px;
    }

    .solution-overview p {
        font-size: 15px;
    }

    .solution-benefits ul li,
    .solution-how ol li {
        font-size: 14px;
    }

    .solution-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .solution-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .solutions-cta-heading {
        font-size: 32px;
    }

    .solutions-cta-desc {
        font-size: 16px;
    }

    .solutions-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .solutions-hero-title {
        font-size: 26px;
    }

    .solutions-hero-desc {
        font-size: 14px;
    }

    .solutions-cta-heading {
        font-size: 26px;
    }

    .solution-header h3 {
        font-size: 18px;
    }

    .solution-header .solution-number {
        font-size: 22px;
    }
}

/* ============================================================
    PROGRAMME TYPES PAGE
    ============================================================ */

/* --- Hero --- */
.pt-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 120px 0 80px;
    text-align: center;
}

.pt-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 40% 50%, rgba(14, 59, 46, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 70%, rgba(197, 157, 67, 0.08) 0%, transparent 40%),
        var(--bg-dark);
}

.pt-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

.pt-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 157, 67, 0.05) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    animation: glowFloat 10s ease-in-out infinite;
}

.pt-hero-content {
    max-width: 780px;
    margin: 40px auto 20px;
    position: relative;
    z-index: 1;
}

.pt-hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.10);
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.10);
    margin-bottom: 20px;
}

.pt-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.pt-hero-desc {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Interactive Cards --- */
.pt-cards-section {
    padding: var(--section-large) 0;
    background: var(--bg);
}

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

.pt-card {
    perspective: 1000px;
    /* height: 460px; */
    cursor: pointer;
}

.pt-card-front,
.pt-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.pt-card-front {
    background: var(--surface);
    display: flex;
    flex-direction: column;
}

.pt-card-back {
    background: var(--surface);
    transform: rotateY(180deg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(var(--secondary-rgb), 0.15);
}

.pt-card:hover .pt-card-front {
    transform: rotateY(-180deg);
}

.pt-card:hover .pt-card-back {
    transform: rotateY(0);
}

.pt-card-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.pt-card-image svg {
    width: 80px;
    height: 60px;
    opacity: 0.7;
}

.pt-card-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #fff;
    padding: 4px 14px;
    border-radius: 100px;
}

.pt-card-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pt-card-body h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.pt-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    flex: 1;
    margin-bottom: 12px;
}

.pt-card-hint {
    font-size: 12px;
    font-weight: 500;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.pt-card:hover .pt-card-hint {
    color: var(--secondary);
}

/* Card Back */
.pt-card-back-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pt-card-back-inner h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 4px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(var(--secondary-rgb), 0.15);
}

.pt-metric {
    font-size: 14px;
    color: var(--body);
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
}

.pt-metric span {
    font-weight: 600;
    color: var(--heading);
}

.pt-metric:last-of-type {
    border-bottom: none;
}

/* --- Comparison Table --- */
.pt-table-section {
    padding: var(--section-large) 0;
    background: var(--bg-light);
}

.pt-table-wrapper {
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    padding: 24px;
    overflow-x: auto;
    box-shadow: var(--shadow-sm);
}

.pt-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 700px;
}

.pt-comparison-table thead th {
    text-align: left;
    font-weight: 700;
    color: var(--heading);
    padding: 14px 16px;
    border-bottom: 2px solid var(--border);
    background: var(--bg-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pt-comparison-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--body);
    vertical-align: middle;
}

.pt-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.pt-comparison-table tbody tr:hover td {
    background: rgba(var(--primary-rgb), 0.02);
}

.pt-comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--heading);
}

.pt-comparison-table .std-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--body-light);
    background: var(--bg-light);
    padding: 2px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
    margin: 2px 4px 2px 0;
}

/* --- Landscapes & Certification Grid --- */
.pt-landscapes {
    padding: var(--section-large) 0;
    background: var(--bg);
}

.pt-landscapes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pt-landscape-block {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.pt-landscape-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--secondary-rgb), 0.10);
}

.pt-landscape-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.pt-landscape-icon svg {
    width: 36px;
    height: 36px;
    color: var(--secondary)
}

.pt-landscape-block h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 12px;
}

.pt-landscape-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-landscape-block ul li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.pt-landscape-block ul li:last-child {
    border-bottom: none;
}

.pt-landscape-block ul li strong {
    color: var(--heading);
}

/* --- FAQ --- */
.pt-faq {
    padding: var(--section-large) 0;
    background: var(--bg-light);
}

.pt-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.pt-faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.pt-faq-item:hover {
    border-color: rgba(var(--secondary-rgb), 0.15);
}

.pt-faq-item.open {
    border-color: rgba(var(--secondary-rgb), 0.2);
    box-shadow: var(--shadow-sm);
}

.pt-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.2s ease;
}

.pt-faq-question:hover {
    color: var(--secondary);
}

.pt-faq-question .pt-faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pt-faq-item.open .pt-faq-question .pt-faq-icon {
    transform: rotate(45deg);
}

.pt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.pt-faq-item.open .pt-faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

.pt-faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body);
    margin: 0;
}

/* --- CTA --- */
.pt-cta {
    position: relative;
    padding: var(--section-large) 0;
    background: var(--bg-dark);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
}

.pt-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 50% 60%, rgba(14, 59, 46, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 30%, rgba(197, 157, 67, 0.05) 0%, transparent 40%),
        var(--bg-dark);
}

.pt-cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.pt-cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 157, 67, 0.05) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    animation: glowFloat 12s ease-in-out infinite;
}

.pt-cta-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.pt-cta-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 100px;
    background: rgba(var(--secondary-rgb), 0.08);
    border: 1px solid rgba(var(--secondary-rgb), 0.10);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.pt-cta-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.pt-cta-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto 32px;
}

.pt-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ============================================================
        RESPONSIVE – PROGRAMME TYPES
        ============================================================ */

@media (max-width: 1024px) {
    .pt-hero-title {
        font-size: 40px;
    }

    .pt-hero-desc {
        font-size: 17px;
    }

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

    .pt-landscapes-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pt-hero {
        min-height: 320px;
        padding: 100px 0 60px;
    }

    .pt-hero-title {
        font-size: 32px;
    }

    .pt-hero-desc {
        font-size: 16px;
    }

    .pt-card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .pt-card {
        height: 400px;
    }

    .pt-card-body h4 {
        font-size: 17px;
    }

    .pt-landscapes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pt-cta-heading {
        font-size: 32px;
    }

    .pt-cta-desc {
        font-size: 16px;
    }

    .pt-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .pt-comparison-table {
        font-size: 13px;
        min-width: 600px;
    }

    .pt-comparison-table thead th,
    .pt-comparison-table tbody td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .pt-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pt-card {
        height: 420px;
    }

    .pt-hero-title {
        font-size: 26px;
    }

    .pt-hero-desc {
        font-size: 14px;
    }

    .pt-cta-heading {
        font-size: 26px;
    }

    .pt-faq-question {
        font-size: 15px;
        padding: 14px 16px;
    }

    .pt-faq-answer p {
        font-size: 14px;
    }
}

/* ============================================================
    PARTNERSHIP PAGE
    ============================================================ */

/* --- Hero --- */
.partnership-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 120px 0 80px;
    text-align: center;
}

.partnership-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 40% 50%, rgba(14, 59, 46, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 70%, rgba(197, 157, 67, 0.08) 0%, transparent 40%),
        var(--bg-dark);
}

.partnership-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

.partnership-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 157, 67, 0.05) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    animation: glowFloat 10s ease-in-out infinite;
}

.partnership-hero-content {
    max-width: 780px;
    margin: 40px auto 20px;
    position: relative;
    z-index: 1;
}

.partnership-hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.10);
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.10);
    margin-bottom: 20px;
}

.partnership-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.partnership-hero-desc {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Overview --- */
.partnership-overview {
    padding: var(--section-large) 0;
    background: var(--bg);
}

.partnership-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partnership-overview-text .section-desc {
    max-width: 100%;
    margin-bottom: 24px;
}

.partnership-overview-stats {
    display: flex;
    gap: 40px;
    padding-top: 8px;
}

.overview-stat .stat-number {
    font-family: var(--font-data);
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    line-height: 1.1;
}

.overview-stat .stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.partnership-overview-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-overview-diagram {
    width: 100%;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.partnership-overview-diagram:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-xl);
}

.overview-diagram-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 5 / 4;
    /* Matches original SVG proportions */
    object-fit: cover;
    background: var(--bg-light);
}

/* --- Legal Framework --- */
.partnership-legal {
    padding: var(--section-large) 0;
    background: var(--bg-light);
}

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

.legal-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 28px 22px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.legal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--secondary-rgb), 0.10);
}

.legal-card .legal-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.legal-card .legal-icon svg {
    width: 32px;
    height: 32px;
    color: var(--secondary);
}

.legal-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.legal-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 12px;
}

.legal-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.06);
}

/* --- Responsibilities --- */
.partnership-responsibilities {
    padding: var(--section-large) 0;
    background: var(--bg);
}

.partnership-responsibilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.resp-col {
    /* background: var(--surface); */
    border-radius: var(--radius-card);
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.resp-col:hover {
    box-shadow: var(--shadow-md);
}

.resp-col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.resp-col-header .resp-icon {
    font-size: 28px;
}

.resp-col-header span {
    align-self: center;
}

.resp-col-header .resp-icon svg {
    width: 28px;
    height: 28px;
    color: var(--secondary);
}

.resp-col-header h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--heading);
    margin: 0;
    align-self: center;
}

.resp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resp-list li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--body);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.resp-list li:last-child {
    border-bottom: none;
}

.resp-list li span {
    font-weight: 600;
    color: var(--heading);
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.state-col {
    border-left: 4px solid var(--primary);
}

.ninja-col {
    border-left: 4px solid var(--secondary);
}

.role-card {
    border-radius: var(--radius-card);
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: var(--shadow-sm);
    transition: .3s ease;
}

.role-card:hover {
    box-shadow: var(--shadow-md);
}

.role-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

.role-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--secondary);
}

.role-card__header h4 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--heading);
}

.role-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.role-card__list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--body);
    font-size: 15px;
    line-height: 1.65;
}

.role-card__list li:last-child {
    border-bottom: 0;
}

.role-card__list span {
    display: block;
    margin-bottom: 4px;
    color: var(--heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.role-card--state {
    border-left: 4px solid var(--primary);
}

.role-card--partner {
    border-left: 4px solid var(--secondary);
}

.role-card__list li {
    position: relative;
    padding: 12px 0 12px 22px;
    border-bottom: 1px solid var(--border);
    color: var(--body);
    font-size: 15px;
    line-height: 1.65;
}

.role-card__list li:last-child {
    border-bottom: 0;
}

.role-card__list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 700;
}

/* --- Revenue Structure --- */
.partnership-revenue {
    padding: var(--section-large) 0;
    background: var(--bg-light);
}

.partnership-revenue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto 24px;
}

.revenue-tier {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 20px 24px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.revenue-tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--secondary-rgb), 0.10);
}

.revenue-tier .tier-number {
    font-family: var(--font-data);
    font-size: 28px;
    font-weight: 700;
    color: rgba(var(--secondary-rgb), 0.2);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.tier-content {
    flex: 1;
}

.tier-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 2px;
}

.tier-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--body);
    margin: 0;
}

.tier-percent {
    font-family: var(--font-data);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    flex-shrink: 0;
    text-align: right;
    min-width: 60px;
}

.revenue-note {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    color: var(--body-light);
    padding: 16px 20px;
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
}

.revenue-note p {
    margin: 0;
}

/* --- Governance --- */
.partnership-governance {
    padding: var(--section-large) 0;
    background: var(--bg);
}

.governance-structure {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gov-level {
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    padding: 20px 24px;
    transition: all 0.3s ease;
}

.gov-level:hover {
    border-color: rgba(var(--secondary-rgb), 0.10);
    box-shadow: var(--shadow-sm);
}

.gov-level-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.gov-level-number {
    font-family: var(--font-data);
    font-size: 20px;
    font-weight: 700;
    color: rgba(var(--secondary-rgb), 0.2);
    flex-shrink: 0;
}

.gov-level-header h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    flex: 1;
}

.gov-level-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 4px 14px;
    border-radius: 100px;
    background: rgba(var(--secondary-rgb), 0.06);
    border: 1px solid rgba(var(--secondary-rgb), 0.06);
    color: var(--secondary);
}

.gov-level-body p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--body);
    margin: 4px 0;
}

.gov-level-body p strong {
    color: var(--heading);
}

/* --- Approval Process --- */
.partnership-approval {
    padding: var(--section-large) 0;
    background: var(--bg-light);
}

.approval-timeline {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 40px;
}

.approval-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: var(--border);
}

.approval-step {
    position: relative;
    padding: 20px 0 20px 32px;
}

.approval-step::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 30px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--surface);
    border: 3px solid var(--secondary);
    z-index: 1;
}

.approval-step:last-child::before {
    background: var(--secondary);
    box-shadow: 0 0 0 4px rgba(var(--secondary-rgb), 0.1);
}

.step-number {
    font-family: var(--font-data);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 2px;
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 2px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--body);
    margin: 0 0 6px 0;
}

.step-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--body-light);
    background: var(--bg-light);
    padding: 2px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

/* --- State Obligations --- */
.partnership-obligations {
    padding: var(--section-large) 0;
    background: var(--bg);
}

.obligations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.obligation-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 28px 22px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.obligation-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), 0.10);
}

.obligation-card .obligation-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.obligation-card .obligation-icon svg {
    width: 32px;
    height: 32px;
    color: var(--secondary);
}

.obligation-card h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.obligation-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    margin: 0;
}

/* --- CTA --- */
.partnership-cta {
    position: relative;
    padding: var(--section-large) 0;
    background: var(--bg-dark);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
}

.partnership-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 50% 60%, rgba(14, 59, 46, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 30%, rgba(197, 157, 67, 0.05) 0%, transparent 40%),
        var(--bg-dark);
}

.partnership-cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.partnership-cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 157, 67, 0.05) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    animation: glowFloat 12s ease-in-out infinite;
}

.partnership-cta-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.partnership-cta-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 100px;
    background: rgba(var(--secondary-rgb), 0.08);
    border: 1px solid rgba(var(--secondary-rgb), 0.10);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.partnership-cta-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.partnership-cta-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto 32px;
}

.partnership-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ============================================================
        RESPONSIVE – PARTNERSHIP
        ============================================================ */

@media (max-width: 1024px) {
    .partnership-hero-title {
        font-size: 40px;
    }

    .partnership-hero-desc {
        font-size: 17px;
    }

    .partnership-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partnership-overview-stats {
        justify-content: center;
    }

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

    .partnership-responsibilities-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .partnership-revenue-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .partnership-hero {
        min-height: 320px;
        padding: 100px 0 60px;
    }

    .partnership-hero-title {
        font-size: 32px;
    }

    .partnership-hero-desc {
        font-size: 16px;
    }

    .partnership-overview-stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }

    .overview-stat .stat-number {
        font-size: 28px;
    }

    .partnership-legal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .revenue-tier {
        flex-wrap: wrap;
        gap: 8px;
    }

    .tier-percent {
        width: 100%;
        text-align: left;
        font-size: 22px;
    }

    .obligations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .partnership-cta-heading {
        font-size: 32px;
    }

    .partnership-cta-desc {
        font-size: 16px;
    }

    .partnership-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .partnership-hero-title {
        font-size: 26px;
    }

    .partnership-hero-desc {
        font-size: 14px;
    }

    .partnership-cta-heading {
        font-size: 26px;
    }

    .gov-level-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .approval-timeline {
        padding-left: 20px;
    }

    .approval-step {
        padding-left: 20px;
    }

    .approval-step::before {
        left: -22px;
    }
}

/* ============================================================
    CONTACT PAGE
    ============================================================ */

/* --- Hero --- */
.contact-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 40% 50%, rgba(14, 59, 46, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 70%, rgba(197, 157, 67, 0.08) 0%, transparent 40%),
        var(--bg-dark);
}

.contact-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

.contact-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 157, 67, 0.05) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    animation: glowFloat 10s ease-in-out infinite;
}

.contact-hero-content {
    max-width: 780px;
    margin: 40px auto 20px;
    position: relative;
    z-index: 1;
}

.contact-hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.10);
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.10);
    margin-bottom: 20px;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.contact-hero-desc {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Contact Main --- */
.contact-main {
    padding: var(--section-large) 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border-radius: var(--radius-input);
    border: 1px solid var(--border);
    background: var(--surface);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--heading);
    transition: border 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.08);
}

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

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

.file-upload-wrapper {
    position: relative;
    padding: 16px;
    border: 2px dashed var(--border);
    border-radius: var(--radius-input);
    background: var(--bg-light);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-wrapper:hover {
    border-color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.02);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-placeholder {
    font-size: 14px;
    color: var(--body-light);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 8px;
}

.form-note {
    font-size: 14px;
    color: var(--body-light);
}

/* Info Column */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.info-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .info-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.info-item .info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--secondary);
}

.info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}

.info-item div {
    font-size: 15px;
    line-height: 1.6;
    color: var(--body);
}

.info-item a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-item a:hover {
    color: var(--primary);
}

.contact-social {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 20px 28px;
    border: 1px solid var(--border);
    text-align: center;
}

.social-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--body);
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
    transform: translateY(-2px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.contact-cta-card {
    background: linear-gradient(135deg, var(--bg-dark), var(--primary));
    border-radius: var(--radius-card);
    padding: 28px 24px;
    color: #fff;
    text-align: center;
}

.contact-cta-card .cta-card-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.contact-cta-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-cta-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

/* --- Map --- */
.contact-map {
    padding: var(--section-large) 0;
    background: var(--bg-light);
}

.map-wrapper {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.map-container {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--bg-light);
    min-height: 500px;
}

.map-container .nigeria-map {
    width: 100%;
    height: auto;
    display: block;
    padding: 20px;
}

.map-controls {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
}

.map-toggle-btn {
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-toggle-btn:hover {
    border-color: var(--secondary);
    color: var(--heading);
}

.map-toggle-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

/* --- Regional Contacts --- */
.regional-contacts {
    padding: var(--section-large) 0;
    background: var(--bg);
}

.regional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.regional-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    padding: 24px 24px 28px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.regional-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--secondary-rgb), 0.10);
}

.regional-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.regional-card-header .regional-icon {
    font-size: 28px;
}

.regional-card-header h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin: 0;
}

.regional-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
    padding: 2px 12px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.06);
    display: inline-block;
    margin-top: 2px;
}

.regional-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    margin: 6px 0;
}

.regional-body p strong {
    color: var(--heading);
}

.regional-body a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.regional-body a:hover {
    color: var(--primary);
}

/* --- Working Session --- */
.working-session {
    padding: var(--section-large) 0;
    background: var(--bg-light);
}

.session-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.session-content .section-desc {
    max-width: 100%;
}

.session-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.session-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 16px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.session-feature:hover {
    border-color: rgba(var(--secondary-rgb), 0.10);
    box-shadow: var(--shadow-sm);
}

.session-feature .sf-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.session-feature div {
    display: flex;
    flex-direction: column;
}

.session-feature strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading);
}

.session-feature span {
    font-size: 14px;
    color: var(--body);
    line-height: 1.5;
}

.session-form-wrapper {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.session-form-wrapper h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.session-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.session-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23556270' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* --- Meeting Scheduler --- */
.meeting-scheduler {
    padding: var(--section-large) 0;
    background: var(--bg);
}

.scheduler-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.scheduler-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.scheduler-nav-btn {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 18px;
    cursor: pointer;
    color: var(--body);
    transition: all 0.2s ease;
}

.scheduler-nav-btn:hover {
    border-color: var(--secondary);
    color: var(--heading);
}

.scheduler-week-label {
    font-weight: 600;
    color: var(--heading);
    font-size: 15px;
}

.scheduler-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.scheduler-day {
    padding: 10px 4px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.scheduler-day .day-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
}

.scheduler-day .day-number {
    font-family: var(--font-data);
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    display: block;
    margin-top: 2px;
}

.scheduler-day:hover {
    border-color: rgba(var(--secondary-rgb), 0.15);
    background: rgba(var(--secondary-rgb), 0.04);
}

.scheduler-day.selected {
    border-color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
}

.scheduler-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.scheduler-day.disabled:hover {
    border-color: transparent;
    background: transparent;
}

.time-slot-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.time-slot {
    padding: 8px 4px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    cursor: pointer;
    transition: all 0.25s ease;
}

.time-slot:hover {
    border-color: rgba(var(--secondary-rgb), 0.2);
    color: var(--heading);
}

.time-slot.selected {
    border-color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
    color: var(--heading);
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.time-slot.disabled:hover {
    border-color: var(--border);
    color: var(--body);
}

/* Scheduler Summary */
.scheduler-summary {
    background: var(--bg-light);
    border-radius: var(--radius-card);
    padding: 24px 24px 28px;
    border: 1px solid var(--border);
    align-self: start;
}

.scheduler-summary h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-label {
    font-size: 14px;
    color: var(--body-light);
    font-weight: 500;
}

.summary-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}

/* ============================================================
        RESPONSIVE – CONTACT
        ============================================================ */

@media (max-width: 1024px) {
    .contact-hero-title {
        font-size: 40px;
    }

    .contact-hero-desc {
        font-size: 17px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .session-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .scheduler-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 320px;
        padding: 100px 0 60px;
    }

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

    .contact-hero-desc {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .regional-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .regional-card {
        padding: 20px;
    }

    .scheduler-wrapper {
        padding: 20px;
    }

    .scheduler-days {
        gap: 4px;
    }

    .scheduler-day .day-number {
        font-size: 16px;
    }

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

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 26px;
    }

    .contact-hero-desc {
        font-size: 14px;
    }

    .contact-info-card {
        padding: 20px 16px;
    }

    .session-form-wrapper {
        padding: 20px 16px;
    }

    .scheduler-wrapper {
        padding: 16px;
    }

    .scheduler-days {
        gap: 2px;
    }

    .scheduler-day {
        padding: 6px 2px;
    }

    .scheduler-day .day-number {
        font-size: 14px;
    }

    .time-slot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .time-slot {
        font-size: 12px;
        padding: 6px 2px;
    }

    .scheduler-summary {
        padding: 16px;
    }
}

/* ============================================================
    SECTION 02 — THE NUMBERS
    ============================================================ */
.the-numbers {
    padding: var(--section-medium) 0;
    background: var(--bg);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.number-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 28px 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.number-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--secondary-rgb), 0.10);
}

.number-card .num {
    font-family: var(--font-data);
    font-size: 44px;
    font-weight: 700;
    color: var(--heading);
    display: block;
    line-height: 1.1;
}

.number-card .num .small {
    font-size: 24px;
    color: var(--body-light);
}

.number-card .label {
    font-size: 15px;
    font-weight: 500;
    color: var(--body);
    display: block;
    margin-top: 6px;
}

.number-card .sub {
    font-size: 13px;
    color: var(--body-light);
    display: block;
    margin-top: 2px;
}

.numbers-support {
    text-align: center;
    max-width: 640px;
    margin: 32px auto 0;
    font-size: 17px;
    color: var(--body-light);
    font-style: italic;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.text-center {
    text-align: center;
}

/* ============================================================
    RESPONSIVE — THE NUMBERS
    ============================================================ */

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .number-card {
        padding: 24px 16px;
    }

    .number-card .num {
        font-size: 36px;
    }

    .number-card .num .small {
        font-size: 20px;
    }

    .number-card .label {
        font-size: 14px;
    }

    .number-card .sub {
        font-size: 12px;
    }
}

/* Mobile: 2 columns (smaller padding) */
@media (max-width: 640px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .number-card {
        padding: 18px 12px;
    }

    .number-card .num {
        font-size: 28px;
    }

    .number-card .num .small {
        font-size: 16px;
    }

    .number-card .label {
        font-size: 13px;
    }

    .number-card .sub {
        font-size: 11px;
    }

    .numbers-support {
        font-size: 15px;
        padding: 16px 16px;
        margin-top: 24px;
    }
}

/* Very small screens: 1 column */
@media (max-width: 400px) {
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .number-card {
        padding: 20px 16px;
    }

    .number-card .num {
        font-size: 32px;
    }

    .number-card .num .small {
        font-size: 18px;
    }
}

/* ============================================================
    WHAT WE DO
    ============================================================ */
.what-we-do {
    padding: var(--section-large) 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.wwdb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- Text --- */
.wwdb-text .wwdb-intro {
    font-size: 15px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 12px;
}

.wwdb-text .wwdb-body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 20px;
}

/* --- Capabilities Grid (2 columns) --- */
.wwdb-capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.wwdb-capabilities li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--body);
    padding: 4px 0;
    line-height: 1.4;
}

.wwdb-capabilities li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--secondary);
    stroke: var(--secondary);
    stroke-width: 2.5;
}

/* --- Read More --- */
.wwdb-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: gap 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.wwdb-read-more:hover {
    gap: 12px;
    border-bottom-color: var(--secondary);
}

.wwdb-read-more .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 16px;
    line-height: 1;
}

.wwdb-read-more:hover .arrow {
    transform: translateX(4px);
}

/* --- Image --- */
.wwdb-image-wrapper {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.wwdb-image-wrapper:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.005);
}

.wwdb-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--bg-light);
}

.wwdb-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

.wwdb-image-caption {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .wwdb-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wwdb-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .wwdb-capabilities {
        grid-template-columns: 1fr;
        gap: 4px 0;
    }

    .wwdb-capabilities li {
        font-size: 13px;
    }

    .wwdb-text .wwdb-intro,
    .wwdb-text .wwdb-body {
        font-size: 14px;
        line-height: 1.6;
    }

    .wwdb-image-caption {
        font-size: 12px;
    }

    .wwdb-read-more {
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .wwdb-capabilities li {
        font-size: 12px;
        gap: 8px;
    }

    .wwdb-capabilities li svg {
        width: 16px;
        height: 16px;
    }

    .wwdb-text .wwdb-intro,
    .wwdb-text .wwdb-body {
        font-size: 13px;
    }
}

/* ============================================================
        DETAIL LAYOUT
        ============================================================ */
.programme-detail {
    padding: var(--section-medium) 0 var(--section-large);
    background: var(--bg);
}

.detail-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* ============================================================
        SIDEBAR
        ============================================================ */
.detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.detail-nav {
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.detail-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-nav ul li a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
    text-decoration: none;
}

.detail-nav ul li a:hover {
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.04);
    border-left-color: var(--secondary);
}

.detail-nav ul li.active a {
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
    border-left-color: var(--secondary);
    font-weight: 600;
}

/* Sidebar CTA */
.sidebar-cta {
    background: var(--bg-light);
    border-radius: var(--radius-card);
    padding: 28px 20px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.sidebar-cta .cta-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.sidebar-cta .cta-icon svg {
    width: 32px;
    height: 32px;
    color: var(--secondary);
}

.sidebar-cta h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 4px;
}

.sidebar-cta p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ============================================================
        MAIN CONTENT
        ============================================================ */
.detail-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Featured Image */
.detail-hero-image {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.detail-hero-image .detail-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* Header */
.detail-header .detail-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.06);
    margin-bottom: 8px;
}

.detail-header .detail-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.detail-header .detail-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--body);
    max-width: 640px;
}

/* Metrics */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 20px 18px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--secondary-rgb), 0.10);
}

.metric-card .metric-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.metric-card .metric-value {
    display: block;
    font-family: var(--font-data);
    font-size: 22px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 2px;
}

.metric-card .metric-note {
    display: block;
    font-size: 12px;
    color: var(--body-light);
}

/* Body */
.detail-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-body h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 4px;
}

.detail-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--body);
    margin: 0;
}

/* Secondary Image */
.secondary-image {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    margin: 8px 0;
    box-shadow: var(--shadow-sm);
}

.secondary-image .detail-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.secondary-image .image-caption {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--body-light);
    background: var(--surface);
    border-top: 1px solid var(--border);
    text-align: center;
}

/* Use Cases */
.use-cases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 4px 0;
}

.use-case-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--surface);
    padding: 16px 18px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.use-case-item:hover {
    border-color: rgba(var(--secondary-rgb), 0.15);
    box-shadow: var(--shadow-sm);
}

.use-case-item .use-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1.4;
}

.use-case-item .use-icon svg {
    color: var(--secondary);
}

.use-case-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--heading);
}

.use-case-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    margin: 0;
}

/* Certifications */
.certifications {
    margin-top: 4px;
}

.certifications h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--body-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cert-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--body);
    background: var(--bg-light);
    padding: 6px 18px;
    border-radius: 100px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.cert-badge:hover {
    border-color: var(--secondary);
    color: var(--heading);
    background: rgba(var(--secondary-rgb), 0.04);
}

/* Bottom CTA */
.content-cta {
    background: var(--bg-dark);
    border-radius: var(--radius-card);
    padding: 40px 48px;
    text-align: center;
    color: #fff;
    margin-top: 8px;
}

.content-cta h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.content-cta p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 24px;
}

.content-cta .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ============================================================
        RESPONSIVE
        ============================================================ */

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

    .detail-sidebar {
        position: relative;
        top: 0;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .detail-nav {
        flex: 1;
        min-width: 200px;
    }

    .sidebar-cta {
        flex: 1;
        min-width: 200px;
    }

    .detail-hero-image .detail-img {
        height: 240px;
    }

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

    .use-cases {
        grid-template-columns: 1fr;
    }

    .content-cta {
        padding: 32px 24px;
    }

    .content-cta h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .pt-hero {
        min-height: 280px;
        padding: 100px 0 40px;
    }

    .pt-hero-title {
        font-size: 32px;
    }

    .pt-hero-desc {
        font-size: 16px;
    }

    .detail-hero-image .detail-img {
        height: 180px;
    }

    .detail-header .detail-title {
        font-size: 28px;
    }

    .detail-header .detail-subtitle {
        font-size: 16px;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .metric-card .metric-value {
        font-size: 18px;
    }

    .detail-sidebar {
        flex-direction: column;
    }

    .content-cta h3 {
        font-size: 20px;
    }

    .content-cta .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .secondary-image .detail-img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .pt-hero-title {
        font-size: 26px;
    }

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

    .detail-header .detail-title {
        font-size: 24px;
    }

    .content-cta {
        padding: 24px 16px;
    }

    .content-cta h3 {
        font-size: 18px;
    }

    .detail-nav ul li a {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ============================================================
    PROGRAMME HERO — AVOIDED DEFORESTATION
    ============================================================ */
.programme-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 120px 0 50px;
}

.programme-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(14, 59, 46, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(197, 157, 67, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 20%, rgba(15, 108, 189, 0.06) 0%, transparent 50%),
        var(--bg-dark);
}

.programme-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

.programme-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 157, 67, 0.06) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    animation: glowFloat 12s ease-in-out infinite;
}

.programme-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.programme-hero-content {
    max-width: 780px;
    margin: 40px auto 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.programme-hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.12);
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.12);
    margin-bottom: 18px;
}

.programme-hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.programme-hero-desc {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.programme-hero-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.programme-hero-meta span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.programme-hero-meta span strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ============================================================
        RESPONSIVE — PROGRAMME HERO
        ============================================================ */

@media (max-width: 1024px) {
    .programme-hero {
        min-height: 380px;
        padding: 100px 0 40px;
    }

    .programme-hero-title {
        font-size: 44px;
    }

    .programme-hero-desc {
        font-size: 17px;
    }

    .programme-hero-meta {
        gap: 20px;
    }

    .programme-hero-meta span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .programme-hero {
        min-height: 320px;
        padding: 90px 0 30px;
    }

    .programme-hero-title {
        font-size: 34px;
    }

    .programme-hero-desc {
        font-size: 16px;
    }

    .programme-hero-meta {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .programme-hero-meta span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .programme-hero-title {
        font-size: 28px;
    }

    .programme-hero-desc {
        font-size: 15px;
    }

    .programme-hero-tag {
        font-size: 11px;
        padding: 4px 16px;
    }
}


/* ============================================================
    SOLUTION HERO
    ============================================================ */
.solution-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 120px 0 50px;
}

.solution-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(14, 59, 46, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(15, 108, 189, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 20%, rgba(197, 157, 67, 0.06) 0%, transparent 50%),
        var(--bg-dark);
}

.solution-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

.solution-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 108, 189, 0.06) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    animation: glowFloat 12s ease-in-out infinite;
}

.solution-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.solution-hero-content {
    max-width: 780px;
    margin: 40px auto 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.solution-hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.12);
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.12);
    margin-bottom: 18px;
}

.solution-hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.solution-hero-desc {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
        SOLUTION DETAIL LAYOUT
        ============================================================ */
.solution-detail {
    padding: var(--section-medium) 0 var(--section-large);
    background: var(--bg);
}

.solution-detail-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 60px;
    align-items: start;
}

/* ============================================================
        SOLUTION DETAIL SIDEBAR
        ============================================================ */
.solution-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.solution-detail-nav {
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.solution-detail-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-detail-nav ul li a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    border-right: 3px solid transparent;
    transition: all 0.25s ease;
    text-decoration: none;
}

.solution-detail-nav ul li a:hover {
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.04);
    border-right-color: var(--secondary);
}

.solution-detail-nav ul li.active a {
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
    border-right-color: var(--secondary);
    font-weight: 600;
}

/* ============================================================
        SOLUTION DETAIL CONTENT
        ============================================================ */
.solution-detail-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.solution-detail-hero-image {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.solution-detail-hero-image .solution-detail-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.solution-detail-header .solution-detail-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid rgba(var(--secondary-rgb), 0.06);
    margin-bottom: 8px;
}

.solution-detail-header .solution-detail-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.solution-detail-header .solution-detail-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--body);
    max-width: 640px;
}

/* Sections */
.solution-detail-section h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

.solution-detail-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 12px;
}

.solution-detail-section p:last-child {
    margin-bottom: 0;
}

/* Benefits & How It Works Grid */
.solution-detail-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 4px 0;
}

.solution-detail-benefits h4,
.solution-detail-how h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.solution-detail-benefits ul,
.solution-detail-how ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

.solution-detail-benefits ul li,
.solution-detail-how ol li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--body);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.solution-detail-benefits ul li:last-child,
.solution-detail-how ol li:last-child {
    border-bottom: none;
}

.solution-detail-benefits ul li strong {
    color: var(--heading);
}

.solution-detail-how ol li {
    counter-increment: step;
    display: flex;
    gap: 8px;
}

.solution-detail-how ol li::before {
    content: counter(step);
    font-family: var(--font-data);
    font-weight: 700;
    color: var(--secondary);
    flex-shrink: 0;
}

.solution-detail-how ol {
    counter-reset: step;
}

/* Secondary Image */
.solution-detail-secondary-image {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    margin: 4px 0;
    box-shadow: var(--shadow-sm);
}

.solution-detail-secondary-image .solution-detail-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.solution-detail-secondary-image .image-caption {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--body-light);
    background: var(--surface);
    border-top: 1px solid var(--border);
    text-align: center;
}

/* Deliverables & Standards */
.solution-detail-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.solution-detail-deliverables h4,
.solution-detail-standards h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.solution-detail-deliverables {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.solution-detail-deliverables span {
    font-size: 14px;
    color: var(--body);
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
}

.solution-detail-deliverables span:last-child {
    border-bottom: none;
}

.solution-detail-standards {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 8px;
}

.solution-detail-standards h4 {
    width: 100%;
    margin-bottom: 4px;
}

.std-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--body-light);
    background: var(--bg-light);
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.std-tag:hover {
    border-color: var(--secondary);
    color: var(--heading);
}

/* Bottom CTA */
.solution-detail-cta {
    background: var(--bg-dark);
    border-radius: var(--radius-card);
    padding: 40px 48px;
    text-align: center;
    color: #fff;
    margin-top: 8px;
}

.solution-detail-cta h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.solution-detail-cta p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 24px;
}

.solution-detail-cta .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ============================================================
        RESPONSIVE — SOLUTIONS DETAIL
        ============================================================ */

@media (max-width: 1024px) {
    .solution-hero {
        min-height: 380px;
        padding: 100px 0 40px;
    }

    .solution-hero-title {
        font-size: 44px;
    }

    .solution-hero-desc {
        font-size: 17px;
    }

    .solution-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-detail-sidebar {
        position: relative;
        top: 0;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .solution-detail-nav {
        flex: 1;
        min-width: 200px;
    }

    .solution-detail-hero-image .solution-detail-img {
        height: 240px;
    }

    .solution-detail-grid-2col {
        grid-template-columns: 1fr 1fr;
    }

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

    .solution-detail-cta {
        padding: 32px 24px;
    }

    .solution-detail-cta h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .solution-hero {
        min-height: 320px;
        padding: 90px 0 30px;
    }

    .solution-hero-title {
        font-size: 34px;
    }

    .solution-hero-desc {
        font-size: 16px;
    }

    .solution-detail-hero-image .solution-detail-img {
        height: 180px;
    }

    .solution-detail-header .solution-detail-title {
        font-size: 28px;
    }

    .solution-detail-header .solution-detail-subtitle {
        font-size: 16px;
    }

    .solution-detail-grid-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution-detail-footer {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution-detail-sidebar {
        flex-direction: column;
    }

    .solution-detail-cta h3 {
        font-size: 20px;
    }

    .solution-detail-cta .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .solution-detail-secondary-image .solution-detail-img {
        height: 160px;
    }

    .solution-detail-cta {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .solution-hero-title {
        font-size: 28px;
    }

    .solution-hero-desc {
        font-size: 15px;
    }

    .solution-hero-tag {
        font-size: 11px;
        padding: 4px 16px;
    }

    .solution-detail-header .solution-detail-title {
        font-size: 24px;
    }

    .solution-detail-cta h3 {
        font-size: 18px;
    }

    .solution-detail-nav ul li a {
        padding: 10px 16px;
        font-size: 13px;
    }
}