:root {
 
    --section-spacing: clamp(5rem, 10vw, 10rem);
    --card-spacing: clamp(1.5rem, 3vw, 3rem);
    --container-max: 1440px;
    --grid-gap: 2rem;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
 
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    
   
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    
 
    --color-light-bg: #F8FCFB;
    --color-energy-green: #00D4AA;
    --color-tech-blue: #2D81FF;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #666666;
    --color-text-muted: #999999;
    --color-border-light: #E5E5E5;
    --color-border-medium: #CCCCCC;
}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 3rem);
}

.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--color-light-bg) 0%,
        #F0F9FF 30%,
        #E8F5F0 70%,
        var(--color-light-bg) 100%);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 5vw, 8rem);
    transform: translateY(30px);
    transition: all 1s var(--transition-smooth);
}

.carousel-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.carousel-content {
    flex: 0 0 50%;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-energy-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-line {
    width: 40px;
    height: 2px;
    background: var(--color-energy-green);
    transform-origin: left;
    animation: lineExtend 2s var(--transition-smooth) infinite;
}

@keyframes lineExtend {
    0%, 100% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
}

.carousel-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.8s var(--transition-smooth) forwards;
}

.title-word.highlight {
    color: var(--color-energy-green);
    position: relative;
}

.title-word.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--color-energy-green);
    opacity: 0.2;
    border-radius: 3px;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 500px;
    line-height: 1.6;
    margin-top: 2rem;
}

.carousel-visual {
    flex: 0 0 40%;
    position: relative;
    height: 60vh;
}

.visual-element {
    position: absolute;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.visual-element.floating-1 { width: 120px; height: 120px; top: 20%; right: 10%; animation: floatElement 20s ease-in-out infinite; }
.visual-element.floating-2 { width: 80px; height: 80px; top: 50%; right: 30%; animation: floatElement 15s ease-in-out infinite reverse; }
.visual-element.floating-3 { width: 60px; height: 60px; bottom: 20%; right: 20%; animation: floatElement 25s ease-in-out infinite; }
.visual-element.floating-4 { width: 100px; height: 100px; top: 30%; right: 15%; animation: floatElement 18s ease-in-out infinite; }
.visual-element.floating-5 { width: 70px; height: 70px; bottom: 30%; right: 40%; animation: floatElement 22s ease-in-out infinite reverse; }
.visual-element.floating-6 { width: 90px; height: 90px; top: 40%; right: 25%; animation: floatElement 24s ease-in-out infinite; }
.visual-element.floating-7 { width: 50px; height: 50px; bottom: 40%; right: 15%; animation: floatElement 16s ease-in-out infinite reverse; }
.visual-element.floating-8 { width: 110px; height: 110px; top: 20%; right: 35%; animation: floatElement 30s ease-in-out infinite; }

@keyframes floatElement {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(90deg); }
    50% { transform: translate(-15px, -20px) rotate(180deg); }
    75% { transform: translate(-30px, 10px) rotate(270deg); }
}


.carousel-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border-medium);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.indicator.active {
    background: var(--color-energy-green);
    transform: scale(1.2);
}

.indicator::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--color-energy-green);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s var(--transition-smooth);
}

.indicator:hover::after {
    opacity: 0.3;
    transform: scale(1);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--color-text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
}

.carousel-nav:hover {
    background: var(--color-energy-green);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.carousel-nav.prev { left: 2rem; }
.carousel-nav.next { right: 2rem; }

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 10;
    opacity: 0.7;
    animation: hintPulse 2s var(--transition-smooth) infinite;
}

.hint-line {
    width: 60px;
    height: 2px;
    background: var(--color-energy-green);
    position: relative;
    overflow: hidden;
}

.hint-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: white;
    animation: lineFlow 2s linear infinite;
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-5px); }
}

@keyframes lineFlow {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(80px); }
}


.office-overview {
    background: linear-gradient(180deg, 
        var(--color-light-bg) 0%,
        #FFFFFF 50%,
        var(--color-light-bg) 100%);
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 1.5rem;
    margin-top: 3rem;
}

.office-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-energy-green), var(--color-tech-blue));
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.office-card:hover::before {
    opacity: 1;
}

