/*
 * COE Space Technology — Design system
 * Institutional credibility, technology orientation, government-backed initiative.
 * Minimal, clean, strong typography; limited decoration; mobile-first; fast loading.
 *
 * TYPOGRAPHY
 * ----------
 * Headings (h1–h4, .section-title, .hero-title, .logo): Outfit (sans-serif).
 * Body & UI: Inter (sans-serif).
 *
 * Reasoning: Outfit gives headings a clear, modern, institutional tone without
 * looking corporate or playful. Inter keeps body text and UI highly readable
 * and neutral. Together they support strong hierarchy, “clean and modern
 * presentation,” and “minimal and uncluttered design” without feeling
 * experimental or start-up-like. Limited weights (e.g. 500–700) keep the
 * system restrained and fast-loading.
 */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #294189;
    --primary-dark: #294189;
    --secondary-color: #dd5239;
    --accent-color: #dd5239;
    --text-dark: #0f172a;
    --text-light: #475569;
    --bg-page: #f8fafc;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --border-color: rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.08);
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 12px;
    --transition: all 0.2s ease;
    --section-gap: 5rem;
    --container-narrow: 720px;
    /* Consistent spacing: heading ↔ text, header ↔ content, card ↔ card */
    --space-title-subtitle: 0.5rem;
    --space-header-content: 2rem;
    --space-card-gap: 1.5rem;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-page);
}

h1, h2, h3, h4, .section-title, .hero-title, .logo-text {
    font-family: 'Outfit', 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
    width: 100%;
}

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

/* Shared Icon Styles */
.icon {
    width: 26px;
    height: 26px;
    display: block;
}

