:root {
    --brand-green: #1B7F74;
    --brand-navy: #002D62;
    --brand-yellow: #FDEE00;
    --white: #ffffff;
    --text-slate: #334155;
    --surface-white: #ffffff;
    --navy-deep: #001f3d;
    --navy-black: #000c1a;
    --cadet-green: #1B7F74;
    --navy-dark: #002D62;
    --off-white: #f8fafc;
    --bg-light: #f1f5f9;
    --transition-smooth: all 0.35s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-slate);
    line-height: 1.7;
    overflow-x: hidden;
    background: #ffffff;
}

/* ===============================
   LAYOUT
   =============================== */

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

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
}

/* ===============================
   NAVIGATION
   =============================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 2000;
    display: flex;
    align-items: center;
    background-color: var(--brand-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

nav.scrolled {
    height: 70px;
    background-color: rgba(0, 31, 61, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

#navbar.scrolled {
    background: rgba(0, 26, 51, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid var(--brand-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.nav-brand {
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    line-height: 1;
    position: relative;
    z-index: 10001;
}

.nav-brand span.accent {
    color: var(--brand-green);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-green);
    transition: 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    width: 100%;
}

.btn-nav-tactical {
    color: var(--cadet-green) !important;
    border: 1px solid var(--cadet-green) !important;
    padding: 10px 20px !important;
    border-radius: 2px !important;
    font-weight: 900 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: 0.3s ease !important;
}

.btn-nav-tactical::after {
    display: none !important;
}

.btn-nav-tactical:hover,
.btn-nav-tactical:focus-visible {
    background: var(--cadet-green) !important;
    color: var(--brand-navy) !important;
}

/* ===============================
   HAMBURGER
   =============================== */

.mobile-toggle {
    display: none;
    appearance: none;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 10001;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-toggle:focus-visible {
    outline: 2px solid var(--brand-green);
    outline-offset: 3px;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--white);
    transition: transform 0.35s ease, opacity 0.25s ease, background 0.25s ease;
}

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

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

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

/* ===============================
   RESPONSIVE NAV / MOBILE DRAWER
   =============================== */

