/* ========================================
   Schlanders ECoSR 2026 - Alture Style
   Dark Theme with Blue Accents
   ======================================== */

:root {
    --blue: #00A0E3;
    --blue-dark: #0080B8;
    --blue-light: #33B5EA;
    --blue-glow: rgba(0, 160, 227, 0.25);
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #737373;
    --gray-500: #525252;
    --gray-600: #404040;
    --gray-700: #262626;
    --gray-800: #171717;
    --gray-900: #0a0a0a;
    --gray-950: #000000;
    --black: #000000;
    --font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Light theme base */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-light: rgba(0, 0, 0, 0.08);
    --border-medium: rgba(0, 0, 0, 0.12);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout */
.page-wrapper {
    overflow: hidden;
}

.padding-global {
    padding-left: 5%;
    padding-right: 5%;
}

.container-large {
    max-width: 1400px;
    margin: 0 auto;
}

/* ========================================
   Navbar
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar_logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-wappen {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.navbar.is-scrolled .logo-text {
    opacity: 1;
    transform: translateX(0);
}

.logo-divider {
    color: var(--gray-400);
    margin: 0 0.15rem;
}

.logo-mark {
    color: var(--blue);
    font-weight: 600;
}

.navbar_menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.navbar_link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.navbar_link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}

.navbar_link:hover {
    color: var(--blue);
}

.navbar_link:hover::after {
    width: 100%;
}

.navbar_toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
}

.navbar_toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.navbar_toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar_toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.navbar_toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   Hero Section
   ======================================== */

.section_hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

/* Minimal Hero Layout */
.section_hero.is-minimal {
    min-height: 70vh;
    justify-content: center;
}

.hero_background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero_gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 160, 227, 0.06) 0%, transparent 70%);
}

.hero_stripes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero_stripes svg {
    width: 100%;
    height: 100%;
}

.hero_content.is-centered {
    text-align: center;
    max-width: 100%;
    padding: 2rem 0;
}

/* Marquee */
.hero_marquee {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 1rem 0;
}

.marquee_track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 80s linear infinite;
}