.office-card.large { grid-column: 1 / span 5; grid-row: 1 / span 2; }
.office-card.medium { grid-column: 6 / span 4; grid-row: 1 / span 1; }
.office-card.small { grid-column: 10 / span 3; grid-row: 1 / span 1; }
.office-card.small.offset-top { margin-top: -2rem; }
.office-card.wide { grid-column: 1 / span 8; grid-row: 3 / span 1; }
.office-card.tall { grid-column: 9 / span 4; grid-row: 2 / span 2; }

.office-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.office-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-energy-green);
    font-size: 1.5rem;
}

.office-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.office-content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.office-decoration {
    position: absolute;
    pointer-events: none;
}

.decoration-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-energy-green);
    animation: dotPulse 2s var(--transition-smooth) infinite;
}

.decoration-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-tech-blue), transparent);
    animation: lineScan 3s linear infinite;
}

.decoration-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-energy-green);
    border-radius: 50%;
    opacity: 0.2;
    animation: circleRotate 10s linear infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes lineScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes circleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.governance-vision {
    background: linear-gradient(135deg, 
        rgba(248, 252, 251, 0.8) 0%,
        rgba(240, 249, 255, 0.9) 50%,
        rgba(248, 252, 251, 0.8) 100%);
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.governance-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 129, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-energy-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 170, 0.2), 
        transparent);
    animation: glowMove 3s ease-in-out infinite;
}

@keyframes glowMove {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}


.governance-layers {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 4rem 0;
    position: relative;
}

.layer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
}

.layer:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, 
        var(--color-energy-green), 
        var(--color-tech-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.layer:hover::before {
    opacity: 1;
}

.layer-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.layer-indicator {
    position: relative;
    width: 48px;
    height: 48px;
}

.indicator-core {
    width: 12px;
    height: 12px;
    background: var(--color-energy-green);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.2);
}

.indicator-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 212, 170, 0.1);
    animation: pulse 2s ease-out infinite;
}

.layer-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    flex: 1;
}

.layer-badge {
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 170, 0.1);
    color: var(--color-energy-green);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.layer-strategic .strategic-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
}

.card-visual {
    position: relative;
}

.visual-chart {
    position: relative;
    width: 180px;
    height: 180px;
}

.chart-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        var(--color-energy-green) 0% 95%,
        rgba(0, 212, 170, 0.1) 95% 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-ring::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.05);
}

.chart-value {
    position: relative;
    z-index: 2;
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-energy-green);
}

.visual-sparkline {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 60px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-tech-blue) 10%, 
        var(--color-energy-green) 50%, 
        var(--color-tech-blue) 90%, 
        transparent 100%);
    opacity: 0.3;
    border-radius: 30px;
    filter: blur(10px);
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.card-content h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.metric {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.metric-value {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
}


.advisory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advisory-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.advisory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-energy-green), 
        var(--color-tech-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advisory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.advisory-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-energy-green);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.advisory-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.advisory-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-stats .stat {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 212, 170, 0.1);
    color: var(--color-energy-green);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}


.executive-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flow-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    align-items: center;
}

.flow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-energy-green);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flow-step.active::before {
    opacity: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-energy-green);
}

.step-content h5 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.step-metric {
    text-align: center;
    min-width: 80px;
}

.step-metric span {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.125rem;
}

.step-metric small {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-energy-green), 
        var(--color-tech-blue));
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stat-trend.positive {
    color: var(--color-energy-green);
}

.stat-trend svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
}

.stat-trend span {
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-content .stat-value {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-content .stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}


.governance-principles {
    margin: 6rem 0 4rem;
}

.principles-header {
    text-align: center;
    margin-bottom: 3rem;
}

.principles-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.principles-header p {
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.principle-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s var(--transition-smooth);
}

.principle-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.principle-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-element {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 170, 0.1), 
        rgba(45, 129, 255, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.element-inner {
    width: 40px;
    height: 40px;
    color: var(--color-energy-green);
}

.element-inner svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.principle-content h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.principle-content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.principle-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail {
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.detail-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-primary);
}


.governance-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(0, 212, 170, 0.05), 
        rgba(45, 129, 255, 0.05));
    border-radius: 24px;
    border: 1px solid rgba(0, 212, 170, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.governance-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-energy-green), 
        var(--color-tech-blue));
}

.cta-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--color-energy-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--color-energy-green);
}

.btn-magnetic {
    position: relative;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s var(--transition-smooth);
}

