/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

:root {
    /* Dark theme (hero, footer) */
    --black: #0c0d10;
    --gray-950: #12141a;
    --gray-900: #1a1c24;
    --gray-850: #22252e;
    --gray-800: #2a2e38;
    --gray-700: #3d4250;
    --gray-600: #565c6c;
    --gray-500: #737a8c;
    --gray-400: #9299a8;
    --gray-300: #b4b9c5;
    --gray-200: #d4d7de;
    --white: #fff;

    /* Light theme (content sections) */
    --light-bg: #f8f9fb;
    --light-bg-alt: #ffffff;
    --light-bg-card: #ffffff;
    --light-border: #e2e8f0;
    --light-border-hover: #cbd5e0;
    --light-text: #1a202c;
    --light-text-secondary: #4a5568;
    --light-text-muted: #718096;

    /* Enhanced accent colors */
    --accent: #3182ce;
    --accent-dark: #2b6cb0;
    --accent-light: #4299e1;
    --accent-glow: rgba(49, 130, 206, 0.12);
    --accent-subtle: rgba(49, 130, 206, 0.06);
    --accent-on-light: #2b6cb0;

    /* ═══════════════════════════════════════════════════════════════
               DESIGN SYSTEM - Typography Scale (8pt base)
               ═══════════════════════════════════════════════════════════════ */
    --text-xs: 10px;
    --text-sm: 12px;
    --text-base: 14px;
    --text-lg: 16px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 28px;
    --text-4xl: 32px;

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;

    /* Layout */
    --nav-height: 40px;
    --header-height: 72px;
    --announcement-height: 36px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Google Translate */
.goog-te-banner-frame,
.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════
           BUTTONS
           ═══════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    height: var(--nav-height);
    padding: 0 var(--space-5);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

.btn--primary:hover {
    background: var(--gray-200);
}

.btn--accent {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--white);
}

.btn--accent:hover {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn--ghost {
    background: transparent;
    border: 1px solid var(--gray-600);
    color: var(--gray-300);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 0 16px var(--accent-glow);
}

/* Light theme ghost button */
.section--light .btn--ghost,
.section--light-alt .btn--ghost {
    border: 1px solid var(--light-border);
    color: var(--accent-on-light);
    background: transparent;
}

.section--light .btn--ghost:hover,
.section--light-alt .btn--ghost:hover {
    border-color: var(--accent-on-light);
    color: var(--accent-dark);
    background: rgba(49, 130, 206, 0.05);
    box-shadow: 0 0 12px rgba(49, 130, 206, 0.1);
}

/* Light theme accent button */
.section--light .btn--accent,
.section--light-alt .btn--accent {
    border: 1px solid var(--accent-on-light);
    color: var(--accent-on-light);
    background: transparent;
}

.section--light .btn--accent:hover,
.section--light-alt .btn--accent:hover {
    background: var(--accent-on-light);
    color: var(--white);
}

.btn--large {
    height: 44px;
    padding: 0 var(--space-6);
    font-size: var(--text-sm);
}

/* ═══════════════════════════════════════════════════════════════
           ANNOUNCEMENT BAR
           ═══════════════════════════════════════════════════════════════ */

.announcement-bar {
    background: linear-gradient(90deg, var(--accent) 0%, #3a7bc8 100%);
    color: var(--white);
    font-size: var(--text-xs);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
    min-height: 36px;
}

.announcement-bar.hidden {
    transform: translateY(-100%);
}

.announcement-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 48px 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    text-align: center;
    position: relative;
}

.announcement-bar__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.announcement-bar__badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    font-size: 9px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    flex-shrink: 0;
}

.announcement-bar__text {
    font-weight: var(--font-medium);
    font-size: 11px;
    line-height: 1.4;
}

.announcement-bar__link {
    color: var(--white);
    font-weight: var(--font-semibold);
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
    font-size: 11px;
}

.announcement-bar__link:hover {
    opacity: 0.9;
}

.announcement-bar__close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.7;
    font-size: 14px;
}

.announcement-bar__close:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
           HEADER - Consistent heights, clear separation
           ═══════════════════════════════════════════════════════════════ */

.header {
    position: fixed;
    top: var(--announcement-height, 36px);
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(12, 13, 16, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-800);
    transition: top 0.3s ease;
}

.header.announcement-closed {
    top: 0;
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10px;
}

.logo__text {
    font-weight: 600;
    font-size: 14px;
}

.nav {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid var(--gray-800);
}

.nav__item {
    position: relative;
    height: 100%;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
    padding: 0 14px;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gray-400);
    transition: color 0.2s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

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

.nav__link:hover::after {
    transform: scaleX(1);
}

.nav__item:hover .nav__link {
    color: var(--white);
}

.nav__item:hover .nav__link::after {
    transform: scaleX(1);
}

.nav__link svg {
    width: 10px;
    height: 10px;
    transition: transform 0.2s;
}

.nav__item:hover .nav__link svg {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: var(--space-2) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
}

.nav__item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__section-label {
    padding: var(--space-3) var(--space-4) var(--space-2);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.dropdown__divider {
    height: 1px;
    background: var(--gray-800);
    margin: var(--space-2) 0;
}

.dropdown__link {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gray-300);
    transition: all 0.15s;
    line-height: 1.3;
    text-transform: none;
}

.dropdown__link:hover {
    color: var(--white);
    background: var(--gray-850);
}

.dropdown__link small {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--font-normal);
    color: var(--gray-500);
    margin-top: 2px;
    line-height: 1.4;
    text-transform: none;
}

.dropdown__link:hover small {
    color: var(--gray-400);
}

/* Programs Dropdown - 3 column layout */
.dropdown--programs {
    min-width: 560px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
}

.dropdown__section {
    padding: var(--space-4);
    border-right: 1px solid var(--gray-800);
    text-transform: none;
}

.dropdown__section:last-child {
    border-right: none;
}

.dropdown__section-title {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--gray-800);
}

.dropdown__section .dropdown__link {
    padding: var(--space-2) 0;
    text-transform: none;
}

.dropdown__section .dropdown__link small {
    font-size: var(--text-xs);
    text-transform: none;
}

/* Mega Menu for Programs with Country submenus (legacy) */
.dropdown--mega {
    min-width: 480px;
    display: grid;
    grid-template-columns: 180px 1fr;
    padding: 0;
}

.dropdown__countries {
    background: var(--gray-900);
    border-right: 1px solid var(--gray-800);
    padding: 8px 0;
}

.dropdown__country {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-300);
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
}

.dropdown__country:hover,
.dropdown__country.active {
    background: var(--gray-850);
    color: var(--white);
}

.dropdown__country::after {
    content: '›';
    margin-left: auto;
    font-size: 14px;
    opacity: 0.4;
}

.dropdown__country-flag {
    font-size: 16px;
}

.dropdown__country-status {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 5px;
    margin-left: 4px;
}

.dropdown__country-status--active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.dropdown__country-status--dev {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.dropdown__programs {
    padding: 12px 16px;
    display: none;
}

.dropdown__programs.active {
    display: block;
}

.dropdown__programs-title {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-800);
}

.dropdown__program-link {
    display: block;
    padding: 8px 0;
    font-size: 12px;
    color: var(--gray-400);
    transition: color 0.15s;
}

.dropdown__program-link:hover {
    color: var(--white);
}

.dropdown__program-link small {
    display: block;
    font-size: 10px;
    color: var(--gray-500);
    margin-top: 2px;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    padding-left: 24px;
    border-left: 1px solid var(--gray-800);
}

/* Language selector - same height as logo icon */
.lang-select {
    height: var(--nav-height);
    padding: 0 12px;
    border: 1px solid var(--gray-700);
    background: transparent;
    color: var(--gray-300);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.lang-select:hover {
    border-color: var(--gray-500);
    color: var(--white);
}

.lang-select svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-700);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-toggle__icon {
    width: 18px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-toggle__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* X transformation when menu is open */
.mobile-toggle.active .mobile-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-950);
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__nav {
    padding: 20px;
}

.mobile-menu__item {
    border-bottom: 1px solid var(--gray-800);
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.mobile-menu__link svg {
    width: 16px;
    height: 16px;
    color: var(--gray-500);
    transition: transform 0.2s;
}

.mobile-menu__item.open .mobile-menu__link svg {
    transform: rotate(180deg);
}

.mobile-menu__dropdown {
    display: none;
    padding-bottom: 12px;
}

.mobile-menu__item.open .mobile-menu__dropdown {
    display: block;
}

.mobile-menu__sublink {
    display: block;
    padding: 10px 0 10px 16px;
    font-size: 13px;
    color: var(--gray-400);
    border-left: 2px solid var(--gray-800);
    margin-left: 8px;
}

.mobile-menu__sublink:hover {
    color: var(--white);
    border-left-color: var(--accent);
}

.mobile-menu__sublink small {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 2px;
}

.mobile-menu__section {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray-500);
    padding: 12px 0 6px 16px;
    margin-left: 8px;
    border-left: 2px solid var(--gray-800);
}

.mobile-menu__section:first-child {
    padding-top: 0;
}

.mobile-menu__cta {
    padding: 20px;
    border-top: 1px solid var(--gray-800);
}

.mobile-menu__cta .btn {
    width: 100%;
    margin-bottom: 10px;
}

/* Language Selector */
.lang-dropdown {
    position: relative;
}

.lang-btn {
    height: var(--nav-height);
    padding: 0 12px;
    border: 1px solid var(--gray-700);
    background: transparent;
    color: var(--gray-300);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.lang-btn:hover {
    border-color: var(--gray-500);
    color: var(--white);
}

.lang-btn svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.lang-btn__arrow {
    width: 8px !important;
    height: 8px !important;
    transition: transform 0.2s;
}

.lang-dropdown.open .lang-btn__arrow {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    min-width: 150px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.lang-dropdown.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.15s;
}

.lang-menu__item:hover {
    background: var(--gray-850);
    color: var(--white);
}

.lang-menu__item.active {
    color: var(--accent-light);
}

/* Google Translate - hidden but functional */
#google_translate_element {
    display: none;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.skiptranslate.goog-te-gadget {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
           HERO - Taller background, compact boxes
           ═══════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    height: 70vh;
    max-height: 550px;
    min-height: 450px;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--announcement-height, 36px));
    overflow: hidden;
    transition: padding-top 0.3s ease;
}