.marquee_item {
    font-size: clamp(5rem, 15vw, 14rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    white-space: nowrap;
    padding: 0 2rem;
}

.marquee_divider {
    color: var(--gray-400);
    margin: 0 0.5rem;
}

.marquee_separator {
    color: var(--gray-300);
    margin: 0 1.5rem;
    font-weight: 300;
}

.marquee_accent {
    background: linear-gradient(135deg, var(--blue) 0%, #0077b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero_subline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* ========================================
   Video Section
   ======================================== */

.section_video {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.fullwidth_video {
    width: 100%;
    height: auto;
    display: block;
}

.section_feature_image {
    width: 100%;
    overflow: hidden;
}

.feature_image {
    width: 100%;
    height: clamp(360px, 55vh, 720px);
    object-fit: cover;
    display: block;
}

.section_seven_minute {
    padding: 6rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section_subheading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.seven_minute_actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action_row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border-left: 4px solid var(--blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action_row:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(0, 158, 227, 0.1);
}

.action_number {
    flex-shrink: 0;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue) 0%, #0077b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 56px;
}

.action_content {
    flex: 1;
    padding-top: 0.25rem;
}

.action_label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.action_text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.seven_minute_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.seven_minute_illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.city_map {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* 7-minute city animations */
.radius_pulse {
    animation: radiusPulse 3s ease-in-out infinite;
    transform-origin: center;
}

.radius_inner {
    animation: radiusRotate 60s linear infinite;
    transform-origin: center;
}

.path_line {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
}

.section_seven_minute .path_line {
    animation: pathDraw 1.5s ease forwards;
}

.path_line:nth-child(1) { animation-delay: 0.1s; }
.path_line:nth-child(2) { animation-delay: 0.2s; }
.path_line:nth-child(3) { animation-delay: 0.3s; }
.path_line:nth-child(4) { animation-delay: 0.4s; }
.path_line:nth-child(5) { animation-delay: 0.5s; }
.path_line:nth-child(6) { animation-delay: 0.6s; }

.amenity {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
}

.section_seven_minute .amenity {
    animation: amenityPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.amenity_1 { animation-delay: 0.3s; }
.amenity_2 { animation-delay: 0.4s; }
.amenity_3 { animation-delay: 0.5s; }
.amenity_4 { animation-delay: 0.6s; }
.amenity_5 { animation-delay: 0.7s; }
.amenity_6 { animation-delay: 0.8s; }

.landmark_center {
    animation: landmarkFloat 3s ease-in-out infinite;
    transform-origin: center bottom;
}

.walker {
    animation: walkerMove 8s ease-in-out infinite;
}

.time_label {
    animation: labelPulse 2s ease-in-out infinite;
}

@keyframes radiusPulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.02); }
}

@keyframes radiusRotate {
    to { transform: rotate(360deg); }
}

@keyframes pathDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes amenityPop {
    to { opacity: 1; transform: scale(1); }
}

@keyframes landmarkFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes walkerMove {
    0%, 100% { transform: translate(0, 0); }
    12.5% { transform: translate(0, -120px); }
    25% { transform: translate(0, 0); }
    37.5% { transform: translate(120px, -60px); }
    50% { transform: translate(0, 0); }
    62.5% { transform: translate(120px, 60px); }
    75% { transform: translate(0, 0); }
    87.5% { transform: translate(-120px, 60px); }
}

@keyframes labelPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 900px) {
    .seven_minute_grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .city_map {
        max-width: 320px;
    }
}

/* ========================================
   Image Rows Section
   ======================================== */

.section_images {
    width: 100%;
    overflow: hidden;
}

.images_row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.section_images.is-three .images_row {
    grid-template-columns: repeat(3, 1fr);
}

.image_item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.image_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image_item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .images_row {
        grid-template-columns: 1fr;
    }
    
    .section_images.is-three .images_row {
        grid-template-columns: 1fr;
    }
    
    .image_item {
        aspect-ratio: 16 / 9;
    }
}

.hero_content {
    max-width: 900px;
    padding: 4rem 0;
}

.hero_label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    background: rgba(0, 160, 227, 0.1);
    border: 1px solid rgba(0, 160, 227, 0.3);
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.label_dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--blue-glow);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero_label span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero_heading {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.text-gradient {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 50%, var(--blue) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero_location {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero_text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero_scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll_line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 60px; }
    50% { opacity: 0.5; height: 40px; }
}

/* ========================================
   Buttons
   ======================================== */

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.button.is-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 0 30px var(--blue-glow), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.button.is-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--blue-glow), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.button.is-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.button.is-secondary:hover {
    border-color: var(--blue);
    background: rgba(0, 160, 227, 0.1);
}

.button.is-white {
    background: var(--white);
    color: var(--gray-950);
}

.button.is-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.button_icon {
    display: flex;
    transition: transform 0.3s ease;
}

.button:hover .button_icon {
    transform: translate(3px, -3px);
}

/* ========================================
   Intro Section
   ======================================== */