.icon-badge {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    background: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(8px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0.85rem;
    margin-top: 0.55rem;
    margin-left: max(0px, env(safe-area-inset-left));
    margin-right: max(0px, env(safe-area-inset-right));
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.logo a {
    display: flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    color: var(--primary-color);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.logo-subtext {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
}

.brand-logo {
    width: auto;
    height: 94px;
    max-width: 300px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.4rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    color: white;
    background: var(--primary-color);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.nav-cta:focus-visible,
.nav-menu a:focus-visible,
.btn:focus-visible,
.hero-search-btn:focus-visible,
.mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-split {
    padding-bottom: 3rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-page) 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><path d="M 40 150 A 160 70 0 0 1 360 150" fill="none" stroke="rgba(41,65,137,0.06)" stroke-width="1"/><path d="M 80 80 A 120 90 0 0 0 320 220" fill="none" stroke="rgba(41,65,137,0.05)" stroke-width="1"/><g fill="none" stroke="rgba(41,65,137,0.22)" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"><path d="M 198 89 L 202 89 L 202 91 L 198 91 Z"/><path d="M 198 90 L 193 90"/><path d="M 202 90 L 207 90"/></g><g fill="none" stroke="rgba(41,65,137,0.18)" stroke-width="1" stroke-linecap="round" stroke-linejoin="round" transform="translate(260,185) rotate(-35)"><path d="M 0 -1.5 L 2 -1.5 L 2 1.5 L 0 1.5 Z"/><path d="M 0 0 L -4 0"/><path d="M 2 0 L 5 0"/></g></svg>');
    background-size: 100% auto;
    background-position: 50% 55%;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="rgba(41,65,137,0.04)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

.hero-orbit-satellite {
    position: absolute;
    right: 10%;
    bottom: 18%;
    top: auto;
    z-index: 0;
    pointer-events: none;
}

.hero-orbit-satellite img {
    display: block;
    width: auto;
    height: clamp(90px, 16vw, 160px);
    max-width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(15, 23, 42, 0.08));
    transform: rotate(8deg);
}

@media (max-width: 768px) {
    .hero-orbit-satellite {
        right: 2%;
        bottom: 12%;
    }
    .hero-orbit-satellite img {
        height: clamp(48px, 12vw, 72px);
        max-width: 100px;
        transform: rotate(5deg);
    }
}

@media (max-width: 480px) {
    .hero-orbit-satellite {
        right: 0;
        bottom: 10%;
    }
    .hero-orbit-satellite img {
        height: 44px;
        max-width: 80px;
    }
}

.hero-content {
    text-align: center;
    color: var(--text-dark);
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem 0 1.5rem;
}

.hero-split .hero-content {
    text-align: left;
    padding: 0;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    line-height: 1.8;
    color: var(--text-light);
}

.hero-subtitle + .hero-subtitle {
    margin-top: -1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-search {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.hero-search-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    background: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.hero-search-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 1rem;
}

.hero-search-input::placeholder {
    color: rgba(71, 85, 105, 0.85);
}

.hero-search-btn {
    border: none;
    cursor: pointer;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: white;
    background: var(--primary-color);
    transition: var(--transition);
}

.hero-search-btn:hover {
    background: var(--primary-dark);
}

.hero-trust {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.trust-item {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.trust-title {
    font-weight: 700;
    line-height: 1.2;
}

.trust-subtitle {
    opacity: 0.85;
    font-size: 0.95rem;
}

.hero-visual {
    display: grid;
    place-items: center;
}

.hero-visual-card {
    width: 100%;
    border-radius: var(--radius-xl);
    padding: 1.5rem 1.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
}

.hero-visual-header {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-visual-title {
    font-weight: 800;
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.hero-visual-subtitle {
    opacity: 0.85;
    font-size: 0.95rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    font-weight: 500;
    font-size: 0.8125rem;
    color: var(--secondary-color);
}

.hero-illustration {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 0.75rem;
    opacity: 1;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border-color: var(--border-color);
}

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

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.9;
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
    margin: 8px auto 0;
    opacity: 0.7;
}

/* Hero Carousel */
.hero-carousel-section .hero-carousel {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.hero-carousel-inner {
    position: relative;
    width: 100%;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    padding: 2rem 0 4rem;
}
.hero-slide.hero-slide-active {
    position: relative;
    opacity: 1;
    visibility: visible;
}
.hero-slide-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.hero-carousel-section .hero-title {
    margin-bottom: 1rem;
}
.hero-carousel-section .hero-subtitle {
    margin-bottom: 1.5rem;
}
.hero-carousel-section .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
}
.hero-carousel-prev,
.hero-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}
.hero-carousel-prev:hover,
.hero-carousel-next:hover {
    background: white;
    box-shadow: var(--shadow-md);
}
.hero-carousel-prev { left: 20px; }
.hero-carousel-next { right: 20px; }
.hero-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.2);
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot:hover,
.hero-dot.hero-dot-active {
    background: var(--primary-color);
}

/* Home: Overview, Focus summary, Institutional, Updates preview, Contact ref */
/* Alternate section backgrounds to break monotony */
.home-overview-section {
    background: var(--bg-white);
}
.home-focus-summary,
.home-updates-preview,
.home-contact-ref {
    background: transparent;
}
.home-institutional-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.home-overview-section .container,
.home-contact-ref .container {
    text-align: center;
}

.home-overview-lead {
    max-width: var(--container-narrow);
    margin: 0 auto;
    margin-top: var(--space-header-content);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.85;
    text-align: center;
}

.home-overview-section .section-title,
.home-contact-ref .section-title {
    margin-bottom: var(--space-title-subtitle);
}

.home-overview-section .btn,
.home-contact-ref .btn {
    margin-top: 0.5rem;
}
.home-focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-card-gap);
    margin-top: var(--space-header-content);
}
.home-focus-card {
    display: block;
    padding: 1.75rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.home-focus-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.home-focus-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    background: var(--bg-light);
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-color);
}
.home-focus-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.home-focus-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}
.home-institutional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-card-gap);
    margin-top: var(--space-header-content);
}
.home-institutional-card {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.home-institutional-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.home-institutional-logo {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.home-institutional-card .partner-logo {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.home-institutional-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
}
.home-institutional-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}
.home-updates-preview .section-title {
    margin-bottom: var(--space-title-subtitle);
}

.home-updates-preview .section-subtitle {
    margin-bottom: 0;
}

.home-updates-preview .home-updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: var(--space-header-content);
    margin-bottom: 1.5rem;
    gap: var(--space-card-gap);
}
.home-updates-preview .btn {
    margin-top: 0;
}
.home-contact-ref .section-subtitle a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.home-contact-ref .section-subtitle a:hover {
    text-decoration: underline;
}