body.announcement-closed .hero {
    padding-top: var(--header-height);
}

/* Animation Background - moved up 20% */
.hero__scene {
    position: absolute;
    inset: 0;
    top: -20%;
    background: var(--gray-950);
}

.skyline {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    height: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
}

.building {
    background: var(--gray-700);
    border: 1px solid var(--gray-600);
    position: relative;
}

.building::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 220, 150, 0.8);
    top: 15%;
    left: 25%;
    box-shadow:
        8px 12px 0 rgba(255, 220, 150, 0.5),
        -3px 28px 0 rgba(255, 220, 150, 0.6),
        10px 45px 0 rgba(255, 220, 150, 0.4);
}

.building:nth-child(1) {
    width: 28px;
    height: 70px;
}

.building:nth-child(2) {
    width: 40px;
    height: 130px;
}

.building:nth-child(3) {
    width: 32px;
    height: 100px;
}

.building:nth-child(4) {
    width: 55px;
    height: 200px;
}

.building:nth-child(5) {
    width: 44px;
    height: 150px;
}

.building:nth-child(6) {
    width: 62px;
    height: 240px;
}

.building:nth-child(7) {
    width: 38px;
    height: 120px;
}

.building:nth-child(8) {
    width: 50px;
    height: 170px;
}

.building:nth-child(9) {
    width: 36px;
    height: 140px;
}

.tracks {
    position: absolute;
    bottom: 3%;
    left: 0;
    right: 0;
    height: 36px;
}

.tracks__rail {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gray-500);
}

.tracks__rail:first-child {
    top: 4px;
}

.tracks__rail:last-child {
    bottom: 4px;
}

.tracks__ties {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 18px, var(--gray-600) 18px, var(--gray-600) 24px);
}

.train {
    position: absolute;
    bottom: 5%;
    display: flex;
    animation: trainMove 22s linear infinite;
}

.train__car {
    width: 110px;
    height: 40px;
    background: var(--gray-500);
    border: 1px solid var(--gray-400);
    margin-right: 4px;
    border-radius: 2px;
    position: relative;
}

.train__car::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    right: 7px;
    height: 12px;
    background: repeating-linear-gradient(90deg, rgba(255, 220, 150, 0.5) 0px, rgba(255, 220, 150, 0.5) 14px, var(--gray-600) 14px, var(--gray-600) 20px);
}

@keyframes trainMove {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-200%);
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(90, 157, 230, 0.08) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(12, 13, 16, 0.8) 0%, rgba(12, 13, 16, 0.3) 35%, rgba(12, 13, 16, 0.15) 60%, rgba(12, 13, 16, 0.5) 100%);
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: stretch;
}