@media (max-width: 768px) {
    .mobile-toggle {
        display: inline-flex;
    }

    .nav-container {
        width: 92%;
    }

    .nav-brand {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(82vw, 360px);
        height: 100vh;
        padding: 110px 28px 40px;
        background: linear-gradient(180deg, rgba(0, 31, 61, 0.98) 0%, rgba(0, 12, 26, 0.98) 100%);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -12px 0 36px rgba(0, 0, 0, 0.45);
        border-left: 1px solid rgba(27, 127, 116, 0.45);
        overflow-y: auto;
    }

    .nav-links.active,
    #nav-menu.active {
        right: 0;
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 54px;
        padding: 14px 0;
        font-size: 1rem;
        letter-spacing: 1.2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        color: var(--brand-green);
    }

    .btn-nav-tactical {
        justify-content: center;
        margin-top: 14px;
        padding: 14px 18px !important;
        min-height: 52px;
        width: 100%;
        text-align: center;
        border-radius: 6px !important;
    }

    .hero {
        height: 60vh;
    }

    .hero-title,
    .hero-title-large {
        font-size: 2.5rem;
    }

    .welcome-section,
    .resource-section,
    .logistics-section,
    .recruitment-section,
    .partner-section-premium {
        padding: 60px 5%;
    }

    .resource-grid,
    .minimal-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-card-premium,
    .logo-card-standard {
        width: 100%;
        max-width: 320px;
        height: 120px;
    }

    .map-wrapper {
        height: 300px;
    }

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

    .activity-chips {
        justify-content: center;
    }

    .btn-primary,
    .btn-primary-cta {
        width: 100%;
        max-width: 300px;
    }
}

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

    .nav-container {
        width: 94%;
    }

    .nav-brand {
        font-size: 0.88rem;
        letter-spacing: 1.2px;
    }

    .nav-links {
        width: 100%;
        max-width: 100%;
        padding: 100px 22px 32px;
    }

    .nav-links a {
        font-size: 0.98rem;
        min-height: 50px;
    }

    .mobile-toggle {
        width: 48px;
        height: 48px;
    }

    .cta-banner {
        padding: 3.5rem 1rem;
    }

    .cta-inner {
        padding: 2.6rem 1.2rem;
        border-radius: 18px;
    }

    .cta-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .cta-inner h2 {
        font-size: clamp(1.9rem, 9vw, 2.5rem);
    }

    .cta-inner p {
        margin-bottom: 1.5rem;
        font-size: 0.97rem;
        line-height: 1.65;
    }

    .btn-primary-tactical {
        width: 100%;
        max-width: 330px;
        min-height: 58px;
        padding: 1rem 1.2rem;
        font-size: 0.88rem;
    }

    .cta-note {
        font-size: 0.86rem;
    }

    .logo-card-premium,
    .logo-card-standard {
        max-width: 300px;
        height: 140px;
    }

    .dossier-card {
        padding: 28px 22px;
    }

    .lead-text {
        font-size: 1.05rem;
    }
}

    .hero {
        height: 60vh;
    }

    .hero-title,
    .hero-title-large {
        font-size: 2.5rem;
    }

    .welcome-section,
    .resource-section,
    .logistics-section,
    .recruitment-section,
    .partner-section-premium {
        padding: 60px 5%;
    }

    .resource-grid,
    .minimal-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-card-premium,
    .logo-card-standard {
        width: 100%;
        max-width: 320px;
        height: 120px;
    }

    .map-wrapper {
        height: 300px;
    }

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

    .activity-chips {
        justify-content: center;
    }

    .btn-primary,
    .btn-primary-cta {
        width: 100%;
        max-width: 300px;
    }
}

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

    .nav-container {
        width: 94%;
    }

    .nav-brand {
        font-size: 0.88rem;
        letter-spacing: 1.2px;
    }

    .nav-links {
        width: 100%;
        max-width: 100%;
        padding: 100px 22px 32px;
    }

    .nav-links a {
        font-size: 0.98rem;
        min-height: 50px;
    }

    .mobile-toggle {
        width: 48px;
        height: 48px;
    }

    .cta-banner {
        padding: 3.5rem 1rem;
    }

    .cta-inner {
        padding: 2.6rem 1.2rem;
        border-radius: 18px;
    }

    .cta-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .cta-inner h2 {
        font-size: clamp(1.9rem, 9vw, 2.5rem);
    }

    .cta-inner p {
        margin-bottom: 1.5rem;
        font-size: 0.97rem;
        line-height: 1.65;
    }

    .btn-primary-tactical {
        width: 100%;
        max-width: 330px;
        min-height: 58px;
        padding: 1rem 1.2rem;
        font-size: 0.88rem;
    }

    .cta-note {
        font-size: 0.86rem;
    }

    .logo-card-premium,
    .logo-card-standard {
        max-width: 300px;
        height: 140px;
    }

    .dossier-card {
        padding: 28px 22px;
    }

    .lead-text {
        font-size: 1.05rem;
    }
}

/* ===============================
   HERO
   =============================== */

.hero {
    height: 80vh;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-sub {
    min-height: 420px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px 60px;
}

.hero-content,
.hero-content-bottom {
    text-align: center;
    max-width: 800px;
}

.hero-eyebrow,
.eyebrow {
    display: block;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    opacity: 0.95;
}

.hero-title,
.hero-title-large {
    color: #ffffff;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 20px;
}

.hero-title span,
.hero-title-large span {
    color: var(--brand-green);
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ===============================
   DONATION CTA
   =============================== */


.cta-inner {
    position: relative;
    width: 100%;
    max-width: 1120px;
    padding: 4.25rem 3.25rem;
    border-radius: 28px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #002d62 0%, #001f3d 55%, #00172c 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    isolation: isolate;
}

.cta-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(27, 127, 116, 0.22), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.07), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(27, 127, 116, 0.14), transparent 35%);
    z-index: -1;
    pointer-events: none;
}