/* Statistics Section (kept for any reuse) */
.stats-section {
    background: transparent;
    padding: 4rem 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-card-gap);
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Styles */
section {
    padding: var(--section-gap) 0;
    position: relative;
}

/* Subtle satellite-industry line art (orbits, satellite outline) */
.section-line-art {
    position: relative;
}

.section-line-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><circle cx="60" cy="60" r="45" fill="none" stroke="rgba(41,65,137,0.04)" stroke-width="0.8"/><circle cx="60" cy="60" r="28" fill="none" stroke="rgba(41,65,137,0.03)" stroke-width="0.6"/><path d="M60 15 L58 22 L62 22 Z" fill="none" stroke="rgba(41,65,137,0.05)" stroke-width="0.6"/><path d="M60 105 L58 98 L62 98 Z" fill="none" stroke="rgba(41,65,137,0.05)" stroke-width="0.6"/></svg>');
    background-size: 120px 120px;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
}

.section-line-art > * {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-header-content);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-title-subtitle);
    letter-spacing: -0.02em;
    line-height: 1.25;
    position: relative;
    display: block;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.5rem;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    border-radius: 0;
    background: var(--primary-color);
}

.section-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 0;
    line-height: 1.7;
    text-align: center;
}

/* About Section */
.about-section {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.about-section-deco {
    position: absolute;
    left: 0;
    bottom: 28%;
    z-index: 0;
    pointer-events: none;
}

.about-section-deco .about-antenna {
    display: block;
    width: auto;
    height: clamp(400px, 90vw, 500px);
    max-width: 1000px;
    object-fit: contain;
    object-position: left bottom;
    opacity: 0.14;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 2.5rem;
}
.about-block:last-child {
    margin-bottom: 0;
}
.about-block-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}
.about-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-block p:last-child {
    margin-bottom: 0;
}
.about-partners-list {
    display: grid;
    gap: 1rem;
}
.about-partner-item {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    color: var(--text-light);
    line-height: 1.7;
}
.about-vision-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.about-vision-cards .about-card-header h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-dark);
}

.about-intro {
    margin-bottom: 1.25rem;
}

.about-intro-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.7rem;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.about-lead {
    color: var(--text-dark);
    font-size: 1.08rem;
    line-height: 1.85;
    font-weight: 500;
    margin: 0;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.about-card-wide {
    grid-column: 1 / -1;
}

.about-card-header {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 0;
}

.about-card p {
    color: var(--text-light);
    margin-bottom: 0.9rem;
    line-height: 1.8;
    font-size: 1rem;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.about-setup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.setup-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.setup-title {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 1rem;
}

.setup-title h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 0;
}

.setup-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.9rem;
}

.setup-card p:last-child {
    margin-bottom: 0;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    margin: 0 auto 1rem;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    background: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.about-aside {
    display: grid;
    gap: 1.25rem;
}

.aside-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.aside-title {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 1rem;
}

.aside-title h3 {
    font-size: 1.15rem;
    margin: 0;
}

.aside-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.aside-list li {
    color: var(--text-light);
    line-height: 1.6;
}

.aside-quote {
    background: var(--bg-light);
    border-left: 3px solid var(--primary-color);
}

.quote-text {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.quote-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Impact / Focus Areas Section */
.impact-section {
    background: transparent;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-card-gap);
}

.impact-grid,
.programs-grid,
.partners-grid {
    align-items: stretch;
}

.impact-card,
.program-card,
.partner-card {
    height: 100%;
}

@media (min-width: 1100px) {
    .impact-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1100px) {
    .programs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.impact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.impact-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.impact-card.highlight {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.15);
}

.impact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    background: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.impact-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.impact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* KITS Section */
.kits-section {
    background: var(--bg-white);
}

.kits-content {
    max-width: 900px;
    margin: 0 auto;
}

.kits-text {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.kits-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.kits-text p:last-child {
    margin-bottom: 0;
}

/* Programs Section */
.programs-section {
    background: transparent;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-card-gap);
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.program-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    background: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    margin-bottom: 1.25rem;
}

.program-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.program-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.program-link:hover {
    color: var(--primary-dark);
}

/* Partners Section */
.partners-section {
    background: transparent;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-card-gap);
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.partner-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.partner-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose-section {
    background: transparent;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-card-gap);
}