.section_intro {
    padding: 8rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.intro_stripes {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    color: var(--gray-200);
    pointer-events: none;
    opacity: 0.5;
}

.intro_stripes svg {
    width: 100%;
    height: 100%;
}

.intro_component {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: start;
}

.intro_label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.intro_label span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.intro_content {
    max-width: 800px;
}

.intro_text-large {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.intro_divider {
    width: 60px;
    height: 1px;
    background: var(--blue);
    margin-bottom: 2rem;
}

.intro_text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   Gallery Section
   ======================================== */

.section_gallery {
    padding: 0;
}

.gallery_grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 400px;
    gap: 4px;
}

.gallery_item {
    position: relative;
    overflow: hidden;
}

.gallery_item.is-large {
    grid-row: span 1;
}

.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery_item:hover img {
    transform: scale(1.05);
}

.gallery_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery_item:hover .gallery_overlay {
    opacity: 1;
}

.gallery_overlay span {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .gallery_grid {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 200px 200px;
    }
}

/* ========================================
   Stats Section
   ======================================== */

.section_stats {
    padding: 6rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat_item {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat_item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stat_number {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat_label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* ========================================
   Content Sections
   ======================================== */

.section_content {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.section_content.is-dark {
    background: var(--bg-secondary);
}

.section_header {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section_header.has-illustration {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    align-items: center;
    gap: 3rem;
}

.section_header_text {
    min-width: 0;
}

.section_header_illustration {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    opacity: 0.95;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.06));
}

/* Vertical Eco Visual */
.eco_visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 2rem 0;
}

.eco_node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.eco_node_glow {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 160, 227, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.eco_node_ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 160, 227, 0.2);
    opacity: 0;
}

.eco_node_circle {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid rgba(0, 160, 227, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 40px rgba(0, 160, 227, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 -4px 12px rgba(0, 160, 227, 0.08);
    color: var(--blue);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.eco_svg {
    width: 60px;
    height: 60px;
}

.eco_draw {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.eco_node_label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0;
    transform: translateY(10px);
}

.eco_pulse_dot {
    opacity: 0;
    transform-origin: center;
}

/* Connecting Lines */
.eco_line {
    width: 4px;
    height: 50px;
    color: rgba(0, 160, 227, 0.3);
    overflow: visible;
}

.eco_line svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.eco_line_path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}

.eco_line_dot {
    opacity: 0;
    transform-origin: center;
}

/* Hover Effects */
.eco_node:hover .eco_node_circle {
    transform: scale(1.08);
    box-shadow: 
        0 20px 60px rgba(0, 160, 227, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 -4px 12px rgba(0, 160, 227, 0.1);
    border-color: rgba(0, 160, 227, 0.5);
}

.eco_node:hover .eco_node_glow {
    opacity: 1;
}

/* Animations when visible */
.section_header.is-visible .eco_node {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section_header.is-visible .eco_node[data-index="1"] { transition-delay: 0s; }
.section_header.is-visible .eco_node[data-index="2"] { transition-delay: 0.3s; }
.section_header.is-visible .eco_node[data-index="3"] { transition-delay: 0.6s; }

.section_header.is-visible .eco_node_ring {
    opacity: 1;
    animation: ecoRingSpin 20s linear infinite;
}

.section_header.is-visible .eco_node[data-index="1"] .eco_node_ring { animation-delay: 0.2s; }
.section_header.is-visible .eco_node[data-index="2"] .eco_node_ring { animation-delay: 0.5s; animation-direction: reverse; }
.section_header.is-visible .eco_node[data-index="3"] .eco_node_ring { animation-delay: 0.8s; }

.section_header.is-visible .eco_draw {
    animation: ecoDraw 1.5s ease forwards;
}

.section_header.is-visible .eco_node[data-index="1"] .eco_draw { animation-delay: 0.3s; }
.section_header.is-visible .eco_node[data-index="2"] .eco_draw { animation-delay: 0.6s; }
.section_header.is-visible .eco_node[data-index="3"] .eco_draw { animation-delay: 0.9s; }

.section_header.is-visible .eco_node_label {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.section_header.is-visible .eco_node[data-index="1"] .eco_node_label { transition-delay: 0.5s; }
.section_header.is-visible .eco_node[data-index="2"] .eco_node_label { transition-delay: 0.8s; }
.section_header.is-visible .eco_node[data-index="3"] .eco_node_label { transition-delay: 1.1s; }

.section_header.is-visible .eco_pulse_dot {
    animation: ecoPulse 2s ease-in-out infinite;
}

.section_header.is-visible .eco_node[data-index="1"] .eco_pulse_dot { animation-delay: 1s; }
.section_header.is-visible .eco_node[data-index="2"] .eco_pulse_dot { animation-delay: 1.3s; }
.section_header.is-visible .eco_node[data-index="3"] .eco_pulse_dot { animation-delay: 1.6s; }
.section_header.is-visible .eco_pulse_dot--leaf:nth-of-type(2) { animation-delay: 1.8s; }

.section_header.is-visible .eco_line_path {
    animation: ecoLineDraw 0.6s ease forwards;
}

.section_header.is-visible .eco_line:nth-of-type(2) .eco_line_path { animation-delay: 0.2s; }
.section_header.is-visible .eco_line:nth-of-type(4) .eco_line_path { animation-delay: 0.5s; }

.section_header.is-visible .eco_line_dot {
    animation: ecoLineDotPulse 2s ease-in-out infinite;
}

.section_header.is-visible .eco_line:nth-of-type(2) .eco_line_dot { animation-delay: 0.4s; }
.section_header.is-visible .eco_line:nth-of-type(4) .eco_line_dot { animation-delay: 0.7s; }

/* Keyframes */
@keyframes ecoDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes ecoRingSpin {
    to { transform: rotate(360deg); }
}

@keyframes ecoPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.8); }
}

@keyframes ecoLineDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes ecoLineDotPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes ecoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Continuous float animation for nodes */
.section_header.is-visible .eco_node_circle {
    animation: ecoFloat 4s ease-in-out infinite;
}

.section_header.is-visible .eco_node[data-index="1"] .eco_node_circle { animation-delay: 0s; }
.section_header.is-visible .eco_node[data-index="2"] .eco_node_circle { animation-delay: 0.5s; }
.section_header.is-visible .eco_node[data-index="3"] .eco_node_circle { animation-delay: 1s; }

.section_header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section_header.is-center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .section_header.has-illustration {
        grid-template-columns: 1fr;
    }

    .section_header_illustration {
        margin-left: 0;
        max-width: 100%;
    }
    
    .eco_visual {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .eco_line {
        display: none;
    }
    
    .eco_node_circle {
        width: 90px;
        height: 90px;
    }
    
    .eco_svg {
        width: 45px;
        height: 45px;
    }
    
    .eco_node_ring {
        width: 110px;
        height: 110px;
    }
    
    .eco_node_glow {
        width: 120px;
        height: 120px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section_header.is-visible .eco_node,
    .section_header.is-visible .eco_node_circle,
    .section_header.is-visible .eco_node_ring,
    .section_header.is-visible .eco_draw,
    .section_header.is-visible .eco_pulse_dot,
    .section_header.is-visible .eco_line_path,
    .section_header.is-visible .eco_line_dot {
        animation: none;
    }
    
    .eco_node {
        opacity: 1;
        transform: none;
    }
    
    .eco_draw {
        stroke-dashoffset: 0;
    }
    
    .eco_node_label {
        opacity: 1;
        transform: none;
    }
}

.label_wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section_label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.section_heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.section_text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Content Blocks */
.content_block {
    margin-bottom: 4rem;
}

.content_header {
    margin-bottom: 1.5rem;
}

.content_title {
    font-size: 1.75rem;
    font-weight: 600;
}

.content_body {
    max-width: 700px;
}

.content_text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.content_subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.content_columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.feature_list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.feature_list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.feature_dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--blue);
    border-radius: 50%;
    margin-top: 8px;
    box-shadow: 0 0 10px var(--blue-glow);
}

/* Highlight Block */
.highlight_block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 160, 227, 0.06);
    border: 1px solid rgba(0, 160, 227, 0.15);
    border-radius: 16px;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight_block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight_icon {
    color: var(--blue);
    flex-shrink: 0;
}

.highlight_text {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.7;
}

/* ========================================
   Cards
   ======================================== */

.cards_grid {
    display: grid;
    gap: 2rem;
}

.cards_grid.is-two-col {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    border-color: rgba(0, 160, 227, 0.3);
    background: var(--bg-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 160, 227, 0.1), 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card_label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.card_title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card_text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.card_list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
}

.card_list li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
}

.card_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.card_footer {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
}

.card_footer span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ========================================
   Flagship Block
   ======================================== */

.flagship {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 24px;
    padding: 3.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.flagship.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.flagship::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.flagship_header {
    margin-bottom: 2.5rem;
    position: relative;
}

.flagship_label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.flagship_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.flagship_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

.flagship_item h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.flagship_item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.flagship_item ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.flagship_item li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.25rem;
    position: relative;
}

.flagship_item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

/* ========================================
   Programmes Grid
   ======================================== */

.programmes_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.programmes_grid.is-three-col {
    grid-template-columns: repeat(3, 1fr);
}

.programme {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.programme.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.programme:hover {
    border-color: rgba(0, 160, 227, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 160, 227, 0.1), 0 4px 20px rgba(0, 0, 0, 0.08);
}

.programme_header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.programme_label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.programme_title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.programme_budget {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue);
}

.programme_content {
    padding: 2rem;
}

.programme_section {
    margin-bottom: 1.5rem;
}

.programme_section:last-child {
    margin-bottom: 0;
}

.programme_section h4 {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.programme_section p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.programme_section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.programme_section li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
}

.programme_section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background: var(--blue);
    border-radius: 50%;
}

