/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --pink: #FF1694;
    --blue: #4169E1;
    --purple: #8B5CF6;
    --yellow: #F59E0B;
    --black: #0A0A0A;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-600: #737373;
    --gray-900: #171717;
    --bg: #FFFFFF;
    --text: #0A0A0A;
    --text-light: #737373;
    --surface: #F5F5F5;
    --border: #E5E5E5;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Space Grotesk', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

/* Dark mode */
body.dark-mode {
    --bg: #0A0A0A;
    --text: #FFFFFF;
    --text-light: #A3A3A3;
    --surface: #171717;
    --border: #262626;
}

/* Base */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Navigation */
.nav {
    position: fixed;
    top: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - var(--space-2xl));
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 12px var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    height: 60px;
    gap: var(--space-md);
}

body.dark-mode .nav-container {
    background: rgba(10, 10, 10, 0.95);
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo .logo-img {
    height: 32px;
    width: auto;
    display: block;
}

body.dark-mode .nav-logo .logo-img {
    filter: brightness(0) invert(1);
}

body.dark-mode .footer-logo {
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0;
    transition: color 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.3s var(--ease);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--surface);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--pink);
    color: var(--white);
    transform: rotate(180deg);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s var(--ease);
}

/* Hero */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--space-xl) + 80px) 0 var(--space-lg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--pink), transparent);
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--blue), transparent);
    bottom: 20%;
    left: -5%;
    animation-delay: 7s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--purple), transparent);
    top: 50%;
    left: 30%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    margin-bottom: var(--space-lg);
}

.hero-text h1 .line {
    display: block;
}

.gradient {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    max-width: 550px;
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.footer-brand .footer-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    margin-bottom: var(--space-md);
    display: block;
    object-fit: contain;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 22, 148, 0.3);
}

.btn-primary:hover {
    background: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 22, 148, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
}

