/* ============================================
   ORION HOLDINGS - Premium Investment Website
   Design System 2025 - Blue/White Luxury Theme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary Colors - Deep Navy to Light */
    --primary-900: #0a1628;
    --primary-800: #0f2342;
    --primary-700: #142e54;
    --primary-600: #1a3a66;
    --primary-500: #1e4d8c;
    --primary-400: #2563a8;
    --primary-300: #4a8bc4;
    --primary-200: #7eb3dc;
    --primary-100: #b8d4ed;
    --primary-50: #e8f2fa;
    
    /* Accent Colors - Gold/Champagne for Luxury */
    --accent-gold: #c9a962;
    --accent-gold-light: #e4d5a8;
    --accent-gold-dark: #9a7b3c;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Layout */
    --max-width: 1400px;
    --header-height: 90px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(10, 22, 40, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(10, 22, 40, 0.08), 0 2px 4px -1px rgba(10, 22, 40, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(10, 22, 40, 0.1), 0 4px 6px -2px rgba(10, 22, 40, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(10, 22, 40, 0.1), 0 10px 10px -5px rgba(10, 22, 40, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(10, 22, 40, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(10, 22, 40, 0.06);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 600ms cubic-bezier(0.23, 1, 0.32, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-900);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h5 {
    font-size: 1.125rem;
    font-family: var(--font-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

p {
    margin-bottom: var(--space-md);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.overline {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow {
    max-width: 900px;
}

.container-wide {
    max-width: 1600px;
}

section {
    padding: var(--space-5xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
}

.section-header .overline {
    margin-bottom: var(--space-md);
    display: block;
}

.section-header h2 {
    margin-bottom: var(--space-lg);
}

/* ---------- Grid Systems ---------- */
.grid {
    display: grid;
    gap: var(--space-xl);
}

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

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

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

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

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ---------- Header & Navigation ---------- */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-900);
    letter-spacing: 0.05em;
}

.logo-text span {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-main a {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    letter-spacing: 0.02em;
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-gold));
    transition: width var(--transition-base);
}

.nav-main a:hover {
    color: var(--primary-600);
}

.nav-main a:hover::after,
.nav-main a.active::after {
    width: 100%;
}

.nav-main a.active {
    color: var(--primary-600);
}
.nav-main .close {
    display: none;
}

.nav-main.is-open {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    padding: var(--space-xl);
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-900);
    z-index: 100;
}

.nav-main.is-open a {
    color: white;
}

.nav-main.is-open .close {
    color: white;
    width: 32px;
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.nav-main.is-open .arrow-down {
    display: none;
}
/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-dropdown-trigger svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.nav-dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.nav-dropdown-menu a:hover {
    background: var(--gray-50);
}

.nav-dropdown-menu a::after {
    display: none;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-800);
    transition: all var(--transition-fast);
}

@media (max-width: 1024px) {
    .nav-main {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(20, 46, 84, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-800), var(--primary-700));
    box-shadow: 0 6px 20px rgba(20, 46, 84, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-700);
    border: 2px solid var(--primary-200);
}

.btn-secondary:hover {
    border-color: var(--primary-500);
    background: var(--primary-50);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 6px 20px rgba(201, 169, 98, 0.4);
    transform: translateY(-2px);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
}

.btn-sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.75rem;
}

.btn-icon {
    padding: var(--space-md);
    border-radius: 50%;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-700) 50%, var(--primary-600) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(37, 99, 168, 0.2) 0%, transparent 40%);
}

.hero-bg-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
}

.hero-image-placeholder {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--gray-300);
    opacity: 0.1;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: var(--white);
    padding: var(--space-4xl) 0;
}

.hero .overline {
    margin-bottom: var(--space-lg);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero .overline::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.hero .lead {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-top: var(--space-4xl);
    padding-top: var(--space-3xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.hero-stat-value span {
    color: var(--accent-gold);
}

.hero-stat-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    opacity: 0.1;
}

.hero-decoration-circle {
    position: absolute;
    border: 1px solid var(--white);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-decoration-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.hero-decoration-circle:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-delay: 0.5s;
}

.hero-decoration-circle:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* ---------- Image Placeholders ---------- */
.image-placeholder {
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 45%, var(--gray-300) 45%, var(--gray-300) 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, var(--gray-300) 45%, var(--gray-300) 55%, transparent 55%);
    background-size: 20px 20px;
    opacity: 0.5;
}

.image-placeholder-text {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
}

/* ---------- Cards ---------- */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-elegant);
    position: relative;
}

.card-elevated {
    box-shadow: var(--shadow-lg);
}

.card-elevated:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-8px);
}

.card-bordered {
    border: 1px solid var(--gray-200);
}

.card-bordered:hover {
    border-color: var(--primary-300);
}

.card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-image .image-placeholder {
    width: 100%;
    height: 100%;
}

.card-content {
    padding: var(--space-xl);
}

.card-overline {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: var(--space-sm);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.card-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-top: var(--space-lg);
    transition: all var(--transition-fast);
}

.card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

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

.card-link:hover svg {
    transform: translateX(4px);
}

/* Service Cards */
.service-card {
    padding: var(--space-2xl);
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    transition: all var(--transition-elegant);
}

.service-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-600);
}

.service-card h4 {
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Feature Cards */
.feature-card {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-elegant);
}

.feature-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg);
}

.feature-card-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.feature-card-content h4 {
    margin-bottom: var(--space-sm);
}

.feature-card-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.renewable {
    background: linear-gradient(135deg, var(--primary-800), var(--primary-600)); 
    border-radius: 24px; 
    padding: 4rem; 
    position: relative; 
    overflow: hidden;
}
.climate {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center;
}

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