.btn-magnetic:hover .btn-shine {
    left: 100%;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
}



.team-module {
    background: linear-gradient(180deg, 
        var(--color-light-bg) 0%,
        #FFFFFF 100%);
}

.team-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--color-energy-green), 
        var(--color-tech-blue));
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
    z-index: -1;
}

.filter-btn:hover {
    color: var(--color-text-primary);
    border-color: var(--color-energy-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active {
    color: white;
    border-color: transparent;
}

.filter-btn.active::before {
    opacity: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: cardReveal 0.8s var(--transition-smooth) forwards;
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }
.team-card:nth-child(6) { animation-delay: 0.6s; }

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}


.team-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}


.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--color-tech-blue), 
        var(--color-energy-green));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 1rem;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-photo:not([src]) + .image-placeholder,
.team-photo[style*="display: none"] + .image-placeholder,
.team-photo[alt=""] + .image-placeholder {
    opacity: 1;
    z-index: 2;
}


.team-photo[src] + .image-placeholder {
    opacity: 0;
    z-index: -1;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.placeholder-initials {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    min-width: 80px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-name {
    font-size: 0.875rem;
    font-weight: 600;
    max-width: 80%;
    line-height: 1.3;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-energy-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.card-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: 0.875rem;
    color: var(--color-energy-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-bio-scroll {
    flex: 1;
    max-height: 180px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-energy-green) transparent;
}

.team-bio-scroll::-webkit-scrollbar {
    width: 4px;
}

.team-bio-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.team-bio-scroll::-webkit-scrollbar-thumb {
    background: var(--color-energy-green);
    border-radius: 2px;
}

.bio-content {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.bio-content p {
    margin-bottom: 1rem;
}

.bio-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-light);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.detail {
    display: flex;
    flex-direction: column;
}

.detail .label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.detail .value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-primary);
}





.principles-module {
    background: #FFFFFF;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.principle-card {
    height: 300px;
    perspective: 1000px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s var(--transition-smooth);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, 
        rgba(0, 212, 170, 0.05), 
        rgba(45, 129, 255, 0.05));
}

.principle-card.flipped .card-front {
    transform: rotateY(180deg);
}

.principle-card.flipped .card-back {
    transform: rotateY(0);
}

.principle-number {
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 212, 170, 0.1);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.principle-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-energy-green);
    font-size: 1.5rem;
}

.card-front h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.flip-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--color-energy-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-energy-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s var(--transition-smooth);
    align-self: flex-start;
}

.flip-btn:hover {
    background: var(--color-energy-green);
    color: white;
    transform: translateX(5px);
}

.principle-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.principle-content p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.principle-detail {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-energy-green);
}

.flip-back-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid var(--color-border-medium);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s var(--transition-smooth);
    align-self: flex-start;
}

.flip-back-btn:hover {
    border-color: var(--color-energy-green);
    color: var(--color-energy-green);
}



.stats-visualization {
    background: linear-gradient(135deg, 
        var(--color-light-bg) 0%,
        #F0F9FF 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    margin-top: 3rem;
}

.main-stats {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.secondary-stats {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-chart {
    grid-column: 1;
    grid-row: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.stat-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: all 0.3s var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-item.large {
    grid-column: 1;
    text-align: center;
}

.stat-value {
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-energy-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-unit {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

.stat-progress {
    height: 6px;
    background: var(--color-border-light);
    border-radius: 3px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--color-energy-green), 
        var(--color-tech-blue));
    border-radius: 3px;
    animation: progressFill 1.5s var(--transition-smooth) forwards;
}

@keyframes progressFill {
    from { width: 0; }
}

.stat-item.medium {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-map {
    position: relative;
    width: 120px;
    height: 120px;
    margin-top: 1rem;
}

.map-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-energy-green);
    animation: mapDotAppear 0.5s var(--transition-smooth) forwards;
    opacity: 0;
}

.map-dot:nth-child(1) { top: 20%; left: 30%; animation-delay: 0.1s; }
.map-dot:nth-child(2) { top: 40%; left: 60%; animation-delay: 0.2s; }
.map-dot:nth-child(3) { top: 70%; left: 40%; animation-delay: 0.3s; }
.map-dot:nth-child(4) { top: 50%; left: 20%; animation-delay: 0.4s; }
.map-dot:nth-child(5) { top: 80%; left: 70%; animation-delay: 0.5s; }

@keyframes mapDotAppear {
    to {
        opacity: 1;
        transform: scale(1.5);
    }
}

.stat-item.small {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-energy-green);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-content .stat-value {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.stat-content .stat-label {
    font-size: 0.875rem;
}


.chart-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 200px;
    padding: 1rem 0;
    position: relative;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, 
        var(--color-energy-green), 
        var(--color-tech-blue));
    border-radius: 4px 4px 0 0;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: chartBarReveal 0.8s var(--transition-smooth) forwards;
    min-height: 20px; 
}

.chart-bar::before {
    content: attr(data-year);
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    font-weight: 600;
    white-space: nowrap;
}

.chart-bar::after {
    content: attr(data-value) 'B';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-energy-green);
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
    white-space: nowrap;
}

.chart-bar:hover::after {
    opacity: 1;
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; height: 15%; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; height: 30%; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; height: 60%; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; height: 80%; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; height: 100%; }

@keyframes chartBarReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.team-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.team-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s var(--transition-smooth);
}