.hero__grid--single {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Boxes - Semi-transparent with accent glow */
.hero__box {
    background: rgba(18, 20, 26, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(90, 157, 230, 0.15);
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero__grid--single .hero__box {
    padding: 32px;
}

/* Slider - Smooth opacity crossfade only (no movement) */
.hero__slider {
    position: relative;
    min-height: 140px;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    transform: translateY(10px);
}

.hero__slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__tag {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(74, 144, 217, 0.15);
    border: 1px solid var(--accent);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 8px;
    align-self: flex-start;
}

.hero__title {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
}

.hero__desc {
    font-size: 11px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.hero__cta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero__cta .btn {
    height: 32px;
    padding: 0 14px;
    font-size: 10px;
}

/* Hero box wrapper for side arrows */
.hero__box-wrapper {
    position: relative;
}

.hero__slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(49, 130, 206, 0.25);
    border: 1px solid rgba(49, 130, 206, 0.4);
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 50%;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.hero__slider-arrow--prev {
    left: -52px;
}

.hero__slider-arrow--next {
    right: -52px;
}

.hero__slider-arrow:hover {
    background: rgba(49, 130, 206, 0.5);
    border-color: var(--accent);
    color: var(--white);
}

.hero__slider-arrow svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.hero__slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.hero__slider-dot {
    width: 6px;
    height: 6px;
    background: var(--gray-600);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.hero__slider-dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 3px;
}

/* Stats Card - Correlated */
.hero__stats {
    display: flex;
    flex-direction: column;
}

.hero__stats-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stats-title {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.hero__stats-name {
    font-size: 12px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
}

.stat {
    text-align: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat__value {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat__label {
    font-size: 8px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__partners {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__partners-title {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.hero__partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.hero__partner {
    font-size: 9px;
    padding: 3px 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-400);
    transition: all 0.2s;
}

.hero__partner:hover {
    border-color: var(--accent);
    color: var(--white);
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--gray-500);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero__scroll svg {
    width: 16px;
    height: 16px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* ═══════════════════════════════════════════════════════════════
           SECTIONS
           ═══════════════════════════════════════════════════════════════ */

.section {
    padding: 100px 0;
}

/* Dark sections (kept for hero area) */
.section--950 {
    background: var(--gray-950);
}

.section--900 {
    background: var(--gray-900);
}

.section--850 {
    background: var(--gray-850);
}

/* Light sections */
.section--light {
    background: var(--light-bg);
    color: var(--light-text);
}

.section--light-alt {
    background: var(--light-bg-alt);
    color: var(--light-text);
}

.section--light .section__title,
.section--light-alt .section__title {
    color: var(--light-text);
}

.section--light .section__desc,
.section--light-alt .section__desc {
    color: var(--light-text-secondary);
}

.section--light .section__label,
.section--light-alt .section__label {
    color: var(--accent-on-light);
}

.section--light .section__label::before,
.section--light-alt .section__label::before {
    background: linear-gradient(90deg, var(--accent-on-light), transparent);
}

.section__header {
    margin-bottom: var(--space-10);
}

.section__header--center {
    text-align: center;
}

.section__label {
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-2);
    display: inline-block;
    padding: var(--space-1) 0;
    position: relative;
}

.section__label::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.5;
}

.section__title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    line-height: 1.2;
    margin-bottom: var(--space-3);
}

.section__desc {
    font-size: var(--text-base);
    color: var(--gray-400);
    max-width: 600px;
    line-height: 1.7;
}

.section__header--center .section__desc {
    margin: 0 auto;
}

.section__header--center .section__label::before {
    left: 25%;
    right: 25%;
}

/* Section CTAs */
.section__cta {
    text-align: center;
    margin-top: var(--space-12);
    padding-top: var(--space-10);
    border-top: 1px solid var(--gray-800);
}

.section__cta--light {
    border-top-color: var(--light-border);
}

.section__cta-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-2);
}

.section__cta--light .section__cta-title {
    color: var(--light-text);
}

.section__cta-text {
    font-size: var(--text-lg);
    color: var(--gray-400);
    margin-bottom: var(--space-5);
}

.section__cta--light .section__cta-text {
    color: var(--light-text-secondary);
}

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

/* Smart CTA Selector in dark sections */
.section__cta .cta__selector {
    margin-top: var(--space-6);
    margin-bottom: 0;
}

.section__cta .cta__selector-label {
    color: var(--gray-400);
}

.section__cta .cta__selector-btn {
    background: var(--gray-850);
    border-color: var(--gray-700);
}

.section__cta .cta__selector-btn:hover {
    border-color: var(--accent);
    background: var(--gray-800);
}

.section__cta .cta__selector-btn.active {
    border-color: var(--accent);
    background: rgba(90, 157, 230, 0.1);
    box-shadow: 0 0 0 3px rgba(90, 157, 230, 0.15);
}

.section__cta .cta__selector-title {
    color: var(--white);
}

.section__cta .cta__selector-desc {
    color: var(--gray-500);
}

.section__cta .cta__selector-check {
    border-color: var(--gray-600);
}

.section__cta .cta__selector-btn.active .cta__selector-check {
    background: var(--accent);
    border-color: var(--accent);
}

.section__cta .cta__selector-alt-btn {
    color: var(--gray-500);
}

.section__cta .cta__selector-alt-btn:hover {
    color: var(--accent-light);
}

.section__cta .cta__dynamic-content {
    border-top-color: var(--gray-800);
}

.section__cta .cta__dynamic-title {
    color: var(--white);
}

.section__cta .cta__dynamic-text {
    color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════════════════
           ABOUT
           ═══════════════════════════════════════════════════════════════ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about__text {
    font-size: var(--text-base);
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

/* Light theme about text */
.section--light .about__text,
.section--light-alt .about__text {
    color: var(--light-text-secondary);
}

.about__cta {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    transition: all 0.3s ease;
}

.about__feature:hover {
    border-color: var(--gray-700);
    background: var(--gray-850);
}

/* Light theme feature cards */
.section--light .about__feature,
.section--light-alt .about__feature {
    background: var(--light-bg-card);
    border: 1px solid var(--light-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.section--light .about__feature:hover,
.section--light-alt .about__feature:hover {
    border-color: var(--accent);
    background: var(--light-bg-card);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.1);
}

.about__feature-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.about__feature-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.section--light .about__feature-title,
.section--light-alt .about__feature-title {
    color: var(--light-text);
}

.about__feature-desc {
    font-size: 10px;
    color: var(--gray-400);
    line-height: 1.5;
}

.section--light .about__feature-desc,
.section--light-alt .about__feature-desc {
    color: var(--light-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
           LEAD MAGNET / RESOURCE SECTION
           ═══════════════════════════════════════════════════════════════ */

.resource-banner {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-850) 100%);
    border: 1px solid var(--gray-800);
    padding: var(--space-8);
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.resource-banner__icon {
    font-size: 48px;
    flex-shrink: 0;
}

.resource-banner__content {
    flex: 1;
}

.resource-banner__label {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: var(--space-2);
}

.resource-banner__title {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-2);
}

.resource-banner__text {
    font-size: var(--text-sm);
    color: var(--gray-400);
    line-height: 1.6;
}

.resource-banner__cta {
    flex-shrink: 0;
}

.bd-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bd-stats--large {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.bd-stat {
    background: var(--gray-850);
    border: 1px solid var(--gray-700);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.bd-stats--large .bd-stat {
    padding: 32px 24px;
}

.bd-stat:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Light theme bd-stat */
.section--light .bd-stat,
.section--light-alt .bd-stat {
    background: var(--light-bg-card);
    border: 1px solid var(--light-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.section--light .bd-stat:hover,
.section--light-alt .bd-stat:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(49, 130, 206, 0.12);
}

.bd-stat__value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bd-stats--large .bd-stat__value {
    font-size: 40px;
}

.section--light .bd-stat__value,
.section--light-alt .bd-stat__value {
    color: var(--accent-on-light);
}

.bd-stat__label {
    font-size: 10px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bd-stat__context {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 8px;
}

.section--light .bd-stat__context,
.section--light-alt .bd-stat__context {
    color: var(--light-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
           ABOUT ROW - Horizontal Layout
           ═══════════════════════════════════════════════════════════════ */

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-row__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-row__content .section__title {
    margin-bottom: 16px;
}

.about-row__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.section--light-alt .about__feature-desc {
    color: var(--light-text-muted);
}

.section--light .bd-stat__label,
.section--light-alt .bd-stat__label {
    color: var(--light-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
           SERVICES
           ═══════════════════════════════════════════════════════════════ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

/* Light theme service cards */
.section--light .service-card,
.section--light-alt .service-card {
    background: var(--light-bg-card);
    border: 1px solid var(--light-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.section--light .service-card:hover,
.section--light-alt .service-card:hover {
    border-color: var(--light-border-hover);
    box-shadow: 0 8px 24px rgba(49, 130, 206, 0.1);
}

.section--light .service-card::before,
.section--light-alt .service-card::before {
    background: linear-gradient(180deg, var(--accent-on-light), var(--accent-dark));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: var(--gray-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

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

.service-card__icon {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

.service-card__title {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.section--light .service-card__title,
.section--light-alt .service-card__title {
    color: var(--light-text);
}

.service-card__text {
    font-size: var(--text-sm);
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.section--light .service-card__text,
.section--light-alt .service-card__text {
    color: var(--light-text-muted);
}

.service-card__link {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--accent-light);
    transition: color 0.2s;
}

.section--light .service-card__link,
.section--light-alt .service-card__link {
    color: var(--accent-on-light);
}

.section--light .service-card__link:hover,
.section--light-alt .service-card__link:hover {
    color: var(--accent-dark);
}

.service-card__link:hover {
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
           PARTNER LOGOS
           ═══════════════════════════════════════════════════════════════ */

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 0;
}

/* ═══════════════════════════════════════════════════════════════
           PROGRAMS GRID (Dark Theme for How We Help section)
           ═══════════════════════════════════════════════════════════════ */

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.programs-grid--equal .program-card {
    display: flex;
    flex-direction: column;
}

.program-card {
    background: var(--gray-850);
    border: 1px solid var(--gray-700);
    padding: var(--space-6);
    display: flex;
    gap: var(--space-4);
    transition: all 0.3s;
}

.program-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.program-card--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--gray-850) 0%, rgba(49, 130, 206, 0.1) 100%);
    border-color: var(--accent);
}

.program-card__icon {
    font-size: var(--text-3xl);
    flex-shrink: 0;
}

.program-card__flag {
    font-size: var(--text-4xl);
    flex-shrink: 0;
}

.program-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-card__tag {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(49, 130, 206, 0.2);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: var(--space-2);
    align-self: flex-start;
}

.program-card__title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-bottom: var(--space-2);
}

.program-card__text {
    font-size: var(--text-sm);
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: var(--space-3);
    flex: 1;
}

.program-card__meta {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-bottom: var(--space-4);
}

.program-card__features {
    list-style: none;
    margin-bottom: var(--space-4);
}

.program-card__features li {
    font-size: var(--text-sm);
    color: var(--gray-400);
    padding: var(--space-1) 0;
    padding-left: var(--space-4);
    position: relative;
}

.program-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-light);
}

.program-card__link {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--accent-light);
}

.btn--small {
    height: 32px;
    padding: 0 14px;
    font-size: var(--text-xs);
    align-self: flex-start;
}

.programs-cta {
    text-align: center;
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
}

.programs-cta p {
    font-size: var(--text-base);
    color: var(--gray-400);
    margin-bottom: var(--space-4);
}

.programs-cta strong {
    color: var(--light-text);
}

/* ═══════════════════════════════════════════════════════════════
           CASE STUDY HIGHLIGHT
           ═══════════════════════════════════════════════════════════════ */

.case-study-highlight {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.case-study-highlight__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.case-study-highlight__text {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 24px;
}

.case-study-highlight__stats {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.case-study-highlight__stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-light);
}

.case-study-highlight__stat-label {
    font-size: 11px;
    color: var(--gray-500);
}

.case-study-highlight__quote {
    background: var(--gray-900);
    border-left: 3px solid var(--accent);
    padding: 24px;
}

.case-study-highlight__quote blockquote {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.case-study-highlight__author {
    font-size: 12px;
    color: var(--gray-500);
}

.case-study-highlight__author strong {
    color: var(--gray-300);
}

.partner-logo {
    opacity: 0.6;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

.partner-logo__placeholder {
    padding: 16px 24px;
    border: 1px solid var(--gray-600);
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 0.5px;
    transition: all 0.3s;
    background: var(--gray-900);
}

/* Light theme partner logos */
.section--light .partner-logo__placeholder,
.section--light-alt .partner-logo__placeholder {
    background: var(--light-bg-card);
    border: 1px solid var(--light-border);
    color: var(--light-text-muted);
}

.partner-logo:hover .partner-logo__placeholder {
    border-color: var(--accent);
    color: var(--accent-light);
    background: var(--accent-subtle);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.section--light .partner-logo:hover .partner-logo__placeholder,
.section--light-alt .partner-logo:hover .partner-logo__placeholder {
    border-color: var(--accent-on-light);
    color: var(--accent-on-light);
    background: rgba(49, 130, 206, 0.08);
}

/* ═══════════════════════════════════════════════════════════════
           TESTIMONIALS
           ═══════════════════════════════════════════════════════════════ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
}

/* Light theme testimonials */
.section--light .testimonial,
.section--light-alt .testimonial {
    background: var(--light-bg-card);
    border: 1px solid var(--light-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.section--light .testimonial::before,
.section--light-alt .testimonial::before {
    background: linear-gradient(90deg, var(--accent-on-light), transparent);
}

.testimonial:hover {
    border-color: var(--gray-700);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.section--light .testimonial:hover,
.section--light-alt .testimonial:hover {
    border-color: var(--light-border-hover);
    box-shadow: 0 8px 24px rgba(49, 130, 206, 0.1);
}

.testimonial__text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial__text::before {
    content: '"';
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    line-height: 0;
    position: relative;
    top: 12px;
    margin-right: 4px;
}

.section--light .testimonial__text::before,
.section--light-alt .testimonial__text::before {
    color: var(--accent-on-light);
}

.section--light .testimonial__text,
.section--light-alt .testimonial__text {
    color: var(--light-text-secondary);
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial__avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-subtle);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-light);
}

.section--light .testimonial__avatar,
.section--light-alt .testimonial__avatar {
    background: rgba(49, 130, 206, 0.1);
    border-color: var(--accent-on-light);
    color: var(--accent-on-light);
}

.testimonial__name {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.section--light .testimonial__name,
.section--light-alt .testimonial__name {
    color: var(--light-text);
}

.testimonial__company {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 2px;
}

.section--light .testimonial__company,
.section--light-alt .testimonial__company {
    color: var(--light-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
           DIRECTIONS - Inline version for light sections
           ═══════════════════════════════════════════════════════════════ */

.directions-wrapper {
    background: var(--gray-950);
    padding: 0 32px;
}

.directions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1076px;
    margin: 0 auto;
    gap: 24px;
}

.directions--inline {
    max-width: 100%;
}

.directions--inline .direction {
    background: var(--light-bg-card);
    border: 1px solid var(--light-border);
    border-left: 4px solid var(--accent-on-light);
}

.directions--inline .direction--outbound {
    border-left-color: var(--accent-light);
}

.directions--inline .direction__title {
    color: var(--light-text);
}

.directions--inline .direction__text {
    color: var(--light-text-secondary);
}

.directions--inline .direction__list li {
    color: var(--light-text-secondary);
    border-bottom-color: var(--light-border);
}

.direction {
    padding: 32px;
    position: relative;
}

.direction--inbound {
    background: var(--gray-900);
    border-left: 3px solid var(--accent);
}

.direction--outbound {
    background: var(--gray-850);
    border-left: 3px solid var(--accent-light);
}

.direction__icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.direction__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.direction__subtitle {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.direction__text {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.direction__list {
    list-style: none;
    margin-bottom: 20px;
}

.direction__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-800);
    font-size: 12px;
    color: var(--gray-300);
}

.direction__list li::before {
    content: '→';
    color: var(--accent);
    font-size: 10px;
}

/* ═══════════════════════════════════════════════════════════════
           HOW WE HELP - Tabbed Interface (Dark Theme)
           ═══════════════════════════════════════════════════════════════ */

.help-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-10);
}

.help-tab {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: transparent;
    border: 1px solid var(--gray-700);
    cursor: pointer;
    transition: all 0.3s;
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--gray-400);
}

.help-tab:hover {
    border-color: var(--accent);
    color: var(--white);
}

.help-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.help-tab__icon {
    font-size: var(--text-xl);
}

.help-tab__label {
    font-size: var(--text-xs);
    font-weight: var(--font-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.help-panel {
    display: none;
}

.help-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════
           CASE STUDIES - Horizontal Scroll (Light Theme)
           ═══════════════════════════════════════════════════════════════ */

.case-studies-scroll {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    padding-bottom: var(--space-5);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.case-studies-scroll::-webkit-scrollbar {
    display: none;
}

.case-studies-container {
    position: relative;
}

.case-studies-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(49, 130, 206, 0.15);
    border: 1px solid rgba(49, 130, 206, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    color: var(--accent-on-light);
}

.case-studies-nav:hover {
    background: rgba(49, 130, 206, 0.3);
    border-color: var(--accent-on-light);
    color: var(--accent-on-light);
}

.case-studies-nav--prev {
    left: -56px;
}

.case-studies-nav--next {
    right: -56px;
}

.case-studies-nav svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.case-studies-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.case-studies-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.case-studies-dot.active {
    background: var(--accent-on-light);
    width: 24px;
    border-radius: 4px;
}

.case-study-card {
    flex: 0 0 340px;
    background: var(--light-bg-card);
    border: 1px solid var(--light-border);
    scroll-snap-align: start;
    transition: all 0.3s ease;
    overflow: hidden;
}

.case-study-card:hover {
    border-color: var(--accent-on-light);
    box-shadow: 0 8px 24px rgba(49, 130, 206, 0.1);
}

.case-study-card__image {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    overflow: hidden;
    position: relative;
}

.case-study-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-card__image img {
    transform: scale(1.05);
}

.case-study-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.1) 0%, rgba(49, 130, 206, 0.05) 100%);
}

.case-study-card__content {
    padding: var(--space-6);
}

.case-study-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--space-2);
}

.case-study-card__badge {
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-card__badge--type {
    background: #e9ecef;
    color: #666;
}

.case-study-card__badge--status {
    background: transparent;
    border: 1px solid #ddd;
    color: #888;
}

.case-study-card__client {
    font-size: var(--text-xs);
    color: var(--accent-on-light);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.case-study-card__flag {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.case-study-card__direction {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-on-light);
    margin-bottom: var(--space-2);
}

.case-study-card__title {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--light-text);
    margin-bottom: var(--space-3);
}

.case-study-card__text {
    font-size: var(--text-sm);
    color: var(--light-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

.case-study-card__stats {
    display: flex;
    gap: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--light-border);
    margin-bottom: var(--space-5);
}

.case-study-card__stat-value {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--accent-on-light);
}

.case-study-card__stat-label {
    font-size: var(--text-xs);
    color: var(--light-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-card__quote {
    font-size: var(--text-sm);
    font-style: italic;
    color: var(--light-text-secondary);
    padding: var(--space-4);
    background: var(--light-bg);
    border-left: 3px solid var(--accent-on-light);
    margin-bottom: var(--space-4);
}

.case-study-card__author {
    font-size: var(--text-xs);
    color: var(--light-text-muted);
    margin-bottom: var(--space-4);
}

.case-study-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--accent-on-light);
}

.case-study-card__link:hover {
    color: var(--accent-dark);
}

/* ═══════════════════════════════════════════════════════════════
           CORRIDORS - Interactive with Partners
           ═══════════════════════════════════════════════════════════════ */

.corridors-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    min-height: 400px;
}

.corridors-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.corridor-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.corridor-tab:hover {
    background: var(--gray-850);
}

.corridor-tab.active {
    background: var(--gray-850);
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
}

.corridor-tab__flag {
    font-size: var(--text-lg);
}

.corridor-tab__name {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gray-300);
}

.corridor-tab.active .corridor-tab__name {
    color: var(--white);
}

.corridor-tab__status {
    font-size: 8px;
    font-weight: var(--font-bold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 6px;
    margin-left: auto;
}

.corridor-tab__status--active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.corridor-tab__status--dev {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

/* Corridor Content */
.corridor-content {
    background: var(--gray-850);
    border: 1px solid var(--gray-800);
    padding: var(--space-8);
}

/* Light theme corridors */
.section--light .corridor-content,
.section--light-alt .corridor-content {
    background: var(--light-bg-card);
    border: 1px solid var(--light-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.section--light .corridor-tab,
.section--light-alt .corridor-tab {
    color: var(--light-text-secondary);
}

.section--light .corridor-tab:hover,
.section--light-alt .corridor-tab:hover {
    background: var(--light-bg);
}

.section--light .corridor-tab.active,
.section--light-alt .corridor-tab.active {
    background: var(--light-bg-card);
    border-color: var(--accent-on-light);
}

.section--light .corridor-tab__name,
.section--light-alt .corridor-tab__name {
    color: var(--light-text-secondary);
}

.section--light .corridor-tab.active .corridor-tab__name,
.section--light-alt .corridor-tab.active .corridor-tab__name {
    color: var(--light-text);
}

.corridor-panel {
    display: none;
}

.corridor-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.corridor__header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--accent);
    position: relative;
}

.corridor__header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.3;
}

.section--light .corridor__header,
.section--light-alt .corridor__header {
    border-bottom-color: var(--accent-on-light);
}

.corridor__flag {
    font-size: 48px;
    line-height: 1;
}

.corridor__label {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-1);
}

.corridor__name {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
}

.section--light .corridor__name,
.section--light-alt .corridor__name {
    color: var(--light-text);
}

.section--light .corridor__label,
.section--light-alt .corridor__label {
    color: var(--accent-on-light);
}

.corridor__desc {
    font-size: var(--text-base);
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--gray-800);
}

.section--light .corridor__desc,
.section--light-alt .corridor__desc {
    color: var(--light-text-secondary);
    border-bottom-color: var(--light-border);
}

.corridor__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.corridor__stat {
    text-align: center;
    padding: var(--space-4);
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
}

.section--light .corridor__stat,
.section--light-alt .corridor__stat {
    background: var(--light-bg);
    border: 1px solid var(--light-border);
}

.corridor__stat-value {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--accent-light);
    margin-bottom: var(--space-1);
}

.section--light .corridor__stat-value,
.section--light-alt .corridor__stat-value {
    color: var(--accent-on-light);
}

.corridor__stat-label {
    font-size: var(--text-xs);
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section--light .corridor__stat-label,
.section--light-alt .corridor__stat-label {
    color: var(--light-text-muted);
}

.corridor__partners {
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-800);
}

.section--light .corridor__partners,
.section--light-alt .corridor__partners {
    border-top-color: var(--light-border);
}

.corridor__partners-title {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: var(--space-3);
}

.corridor__partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--gray-900);
    border: 1px solid var(--gray-850);
    font-size: 11px;
    color: var(--gray-300);
    transition: all 0.2s;
}

.partner-link:hover {
    border-color: var(--accent);
    color: var(--white);
}

.partner-link svg {
    width: 10px;
    height: 10px;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════
           NEWS
           ═══════════════════════════════════════════════════════════════ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.news-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

/* Light theme news cards */
.section--light .news-card,
.section--light-alt .news-card {
    background: var(--light-bg-card);
    border: 1px solid var(--light-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.news-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.section--light .news-card::after,
.section--light-alt .news-card::after {
    background: linear-gradient(90deg, var(--accent-on-light), var(--accent-light));
}

.news-card:hover {
    border-color: var(--gray-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.section--light .news-card:hover,
.section--light-alt .news-card:hover {
    border-color: var(--light-border-hover);
    box-shadow: 0 8px 24px rgba(49, 130, 206, 0.1);
}

.news-card:hover::after {
    transform: scaleX(1);
}

.news-card__tag {
    display: inline-block;
    padding: 3px 8px;
    background: var(--accent-subtle);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.section--light .news-card__tag,
.section--light-alt .news-card__tag {
    background: rgba(49, 130, 206, 0.1);
    color: var(--accent-on-light);
}

.news-card__title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.section--light .news-card__title,
.section--light-alt .news-card__title {
    color: var(--light-text);
}

.news-card__excerpt {
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 12px;
}

.section--light .news-card__excerpt,
.section--light-alt .news-card__excerpt {
    color: var(--light-text-muted);
}

.news-card__link {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-500);
    transition: color 0.2s;
}

.section--light .news-card__link,
.section--light-alt .news-card__link {
    color: var(--accent-on-light);
}

.news-card__link:hover {
    color: var(--accent-light);
}

.section--light .news-card__link:hover,
.section--light-alt .news-card__link:hover {
    color: var(--accent-dark);
}

/* ═══════════════════════════════════════════════════════════════
           CTA - Light Theme Version with Bangladesh-inspired Animation
           ═══════════════════════════════════════════════════════════════ */

.cta {
    padding: var(--space-16) 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--light-border);
}

.cta__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.cta__header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.cta__title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-3);
    color: var(--light-text);
}

.cta__text {
    font-size: var(--text-base);
    color: var(--light-text-secondary);
    margin-bottom: var(--space-5);
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.cta__buttons .btn--primary {
    background: var(--accent-on-light);
    color: var(--white);
}

.cta__buttons .btn--primary:hover {
    background: var(--accent-dark);
}

/* Contact Grid */
.cta__contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-10);
    padding-top: var(--space-10);
    border-top: 1px solid var(--light-border);
}

/* Map */
.cta__map {
    background: var(--light-bg-card);
    border: 1px solid var(--light-border);
    height: 200px;
    position: relative;
    overflow: hidden;
}

.cta__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: none;
}

.cta__map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--light-border);
}

.cta__address {
    font-size: var(--text-sm);
    color: var(--light-text-secondary);
    line-height: 1.5;
}

.cta__address a {
    display: block;
    margin-top: var(--space-2);
    font-size: var(--text-xs);
    color: var(--accent-on-light);
}

.cta__address a:hover {
    color: var(--accent-dark);
}

/* Contact Options */
.cta__contact-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.cta__contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--light-bg-card);
    border: 1px solid var(--light-border);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.cta__contact-card:hover {
    border-color: var(--accent-on-light);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.1);
}

.cta__contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(49, 130, 206, 0.1);
    border: 1px solid var(--light-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta__contact-icon svg {
    width: 16px;
    height: 16px;
    color: var(--accent-on-light);
}

.cta__contact-card:hover .cta__contact-icon {
    border-color: var(--accent-on-light);
    background: rgba(49, 130, 206, 0.15);
}

.cta__contact-info {
    flex: 1;
}

.cta__contact-label {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-text-muted);
    margin-bottom: 2px;
}

.cta__contact-value {
    font-size: var(--text-sm);
    color: var(--light-text);
}

.cta__contact-sub {
    font-size: var(--text-xs);
    color: var(--light-text-muted);
    margin-top: 2px;
}

/* WhatsApp specific */
.cta__contact-card--whatsapp:hover {
    border-color: #25D366;
}

.cta__contact-card--whatsapp:hover .cta__contact-icon {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.cta__contact-card--whatsapp:hover .cta__contact-icon svg {
    color: #25D366;
}

/* Phone buttons row */
.cta__phone-row {
    display: flex;
    gap: 8px;
}

.cta__phone-row .cta__contact-card {
    flex: 1;
}

/* Smart CTA Selector */
.cta__selector {
    margin-bottom: var(--space-8);
}

.cta__selector-label {
    font-size: var(--text-base);
    color: var(--light-text-secondary);
    margin-bottom: var(--space-4);
    text-align: center;
}

.cta__selector-options {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.cta__selector-btn {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: var(--light-bg-card);
    border: 2px solid var(--light-border);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta__selector-btn:hover {
    border-color: var(--accent-on-light);
    background: rgba(49, 130, 206, 0.05);
}

.cta__selector-btn.active {
    border-color: var(--accent-on-light);
    background: rgba(49, 130, 206, 0.08);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.cta__selector-icon {
    font-size: 24px;
}

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

.cta__selector-title {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--light-text);
}

.cta__selector-desc {
    font-size: var(--text-xs);
    color: var(--light-text-muted);
}

.cta__selector-check {
    margin-left: auto;
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cta__selector-btn.active .cta__selector-check {
    background: var(--accent-on-light);
    border-color: var(--accent-on-light);
}

.cta__selector-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--white);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cta__selector-btn.active .cta__selector-check svg {
    opacity: 1;
}

.cta__selector-alt {
    text-align: center;
    margin-top: var(--space-3);
}

.cta__selector-alt-btn {
    background: none;
    border: none;
    color: var(--light-text-muted);
    font-size: var(--text-sm);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cta__selector-alt-btn:hover {
    color: var(--accent-on-light);
}

/* Dynamic content based on selection */
.cta__dynamic-content {
    text-align: center;
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--light-border);
    display: none;
}

.cta__dynamic-content.active {
    display: block;
}

.cta__dynamic-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--light-text);
    margin-bottom: var(--space-2);
}

.cta__dynamic-text {
    font-size: var(--text-sm);
    color: var(--light-text-secondary);
    margin-bottom: var(--space-4);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════════════════════ */

.footer {
    background: var(--black);
    padding-bottom: var(--space-6);
    position: relative;
}

.footer__brand-col {
    padding-right: var(--space-6);
}

.footer__brand-top {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer__logo-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--text-xs);
    color: var(--gray-400);
}

.footer__logo-text {
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    color: var(--gray-300);
}

.footer__desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.7;
}

.footer__desc--secondary {
    margin-top: var(--space-3);
    color: var(--gray-600);
    font-size: var(--text-xs);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: var(--space-8);
}

.footer__col-title {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: var(--space-3);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: var(--space-2);
}

.footer__links a {
    font-size: var(--text-sm);
    color: var(--gray-500);
    transition: color 0.2s;
}

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

.footer__social {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer__social a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    color: var(--gray-500);
    font-size: var(--text-sm);
    transition: all 0.2s;
}

.footer__social a:hover {
    color: var(--accent-light);
}

.footer__social-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.footer__social a:hover .footer__social-icon {
    border-color: var(--accent);
}

.footer__social svg {
    width: 12px;
    height: 12px;
}

/* Member Of Section - Compact inline */
.footer__members-wrapper {
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    margin-bottom: var(--space-10);
}

.footer__members-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer__members {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 32px;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 10px;
    color: var(--gray-700);
}

.footer__members-label {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
}

.footer__member-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__member-item:hover {
    color: var(--gray-900);
}

.footer__member-item img {
    height: 1.1em;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer__member-item:hover img {
    opacity: 1;
}

.footer__members-sep {
    color: var(--gray-400);
    margin: 0 6px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 16px;
    margin-top: 16px;
}

.footer__copyright {
    font-size: 10px;
    color: var(--gray-600);
}

.footer__legal {
    display: flex;
    gap: 16px;
}

.footer__legal a,
.footer__legal button {
    font-size: 10px;
    color: var(--gray-600);
    background: none;
    border: none;
    cursor: pointer;
}

.footer__legal a:hover,
.footer__legal button:hover {
    color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════════════════
           FLOATING WHATSAPP BUTTON
           ═══════════════════════════════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.whatsapp-float__tooltip {
    background: var(--white);
    color: var(--gray-900);
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float__btn {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__btn svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
           END CREDITS
           ═══════════════════════════════════════════════════════════════ */

.end-credits {
    background: var(--black);
    padding: var(--space-4) 0;
    text-align: center;
    border-top: 1px solid var(--gray-900);
}

.end-credits p {
    font-size: var(--text-xs);
    color: var(--gray-600);
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════════════════════
           CAPTCHA MODAL
           ═══════════════════════════════════════════════════════════════ */

.captcha-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.captcha-modal.active {
    display: flex;
}

.captcha-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.captcha-modal__content {
    position: relative;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    max-width: 360px;
    width: 100%;
    padding: 32px;
    text-align: center;
}

.captcha-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--gray-850);
    border: 1px solid var(--gray-800);
    color: var(--gray-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.captcha-modal__close:hover {
    border-color: var(--gray-600);
    color: var(--white);
}

.captcha-modal__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: rgba(74, 144, 217, 0.1);
    border: 1px solid rgba(74, 144, 217, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.captcha-modal__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.captcha-modal__text {
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.captcha-modal__question {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 12px;
    background: var(--gray-850);
    border: 1px solid var(--gray-800);
}

.captcha-modal__input {
    width: 100%;
    height: 44px;
    background: var(--gray-850);
    border: 1px solid var(--gray-800);
    color: var(--white);
    font-size: 18px;
    text-align: center;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.captcha-modal__input:focus {
    outline: none;
    border-color: var(--accent);
}

.captcha-modal__input.error {
    border-color: #ef4444;
    animation: shake 0.3s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-8px);
    }

    75% {
        transform: translateX(8px);
    }
}

.captcha-modal__submit {
    width: 100%;
    height: 44px;
    background: var(--accent);
    border: none;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
}

.captcha-modal__submit:hover {
    background: var(--accent-dark);
}

.captcha-modal__error {
    font-size: 11px;
    color: #ef4444;
    margin-top: 12px;
    display: none;
}

.captcha-modal__error.show {
    display: block;
}

/* ═══════════════════════════════════════════════════════════════
           HOW WE HELP - Interactive Reality-Service Spotlighting
           ═══════════════════════════════════════════════════════════════ */

.help-section {
    padding: 100px 0;
}

.help-section--inbound {
    background: var(--gray-900);
}

.help-section--outbound {
    background: var(--gray-900);
}

/* Unified Services Section */
.services-unified {
    background: var(--gray-900);
    padding: 100px 0;
}

.services-unified__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    margin-bottom: 48px;
}

.services-unified__tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.services-unified__tab:hover {
    border-color: var(--gray-500);
    color: var(--gray-200);
}

.services-unified__tab.active {
    background: var(--gray-800);
    border-color: var(--accent);
    color: var(--white);
}

.services-unified__tab-icon {
    font-size: 16px;
}

.services-unified__panel {
    display: none;
    animation: fadeInPanel 0.3s ease;
}

.services-unified__panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-unified__panel-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-unified__panel-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.services-unified__panel-desc {
    font-size: 15px;
    color: var(--gray-400);
}

.help-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

.reality-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gray-700);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.reality-box__title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.reality-item {
    padding: 12px 16px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reality-item:hover,
.reality-item.active {
    background: rgba(49, 130, 206, 0.1);
    border-color: var(--accent);
}

.reality-item__icon {
    display: inline-block;
    width: 20px;
    color: #e53e3e;
    font-size: 12px;
}

.reality-item__text {
    font-size: 13px;
    color: var(--gray-300);
    line-height: 1.5;
}

.reality-item__text strong {
    color: var(--white);
}

.offerings-wrapper {
    flex: 1;
}

.offerings-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.offering-card {
    background: var(--gray-850);
    border: 1px solid var(--gray-700);
    padding: 20px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.offering-card.spotlight,
.offering-card:hover {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(49, 130, 206, 0.15);
}

.offering-card__icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.offering-card__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.offering-card__text {
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 12px;
}

.offering-card__link {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-light);
}

.help-section__cta {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.help-section__resource {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(49, 130, 206, 0.1);
    border: 1px solid var(--accent);
    flex: 1;
    max-width: 600px;
}

.help-section__resource-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.help-section__resource-content {
    flex: 1;
}

.help-section__resource-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.help-section__resource-content p {
    font-size: 11px;
    color: var(--gray-400);
}

.help-section__resource .btn {
    flex-shrink: 0;
    margin-left: auto;
}

/* ═══════════════════════════════════════════════════════════════
           FIT CHECK MODAL
           ═══════════════════════════════════════════════════════════════ */

.fit-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fit-modal.active {
    display: flex;
}

.fit-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
}

.fit-modal__content {
    position: relative;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    max-width: 600px;
    width: 100%;
    padding: 32px;
}

.fit-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--gray-850);
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
}

.fit-modal__close:hover {
    border-color: var(--gray-500);
    color: var(--white);
}

.fit-modal__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fit-modal__subtitle {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.fit-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.fit-modal__col {
    padding: 20px;
    background: var(--gray-850);
    border: 1px solid var(--gray-800);
}

.fit-modal__col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.fit-modal__col-title--yes {
    color: #48bb78;
}

.fit-modal__col-title--no {
    color: var(--gray-500);
}

.fit-modal__list {
    list-style: none;
}

.fit-modal__list li {
    font-size: 12px;
    color: var(--gray-300);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid var(--gray-800);
}

.fit-modal__list li:last-child {
    border-bottom: none;
}

.fit-modal__list li::before {
    position: absolute;
    left: 0;
    font-size: 12px;
}

.fit-modal__col--yes .fit-modal__list li::before {
    content: '✓';
    color: #48bb78;
}

.fit-modal__col--no .fit-modal__list li::before {
    content: '✗';
    color: var(--gray-600);
}

.fit-modal__col--no .fit-modal__list li {
    color: var(--gray-500);
}

.fit-modal__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* ═══════════════════════════════════════════════════════════════
           COLLAPSIBLE FAQ - Dark theme with blue accent
           ═══════════════════════════════════════════════════════════════ */

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

.faq-item {
    background: var(--gray-850);
    border: 1px solid var(--gray-700);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question__text {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-200);
    padding-right: 16px;
}

.faq-question__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    color: var(--accent-light);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item:hover .faq-question__icon {
    border-color: var(--accent);
}

.faq-item.open .faq-question__icon {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer__content {
    padding: 0 24px 24px;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.8;
}

.faq-category {
    padding: 10px 20px;
    background: var(--gray-850);
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category:hover {
    border-color: var(--accent);
    color: var(--gray-200);
}

.faq-category.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.faq-item.hidden {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
           PROCESS SECTION WITH ANIMATED BACKGROUND
           ═══════════════════════════════════════════════════════════════ */

.process-section {
    position: relative;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(49, 130, 206, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(49, 130, 206, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--light-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(49, 130, 206, 0.1);
    border-color: var(--accent-on-light);
}

.process-step__number {
    width: 48px;
    height: 48px;
    background: var(--accent-on-light);
    color: white;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.process-step:hover .process-step__number {
    transform: scale(1.1);
}

.process-step__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 8px;
}

.process-step__text {
    font-size: 12px;
    color: var(--light-text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .announcement-bar__inner {
        padding: 8px 16px;
    }

    .announcement-bar__badge {
        display: none;
    }

    .resource-banner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }

    .resource-banner__icon {
        font-size: 36px;
    }

    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero__slider {
        min-height: 220px;
    }

    .hero__box {
        padding: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .directions {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .direction--inbound {
        border-right: none;
    }

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

    .program-card--featured {
        grid-column: span 1;
    }

    .case-study-highlight {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .corridors-layout {
        grid-template-columns: 1fr;
    }

    .corridors-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .corridor-tab {
        flex: 0 0 auto;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .partners-logos {
        gap: 24px;
    }

    .cta__contact-grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

    .footer__brand-col {
        grid-column: span 3;
        padding-bottom: var(--space-6);
        margin-bottom: var(--space-4);
        border-bottom: 1px solid var(--gray-900);
    }
}

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

    .section {
        padding: 60px 0;
    }

    .announcement-bar__text {
        font-size: 11px;
    }

    .announcement-bar__link {
        display: block;
        margin-top: 4px;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 16px;
    }

    .whatsapp-float__btn {
        width: 48px;
        height: 48px;
    }

    .whatsapp-float__btn svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-float__tooltip {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .partners-logos {
        gap: 16px;
    }

    .partner-logo__placeholder {
        padding: 12px 16px;
        font-size: 10px;
    }

    .hero {
        height: auto;
        min-height: 70vh;
        max-height: none;
        padding-top: calc(var(--header-height) + 36px + 24px);
        padding-bottom: 40px;
    }

    .hero.announcement-closed {
        padding-top: calc(var(--header-height) + 24px);
    }

    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__grid--single {
        max-width: 100%;
    }

    .hero__box {
        padding: 24px;
    }

    .hero__slider {
        min-height: auto;
    }

    .hero__title {
        font-size: 20px;
        line-height: 1.3;
    }

    .hero__desc {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .hero__tag {
        font-size: 9px;
        padding: 5px 10px;
        margin-bottom: 12px;
    }

    .hero__cta {
        gap: 8px;
    }

    .hero__cta .btn {
        padding: 0 16px;
        font-size: 12px;
        height: 36px;
    }

    .hero__slider-nav {
        margin-top: 16px;
    }

    .hero__slider-dot {
        width: 6px;
        height: 6px;
    }

    .hero__slider-dot.active {
        width: 18px;
    }

    .hero__stats-header {
        margin-bottom: 14px;
        padding-bottom: 12px;
    }

    .hero__stats-title {
        font-size: 9px;
    }

    .hero__stats-name {
        font-size: 13px;
    }

    .stats-grid {
        gap: 10px;
    }

    .stat {
        padding: 10px 8px;
    }

    .stat__value {
        font-size: 16px;
    }

    .stat__label {
        font-size: 8px;
    }

    .hero__partners {
        margin-top: 12px;
        padding-top: 12px;
    }

    .hero__partners-title {
        font-size: 8px;
        margin-bottom: 6px;
    }

    .hero__partner {
        font-size: 9px;
        padding: 3px 6px;
    }

    .hero__scroll {
        display: none;
    }

    .building:nth-child(n+7) {
        display: none;
    }

    .about__features {
        grid-template-columns: 1fr;
    }

    .bd-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .bd-stats--large {
        grid-template-columns: 1fr 1fr;
    }

    .bd-stat {
        padding: 16px;
    }

    .bd-stat__value {
        font-size: 24px;
    }

    .bd-stats--large .bd-stat__value {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .direction {
        padding: 32px 24px;
    }

    .help-tabs {
        flex-direction: column;
    }

    .help-tab {
        justify-content: flex-start;
        padding: 12px 20px;
    }

    .about-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .case-study-card {
        flex: 0 0 300px;
    }

    .case-study-card__image {
        height: 140px;
    }

    .corridor-content {
        padding: 24px;
    }

    .corridor__stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .corridors-layout {
        grid-template-columns: 1fr;
        gap: 16px;
        min-height: auto;
    }

    .corridors-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .corridor-tab {
        padding: 10px 12px;
    }

    .corridor-tab__status {
        display: none;
    }

    .cta {
        padding: 60px 0;
    }

    .cta__inner {
        padding: 0 16px;
    }

    .cta__phone-row {
        flex-direction: column;
    }

    .cta__selector-options {
        flex-direction: column;
        align-items: stretch;
    }

    /* New sections responsive */
    .help-layout {
        grid-template-columns: 1fr;
    }

    .reality-box {
        position: static;
        margin-bottom: 24px;
    }

    .offerings-grid {
        grid-template-columns: 1fr 1fr;
    }

    .offerings-grid--programs {
        grid-template-columns: 1fr;
    }

    .help-section__cta {
        flex-direction: column;
    }

    .help-section__resource {
        width: 100%;
    }

    .fit-modal__grid {
        grid-template-columns: 1fr;
    }

    #process .container>div[style*="repeat(4"] {
        grid-template-columns: 1fr 1fr !important;
    }

    .faq-question__text {
        font-size: 14px;
    }

    .cta__selector-btn {
        min-width: 100%;
    }

    /* Unified services section responsive */
    .services-unified {
        padding: 60px 0;
    }

    .services-unified__tabs {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 32px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-unified__tab {
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
    }

    .services-unified__tab-icon {
        font-size: 14px;
    }

    .services-unified__panel-title {
        font-size: 20px;
    }

    /* Hero box wider with internal padding for arrows */
    .hero__box-wrapper {
        padding: 0 44px;
    }

    .hero__box {
        padding: 20px 16px;
    }

    /* Hero slider arrows responsive - circular with brand color */
    .hero__slider-arrow {
        width: 32px;
        height: 32px;
        background: rgba(49, 130, 206, 0.35);
        border-color: rgba(49, 130, 206, 0.5);
    }

    .hero__slider-arrow svg {
        width: 12px;
        height: 12px;
    }

    .hero__slider-arrow--prev {
        left: 0;
    }

    .hero__slider-arrow--next {
        right: 0;
    }

    /* Case studies arrows responsive - circular with brand color */
    .case-studies-container {
        padding: 0 44px;
    }

    .case-studies-nav {
        width: 32px;
        height: 32px;
        background: rgba(49, 130, 206, 0.2);
    }

    .case-studies-nav--prev {
        left: 0;
    }

    .case-studies-nav--next {
        right: 0;
    }

    .case-studies-nav svg {
        width: 14px;
        height: 14px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .footer__brand-col {
        grid-column: span 2;
        padding-bottom: var(--space-4);
        margin-bottom: var(--space-4);
        border-bottom: 1px solid var(--gray-900);
    }

    .footer__members {
        padding: 14px 16px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta__selector-btn {
        padding: var(--space-3) var(--space-4);
    }

    .cta__selector-icon {
        font-size: 20px;
    }

    .hero {
        min-height: 60vh;
        padding-bottom: 32px;
    }

    .hero__box {
        padding: 20px 16px;
    }

    .hero__title {
        font-size: 18px;
        line-height: 1.3;
    }

    .hero__desc {
        font-size: 12px;
        line-height: 1.5;
    }

    .hero__cta .btn {
        height: 34px;
        font-size: 11px;
        padding: 0 14px;
    }

    /* Hero box wrapper with padding for arrows */
    .hero__box-wrapper {
        padding: 0 36px;
    }

    /* Hero arrows on smallest screens - circular brand color */
    .hero__slider-arrow {
        width: 28px;
        height: 28px;
        background: rgba(49, 130, 206, 0.4);
        border-color: rgba(49, 130, 206, 0.6);
    }

    .hero__slider-arrow svg {
        width: 10px;
        height: 10px;
    }

    .hero__slider-arrow--prev {
        left: 0;
    }

    .hero__slider-arrow--next {
        right: 0;
    }

    /* Services tabs on smallest screens */
    .services-unified__tab {
        padding: 8px 12px;
        font-size: 11px;
    }

    .services-unified__tab-icon {
        font-size: 12px;
    }

    /* Case studies arrows on smallest screens */
    .case-studies-container {
        padding: 0 36px;
    }

    .case-studies-nav {
        width: 28px;
        height: 28px;
        background: rgba(49, 130, 206, 0.25);
    }

    .case-studies-nav--prev {
        left: 0;
    }

    .case-studies-nav--next {
        right: 0;
    }

    .case-studies-nav svg {
        width: 12px;
        height: 12px;
    }

    .stat__value {
        font-size: 14px;
    }

    .stat {
        padding: 8px 6px;
    }

    .bd-stats--large {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .bd-stats--large .bd-stat {
        padding: 16px 12px;
    }

    .bd-stats--large .bd-stat__value {
        font-size: 24px;
    }

    .bd-stat__context {
        font-size: 9px;
    }

    .case-study-card {
        flex: 0 0 260px;
    }

    .case-study-card__image {
        height: 120px;
    }

    .case-study-card__content {
        padding: 16px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-step {
        padding: 20px 16px;
    }

    .process-step__number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .process-step__title {
        font-size: 13px;
    }

    .process-step__text {
        font-size: 11px;
    }

    .corridors-nav {
        justify-content: flex-start;
    }

    .corridor-tab {
        padding: 8px 10px;
    }

    .corridor-tab__name {
        font-size: 11px;
    }

    .corridor-tab__status {
        display: none;
    }
}


/* ═══════════════════════════════════════════════════════════════
           ON THIS PAGE - Sticky Secondary Navigation with Progress
           ═══════════════════════════════════════════════════════════════ */

.page-nav {
    position: fixed;
    top: calc(var(--header-height) + var(--announcement-height, 36px));
    /* header + announcement bar */
    left: 0;
    right: 0;
    background: #0a0c10;
    border-bottom: 1px solid #2d3748;
    z-index: 999;
    display: block;
    transition: top 0.3s ease;
}

body.announcement-closed .page-nav {
    top: var(--header-height);
}

.page-nav.hidden {
    display: none;
}

.page-nav__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 44px;
}

.page-nav__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #3182ce;
    width: 0%;
}

.page-nav__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    white-space: nowrap;
    padding-right: 12px;
    border-right: 1px solid var(--gray-800);
    margin-right: 4px;
}

.page-nav__links-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.page-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding-right: 20px;
}

.page-nav__links::-webkit-scrollbar {
    display: none;
}

/* Fade hint for more items */
.page-nav__links-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, #0a0c10);
    pointer-events: none;
}

.page-nav__link {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.page-nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.page-nav__link.active {
    color: var(--accent);
    background: rgba(49, 130, 206, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .page-nav__inner {
        padding: 0 16px;
        height: 40px;
    }

    .page-nav__label {
        display: none;
    }

    .page-nav__link {
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .page-nav__inner {
        gap: 2px;
    }

    .page-nav__link {
        font-size: 10px;
        padding: 6px 8px;
    }
}
/* ═══════════════════════════════════════════════════════════════
   CASE STUDIES PAGE STYLES - RESTORED
   ═══════════════════════════════════════════════════════════════ */

/* Page Hero - adjusts for announcement bar */
.page-hero { 
    padding-top: calc(var(--header-height) + 100px); /* header + announcement + spacing */
    padding-bottom: 60px; 
    background: var(--black); 
    border-bottom: 1px solid var(--gray-800);
    transition: padding-top 0.3s ease;
}
body.announcement-closed .page-hero {
    padding-top: calc(var(--header-height) + 60px);
}
.page-hero__breadcrumb { display: flex; align-items: center; gap: 8px; font-size: var(--text-xs); color: var(--gray-500); margin-bottom: var(--space-4); }
.page-hero__breadcrumb a { color: var(--gray-500); transition: color 0.2s; }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__label { display: inline-block; font-size: var(--text-xs); font-weight: var(--font-semibold); letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-light); margin-bottom: var(--space-3); }
.page-hero__title { font-size: var(--text-4xl); font-weight: var(--font-bold); margin-bottom: var(--space-4); line-height: 1.2; }
.page-hero__desc { font-size: var(--text-lg); color: var(--gray-400); max-width: 600px; line-height: 1.7; }

/* Stats Bar */
.stats-bar { background: var(--gray-900); border-bottom: 1px solid var(--gray-800); padding: var(--space-6) 0; position: relative; z-index: 2; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); text-align: center; }
.stats-bar__value { display: block; font-size: var(--text-3xl); font-weight: var(--font-bold); color: var(--accent-light); margin-bottom: var(--space-1); }
.stats-bar__label { font-size: var(--text-xs); color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }

/* ═══════════════════════════════════════════════════════════════
   STICKY CONTROLS - Single Row with Announcement Bar Support
   ═══════════════════════════════════════════════════════════════ */

.sticky-controls {
    position: sticky;
    top: 112px; /* header (72px) + announcement (40px) */
    z-index: 500;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 16px 0;
    margin-top: 0;
    /* Ensure no gap above sticky controls */
}

/* Ensure page-hero and stats-bar scroll under the header */
.page-hero { position: relative; z-index: 1; }
.stats-bar { position: relative; z-index: 1; }

/* When announcement is closed, adjust sticky position */
body.announcement-closed .sticky-controls {
    top: 72px;
}

.controls-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Search Control - Left Side, Wider on Desktop */
.search-control {
    flex: 0 1 480px;
    position: relative;
    min-width: 240px;
}
.search-control__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #999;
    pointer-events: none;
}
.search-control__input {
    width: 100%;
    padding: 12px 36px 12px 42px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
}
.search-control__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.search-control__input::placeholder { color: #999; }
.search-control__clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #e9ecef;
    border: none;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
.search-control__clear.visible { display: flex; }

/* Search Autocomplete Dropdown */
.search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 300;
    display: none;
    max-height: 320px;
    overflow-y: auto;
}
.search-autocomplete.open { display: block; }
.search-autocomplete__item {
    padding: 10px 14px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.search-autocomplete__item:last-child { border-bottom: none; }
.search-autocomplete__item:hover,
.search-autocomplete__item.highlighted { background: #f8f9fa; }
.search-autocomplete__item-icon {
    width: 16px;
    height: 16px;
    color: #999;
}
.search-autocomplete__item-text mark {
    background: rgba(212,175,55,0.3);
    color: inherit;
    padding: 0 2px;
    border-radius: 2px;
}
.search-autocomplete__empty {
    padding: 16px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/* Spacer to push filters/sort to right */
.controls-spacer { flex: 1; }

/* Filter Control */
.filter-control { position: relative; }
.filter-control__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-control__btn:hover { border-color: #999; background: #fafafa; }
.filter-control__btn.active { border-color: var(--accent); background: #fffbf0; }
.filter-control__btn svg { width: 16px; height: 16px; }
.filter-control__count {
    display: none;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    line-height: 20px;
    text-align: center;
}
.filter-control__count.visible { display: inline-block; }

/* Filter Dropdown */
.filter-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    width: 520px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    z-index: 200;
    display: none;
}
.filter-dropdown.open { display: block; }
.filter-dropdown__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}
.filter-dropdown__clear {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}
.filter-dropdown__clear:hover { text-decoration: underline; }
.filter-dropdown__body { padding: 20px; max-height: 400px; overflow-y: auto; }

.filter-group { margin-bottom: 20px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group__label { display: block; font-size: 11px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.filter-group__options { display: flex; flex-wrap: wrap; gap: 8px; }

.filter-chip {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    transition: all 0.15s;
}
.filter-chip:hover { border-color: #999; color: #333; background: #fff; }
.filter-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Sort Control */
.sort-control { display: flex; align-items: center; gap: 8px; }
.sort-control label { font-size: 13px; color: #666; white-space: nowrap; }
.sort-control select {
    padding: 11px 32px 11px 12px;
    font-size: 14px;
    font-family: inherit;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    cursor: pointer;
    appearance: none;
}
.sort-control select:focus { outline: none; border-color: var(--accent); }

/* View Control */
.view-control { display: flex; border: 1px solid #ddd; border-radius: 4px; overflow: hidden; }
.view-control__btn {
    padding: 10px 12px;
    background: #fff;
    border: none;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.view-control__btn svg { width: 16px; height: 16px; }
.view-control__btn:hover { background: #f5f5f5; color: #666; }
.view-control__btn.active { background: #e9ecef; color: #333; }
.view-control__btn:first-child { border-right: 1px solid #ddd; }

/* ═══════════════════════════════════════════════════════════════
   CASE STUDIES SECTION - LIGHT
   ═══════════════════════════════════════════════════════════════ */

/* Case Studies Section - Main Grid Container */
.case-studies-section {
    position: relative;
    z-index: 1;
    background: #f8f9fa;
    padding: var(--space-8) 0;
    min-height: 400px;
    margin-top: 0;
}

.case-studies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.case-studies-grid.list-view { grid-template-columns: 1fr; gap: var(--space-4); }

/* Case Study Card */
.cs-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.cs-card:hover { border-color: #ccc; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.cs-card.featured::before {
    content: 'FEATURED';
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: var(--accent);
    color: #fff;
    z-index: 5;
}
.cs-card__image { width: 100%; height: 200px; background: #e9ecef; overflow: hidden; position: relative; }
.cs-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; display: block; position: absolute; top: 0; left: 0; }
.cs-card:hover .cs-card__image img { transform: scale(1.05); }
.cs-card__image-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #999; width: 100%; height: 100%; background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%); position: absolute; top: 0; left: 0; }
.cs-card__image-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }
.cs-card__image-placeholder span { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.6; }
.cs-card__header { padding: var(--space-5); border-bottom: 1px solid #f0f0f0; }
.cs-card__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--space-3); }
.cs-card__badge { padding: 3px 8px; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.cs-card__badge--type { background: #e9ecef; color: #666; }
.cs-card__badge--status { background: transparent; border: 1px solid #ddd; color: #888; }
.cs-card__badge--status.active { border-color: #28a745; color: #28a745; }
.cs-card__badge--status.completed { border-color: var(--accent); color: #b8860b; }
.cs-card__badge--status.ongoing { border-color: #17a2b8; color: #17a2b8; }
.cs-card__client { font-size: var(--text-xs); color: #888; margin-bottom: var(--space-2); }
.cs-card__title { font-size: var(--text-base); font-weight: 600; line-height: 1.4; margin-bottom: var(--space-2); color: #222; }
.cs-card__subtitle { font-size: var(--text-xs); color: #666; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cs-card__body { padding: var(--space-5); flex: 1; }
.cs-card__metric { display: flex; align-items: baseline; gap: 8px; margin-bottom: var(--space-4); }
.cs-card__metric-value { font-size: var(--text-2xl); font-weight: 700; color: var(--accent); }
.cs-card__metric-label { font-size: var(--text-xs); color: #888; }
.cs-card__services { display: flex; flex-wrap: wrap; gap: 4px; }
.cs-card__service { padding: 3px 8px; font-size: 9px; background: #f8f9fa; border: 1px solid #e0e0e0; color: #666; }
.cs-card__footer { padding: var(--space-4) var(--space-5); border-top: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; background: #fafafa; }
.cs-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.cs-card__tag { font-size: 9px; color: #999; }
.cs-card__arrow { color: #ccc; font-size: var(--text-sm); transition: all 0.2s; }
.cs-card:hover .cs-card__arrow { transform: translateX(4px); color: var(--accent); }

/* Empty State */
.empty-state { text-align: center; padding: var(--space-12) var(--space-6); }
.empty-state__icon { font-size: 48px; margin-bottom: var(--space-4); }
.empty-state__title { font-size: var(--text-xl); font-weight: 600; margin-bottom: var(--space-2); color: #333; }
.empty-state__desc { font-size: var(--text-sm); color: #666; margin-bottom: var(--space-6); }

/* ═══════════════════════════════════════════════════════════════
   MODAL - Full Content Display
   ═══════════════════════════════════════════════════════════════ */

.cs-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: flex-start; justify-content: center; padding: 20px; overflow-y: auto; }
.cs-modal.open { display: flex; }
.cs-modal__backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.cs-modal__content { position: relative; background: #fff; max-width: 900px; width: 100%; margin: 40px 0; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.cs-modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: #fff; border: 1px solid #ddd; color: #666; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; font-size: 18px; }
.cs-modal__close:hover { background: #f0f0f0; color: #333; }
.cs-modal__body { padding: 0; }
.cs-modal__hero { width: 100%; height: 280px; background: #e9ecef; overflow: hidden; }
.cs-modal__hero img { width: 100%; height: 100%; object-fit: cover; }
.cs-modal__hero-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%); color: #999; }
.cs-modal__hero-placeholder svg { width: 60px; height: 60px; opacity: 0.4; }
.cs-modal__main { padding: 40px; }
.cs-modal__header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid #e0e0e0; }
.cs-modal__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.cs-modal__badge { padding: 4px 10px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; background: #e9ecef; color: #666; }
.cs-modal__client { font-size: 15px; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.cs-modal__title { font-size: 28px; font-weight: 700; margin-bottom: 10px; color: #222; line-height: 1.3; }
.cs-modal__subtitle { font-size: 16px; color: #666; line-height: 1.6; }
.cs-modal__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.cs-modal__metric { background: #f8f9fa; padding: 20px; text-align: center; border: 1px solid #e0e0e0; }
.cs-modal__metric-value { font-size: 28px; font-weight: 700; color: var(--accent); }
.cs-modal__metric-label { font-size: 12px; color: #888; margin-top: 4px; }
.cs-modal__meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 20px; background: #f8f9fa; border: 1px solid #e0e0e0; margin-bottom: 32px; }
.cs-modal__meta-item { font-size: 13px; }
.cs-modal__meta-label { color: #888; text-transform: uppercase; letter-spacing: 0.5px; font-size: 10px; margin-bottom: 4px; }
.cs-modal__meta-value { color: #333; font-weight: 500; }
.cs-modal__section { margin-bottom: 32px; }
.cs-modal__section-title { font-size: 14px; font-weight: 700; color: #222; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); display: inline-block; }
.cs-modal__section-content { font-size: 15px; color: #444; line-height: 1.9; }
.cs-modal__section-content p { margin-bottom: 16px; }
.cs-modal__section-content p:last-child { margin-bottom: 0; }
.cs-modal__results { list-style: none; margin: 0; padding: 0; }
.cs-modal__results li { position: relative; padding-left: 28px; margin-bottom: 14px; font-size: 15px; color: #444; line-height: 1.7; }
.cs-modal__results li::before { content: '✓'; position: absolute; left: 0; color: #28a745; font-weight: bold; font-size: 16px; }
.cs-modal__quote { background: #f8f9fa; border-left: 4px solid var(--accent); padding: 24px; font-style: italic; color: #555; font-size: 15px; line-height: 1.8; margin: 32px 0; }
.cs-modal__tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 24px; border-top: 1px solid #e0e0e0; }
.cs-modal__tag { padding: 4px 12px; font-size: 12px; background: #f0f0f0; border: 1px solid #e0e0e0; color: #666; }
.cs-modal__cta { margin-top: 24px; padding-top: 24px; border-top: 1px solid #e0e0e0; text-align: center; }
.cs-modal__cta .btn--accent { background: var(--accent); color: #fff; padding: 12px 24px; font-weight: 600; text-decoration: none; display: inline-block; }
.cs-modal__cta .btn--accent:hover { background: var(--accent-light); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .case-studies-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
    .cs-modal__metrics { grid-template-columns: repeat(2, 1fr); }
    .filter-dropdown { width: 420px; }
    .search-control { flex: 0 1 320px; min-width: 200px; }
}

@media (max-width: 768px) {
    .page-hero { 
        padding-top: calc(var(--header-height) + 80px); 
        padding-bottom: 40px; 
    }
    body.announcement-closed .page-hero {
        padding-top: calc(var(--header-height) + 40px);
    }
    .page-hero__title { font-size: var(--text-2xl); }
    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar__value { font-size: var(--text-2xl); }
    
    .sticky-controls { 
        padding: 12px 0; 
        top: 112px; /* header (72px) + announcement (40px) */
    }
    body.announcement-closed .sticky-controls {
        top: 72px;
    }
    
    .controls-row { flex-wrap: wrap; gap: 10px; }
    .search-control { flex: 1 1 100%; max-width: 100%; order: 1; }
    .controls-spacer { display: none; }
    .filter-control { order: 2; }
    .sort-control { order: 3; }
    .sort-control label { display: none; }
    .view-control { order: 4; margin-left: auto; }
    .filter-dropdown { width: calc(100vw - 32px); right: auto; left: 50%; transform: translateX(-50%); }
    
    .case-studies-grid { grid-template-columns: 1fr; }
    .cs-modal__metrics { grid-template-columns: 1fr; }
    .cs-modal__meta { grid-template-columns: 1fr; }
    .cs-modal__hero { height: 200px; }
    .cs-modal__main { padding: 24px; }
    .cs-modal__title { font-size: 22px; }
}

@media (max-width: 480px) {
    .sticky-controls { padding: 10px 0; }
    .controls-row { gap: 8px; }
    .filter-control__btn { padding: 10px 12px; font-size: 13px; }
    .filter-control__btn span:not(.filter-control__count) { display: none; }
    .sort-control select { padding: 10px 28px 10px 10px; font-size: 13px; }
    .view-control__btn { padding: 9px 10px; }
}

/* Image Lightbox for Case Studies Page */
/* Modal CTA Button */
.cs-modal__cta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}
.btn--cs-accent {
    display: inline-block;
    background: #3182ce;
    border: 2px solid #3182ce;
    color: #fff;
    padding: 14px 28px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn--cs-accent:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.4);
}

.cs-image-lightbox { position: fixed; inset: 0; z-index: 3000; display: none; align-items: center; justify-content: center; padding: 40px; background: rgba(0,0,0,0.95); }
.cs-image-lightbox.open { display: flex; }
.cs-image-lightbox__close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; background: transparent; border: 2px solid #fff; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 24px; border-radius: 50%; transition: all 0.2s; }
.cs-image-lightbox__close:hover { background: #fff; color: #000; }
.cs-image-lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; box-shadow: 0 0 60px rgba(0,0,0,0.5); }
.cs-modal__hero { cursor: pointer; position: relative; }
.cs-modal__hero-zoom { position: absolute; bottom: 12px; right: 12px; padding: 6px 12px; background: rgba(0,0,0,0.7); color: #fff; font-size: 11px; border-radius: 4px; opacity: 0; transition: opacity 0.2s; pointer-events: none; }
.cs-modal__hero:hover .cs-modal__hero-zoom { opacity: 1; }

/* ==========================================================================
   Service Pages - Sticky Sidebars & Booking Grids
   ========================================================================== */

/* Base container styles for new classes replacing inline styles */
.dd-booking-form,
.ps-booking-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 28px;
}

/* Service Booking Grids & Sticky Sidebars */
@media (min-width: 992px) {
    .vo-booking-grid,
    .es-booking-grid,
    .dd-booking-grid,
    .ps-booking-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 32px;
        align-items: start;
    }

    .vo-booking-summary,
    .es-booking-sidebar,
    .dd-sidebar,
    .ps-sidebar {
        position: sticky;
        top: 100px;
        align-self: start;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .dd-booking-grid,
    .ps-booking-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Pricing Cards (Standardized)
   ========================================================================== */
.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card--popular,
.pricing-card--featured {
    border: 2px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
    z-index: 10;
    position: relative;
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 99px;
}

.pricing-card__badge--premium {
    background: #10b981; /* Example premium color or use accent */
}

.pricing-card__tier {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 6px;
    text-align: center;
    margin-top: 12px;
}

.pricing-card__header {
    padding: 24px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}

.pricing-card__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    text-align: center;
}

.pricing-card__tagline,
.pricing-card__desc {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 16px;
    padding: 0 16px;
}

.pricing-card__price {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card__amount,
.pricing-card__price-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.pricing-card__price-unit {
    font-size: 12px;
    color: var(--gray-500);
}

.pricing-card__timeline {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.pricing-card__body {
    padding: 24px;
    flex: 1;
}

.pricing-card__features {
    list-style: none;
    padding: 16px 24px;
    margin: 0;
}

.pricing-card__features li,
.pricing-card__feature {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pricing-card__features li::before,
.pricing-card__feature-dot::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}
.pricing-card__feature-dot { /* Empty span used in some HTML */
    display: none; 
}
.pricing-card__feature::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    margin-right: 8px;
}

.pricing-card__footer {
    padding: 24px;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.pricing-card__cta,
.pricing-card__btn {
    display: block;
    width: calc(100% - 48px);
    margin: 0 auto 24px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}

.pricing-card--popular .pricing-card__cta,
.pricing-card--popular .pricing-card__btn,
.pricing-card--featured .pricing-card__btn {
    background: var(--accent);
    color: var(--white);
}

.pricing-card__cta:hover,
.pricing-card__btn:hover {
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
    transform: translateY(-1px);
}

/* ==========================================================================
   Standard Form Classes (replacing inline styles)
   ========================================================================== */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 4px; /* Adding slight radius for modern look */
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-subtle);
}
.required {
    color: #ef4444;
}
.btn--full {
    width: 100%;
}