.btn-outline:hover {
    background: var(--text);
    color: var(--bg);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Image Carousel */
.phone-mockup {
    position: relative;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.phone-screen {
    background: var(--white);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .phone-screen {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.phone-screen::before {
    content: '';
    display: block;
    padding-bottom: 62.5%;
    width: 100%;
}

.carousel-container {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.phone-screen .slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.phone-screen .slide.active {
    opacity: 1;
}

.phone-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-md);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.dot.active {
    background: var(--pink);
    width: 32px;
    border-radius: 4px;
}

/* Slide arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--black);
    backdrop-filter: blur(10px);
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slide-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

body.dark-mode .slide-arrow {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

body.dark-mode .slide-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slide-arrow svg {
    display: block;
    stroke-width: 2.5;
}

/* Sections */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--surface);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    color: var(--pink);
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.accent {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-alt {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Missions */
.missions {
    background: var(--surface);
}

.missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.mission-card {
    background: var(--bg);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    border: 1px solid var(--border);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--pink), var(--purple));
    transition: height 0.3s var(--ease);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mission-card:hover::before {
    height: 100%;
}

.card-number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--surface);
    line-height: 1;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.mission-card p {
    font-size: 1rem;
}

/* Poles */
.poles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    max-width: 1100px;
    margin: 0 auto;
}

.pole-card-wrapper {
    perspective: 1000px;
    height: 420px;
    padding-top: 20px;
}

.pole-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.pole-card:hover {
    transform: translateY(-4px);
}

.pole-card:hover.flipped {
    transform: rotateY(180deg) translateY(-4px);
}

.pole-card.flipped {
    transform: rotateY(180deg);
}

.pole-card-front,
.pole-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 24px;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: visible;
}

body.dark-mode .pole-card-front,
body.dark-mode .pole-card-back {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pole-card-front {
    background: var(--white);
}

.pole-card-front.pink {
    background: linear-gradient(135deg, #FFF0F0 0%, #FFE0E0 100%);
}

.pole-card-front.blue {
    background: linear-gradient(135deg, #F0FFF4 0%, #D1F5DC 100%);
}

.pole-card-front.purple {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFEFC7 100%);
}

.pole-card-front.yellow {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

body.dark-mode .pole-card-front.pink {
    background: linear-gradient(135deg, #7F1D1D 0%, #5F1515 100%);
}

body.dark-mode .pole-card-front.blue {
    background: linear-gradient(135deg, #166534 0%, #14532D 100%);
}

body.dark-mode .pole-card-front.purple {
    background: linear-gradient(135deg, #7C2D12 0%, #5A1E0B 100%);
}

body.dark-mode .pole-card-front.yellow {
    background: linear-gradient(135deg, #1E3A8A 0%, #172554 100%);
}

.pole-card-back {
    transform: rotateY(180deg);
    background: var(--white);
    position: relative;
    overflow: visible;
}

.pole-card-back.pink {
    background: linear-gradient(135deg, #FFF0F0 0%, #FFE0E0 100%);
    color: var(--text);
}

.pole-card-back.blue {
    background: linear-gradient(135deg, #F0FFF4 0%, #D1F5DC 100%);
    color: var(--text);
}

.pole-card-back.purple {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFEFC7 100%);
    color: var(--text);
}

.pole-card-back.yellow {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: var(--text);
}

body.dark-mode .pole-card-back.pink {
    background: linear-gradient(135deg, #7F1D1D 0%, #5F1515 100%);
    color: var(--white);
}

body.dark-mode .pole-card-back.blue {
    background: linear-gradient(135deg, #166534 0%, #14532D 100%);
    color: var(--white);
}

body.dark-mode .pole-card-back.purple {
    background: linear-gradient(135deg, #7C2D12 0%, #5A1E0B 100%);
    color: var(--white);
}

body.dark-mode .pole-card-back.yellow {
    background: linear-gradient(135deg, #1E3A8A 0%, #172554 100%);
    color: var(--white);
}

body.dark-mode .pole-card-front h3,
body.dark-mode .pole-card-front p {
    color: var(--white);
}

body.dark-mode .flip-hint {
    color: rgba(255, 255, 255, 0.7);
}

.pole-logo {
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 16px;
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.dark-mode .pole-logo {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.pole-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pole-card-front h3 {
    font-size: 1.875rem;
    margin-bottom: var(--space-md);
    font-weight: 800;
    color: var(--text);
}

.pole-card-back h3 {
    font-size: 1.375rem;
    margin-bottom: 0;
    font-weight: 800;
    color: var(--text);
    background: white;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 10;
}

body.dark-mode .pole-card-back h3 {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.pole-card-front p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    max-width: 90%;
}

/* Services carousel */
.services-carousel {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex: 1;
    margin-top: var(--space-lg);
}

.services-container {
    position: relative;
    width: 280px;
    height: 240px;
    overflow: hidden;
}

.service-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    background: transparent;
    border-radius: 16px;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--text);
    fill: none;
}

body.dark-mode .service-icon svg {
    stroke: white;
}

.service-item h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

body.dark-mode .service-item h4 {
    color: white;
}

.service-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
}

body.dark-mode .service-item p {
    color: rgba(255, 255, 255, 0.95);
}

.service-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-arrow:hover {
    background: rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

body.dark-mode .service-arrow {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

body.dark-mode .service-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

.service-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-md);
    background: rgba(0, 0, 0, 0.08);
    padding: 10px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode .service-dots {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

body.dark-mode .service-dot {
    background: rgba(255, 255, 255, 0.5);
}

.service-dot:hover {
    background: rgba(0, 0, 0, 0.5);
}

body.dark-mode .service-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.service-dot.active {
    background: var(--text);
    width: 24px;
    border-radius: 4px;
}

body.dark-mode .service-dot.active {
    background: white;
}

.flip-hint {
    font-size: 0.8125rem;
    opacity: 0.6;
    font-weight: 600;
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

/* Programs */
.programs {
    overflow: hidden;
    background: var(--surface);
}

.programs-marquee {
    overflow: hidden;
    margin-top: var(--space-2xl);
    position: relative;
}

.marquee-content {
    display: flex;
    gap: var(--space-2xl);
    animation: marquee 35s linear infinite;
    will-change: transform;
}

.marquee-content.paused {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { 
        transform: translate3d(calc(-220px * 0), 0, 0);
    }
    100% { 
        transform: translate3d(calc(-220px * 15), 0, 0);
    }
}

.program-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.program-item.expanded {
    width: 500px;
    height: auto;
    min-height: 280px;
    z-index: 100;
}

.program-card {
    width: 100%;
    height: 100%;
    background: var(--bg);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.program-item.expanded .program-card {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--pink);
    align-items: flex-start;
    justify-content: flex-start;
}

body.dark-mode .program-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .program-item.expanded .program-card {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.98);
}

body.dark-mode .program-card img {
    filter: grayscale(100%) opacity(0.8);
}

body.dark-mode .program-item:hover .program-card img,
body.dark-mode .program-item.expanded .program-card img {
    filter: grayscale(0%) opacity(1);
}

body.dark-mode .program-details h3 {
    color: #1a1a1a;
}

body.dark-mode .program-details p {
    color: #4a4a4a;
}

.program-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s var(--ease);
}

.program-item:hover .program-card img {
    filter: grayscale(0%) opacity(1);
}

.program-item.expanded .program-card img {
    max-height: 60px;
    margin-bottom: var(--space-md);
    filter: grayscale(0%) opacity(1);
}

.program-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.program-item.expanded .program-details {
    opacity: 1;
    max-height: 500px;
    margin-top: var(--space-md);
}

.program-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.program-details p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.program-details .program-extra {
    font-size: 0.875rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* Backdrop */
.program-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    backdrop-filter: blur(4px);
}

.program-backdrop.active {
    display: block;
}

/* Impact */
.impact {
    background: var(--black);
    color: var(--white);
    padding: var(--space-3xl) 0;
}

.impact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.impact-text {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.impact-text h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.impact-text p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.light {
    color: var(--white) !important;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.impact-stat {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s var(--ease);
}

.impact-stat:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.impact-num {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.impact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Partners */
.partners-section {
    overflow: hidden;
    background: var(--bg);
}

.partners-scroll {
    overflow: hidden;
    padding: var(--space-lg) 0;
    position: relative;
}

.partners-scroll:first-of-type {
    padding-top: var(--space-xl);
}

.partners-scroll:last-of-type {
    padding-bottom: var(--space-xl);
}

.partners-scroll::before,
.partners-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-scroll::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.partners-scroll::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

body.dark-mode .partners-scroll::before {
    background: linear-gradient(to right, #0a0a0a, transparent);
}

body.dark-mode .partners-scroll::after {
    background: linear-gradient(to left, #0a0a0a, transparent);
}

.partners-track {
    display: flex;
    gap: var(--space-2xl);
    width: fit-content;
}

.partners-track-left {
    animation: partnerScrollLeft 40s linear infinite;
}

.partners-track-right {
    animation: partnerScrollRight 40s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes partnerScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes partnerScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.partner-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    transition: all 0.3s var(--ease);
}

.partner-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.partner-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s var(--ease);
}

.partner-item:hover img {
    filter: grayscale(0%) opacity(1);
}

body.dark-mode .partner-item {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .partner-item:hover {
    background: rgba(255, 255, 255, 0.98);
}

body.dark-mode .partner-item img {
    filter: grayscale(100%) opacity(0.8);
}

body.dark-mode .partner-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Presence */
.presence-section {
    background: var(--surface);
}

.presence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.presence-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.presence-stat {
    padding: var(--space-lg);
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.presence-num {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.presence-label {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.presence-visual {
    position: relative;
    width: 100%;
}

.map-container {
    background: var(--white);
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 1rem;
    color: var(--text-light);
}

.info-item svg {
    color: var(--pink);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item span {
    line-height: 1.6;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.visual-item {
    aspect-ratio: 1;
    background: var(--surface);
    border-radius: var(--radius-lg);
    animation: pulse 2s ease-in-out infinite;
}

.visual-item:nth-child(1) {
    background: linear-gradient(135deg, var(--pink), transparent);
    animation-delay: 0s;
}

.visual-item:nth-child(2) {
    background: linear-gradient(135deg, var(--blue), transparent);
    animation-delay: 0.5s;
}

.visual-item:nth-child(3) {
    background: linear-gradient(135deg, var(--purple), transparent);
    animation-delay: 1s;
}

.visual-item:nth-child(4) {
    background: linear-gradient(135deg, var(--yellow), transparent);
    animation-delay: 1.5s;
}

/* Map embed */
.map-embed {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-embed iframe {
    display: block;
}

body.dark-mode .map-embed {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Footer */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-logo {
    height: 40px;
    width: auto;
    max-width: 160px;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-light);
    max-width: 400px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-end;
}

.footer-social h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 0;
}

body.dark-mode .footer {
    background: var(--bg);
    border-top-color: var(--border);
}

body.dark-mode .social-link {
    background: var(--surface);
    border-color: var(--border);
}

body.dark-mode .social-link:hover {
    background: var(--pink);
    border-color: var(--pink);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .phone-mockup {
        max-width: 600px;
    }
    
    .poles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .pole-card-wrapper {
        height: 380px;
        padding-top: 20px;
    }
    
    .pole-logo {
        width: 120px;
        height: 120px;
    }
    
    .pole-card-front h3,
    .pole-card-back h3 {
        font-size: 1.5rem;
    }
    
    .pole-card-back li {
        font-size: 0.8125rem;
    }
    
    .presence-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .map-embed {
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        margin-bottom: var(--space-lg);
    }
    
    .footer-social {
        align-items: flex-start;
    }
    
    .footer {
        padding: var(--space-xl) 0 var(--space-md);
    }
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 4rem;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .partners-section {
        overflow: hidden;
    }
    
    .partners-scroll {
        overflow: hidden;
    }
    
    .nav {
        top: var(--space-md);
        width: calc(100% - var(--space-lg));
    }
    
    .nav-container {
        padding: 12px var(--space-md);
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        gap: var(--space-sm);
    }
    
    .nav-logo {
        order: 0;
    }
    
    .theme-toggle {
        order: 2;
        justify-self: end;
    }
    
    .burger {
        display: flex;
        order: 3;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        gap: 0;
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
        margin: 0 var(--space-md);
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--border);
        z-index: 999;
        order: 4;
    }
    
    body.dark-mode .nav-menu {
        background: var(--surface);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        font-size: 1rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .slide-arrow {
        width: 40px;
        height: 40px;
    }
    
    .prev-arrow {
        left: 16px;
    }
    
    .next-arrow {
        right: 16px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    .slide-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
    
    .missions-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 var(--space-md);
        max-width: 100%;
    }
    
    .section {
        overflow-x: hidden;
    }
    
    .poles-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0;
        width: 100%;
    }
    
    .pole-card-wrapper {
        height: 360px;
        padding-top: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .pole-card {
        width: 100%;
        max-width: 100%;
    }
    
    .pole-card-front,
    .pole-card-back {
        width: 100%;
        box-sizing: border-box;
        padding: var(--space-lg);
    }
    
    .pole-logo {
        width: 100px;
        height: 100px;
        margin-bottom: var(--space-md);
    }
    
    .pole-card-front h3,
    .pole-card-back h3 {
        font-size: 1.375rem;
    }
    
    .pole-card-back h3 {
        font-size: 1.125rem;
        padding: 10px 20px;
        max-width: 90%;
        white-space: normal;
        text-align: center;
    }
    
    .pole-card-front p {
        font-size: 0.875rem;
    }
    
    .pole-card-back li {
        font-size: 0.75rem;
        margin-bottom: var(--space-sm);
    }
    
    .services-carousel {
        gap: var(--space-sm);
    }
    
    .services-container {
        width: 220px;
        height: 200px;
    }
    
    .service-item h4 {
        font-size: 1.125rem;
    }
    
    .service-item p {
        font-size: 0.8125rem;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .impact-num {
        font-size: 2rem;
    }
    
    .presence-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .presence-stat {
        padding: var(--space-md);
    }
    
    .presence-num {
        font-size: 2rem;
    }
    
    .presence-label {
        font-size: 0.875rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: var(--space-xl) 0 var(--space-md);
    }
    
    .footer-content {
        gap: var(--space-lg);
        margin-bottom: var(--space-md);
    }
    
    .footer-logo {
        height: 36px;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    /* Partner Cards Mobile */
    .partners-section {
        overflow: hidden;
    }
    
    .partners-scroll {
        padding: var(--space-md) 0;
    }
    
    .partner-item {
        width: 160px;
        height: 100px;
        padding: var(--space-md);
    }
    
    .partner-item img {
        max-height: 50px;
    }
    
    .partner-item:hover {
        transform: none;
    }
    
    /* Program Cards Mobile */
    .programs-marquee {
        overflow: hidden;
        margin-top: var(--space-xl);
        padding: var(--space-md) 0;
    }
    
    .marquee-content {
        display: flex;
        gap: var(--space-lg);
        animation: marquee 35s linear infinite;
    }
    
    .program-item {
        width: 160px;
        height: 100px;
        flex-shrink: 0;
        pointer-events: none;
        cursor: default;
    }
    
    .program-item:hover .program-card {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .program-item.expanded {
        pointer-events: none;
        width: 160px;
        height: 100px;
        position: relative;
        transform: none;
    }
    
    .program-backdrop {
        display: none !important;
    }
    
    .program-card {
        padding: var(--space-sm);
    }
    
    .program-card img {
        max-height: 50px;
    }
    
    .program-details {
        display: none !important;
    }
    
    .program-details h3 {
        font-size: 1.125rem;
    }
    
    .program-details p {
        font-size: 0.875rem;
    }
    
    .program-details .program-extra {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    /* Pole Cards - Extra Small Screens */
    .pole-card-wrapper {
        height: 340px;
        padding-top: 16px;
    }
    
    .pole-card-front,
    .pole-card-back {
        padding: var(--space-md);
        border-radius: 20px;
    }
    
    .pole-logo {
        width: 80px;
        height: 80px;
    }
    
    .pole-card-front h3 {
        font-size: 1.25rem;
    }
    
    .pole-card-back h3 {
        font-size: 1rem;
        padding: 8px 16px;
        top: -16px;
    }
    
    .pole-card-front p {
        font-size: 0.8125rem;
        max-width: 95%;
    }
    
    /* Service Carousel - Smaller */
    .services-container {
        width: 200px;
        height: 180px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: var(--space-sm);
    }
    
    .service-item h4 {
        font-size: 1rem;
    }
    
    .service-item p {
        font-size: 0.75rem;
    }
    
    .service-arrow {
        width: 32px;
        height: 32px;
    }
    
    .service-dots {
        padding: 8px 12px;
    }
    
    .service-dot {
        width: 6px;
        height: 6px;
    }
    
    .service-dot.active {
        width: 20px;
    }
    
    .flip-hint {
        font-size: 0.6875rem;
    }
    
    /* Impact Section */
    .impact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .map-embed {
        height: 300px;
    }
    
    .impact-num {
        font-size: 1.75rem;
    }
    
    .impact-label {
        font-size: 0.8125rem;
    }
    
    /* Phone Dots */
    .phone-dots {
        gap: 6px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    .slide-arrow {
        width: 36px;
        height: 36px;
    }
    
    .prev-arrow {
        left: 12px;
    }
    
    .next-arrow {
        right: 12px;
    }
    
    .slide-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    /* Partner Cards - Smaller */
    .partner-item {
        width: 150px;
        height: 90px;
        padding: var(--space-sm);
    }
    
    .partner-item img {
        max-height: 45px;
    }
    
    /* Program Cards */
    .programs-marquee {
        overflow: hidden;
    }
    
    .marquee-content {
        animation: marquee 35s linear infinite;
    }
    
    .program-item {
        width: 150px;
        height: 90px;
        flex-shrink: 0;
        pointer-events: none;
    }
    
    .program-item.expanded {
        width: 150px;
        height: 90px;
        position: relative;
        transform: none;
    }
    
    .program-card {
        padding: var(--space-sm);
    }
    
    .program-card img {
        max-height: 45px;
    }
    
    .program-details {
        display: none !important;
    }
    
    .program-details h3 {
        font-size: 1rem;
    }
    
    .program-details p {
        font-size: 0.8125rem;
    }
    
    .program-details .program-extra {
        font-size: 0.75rem;
    }
    
    /* Footer Small */
    .footer {
        padding: var(--space-lg) 0 var(--space-sm);
    }
    
    .footer-content {
        gap: var(--space-md);
        margin-bottom: var(--space-sm);
    }
    
    .footer-logo {
        height: 32px;
    }
    
    .footer-tagline {
        font-size: 0.8125rem;
    }
    
    .footer-social h4 {
        font-size: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    /* Pole Cards - Very Small Screens */
    .pole-card-wrapper {
        height: 320px;
    }
    
    .pole-logo {
        width: 70px;
        height: 70px;
    }
    
    .pole-card-front h3 {
        font-size: 1.125rem;
    }
    
    .pole-card-back h3 {
        font-size: 0.9375rem;
        padding: 8px 12px;
    }
    
    .pole-card-front p {
        font-size: 0.75rem;
    }
    
    .services-container {
        width: 180px;
        height: 160px;
    }
    
    .service-icon {
        width: 36px;
        height: 36px;
    }
    
    .service-item h4 {
        font-size: 0.9375rem;
    }
    
    .service-item p {
        font-size: 0.6875rem;
    }
    
    .service-arrow {
        width: 28px;
        height: 28px;
    }
    
    .flip-hint {
        font-size: 0.625rem;
    }
    
    /* Presence Stats - Very Small */
    .presence-stat {
        padding: var(--space-sm);
    }
    
    .presence-num {
        font-size: 1.75rem;
    }
    
    .presence-label {
        font-size: 0.8125rem;
    }
    
    /* Partner Cards - Very Small */
    .partner-item {
        width: 140px;
        height: 85px;
        padding: var(--space-xs);
    }
    
    .partner-item img {
        max-height: 40px;
    }
    
    /* Program Cards */
    .programs-marquee {
        overflow: hidden;
    }
    
    .marquee-content {
        animation: marquee 35s linear infinite;
    }
    
    .program-item {
        width: 140px;
        height: 85px;
        flex-shrink: 0;
        pointer-events: none;
    }
    
    .program-item.expanded {
        width: 140px;
        height: 85px;
        position: relative;
        transform: none;
    }
    
    .program-card {
        padding: var(--space-sm);
    }
    
    .program-card img {
        max-height: 40px;
    }
    
    .program-details {
        display: none !important;
    }
}
