/* ==========================================================================
   FAYNO MARKET CSR SINGLE-PAGE LANDING WEBSITE STYLES
   ========================================================================== */

/* Font Face Declarations */
@font-face {
    font-family: 'Aeroport';
    src: url('/fonts/Aeroport.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeroport';
    src: url('/fonts/Aeroport-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeroport';
    src: url('/fonts/Aeroport-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeroport';
    src: url('/fonts/Aeroport-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Druk Wide Cyr';
    src: url('/fonts/Druk Text Wide Cyr Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Druk Wide Heavy';
    src: url('/fonts/Druk Text Wide Cyr Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --color-green: #07906B;
    --color-green-dark: #047456;
    --color-green-light: #EBF7F4;
    --color-purple: #AD9DCC;
    --color-purple-light: #F4F1F8;
    --color-navy: #050F2B;
    --color-gray-dark: #4A5568;
    --color-gray-light: #F3F4F6;
    --color-border: rgba(229, 231, 235, 0.8);
    --color-bg-main: #FAF9F5;
    --color-card-bg: #FFFFFF;
    
    --font-primary: 'Aeroport', sans-serif;
    --font-heading: 'Druk Wide Cyr', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(5, 15, 43, 0.04);
    --shadow-lg: 0 20px 40px rgba(8, 144, 108, 0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-main);
    color: var(--color-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utility */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--color-navy);
}

p {
    font-weight: 400;
    color: var(--color-gray-dark);
}

/* Base Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Sticky Header */
.site-header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link img {
    height: 42px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--color-gray-dark);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-link:hover {
    background-color: var(--color-green-light);
    color: var(--color-green);
}

.nav-item.active .nav-link {
    background-color: var(--color-green);
    color: #FFFFFF;
}

.cta-button {
    background-color: var(--color-green);
    color: #FFFFFF;
    border: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: var(--color-green-dark);
    transform: translateY(-2px);
}

/* Sections Common styling */
.section {
    padding: 100px 0;
    border-bottom: 1px solid var(--color-border);
}

/* Alternating background colors */
.section:nth-child(even) {
    background-color: #FFFFFF;
}

.section:nth-child(odd) {
    background-color: var(--color-bg-main);
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-number {
    font-family: var(--font-heading);
    color: var(--color-purple);
    font-size: 20px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 32px;
    color: var(--color-navy);
    line-height: 1.2;
}

.section.hero-section,
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 60% 50%, #005a46 0%, #004939 60%, #003328 100%) !important;
    padding: 100px 0 120px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

/* Text Side Styles (Dark Green Theme) */
.hero-text-side {
    flex: 1.1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    padding-right: 30px;
    color: #FFFFFF;
}

.hero-subtitle-caps {
    background-color: rgba(255, 255, 255, 0.08);
    color: #A3E2D1;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 0.06em;
    border: 1px solid rgba(163, 226, 209, 0.3);
    text-transform: uppercase;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin-bottom: 35px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-year-tag {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 900;
    color: #A3E2D1;
    border: 1.5px solid rgba(163, 226, 209, 0.4);
    padding: 8px 18px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-cta-btn {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    background-color: var(--color-green);
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-cta-btn:hover {
    background-color: var(--color-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-cta-btn .arrow-down {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover .arrow-down {
    transform: translateY(3px);
}

/* Graphics Side (Orbit System) */
.hero-graphics-side {
    flex: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 560px;
}

.orbit-system {
    width: 540px;
    height: 540px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Circular Orbit Lines */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(163, 226, 209, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ring-1 {
    width: 240px;
    height: 240px;
    border-style: solid;
    border-color: rgba(163, 226, 209, 0.18);
}

.ring-2 {
    width: 380px;
    height: 380px;
}

.ring-3 {
    width: 520px;
    height: 520px;
}

/* Center Logo styling */
.orbit-center {
    position: absolute;
    z-index: 12;
    width: 195px;
    height: 195px;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.orbit-logo {
    max-width: 145px;
    height: auto;
}

/* Floating interactive planet nodes */
.orbit-node {
    position: absolute;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 8px 16px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    user-select: none;
}

.node-emoji {
    font-size: 16px;
}

.node-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-navy);
    white-space: nowrap;
    transition: color 0.3s;
}

/* Node Hover Styling */
.orbit-node:hover {
    transform: scale(1.08) translateY(-2px);
    border-color: var(--color-green);
    box-shadow: var(--shadow-md), 0 0 15px rgba(7, 144, 107, 0.12);
    background-color: var(--color-green-light);
}

.orbit-node:hover .node-name {
    color: var(--color-green-dark);
}

/* Positioning nodes at different orbit points + floating keyframe animations */
.node-dvizh {
    top: 6%;
    left: 14%;
    animation: floatNodeA 5s ease-in-out infinite;
}
.node-sport {
    top: 10%;
    right: 10%;
    animation: floatNodeB 6s ease-in-out infinite;
}
.node-dolonky {
    top: 40%;
    right: -5%;
    animation: floatNodeA 5.5s ease-in-out infinite;
}
.node-lapu {
    bottom: 12%;
    right: 8%;
    animation: floatNodeC 6.5s ease-in-out infinite;
}
.node-serce {
    bottom: 4%;
    left: 34%;
    animation: floatNodeB 5s ease-in-out infinite;
}
.node-spadshchyna {
    top: 44%;
    left: -6%;
    animation: floatNodeC 5.8s ease-in-out infinite;
}
.node-veteran {
    bottom: 18%;
    left: 6%;
    animation: floatNodeA 6.2s ease-in-out infinite;
}

/* Floating Animations for Organic Space Effect */
@keyframes floatNodeA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px) scale(1.02); }
}
@keyframes floatNodeB {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(4px, -6px) scale(0.98); }
}
@keyframes floatNodeC {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-4px, -8px) scale(1.01); }
}

/* Animated Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.75;
    transition: var(--transition);
    z-index: 10;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(2px);
}

.scroll-mouse {
    width: 18px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    position: relative;
    display: block;
}

.scroll-wheel {
    width: 4px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelAnim 1.6s ease-in-out infinite;
}

.scroll-text {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes scrollWheelAnim {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 8px); }
}

/* Responsive adjustments for Interactive Orbit System */
@media (max-width: 990px) {
    .section.hero-section,
.hero-section {
    padding-top: 140px;
    min-height: auto;
    background: radial-gradient(circle at 50% 30%, #005a46 0%, #004939 60%, #003328 100%) !important;
}
    .hero-split-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .hero-text-side {
        align-items: center;
        text-align: center;
        padding-right: 0;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-graphics-side {
        height: auto;
        max-width: 460px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .orbit-system {
        transform: scale(0.8);
        margin: -40px 0;
    }
    .hero-title {
        font-size: 36px;
    }
}

/* Philosophy Section (Slide 2) */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.quote-card {
    background: linear-gradient(135deg, rgba(7, 144, 107, 0.05) 0%, rgba(173, 157, 204, 0.04) 100%);
    border-left: 5px solid var(--color-green);
    padding: 24px 28px;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: var(--shadow-sm);
}

.quote-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-green-dark);
    font-style: italic;
}

.philosophy-main-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-gray-dark);
}

/* Key Term Highlights */
.highlight-green { color: var(--color-green-dark); font-weight: 700; }
.highlight-purple { color: #6A1B9A; font-weight: 700; }
.highlight-navy { color: var(--color-navy); font-weight: 700; }

.philosophy-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Philosophy Card Upgrade with Emojis & Tags */
.philosophy-card {
    position: relative;
    background: #FFFFFF;
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-purple);
}

.philosophy-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 5;
}

.p-card-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 100px;
}

.p-card-tag.tag-green { background-color: var(--color-green-light); color: var(--color-green-dark); }
.p-card-tag.tag-purple { background-color: var(--color-purple-light); color: #6A1B9A; }
.p-card-tag.tag-orange { background-color: #FFF9F0; color: #D84315; }

.philosophy-card-emoji {
    font-size: 22px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.philosophy-card:hover .philosophy-card-emoji {
    transform: scale(1.3) rotate(8deg);
}

.philosophy-bg-num {
    position: absolute;
    right: 15px;
    bottom: -15px;
    font-family: var(--font-heading);
    font-size: 90px;
    font-weight: 900;
    color: rgba(173, 157, 204, 0.12);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    transition: color 0.4s ease, transform 0.4s ease;
}

.philosophy-card:hover .philosophy-bg-num {
    color: rgba(7, 144, 107, 0.15);
    transform: scale(1.05);
}

.philosophy-card-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.45;
    position: relative;
    z-index: 2;
    max-width: 85%;
}

/* Stats Section (Slide 3) - Upgraded 2x2 Premium Grid Layout */
.stats-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.stats-left-card {
    background-color: var(--color-green-light);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 144, 107, 0.08);
    box-shadow: 0 10px 30px rgba(7, 144, 107, 0.05);
}

.stats-card-bg-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(7, 144, 107, 0.04) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 0;
}

.stats-badge-tag {
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 20px;
    z-index: 1;
}

.stats-left-card .stats-panel-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    z-index: 1;
}

.stats-left-card .stats-panel-desc {
    font-size: 15px;
    color: var(--color-gray-dark);
    line-height: 1.65;
    z-index: 1;
    margin-bottom: 30px;
}

.stats-card-signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1;
    border-top: 1px solid rgba(7, 144, 107, 0.15);
    padding-top: 20px;
}

.signature-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--color-green-dark);
    letter-spacing: 0.05em;
}

.signature-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 950;
    color: var(--color-navy);
    letter-spacing: 0.02em;
    line-height: 1;
}