.cta-inner::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 27px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #c7f3ec;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cta-inner h2 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.75rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-inner p {
    max-width: 760px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
    line-height: 1.75;
    font-weight: 400;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.25rem;
}

.btn-primary-tactical {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 1rem 2.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #27a898 0%, #1b7f74 55%, #14685f 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 16px 34px rgba(27, 127, 116, 0.38),
        0 4px 14px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.btn-primary-tactical:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 22px 42px rgba(27, 127, 116, 0.46),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    filter: brightness(1.05);
    border-color: rgba(255, 255, 255, 0.22);
}

.btn-primary-tactical:active {
    transform: translateY(-1px);
}

.btn-primary-tactical:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.12),
        0 0 0 8px rgba(39, 168, 152, 0.25),
        0 20px 40px rgba(27, 127, 116, 0.4);
}

.cta-note {
    display: block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.5;
    font-weight: 500;
}

/* ===============================
   TEXT / INFO SECTION
   =============================== */

.info-grid-section {
    padding: 30px 0 80px;
}

.text-pane {
    min-width: 0;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-slate);
    margin-bottom: 30px;
}

.tactical-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-tag {
    background: var(--brand-navy);
    color: var(--brand-green);
    padding: 15px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    border-left: 4px solid var(--brand-green);
}

/* ===============================
   DOSSIER CARDS
   =============================== */

.activity-dossier {
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
}

.dossier-header {
    text-align: center;
    margin-bottom: 50px;
}

.dossier-header h3 {
    color: var(--brand-navy);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.dossier-header p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-slate);
}

.dossier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.dossier-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.dossier-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.dossier-card h4 {
    color: var(--brand-navy);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.dossier-card p {
    color: var(--text-slate);
}

/* ===============================
   WELCOME / RESOURCE / LOGISTICS
   =============================== */

.welcome-section {
    padding: 120px 10%;
    background: white;
}

.welcome-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.sub-headline {
    font-weight: 900;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: #000;
}

.main-headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-top: 10px;
}

.welcome-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-slate);
}

.btn-primary,
.btn-primary-cta {
    display: inline-block;
    background: var(--brand-green);
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 8px;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(27, 127, 116, 0.2);
    text-align: center;
}

.btn-primary:hover,
.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(27, 127, 116, 0.35);
}

.resource-section {
    padding: 160px 10%;
    background: #f1f5f9;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.res-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.res-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.res-card:hover {
    transform: translateY(-10px);
}

.res-image-box {
    height: 350px;
    overflow: hidden;
}

.res-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.res-card h3 {
    padding: 30px 25px 10px;
    font-weight: 900;
    color: var(--brand-navy);
}

.res-card p {
    padding: 0 25px 30px;
    font-size: 0.95rem;
}

.logistics-section {
    background: var(--brand-navy);
    color: white;
    padding: 100px 10%;
}

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

.age-pill {
    display: inline-block;
    border: 2px solid var(--brand-green);
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-green);
}

.entrance-note,
.entrance-instruction {
    background: #FFFBEB;
    border-left: 4px solid #F59E0B;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 40px 0;
    color: #4b5563;
}