.programme.is-compact .programme_content {
    padding: 1.5rem;
}

.programme.is-compact .programme_content p {
    margin-bottom: 1rem;
}

.programme.is-compact .programme_content ul {
    gap: 0.375rem;
}

.programme_note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 160, 227, 0.1);
    border-radius: 10px;
    margin-top: 1rem;
}

.programme_note svg {
    color: var(--blue);
    flex-shrink: 0;
}

.programme_note span {
    font-size: 0.875rem;
    color: var(--blue);
    font-weight: 500;
}

/* ========================================
   Impact Section
   ======================================== */

.section_impact {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.pillars_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pillar {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pillar.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar:hover {
    border-color: rgba(0, 160, 227, 0.3);
    background: var(--bg-primary);
    box-shadow: 0 20px 40px rgba(0, 160, 227, 0.1);
}

.pillar_number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.pillar_title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pillar_text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.statement {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
}

.statement p {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.statement p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Press Section
   ======================================== */

.press_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.press_kit,
.press_statement {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.press_title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.press_list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 2rem;
}

.press_list li {
    font-size: 1rem;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
}

.press_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.press_statement blockquote {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    padding-left: 1.5rem;
    border-left: 3px solid var(--blue);
}

.contact_block {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 160, 227, 0.04);
    border: 1px solid rgba(0, 160, 227, 0.15);
    border-radius: 20px;
}

.contact_block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact_info p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.contact_info a {
    color: var(--blue);
    transition: color 0.3s ease;
}

.contact_info a:hover {
    color: var(--blue-light);
}

/* ========================================
   CTA Section
   ======================================== */

.section_cta {
    position: relative;
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    overflow: hidden;
}

.cta_background {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 80px 80px;
}

.cta_content {
    position: relative;
    text-align: center;
}

.cta_heading {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta_text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

/* ========================================
   Legal Sections (Impressum, Datenschutz)
   ======================================== */

.section_legal {
    padding: 6rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.section_legal.is-page {
    padding-top: 10rem;
    min-height: 100vh;
}

.section_legal + .section_legal {
    padding-top: 0;
    border-top: none;
}

.legal_back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--blue);
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.legal_back:hover {
    color: var(--blue-dark);
}

.legal_content {
    max-width: 800px;
}

.legal_heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.legal_block {
    margin-bottom: 2rem;
}

.legal_block:last-child {
    margin-bottom: 0;
}

.legal_block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.legal_block p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal_block p:last-child {
    margin-bottom: 0;
}

.legal_block a {
    color: var(--blue);
    transition: color 0.3s ease;
}

.legal_block a:hover {
    color: var(--blue-dark);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--gray-900);
    padding: 5rem 0 2rem;
}

.footer_top {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer_logo,
.footer_tagline,
.footer_group a,
.footer_bottom {
    color: rgba(255, 255, 255, 0.7);
}

.footer_stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    overflow: hidden;
    pointer-events: none;
}

.footer_stripes svg {
    width: 100%;
    height: 100%;
}

.footer_logo {
    color: #fff;
}

.footer_logo {
    font-size: 2rem;
    font-weight: 700;
}

.footer_divider-text {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.15rem;
}

.footer_mark {
    color: var(--blue);
    font-weight: 600;
}

.footer_tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.75rem;
    line-height: 1.6;
}

.footer_group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer_label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.footer_group a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer_group a:hover {
    color: var(--blue);
}

.footer_bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer_divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1200px) {
    .programmes_grid.is-three-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillars_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .navbar_menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }
    
    .navbar_menu.is-open {
        transform: translateX(0);
    }
    
    .navbar_toggle {
        display: flex;
        z-index: 100;
    }
    
    .navbar_link {
        font-size: 1.125rem;
    }
    
    .intro_component {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content_columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cards_grid.is-two-col {
        grid-template-columns: 1fr;
    }
    
    .flagship_grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .programmes_grid,
    .programmes_grid.is-three-col {
        grid-template-columns: 1fr;
    }
    
    .pillars_grid {
        grid-template-columns: 1fr;
    }
    
    .press_grid {
        grid-template-columns: 1fr;
    }
    
    .footer_top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .padding-global {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .hero_heading {
        font-size: 2.5rem;
    }
    
    .hero_buttons {
        flex-direction: column;
    }
    
    .button {
        width: 100%;
        justify-content: center;
    }
    
    .section_heading {
        font-size: 2rem;
    }
    
    .flagship {
        padding: 2rem;
    }
    
    .flagship_title {
        font-size: 1.75rem;
    }
    
    .stat_number {
        font-size: 2.5rem;
    }
    
    .statement p {
        font-size: 1.25rem;
    }
    
    .footer_bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .footer_divider {
        display: none;
    }
}