.stats-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card-premium {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

/* Card custom colors and borders */
.stat-card-premium.border-green::before { background: var(--color-green); }
.stat-card-premium.border-purple::before { background: #8E44AD; }
.stat-card-premium.border-emerald::before { background: #27AE60; }
.stat-card-premium.border-gold::before { background: #F39C12; }

/* Glowing shadows on hover */
.stat-card-premium:hover {
    transform: translateY(-5px);
    border-color: rgba(0,0,0,0.06);
}
.stat-card-premium.border-green:hover { box-shadow: 0 15px 35px rgba(7, 144, 107, 0.12); }
.stat-card-premium.border-purple:hover { box-shadow: 0 15px 35px rgba(142, 68, 173, 0.12); }
.stat-card-premium.border-emerald:hover { box-shadow: 0 15px 35px rgba(39, 174, 96, 0.12); }
.stat-card-premium.border-gold:hover { box-shadow: 0 15px 35px rgba(243, 156, 18, 0.12); }

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.stat-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.text-green { color: var(--color-green); }
.bg-green-light { background-color: var(--color-green-light); }

.text-purple { color: #8E44AD; }
.bg-purple-light { background-color: rgba(142, 68, 173, 0.08); }

.text-emerald { color: #27AE60; }
.bg-emerald-light { background-color: rgba(39, 174, 96, 0.08); }

.text-gold { color: #D35400; }
.bg-gold-light { background-color: rgba(211, 84, 0, 0.08); }

.stat-icon-emoji {
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.stat-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stats-number {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 6px;
    margin-bottom: 4px;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.stats-suffix {
    font-size: 0.72em;
    font-weight: 800;
    white-space: nowrap;
    display: inline-block;
}

.stats-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
}

.stats-subtext {
    font-size: 12px;
    color: var(--color-gray-dark);
    opacity: 0.85;
}

/* Responsive stats overrides */
@media (max-width: 950px) {
    .stats-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stats-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .stats-cards-grid {
        grid-template-columns: 1fr;
    }
    .stats-number {
        font-size: 28px;
    }
}

/* SDG Section (Slide 4) - Expandable Vertical Accordion Layout */
.sdg-intro {
    max-width: 700px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.sdg-accordion {
    display: flex;
    gap: 16px;
    width: 100%;
    height: 480px;
    margin-top: 40px;
}

.sdg-item {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: flex 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    will-change: flex, box-shadow;
    transform: translate3d(0, 0, 0);
}

/* Background images declared here in CSS */
.sdg-item:nth-child(1) { background-image: url('./sdg3_health.png'); }
.sdg-item:nth-child(2) { background-image: url('./sdg11_cities.png'); }
.sdg-item:nth-child(3) { background-image: url('./sdg15_ecosystem.png'); }
.sdg-item:nth-child(4) { background-image: url('./sdg16_peace.png'); }

/* Saturated layer with micro zoom on hover */
.sdg-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: grayscale(30%);
    opacity: 0.75;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
    will-change: opacity, transform;
    transform: translate3d(0, 0, 0);
}

.sdg-item:hover::before {
    opacity: 0.95;
    filter: grayscale(0%);
    transform: scale(1.05) translate3d(0, 0, 0);
}

/* Base Gradient Overlay */
.sdg-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 40, 30, 0.8) 100%);
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Expansion state & clean hover shadow */
.sdg-item:hover {
    flex: 2.8;
}

/* Goal-specific Color Shifts on Hover: Subtle Gradient Overlays */
.sdg-item:nth-child(1):hover::after {
    background: linear-gradient(180deg, rgba(229, 36, 59, 0.15) 0%, rgba(229, 36, 59, 0.85) 100%);
}

.sdg-item:nth-child(2):hover::after {
    background: linear-gradient(180deg, rgba(253, 157, 36, 0.15) 0%, rgba(253, 157, 36, 0.85) 100%);
}

.sdg-item:nth-child(3):hover::after {
    background: linear-gradient(180deg, rgba(63, 126, 68, 0.15) 0%, rgba(63, 126, 68, 0.85) 100%);
}

.sdg-item:nth-child(4):hover::after {
    background: linear-gradient(180deg, rgba(10, 151, 217, 0.15) 0%, rgba(10, 151, 217, 0.85) 100%);
}

/* Add custom glows on hover for each card */
.sdg-item:nth-child(1):hover { box-shadow: 0 15px 40px rgba(229, 36, 59, 0.25); }
.sdg-item:nth-child(2):hover { box-shadow: 0 15px 40px rgba(253, 157, 36, 0.25); }
.sdg-item:nth-child(3):hover { box-shadow: 0 15px 40px rgba(63, 126, 68, 0.25); }
.sdg-item:nth-child(4):hover { box-shadow: 0 15px 40px rgba(10, 151, 217, 0.25); }

.sdg-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-red { background-color: #E5243B; box-shadow: 0 4px 12px rgba(229, 36, 59, 0.4); }
.badge-orange { background-color: #FD9D24; box-shadow: 0 4px 12px rgba(253, 157, 36, 0.4); }
.badge-green { background-color: #3F7E44; box-shadow: 0 4px 12px rgba(63, 126, 68, 0.4); }
.badge-blue { background-color: #0A97D9; box-shadow: 0 4px 12px rgba(10, 151, 217, 0.4); }

.sdg-accordion-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(0);
    transition: var(--transition);
}

.sdg-accordion-title {
    font-size: 20px;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sdg-accordion-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}

.sdg-item:hover .sdg-accordion-desc {
    opacity: 1;
    max-height: 120px;
    margin-top: 5px;
}

/* CSR Pillars (Slide 5) - Editorial List Layout */
.pillars-editorial {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    background-color: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.editorial-row {
    display: grid;
    grid-template-columns: 80px 1.5fr 150px;
    align-items: center;
    padding: 35px 40px;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    gap: 30px;
}

.editorial-row:last-child {
    border-bottom: none;
}

.editorial-num {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-purple);
    transition: var(--transition);
}

.editorial-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.editorial-title {
    font-size: 18px;
    color: var(--color-navy);
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-emoji {
    font-size: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.editorial-row:hover .title-emoji {
    transform: scale(1.3) rotate(8deg);
}

.editorial-desc {
    font-size: 15px;
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.editorial-tag {
    justify-self: end;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Tag Color Variations (No Red!) */
.tag-purple { background-color: var(--color-purple-light); color: #6A1B9A; }
.tag-green { background-color: var(--color-green-light); color: var(--color-green-dark); }
.tag-orange { background-color: #FFF9F0; color: #D84315; }
.tag-navy { background-color: #E6E8EE; color: var(--color-navy); }

/* Hover Interactions (No Red, Soft Colors) */
.editorial-row.society:hover {
    background-color: var(--color-purple-light);
}
.editorial-row.society:hover .editorial-num {
    color: #6A1B9A;
    transform: scale(1.1);
}
.editorial-row.society:hover .editorial-title {
    color: #6A1B9A;
}

.editorial-row.eco:hover {
    background-color: var(--color-green-light);
}
.editorial-row.eco:hover .editorial-num {
    color: var(--color-green-dark);
    transform: scale(1.1);
}
.editorial-row.eco:hover .editorial-title {
    color: var(--color-green-dark);
}

.editorial-row.care:hover {
    background-color: #FFF9F0;
}
.editorial-row.care:hover .editorial-num {
    color: #D84315;
    transform: scale(1.1);
}
.editorial-row.care:hover .editorial-title {
    color: #D84315;
}

.editorial-row.history:hover {
    background-color: #F0F2F6;
}
.editorial-row.history:hover .editorial-num {
    color: var(--color-navy);
    transform: scale(1.1);
}
.editorial-row.history:hover .editorial-title {
    color: var(--color-navy);
}

@media (max-width: 900px) {
    .editorial-row {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 15px;
    }
    .editorial-tag {
        justify-self: start;
        margin-top: 10px;
    }
}

/* Key Initiatives (Slide 6-13) */
.initiatives-intro {
    max-width: 700px;
    margin: 0 auto 40px auto;
    text-align: center;
}

/* Interactive SDG Connections Map Section */
.connections-map-section {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 50px 45px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-sm);
}

.connections-map-header {
    text-align: center;
    margin-bottom: 40px;
}

.connections-map-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.connections-map-help {
    font-size: 13px;
    color: var(--color-gray-dark);
}

.connections-map-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    width: 100%;
    min-height: 400px;
}

.connections-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 260px;
    z-index: 10;
}

/* Connect Node - Clean Border Design */
.connect-node {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
    box-shadow: var(--shadow-sm);
}

.connect-node-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy);
    transition: var(--transition);
}

/* SDG Badge Styling inside nodes - Emphasized Version */
.connect-sdg-badge {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* SVG Line Canvas */
.connections-svg-container {
    flex: 1;
    height: 100%;
    align-self: stretch;
    position: relative;
    pointer-events: none;
}

.connections-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* SVG Connection Lines - Solid Style */
.connection-line {
    fill: none;
    stroke: rgba(5, 15, 43, 0.12);
    stroke-width: 2px;
    transition: stroke 0.4s ease, stroke-width 0.4s ease, opacity 0.4s ease;
}

/* Connection Active Glows */
.connections-svg-container.has-active .connection-line:not(.active) {
    opacity: 0.12;
}

/* Node Hover / Active States */
.connect-node:hover,
.connect-node.active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.connect-node.active .connect-sdg-badge {
    transform: scale(1.15);
}

/* Color codes matching SDG targets (Vibrant Background & Border fills) */
.connect-node.sdg-node[data-sdg="sdg-3"].active,
.connect-node.sdg-node[data-sdg="sdg-3"]:hover {
    border-color: #E5243B;
    background-color: #FFF0F1;
}
.connect-node.sdg-node[data-sdg="sdg-3"].active .connect-node-title,
.connect-node.sdg-node[data-sdg="sdg-3"]:hover .connect-node-title {
    color: #E5243B;
}

.connect-node.sdg-node[data-sdg="sdg-11"].active,
.connect-node.sdg-node[data-sdg="sdg-11"]:hover {
    border-color: #FD9D24;
    background-color: #FFF9F0;
}
.connect-node.sdg-node[data-sdg="sdg-11"].active .connect-node-title,
.connect-node.sdg-node[data-sdg="sdg-11"]:hover .connect-node-title {
    color: #E67E22;
}

.connect-node.sdg-node[data-sdg="sdg-15"].active,
.connect-node.sdg-node[data-sdg="sdg-15"]:hover {
    border-color: #3F7E44;
    background-color: #EBF7F4;
}
.connect-node.sdg-node[data-sdg="sdg-15"].active .connect-node-title,
.connect-node.sdg-node[data-sdg="sdg-15"]:hover .connect-node-title {
    color: #27AE60;
}

.connect-node.sdg-node[data-sdg="sdg-16"].active,
.connect-node.sdg-node[data-sdg="sdg-16"]:hover {
    border-color: #0A97D9;
    background-color: #F0F8FF;
}
.connect-node.sdg-node[data-sdg="sdg-16"].active .connect-node-title,
.connect-node.sdg-node[data-sdg="sdg-16"]:hover .connect-node-title {
    color: #2980B9;
}

.connect-node.init-node.active,
.connect-node.init-node:hover {
    border-color: var(--color-green);
    background-color: var(--color-green-light);
}
.connect-node.init-node.active .connect-node-title,
.connect-node.init-node:hover .connect-node-title {
    color: var(--color-green-dark);
}

/* Connection curves colored on hover + neon glow aura */
.connection-line.color-red { stroke: #E5243B; stroke-width: 3.5px; filter: drop-shadow(0 0 3px rgba(229, 36, 59, 0.4)); }
.connection-line.color-orange { stroke: #FD9D24; stroke-width: 3.5px; filter: drop-shadow(0 0 3px rgba(253, 157, 36, 0.4)); }
.connection-line.color-green { stroke: #3F7E44; stroke-width: 3.5px; filter: drop-shadow(0 0 3px rgba(63, 126, 68, 0.4)); }
.connection-line.color-blue { stroke: #0A97D9; stroke-width: 3.5px; filter: drop-shadow(0 0 3px rgba(10, 151, 217, 0.4)); }

/* Responsive adjustments for Map */
@media (max-width: 850px) {
    .connections-map-section {
        padding: 35px 20px;
    }
    .connections-map-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .connections-svg-container {
        display: none; /* Hide lines on mobile, rely on background color highlights instead */
    }
    .connections-col {
        width: 100%;
        gap: 12px;
    }
    .connect-node {
        padding: 12px 16px;
    }
}

.initiatives-container {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.tabs-header {
    background-color: var(--color-purple-light);
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    border-bottom: 1px solid var(--color-border);
}

.tab-btn {
    border: none;
    background-color: transparent;
    padding: 10px 18px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-gray-dark);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background-color: rgba(173, 157, 204, 0.2);
    color: var(--color-navy);
}

.tab-btn.active {
    background-color: var(--color-green);
    color: #FFFFFF;
}

.tab-content-wrapper {
    padding: 40px;
}

.tab-panel {
    display: none;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.tab-panel.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

.tab-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab-title-small {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.tab-title-small::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--color-green);
    margin-top: 10px;
    border-radius: 2px;
}

.tab-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 25px;
}

.tab-what-we-do {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.tab-what-title {
    font-weight: 800;
    font-size: 11px;
    color: var(--color-gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-what-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: rgba(0, 73, 57, 0.1);
}

.tab-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.tab-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: var(--color-navy);
    font-weight: 600;
    padding: 12px 18px;
    background-color: rgba(7, 144, 107, 0.03);
    border-left: 3px solid var(--color-green);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-list-item:hover {
    background-color: rgba(7, 144, 107, 0.08);
    transform: translateX(6px);
    color: var(--color-green-dark);
}

.tab-list-item::before {
    content: "✦";
    color: var(--color-green);
    font-weight: bold;
    font-size: 11px;
    flex-shrink: 0;
}

/* Premium Initiative Cards (Photo + SDG Alignment) */
.initiative-premium-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.initiative-premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.init-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--color-purple-light);
}

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

.initiative-premium-card:hover .init-photo {
    transform: scale(1.06);
}

/* Shift and zoom Fainyi Dvizh image to hide bottom-left logo */
#tab-dvizh .init-photo {
    object-position: center top;
    transform: scale(1.15);
    transform-origin: center top;
}

#tab-dvizh .initiative-premium-card:hover .init-photo {
    transform: scale(1.22);
}

.photo-overlay-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 73, 57, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #A3E2D1;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.init-sdgs-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    background: #FAFAFA;
    border-top: 1px solid var(--color-border);
}

.init-sdg-header {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-gray-dark);
    letter-spacing: 0.05em;
    margin: 0;
}

.init-sdg-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.init-sdg-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: var(--radius-md);
    padding: 10px 14px;
    color: #FFFFFF;
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.init-sdg-badge:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Authentic UN SDG Colors */
.init-sdg-badge.badge-red { background-color: #E5243B; }
.init-sdg-badge.badge-orange { background-color: #FD9D24; }
.init-sdg-badge.badge-green { background-color: #4C9F38; }
.init-sdg-badge.badge-blue { background-color: #00689D; }

.init-sdg-num {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    display: inline-block;
    padding-right: 10px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.35);
}

.init-sdg-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.init-sdg-label {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.init-sdg-name {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

/* Additional Cards Grid */
.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.add-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.add-card.card-platform:hover { border-color: #008060; transform: translateY(-5px); box-shadow: var(--shadow-md); }
.add-card.card-transparency:hover { border-color: #007A87; transform: translateY(-5px); box-shadow: var(--shadow-md); }
.add-card.card-docs:hover { border-color: #004939; transform: translateY(-5px); box-shadow: var(--shadow-md); }
.add-card.card-awards:hover { border-color: #FD9D24; transform: translateY(-5px); box-shadow: var(--shadow-md); }
.add-card.card-future:hover { border-color: var(--color-purple); transform: translateY(-5px); box-shadow: var(--shadow-md); }

.add-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.add-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.add-icon-circle.bg-emerald { background-color: rgba(0, 128, 96, 0.08); color: #008060; }
.add-icon-circle.bg-teal { background-color: rgba(0, 122, 135, 0.08); color: #007A87; }
.add-icon-circle.bg-navy { background-color: rgba(0, 73, 57, 0.08); color: #004939; }
.add-icon-circle.bg-orange { background-color: rgba(253, 157, 36, 0.08); color: #FD9D24; }
.add-icon-circle.bg-purple { background-color: var(--color-purple-light); color: var(--color-purple); }

.add-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-navy);
    letter-spacing: 0.02em;
    margin: 0;
}

.add-content {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-gray-dark);
    margin: 0;
}

/* Custom Interactive Widgets */
.add-card-widget {
    margin-top: 8px;
    background: #F9FAFB;
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--color-border);
}

.widget-metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.metric-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: #008060;
    line-height: 1;
}

.metric-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-navy);
    letter-spacing: 0.02em;
}

.widget-progress-bar {
    width: 100%;
    height: 8px;
    background: #E9ECEF;
    border-radius: 4px;
    overflow: hidden;
}

.widget-progress-fill {
    height: 100%;
    background-color: #008060;
    border-radius: 4px;
}

.widget-sub {
    font-size: 11px;
    color: var(--color-gray-dark);
    font-style: italic;
}

/* Transparency Widget */
.widget-chart-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-label {
    width: 80px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-navy);
    letter-spacing: 0.02em;
}

.chart-bar-wrapper {
    flex-grow: 1;
    height: 6px;
    background: #E9ECEF;
    border-radius: 4px;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    border-radius: 4px;
}

.chart-val {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-navy);
    width: 28px;
    text-align: right;
}

/* Premium Document List */
.premium-doc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.premium-doc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
}

.premium-doc-item:hover {
    transform: translateY(-2px);
    border-color: #004939;
    box-shadow: 0 4px 10px rgba(0, 73, 57, 0.05);
}

.doc-icon-file {
    font-size: 16px;
    color: #004939;
}

.doc-info-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex-grow: 1;
}

.doc-name-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-navy);
}

.doc-size-text {
    font-size: 10px;
    color: var(--color-gray-dark);
    font-weight: 500;
}

.doc-action-btn {
    font-size: 14px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.premium-doc-item:hover .doc-action-btn {
    opacity: 1;
}

/* Awards Badges */
.add-card-badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.mini-badge-pill {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--color-navy);
    background: #FFF9F0;
    border: 1px solid rgba(253, 157, 36, 0.25);
    border-radius: 50px;
    padding: 5px 12px;
}

/* Future roadmap */
.add-card-roadmap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.roadmap-step {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.step-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-purple);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.step-text {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.35;
}

/* Site Footer */
.site-footer {
    background-color: var(--color-green-dark);
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

.site-footer p {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-copy {
    font-size: 13px;
    opacity: 0.6;
    color: #FFFFFF;
    margin-top: 20px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0px); }
}

@keyframes stripeMove {
    0% { background-position: 0 0; }
    100% { background-position: 80px 80px; }
}

/* Scroll Reveal animation system */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Reporting & Document Portal */
.reporting-portal {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.portal-sidebar {
    background: #F8F9FA;
    padding: 35px 25px;
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.portal-sidebar-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.portal-sidebar-tag {
    font-size: 9px;
    font-weight: 800;
    color: var(--color-green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portal-sidebar-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--color-navy);
    margin: 0;
    line-height: 1.2;
}

.portal-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.portal-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: none;
    background: transparent;
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 800;
    text-align: left;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
}

.portal-menu-item:hover {
    background: rgba(0, 73, 57, 0.04);
    color: var(--color-green);
}

.portal-menu-item.active {
    background: var(--color-navy);
    color: #FFFFFF;
}

.portal-sidebar-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.stat-mini-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-mini-val {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--color-green);
    line-height: 1.1;
}

.stat-mini-lbl {
    font-size: 9px;
    font-weight: 800;
    color: var(--color-gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portal-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-height: 550px;
}

.portal-tab-panel {
    display: none;
    flex-direction: column;
    gap: 25px;
}

.portal-tab-panel.active {
    display: flex;
    animation: fadeIn 0.4s ease forwards;
}

.portal-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
}

.portal-panel-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-navy);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.portal-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F8F9FA;
    border: 1px solid var(--color-border);
    padding: 10px 18px;
    border-radius: 50px;
    width: 320px;
    max-width: 100%;
    transition: all 0.25s ease;
}

.portal-search-bar:focus-within {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(7, 144, 107, 0.1);
    background: #FFFFFF;
}

#portal-search {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-navy);
}

.portal-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.portal-doc-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.portal-doc-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-green);
    box-shadow: 0 8px 24px rgba(7, 144, 107, 0.08);
}

.doc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.doc-badge {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 4px;
}

.doc-badge.badge-eco { background: rgba(76, 159, 56, 0.08); color: #4C9F38; }
.doc-badge.badge-ethics { background: rgba(0, 73, 57, 0.08); color: #004939; }
.doc-badge.badge-esg { background: rgba(253, 157, 36, 0.08); color: #FD9D24; }
.doc-badge.badge-platform { background: rgba(0, 104, 157, 0.08); color: #00689D; }

.doc-format {
    font-size: 9px;
    font-weight: 900;
    color: #E5243B;
    border: 1.5px solid #E5243B;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
}

.doc-card-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.4;
    margin: 0;
    min-height: 40px;
}

.doc-card-desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--color-gray-dark);
    margin: 0;
    flex-grow: 1;
}

.doc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--color-border);
    padding-top: 14px;
    margin-top: 6px;
}

.doc-size {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-gray-dark);
}

.doc-download-btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(7, 144, 107, 0.06);
    transition: all 0.2s ease;
}

.doc-download-btn:hover {
    background: var(--color-green);
    color: #FFFFFF;
}

.portal-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .header-nav {
        display: none;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .philosophy-grid,
    .tab-panel {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sdg-accordion {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }
    .sdg-item {
        height: auto;
        min-height: 200px;
        flex: none !important;
        padding: 24px 20px;
        justify-content: flex-start;
    }
    .sdg-badge {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 14px;
        flex-shrink: 0;
    }
    .sdg-accordion-title {
        font-size: 22px;
        line-height: 1.25;
    }
    .sdg-accordion-desc {
        opacity: 1 !important;
        max-height: none !important;
        margin-top: 8px;
    }

    /* Portal Mobile Overrides */
    .reporting-portal {
        grid-template-columns: 1fr;
    }
    .portal-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 24px;
        gap: 24px;
    }
    .portal-content {
        padding: 24px;
    }
    .portal-content-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .portal-search-bar {
        width: 100%;
    }
}

/* Planet Section (Slide 07) - Double Marquee Slider */
.planet-intro-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.planet-main-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--color-navy);
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.planet-main-desc {
    font-size: 16px;
    color: var(--color-gray-dark);
    line-height: 1.65;
}

.planet-marquee-gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.row-left {
    animation: scrollLeft 38s linear infinite;
}

.row-right {
    animation: scrollRight 38s linear infinite;
}


.marquee-slide {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 4px solid #FFFFFF;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    background-color: var(--color-bg-secondary);
}

.marquee-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.marquee-slide:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 16px 36px rgba(7, 144, 107, 0.25);
    border-color: var(--color-green);
    z-index: 10;
}

.marquee-slide:hover img {
    transform: scale(1.06);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

@keyframes scrollRight {
    0% { transform: translateX(calc(-50% - 15px)); }
    100% { transform: translateX(0); }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(5, 15, 43, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    border: 6px solid #FFFFFF;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    margin-top: 20px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    font-family: var(--font-primary);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 350;
    cursor: pointer;
    transition: 0.2s;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--color-green);
}

@keyframes zoomIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive Connections Map Design */
.connections-map-section {
    margin-top: 40px;
}

.connections-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.connections-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.connect-node {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    user-select: none;
}

/* Base hover states */
.connect-node:hover,
.connect-node.active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* SDG specific themes when active */
.sdg-node[data-sdg="sdg-3"].active,
.init-node.active-sdg-3 {
    border-color: #EF4444 !important;
    background-color: rgba(239, 68, 68, 0.04) !important;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15) !important;
}

.sdg-node[data-sdg="sdg-11"].active,
.init-node.active-sdg-11 {
    border-color: #F59E0B !important;
    background-color: rgba(245, 158, 11, 0.04) !important;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15) !important;
}