.map-wrapper {
    max-width: 1200px;
    margin: 40px auto 0;
    height: 450px;
    background: #ddd;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(27, 127, 116, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ===============================
   SPONSOR / PARTNER
   =============================== */

.sponsor-section {
    padding: 60px 10%;
    text-align: center;
    background: white;
}

.sponsor-section h3 {
    font-weight: 900;
    margin-bottom: 40px;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sponsor-marquee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    align-items: center;
    opacity: 0.7;
}

.sponsor-marquee img {
    height: 60px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.sponsor-marquee img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.recruitment-section {
    padding: 100px 5%;
    background: var(--white);
}

.partner-section-premium,
.map-section,
.section-combined-logistics {
    background: radial-gradient(circle at top, var(--navy-deep) 0%, var(--navy-black) 100%);
    background-color: var(--navy-black);
    color: var(--white);
    padding: 120px 5%;
    width: 100%;
}

.partner-header-premium {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
    position: relative;
}

.eyebrow-tactical {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.eyebrow-tactical .dot {
    width: 8px;
    height: 8px;
    background: var(--brand-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-green);
}

.alliance-title,
.partner-header-premium h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
}

.alliance-title span {
    color: var(--brand-green);
    -webkit-text-stroke: 1px var(--brand-green);
    background: transparent;
}

.tactical-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.tactical-divider .line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
}

.tactical-divider .crosshair {
    width: 12px;
    height: 12px;
    border: 1px solid var(--brand-green);
    transform: rotate(45deg);
    position: relative;
}

.alliance-description,
.partner-header-premium p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

.alliance-description strong {
    color: var(--brand-green);
    font-weight: 700;
}

.minimal-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.logo-card-premium,
.logo-card-standard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.logo-card-premium {
    width: 350px;
    height: 180px;
    padding: 40px;
    position: relative;
}

.logo-card-standard {
    width: 220px;
    height: 130px;
    padding: 25px;
}

.logo-card-premium img,
.logo-card-standard img,
.minimal-grid img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

.tier-tag {
    position: absolute;
    bottom: 15px;
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-green);
    opacity: 0.6;
}

.logo-card-premium:hover,
.logo-card-standard:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--brand-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ===============================
   EXPERIENCE / LOGISTICS CARD
   =============================== */

.experience-content {
    flex: 1.2;
    min-width: 350px;
}

.section-heading {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy-dark);
    margin-bottom: 30px;
}

.value-text p {
    font-size: 1.2rem;
    color: var(--text-slate);
    margin-bottom: 30px;
}

.activity-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    background: var(--bg-light);
    border: 1px solid #E2E8F0;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.logistics-card {
    flex: 0.8;
    min-width: 320px;
    background: var(--off-white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #F1F5F9;
    position: relative;
}

.card-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: var(--cadet-green);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
}

.log-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.log-icon {
    font-size: 1.8rem;
}

.log-text h3 {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy-dark);
}

.time {
    font-weight: 900;
    color: var(--cadet-green);
    font-size: 1.3rem;
}

/* ===============================
   ANIMATION HOOK
   =============================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 992px) {
    .split-layout,
    .welcome-grid,
    .logistics-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .experience-content,
    .logistics-card {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 991px) {
    .cta-banner {
        padding: 4.5rem 1.25rem;
    }

    .cta-inner {
        padding: 3.5rem 2rem;
        border-radius: 22px;
    }

    .cta-inner h2 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

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

    .hero {
        height: 60vh;
    }

    .hero-title,
    .hero-title-large {
        font-size: 2.5rem;
    }

    .welcome-section,
    .resource-section,
    .logistics-section,
    .recruitment-section,
    .partner-section-premium {
        padding: 60px 5%;
    }

    .resource-grid,
    .minimal-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-card-premium,
    .logo-card-standard {
        width: 100%;
        max-width: 320px;
        height: 120px;
    }

    .map-wrapper {
        height: 300px;
    }

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

    .activity-chips {
        justify-content: center;
    }

    .btn-primary,
    .btn-primary-cta {
        width: 100%;
        max-width: 300px;
    }
}

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

    .cta-banner {
        padding: 3.5rem 1rem;
    }

    .cta-inner {
        padding: 2.6rem 1.2rem;
        border-radius: 18px;
    }

    .cta-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .cta-inner h2 {
        font-size: clamp(1.9rem, 9vw, 2.5rem);
    }

    .cta-inner p {
        margin-bottom: 1.5rem;
        font-size: 0.97rem;
        line-height: 1.65;
    }

    .btn-primary-tactical {
        width: 100%;
        max-width: 330px;
        min-height: 58px;
        padding: 1rem 1.2rem;
        font-size: 0.88rem;
    }

    .cta-note {
        font-size: 0.86rem;
    }

    .logo-card-premium,
    .logo-card-standard {
        max-width: 300px;
        height: 140px;
    }

    .dossier-card {
        padding: 28px 22px;
    }

    .lead-text {
        font-size: 1.05rem;
    }
}
.btn-nav-tactical:hover {
    background: var(--cadet-green) !important;
    color: var(--brand-navy) !important;
}