.why-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.why-item:hover {
    border-left-color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* News Section */
.news-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-card-gap);
}

.news-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.news-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.news-date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.news-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.news-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.news-link:hover {
    color: var(--primary-dark);
}

/* Governance Section */
.governance-section {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.governance-intro {
    max-width: 720px;
    margin: 0 auto var(--space-header-content);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-light);
    text-align: center;
}

.governance-subsections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-card-gap);
    align-items: stretch;
}

.governance-subsection {
    min-width: 0;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.governance-subsection:hover {
    border-color: rgba(30, 64, 175, 0.2);
    box-shadow: var(--shadow-sm);
}

.governance-subsection-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.governance-subsection-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex: 1;
    min-height: 0;
}

.governance-advisors {
    margin-top: 2rem;
}

.governance-board {
    margin-top: 2rem;
}

.governance-board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-card-gap);
    align-items: stretch;
}

.governance-advisors-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.governance-advisors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-card-gap);
    align-items: stretch;
}

.advisor-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.governance-advisors-grid .advisor-card {
    flex: 1 1 calc((100% - (2 * var(--space-card-gap))) / 3);
    max-width: calc((100% - (2 * var(--space-card-gap))) / 3);
}

.advisor-photo {
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
    border: 2px solid rgba(41, 65, 137, 0.18);
    margin-bottom: 0.85rem;
}

.advisor-name {
    font-size: 1.02rem;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.advisor-role {
    font-size: 0.84rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.advisor-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-light);
}

.governance-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-card-gap);
}

.governance-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    height: 100%;
    min-height: 140px;
    display: flex;
    flex-direction: column;
}
.governance-card:hover,
.governance-card:focus {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    outline: none;
}
.governance-card.expanded .governance-card-bio,
.governance-card:focus .governance-card-bio {
    max-height: 200px;
    opacity: 1;
}
.governance-card-name {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}
.governance-card-designation {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.governance-card-toggle {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}
.governance-card-front {
    flex: 1;
    min-height: 0;
}

.governance-card-bio {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0;
}

.governance-card-bio p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0.75rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

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

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

    .governance-advisors-grid .advisor-card {
        flex-basis: calc((100% - var(--space-card-gap)) / 2);
        max-width: calc((100% - var(--space-card-gap)) / 2);
    }
}