.sdg-node[data-sdg="sdg-15"].active,
.init-node.active-sdg-15 {
    border-color: #10B981 !important;
    background-color: rgba(16, 185, 129, 0.04) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15) !important;
}

.sdg-node[data-sdg="sdg-16"].active,
.init-node.active-sdg-16 {
    border-color: #3B82F6 !important;
    background-color: rgba(59, 130, 246, 0.04) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15) !important;
}

/* Dimmed node style for non-matching ones */
.connections-map-wrapper.has-active .connect-node:not(.active) {
    opacity: 0.35;
    transform: scale(0.97);
}

@media (max-width: 768px) {
    .connections-map-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .planet-marquee-gallery {
        gap: 20px;
    }
    .marquee-slide {
        width: 200px;
        height: 150px;
        border-width: 3px;
    }
}

/* Map View Switcher Controls */
.map-view-switcher {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px auto 40px auto;
    max-width: 600px;
}

.switcher-btn {
    flex: 1;
    padding: 12px 20px;
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

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

.switcher-btn.active {
    background-color: var(--color-green);
    border-color: var(--color-green);
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(7, 144, 107, 0.25);
}

/* View Containers Hide/Show */
.map-view-container {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.map-view-container.active {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   OPTION 1: Dashboard 2x2 Layout CSS
   ========================================================================== */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 950px;
    margin: 0 auto;
}

.db-sdg-card {
    background-color: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.db-sdg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.db-sdg-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.db-sdg-badge {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
}

.db-sdg-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-navy);
}

.db-sdg-desc {
    font-size: 14px;
    color: var(--color-gray-dark);
    line-height: 1.6;
    flex-grow: 1;
}

.db-sdg-initiatives {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.db-tag {
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-secondary);
    color: var(--color-navy);
}

.db-tag:hover {
    transform: translateY(-2px) scale(1.03);
}

/* SDG Cards Color Themes */
.sdg-red-card:hover { border-color: #EF4444; box-shadow: 0 10px 30px rgba(239, 68, 68, 0.12); }
.sdg-orange-card:hover { border-color: #F59E0B; box-shadow: 0 10px 30px rgba(245, 158, 11, 0.12); }
.sdg-green-card:hover { border-color: #10B981; box-shadow: 0 10px 30px rgba(16, 185, 129, 0.12); }
.sdg-blue-card:hover { border-color: #3B82F6; box-shadow: 0 10px 30px rgba(59, 130, 246, 0.12); }

.tag-red:hover { border-color: #EF4444; color: #EF4444; background-color: rgba(239, 68, 68, 0.04); }
.tag-orange:hover { border-color: #F59E0B; color: #F59E0B; background-color: rgba(245, 158, 11, 0.04); }
.tag-green:hover { border-color: #10B981; color: #10B981; background-color: rgba(16, 185, 129, 0.04); }
.tag-blue:hover { border-color: #3B82F6; color: #3B82F6; background-color: rgba(59, 130, 246, 0.04); }


/* ==========================================================================
   OPTION 3: Split Switcher Layout CSS
   ========================================================================== */
.split-switcher-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.switcher-sdg-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.switch-sdg-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.switch-sdg-btn:hover {
    border-color: var(--color-green);
    transform: translateX(4px);
}

.switch-sdg-btn.active {
    background-color: #FFFFFF;
    transform: translateX(8px);
}

/* Switcher Button active highlights */
.switch-sdg-btn[data-target-sdg="sdg-3"].active { border-color: #EF4444; border-width: 2px; box-shadow: 0 6px 18px rgba(239, 68, 68, 0.12); }
.switch-sdg-btn[data-target-sdg="sdg-11"].active { border-color: #F59E0B; border-width: 2px; box-shadow: 0 6px 18px rgba(245, 158, 11, 0.12); }
.switch-sdg-btn[data-target-sdg="sdg-15"].active { border-color: #10B981; border-width: 2px; box-shadow: 0 6px 18px rgba(16, 185, 129, 0.12); }
.switch-sdg-btn[data-target-sdg="sdg-16"].active { border-color: #3B82F6; border-width: 2px; box-shadow: 0 6px 18px rgba(59, 130, 246, 0.12); }

.switch-sdg-badge {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
}

.switch-sdg-text-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.switch-sdg-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--color-navy);
}

.switch-sdg-count {
    font-size: 12px;
    color: var(--color-gray-dark);
    font-weight: 500;
}

.switcher-init-panel {
    background-color: var(--color-bg-secondary);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-theme-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--color-navy);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
}

.switcher-init-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.switcher-init-card {
    background-color: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeIn 0.4s ease forwards;
}

.switcher-init-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

/* Connected highlights in switcher card depending on which SDG parent is active */
.switcher-init-card.active-sdg-3 { border-left: 5px solid #EF4444; }
.switcher-init-card.active-sdg-11 { border-left: 5px solid #F59E0B; }
.switcher-init-card.active-sdg-15 { border-left: 5px solid #10B981; }
.switcher-init-card.active-sdg-16 { border-left: 5px solid #3B82F6; }


@media (max-width: 850px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .split-switcher-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-view-switcher {
        flex-direction: column;
        gap: 10px;
    }
}