.team-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--color-text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s var(--transition-smooth);
}

.modal-close:hover {
    background: var(--color-energy-green);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem;
}




@media (max-width: 1200px) {
    .office-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .office-card.large { grid-column: 1 / span 3; }
    .office-card.medium { grid-column: 4 / span 3; }
    .office-card.small { grid-column: 1 / span 2; }
    .office-card.wide { grid-column: 1 / span 4; }
    .office-card.tall { grid-column: 5 / span 2; grid-row: 2 / span 2; }
    
    .layer-strategic .strategic-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advisory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .executive-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .carousel-content {
        flex: 0 0 100%;
        text-align: center;
        padding-right: 0;
    }
    
    .carousel-visual {
        display: none;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .main-stats {
        grid-column: 1;
        grid-row: 1;
    }
    
    .secondary-stats {
        grid-column: 1;
        grid-row: 2;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .timeline-chart {
        grid-column: 1;
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-item {
        padding: 0 2rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-nav.prev { left: 1rem; }
    .carousel-nav.next { right: 1rem; }
    
    .office-grid {
        grid-template-columns: 1fr;
    }
    
    .office-card {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    .office-card.small.offset-top {
        margin-top: 0;
    }
    
    
    .layer {
        padding: 1.5rem;
    }
    
    .layer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .advisory-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        gap: 1rem;
    }
    
    .flow-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .step-metric {
        justify-self: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team-card {
        height: auto;
    }
    
    .card-image {
        height: 550px;
    }
    
    .placeholder-initials {
        font-size: 2rem;
        min-width: 70px;
        min-height: 70px;
    }
    
    .card-info {
        padding: 1.5rem;
    }
    
    .team-name {
        font-size: 1.25rem;
    }
    
    .team-title {
        font-size: 0.75rem;
    }
    
    .bio-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .principle-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .principle-visual {
        justify-content: flex-start;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .carousel-item {
        padding: 0 1rem;
    }
    
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-description {
        font-size: 1rem;
    }
    
    .secondary-stats {
        flex-direction: column;
    }
    
    .main-stats {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        height: 150px;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
    }
    
    .card-image {
        height: 520px;
    }
    
    .placeholder-initials {
        font-size: 1.75rem;
        min-width: 60px;
        min-height: 60px;
    }
    
    .placeholder-name {
        font-size: 0.75rem;
    }
    
    .principle-details {
        grid-template-columns: 1fr;
    }
    
    .governance-cta {
        padding: 2rem 1.5rem;
    }
}


@media (hover: none) and (pointer: coarse) {

    .carousel-nav,
    .back-to-top,
    .filter-btn,
    .flip-btn,
    .flip-back-btn,

    
    .team-card:hover {
        transform: none;
    }
    
    .office-card:hover {
        transform: none;
    }
    
    .layer:hover {
        transform: none;
    }
    
    .principle-item:hover {
        transform: none;
    }
    
    .advisory-card:hover {
        transform: none;
    }
}


@media (prefers-reduced-motion: reduce) {
    .team-card,
    .team-photo,
    .filter-btn,
    .badge-glow,
    .indicator-pulse,
   
    .flow-step,
    .layer,
    .principle-item {
        animation: none;
        transition: none;
    }
    
    .team-card:hover {
        transform: none;
        box-shadow: none;
    }
}