@media (max-width: 600px) {
    .governance-subsections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .governance-board-grid {
        grid-template-columns: 1fr;
    }

    .governance-advisors-grid .advisor-card {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-content {
    position: relative;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-contact-form {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.12);
}

.footer-contact-form .btn {
    margin-top: 0.25rem;
    width: 100%;
}

.footer-contact-form .form-message {
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.footer-contact-form input.error,
.footer-contact-form textarea.error {
    border-color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
}

.scroll-to-top:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .brand-logo {
        width: auto;
        height: 66px;
        max-width: 220px;
    }

    .footer-logo {
        width: 48px;
        height: 48px;
        margin-bottom: 0.6rem;
    }

    .mobile-menu-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .nav-menu {
        position: fixed;
        top: 82px;
        left: -100%;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        width: 100%;
        max-width: 100vw;
        padding: 1rem 1.5rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 0;
        align-items: stretch;
        z-index: 999;
        border-bottom: 1px solid var(--border-color);
        max-height: calc(100vh - 82px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        white-space: normal;
        line-height: 1.4;
        padding: 0.85rem 0;
        font-size: 1.05rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding-top: 1.25rem;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .hero-search {
        grid-template-columns: 44px 1fr;
        grid-template-areas:
            "icon input"
            "btn btn";
        border-radius: var(--radius-xl);
    }

    .hero-search-icon {
        grid-area: icon;
        width: 44px;
        height: 44px;
    }

    .hero-search-input {
        grid-area: input;
    }

    .hero-search-btn {
        grid-area: btn;
        width: 100%;
    }

    .hero-badge {
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle + .hero-subtitle {
        margin-top: -0.75rem;
    }

    .hero-subtitle:last-of-type {
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .footer-contact-form input,
    .footer-contact-form textarea {
        font-size: 16px;
        min-height: 44px;
    }

    .footer-contact-form textarea {
        min-height: 80px;
    }

    .scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }

    .hero-carousel-section .hero-carousel {
        min-height: 65vh;
        padding-bottom: 4rem;
    }

    .hero-slide {
        padding: 1.5rem 0 5rem;
    }

    .hero-carousel-dots {
        bottom: 1rem;
    }

    .hero-carousel-prev,
    .hero-carousel-next {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        min-width: 44px;
        min-height: 44px;
    }

    .hero-carousel-prev { left: 8px; }
    .hero-carousel-next { right: 8px; }

    .hero-scroll-indicator {
        bottom: 1rem;
        font-size: 0.8rem;
    }
    .home-focus-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 40px;
        height: 3px;
    }

    section {
        padding: 3rem 0;
    }

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

    .about-content {
        max-width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-setup {
        grid-template-columns: 1fr;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-card {
        padding: 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .hero-visual-card {
        padding: 1.25rem 1.25rem 0;
    }

    .kits-text {
        padding: 2rem;
    }

    .kits-text p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .hero-subtitle + .hero-subtitle {
        margin-top: -0.5rem;
    }

    .hero-subtitle:last-of-type {
        margin-bottom: 1.75rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-subtext {
        font-size: 0.75rem;
    }

    .nav-wrapper {
        padding: 0.65rem 0.75rem;
    }

    .footer-contact-form {
        margin-top: 1rem;
    }

    .footer-contact-form input,
    .footer-contact-form textarea {
        padding: 0.6rem 0.75rem;
    }

    .scroll-to-top {
        width: 42px;
        height: 42px;
        bottom: 16px;
        right: 16px;
        font-size: 18px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title::after {
        width: 36px;
        height: 3px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .impact-card,
    .program-card,
    .partner-card {
        padding: 1.5rem;
    }

    .impact-card h3,
    .program-card h3,
    .partner-card h3 {
        font-size: 1.1rem;
    }

    .program-card h3 {
        font-size: 1.2rem;
    }

    .impact-icon,
    .program-icon,
    .feature-icon {
        width: 44px;
        height: 44px;
    }

    .icon {
        width: 20px;
        height: 20px;
    }

    .news-card {
        padding: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    section {
        padding: 2rem 0;
    }

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

    .hero-pills {
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }

    .pill {
        padding: 0.35rem 0.55rem;
        font-size: 0.75rem;
    }

    .hero-visual-card {
        padding: 1rem 1rem 0;
    }

    .hero-visual-header {
        margin-bottom: 0.75rem;
    }

    .hero-visual-title {
        font-size: 0.95rem;
    }

    .hero-visual-subtitle {
        font-size: 0.8rem;
    }

    .kits-text {
        padding: 1.5rem;
        border-left-width: 3px;
    }

    .kits-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .why-number {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .about-intro-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.6rem;
    }
}

@media (max-width: 600px) {
    .programs-grid,
    .impact-grid,
    .partners-grid,
    .news-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.25;
    }

    .hero-subtitle {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-title {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.35rem !important;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.35rem !important;
    }

    .scroll-to-top {
        bottom: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