/* ---------- About Section ---------- */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .image-placeholder {
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

.about-content .overline {
    margin-bottom: var(--space-md);
    display: block;
}

.about-content h2 {
    margin-bottom: var(--space-lg);
}

.about-content .lead {
    margin-bottom: var(--space-xl);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}
.investments-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr;
    gap: 1rem; 
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.about-feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.about-feature h5 {
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
}

.about-feature p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .about-grid {
        display: block;
        gap: var(--space-2xl);
    }
    .about-features {
        display: flex;
        flex-direction: column;
    }
    .investments-grid {
        display: flex; 
        flex-direction: column;
    }

	.hero-stats {
		flex-direction: column;
        gap: var(--space-2xl);
	}
}

/* ---------- Values/Pillars Section ---------- */
.values-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.value-card {
    position: relative;
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-elegant);
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-500), var(--accent-gold));
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.value-card:hover::before {
    opacity: 1;
}

.value-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-100);
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.value-card h4 {
    margin-bottom: var(--space-md);
}

.value-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ---------- Stats Section ---------- */
.stats-section {
    background: linear-gradient(135deg, var(--primary-900), var(--primary-700));
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(201, 169, 98, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--white), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

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

    .header-cta > a {
        display: none;
    }

    .renewable {
        padding: 2rem;
    }

    .climate {
        display: flex;
        flex-direction: column;
    }
    .goals {
        grid-template-columns:  repeat(2, 1fr);
    }
}

/* ---------- Team Section ---------- */
.team-card {
    text-align: center;
}

.team-card-image {
    position: relative;
    margin-bottom: var(--space-xl);
}

.team-card-image .image-placeholder {
    aspect-ratio: 1;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.team-card-image::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--primary-200);
    width: 216px;
    height: 216px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.team-card h4 {
    margin-bottom: var(--space-xs);
}

.team-card-role {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.team-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.team-card-social {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.team-card-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.team-card-social a:hover {
    background: var(--primary-600);
    color: var(--white);
}

/* ---------- Testimonials ---------- */
.testimonials-section {
    background: var(--gray-50);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-lg);
    left: var(--space-xl);
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: var(--primary-100);
    opacity: 0.5;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-author-image .image-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.testimonial-author-info h5 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.testimonial-author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 98, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

.cta-content .overline {
    margin-bottom: var(--space-md);
    display: block;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* ---------- Contact Section ---------- */
.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-4xl);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-800), var(--primary-700));
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
}

.contact-details {
    margin-bottom: var(--space-2xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.contact-item-content h5 {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-xs);
}

.contact-item-content p {
    margin-bottom: 0;
    color: var(--white);
    font-size: 1rem;
}

.contact-social {
    display: flex;
    gap: var(--space-md);
}

.contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.contact-social a:hover {
    background: var(--accent-gold);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    margin-bottom: var(--space-2xl);
}

.form-group {
    margin-bottom: var(--space-xl);
}

.form-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--gray-800);
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(30, 77, 140, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ---------- Footer ---------- */
.footer {
    background: var(--primary-900);
    color: var(--white);
    padding-top: var(--space-5xl);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-4xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--primary-500), var(--accent-gold));
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-text span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-gold);
}

.footer-column h5 {
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: var(--space-xl);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: var(--space-sm);
}

.footer-bottom {
    padding: var(--space-xl) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

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

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ---------- Page Headers ---------- */
.page-header {
    background: linear-gradient(135deg, var(--primary-900), var(--primary-700));
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(201, 169, 98, 0.1) 0%, transparent 40%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-header .overline {
    margin-bottom: var(--space-md);
    display: block;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.page-header .lead {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    font-family: var(--font-accent);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
    color: var(--accent-gold);
}

/* ---------- Investment Categories ---------- */
.investment-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-elegant);
}

.investment-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-8px);
}

.investment-card-image {
    aspect-ratio: 16/9;
    position: relative;
}

.investment-card-image .image-placeholder {
    width: 100%;
    height: 100%;
}

.investment-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.8) 100%);
}

.investment-card-content {
    padding: var(--space-xl);
}

.investment-card-content .overline {
    margin-bottom: var(--space-sm);
    display: block;
}

.investment-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.investment-card-content p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

/* ---------- Process/Timeline ---------- */
.process-section {
    background: var(--gray-50);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-300), var(--accent-gold));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: var(--space-3xl);
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-500);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.timeline-content {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 350px;
}

.timeline-content h4 {
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
        justify-content: flex-start;
    }
    
    .timeline-dot {
        left: 20px;
    }
}

/* ---------- Partners/Logos ---------- */
.partners-section {
    background: var(--gray-50);
    padding: var(--space-3xl) 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

@media (max-width: 1440px) {
    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}
.partner-logo .image-placeholder {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-md);
}

/* ---------- FAQ Section ---------- */
.faq-section {
    background: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xl) 0;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-900);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-600);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-500);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--space-xl);
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* ---------- Utilities ---------- */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary-600);
}

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

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--gray-500);
}

.bg-white {
    background-color: var(--white);
}

.bg-gray {
    background-color: var(--gray-50);
}

.bg-primary {
    background-color: var(--primary-900);
}

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }
.mt-4xl { margin-top: var(--space-4xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }
.mb-4xl { margin-bottom: var(--space-4xl); }

.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Initial hidden state for animations */
[class*="animate-"] {
    opacity: 0;
}

/* ---------- Print Styles ---------- */
@media print {
    .header,
    .footer,
    .btn,
    .hero-decoration {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    img {
        max-width: 100% !important;
    }
}
