/* =============================================
   1. CSS Custom Properties (Design Tokens)
   ============================================= */
:root {
    --primary: #155DFC;
    --primary-dark: #0E47C9;
    --primary-light: #E8EFFE;
    --primary-glow: rgba(21, 93, 252, 0.12);
    --dark: #0B1222;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-500: #6B7280;
    --gray-300: #D1D5DB;
    --gray-100: #F3F4F6;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
}

/* =============================================
   2. Reset & Base
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

/* =============================================
   3. Typography
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Prose styling for single posts and page content */
.prose {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.prose h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 2em 0 0.8em;
}

.prose h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.5em 0 0.6em;
}

.prose p {
    margin-bottom: 1.2em;
}

.prose ul,
.prose ol {
    margin-bottom: 1.2em;
    padding-left: 1.5em;
}

.prose li {
    margin-bottom: 0.4em;
}

.prose blockquote {
    border-left: 4px solid var(--primary);
    padding: 1em 1.5em;
    margin: 1.5em 0;
    background: var(--primary-light);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.prose img {
    border-radius: var(--radius);
    margin: 1.5em 0;
}

/* =============================================
   4. Layout
   ============================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
}

section {
    padding: 80px 24px;
}

main {
    padding-top: 0;
}

/* =============================================
   5. Components
   ============================================= */

/* 5a. Navigation */
nav#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
}

nav#nav.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo svg {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-links .link-ghost {
    color: var(--gray-700);
}

.nav-links .link-ghost:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-links .link-primary {
    background: var(--primary);
    color: var(--white);
}

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

/* 5b. Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(21, 93, 252, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(21, 93, 252, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--white);
    color: var(--gray-900);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* 5c. Section headers */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.75;
    max-width: 680px;
}

/* 5d. Direction cards */
.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.dir-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.dir-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.dir-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

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

.dir-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary);
}

.dir-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.dir-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* 5e. News cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 32px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    color: inherit;
}

.news-img {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-light), #d4e4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-body {
    padding: 24px;
}

.news-date {
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.news-body h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.4;
}

.news-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.news-link:hover {
    text-decoration: underline;
}

/* 5f. Member logos */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.logo-cell {
    height: 80px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 600;
    border: 1px dashed var(--gray-300);
    transition: all 0.2s;
}

.logo-cell:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

/* 5g. Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    color: var(--gray-900);
    transition: border-color 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* =============================================
   6. Sections
   ============================================= */

/* 6a. Hero */
.hero {
    padding: 160px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(21, 93, 252, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 840px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: var(--gray-700);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}

/* 6b. About */
.about {
    background: var(--white);
}

.about .section-text {
    margin-bottom: 0;
}

/* 6c. Directions */
.directions {
    background: var(--gray-100);
}

/* 6d. CTA Banner */
.cta-banner {
    background: var(--dark);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(21, 93, 252, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(21, 93, 252, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner .container {
    position: relative;
}

.cta-banner .section-title {
    color: var(--white);
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* 6e. Footer */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
    text-align: center;
}

footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

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

/* =============================================
   7. Page-specific
   ============================================= */

/* Members section */
.members {
    background: var(--white);
    text-align: center;
}

.members .section-text {
    margin: 0 auto 40px;
}

/* News section */
.news {
    background: var(--gray-100);
}

/* Single post */
.single-header {
    padding: 92px 24px 48px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.single-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.single-header .container {
    max-width: 780px;
}

.single-header .section-label {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.single-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--white);
    position: relative;
}

.single-header .single-meta time {
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.single-meta {
    font-size: 0.88rem;
    color: var(--gray-500);
    font-weight: 500;
}

.single-content {
    padding: 48px 24px 80px;
}

.single-content .container {
    max-width: 780px;
}

/* Archive */
.archive-header {
    padding: 92px 24px 48px;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.archive-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.archive-header h1 {
    color: var(--white);
    position: relative;
}

.archive-header .section-label {
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.archive-content {
    padding: 48px 24px 80px;
    background: var(--gray-100);
}

/* Page header for inner pages */
.page-header {
    padding: 92px 24px 48px;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    position: relative;
}

.page-header + section,
.page-header + .page-content,
.single-header + .single-content,
.archive-header + .archive-content {
    padding-top: 48px;
}

/* 404 */
.error-404 {
    padding: 160px 24px 100px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404 h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 16px;
}

.error-404 h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.error-404 p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info p {
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info a {
    color: var(--primary);
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-300);
    transition: all 0.2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* =============================================
   8. Animations
   ============================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   9. Responsive
   ============================================= */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav-links .link-ghost {
        display: none;
    }

    section {
        padding: 60px 20px;
    }

    .hero {
        padding: 130px 20px 70px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

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

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

    .single-header {
        padding: 80px 20px 32px;
    }

    .archive-header {
        padding: 80px 20px 36px;
    }

    .page-header {
        padding: 80px 20px 36px;
    }
}

/* =============================================
   10. V2.0 — New Components
   ============================================= */

/* 10. SVG Icons */
.icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* 10a. Hero Counters Band */
.hero-counters {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.4s ease both;
}

.counter-item {
    text-align: center;
}

.counter-item .counter-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.counter-item .counter-label {
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-top: 4px;
}

/* 10b. Why LogiHub — Problem/Solution Cards */
.why-logihub {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.why-problem,
.why-solution {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.why-problem {
    color: var(--gray-700);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-300);
}

.why-solution {
    color: var(--dark);
    font-weight: 600;
}

.dot-red,
.dot-blue {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.dot-red {
    background: #EF4444;
}

.dot-blue {
    background: var(--primary);
}

/* 10c. Mission & Vision — Split Layout */
.mission-vision {
    background: var(--gray-100);
}

.mv-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.mv-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.mv-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.mv-block p {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.75;
}

/* 10d. Statistics — Donut Charts (CSS only) */
.statistics {
    background: var(--white);
}

.stats-subsection {
    margin-top: 40px;
}

.stats-subsection h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.donut-item {
    text-align: center;
    width: 130px;
}

.donut-chart {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) calc(var(--percentage) * 1%), var(--gray-100) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 12px;
}

.donut-chart::after {
    content: '';
    width: 74px;
    height: 74px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
}

.donut-value {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
}

.donut-label {
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 600;
    line-height: 1.3;
}

.stats-context {
    font-size: 1.02rem;
    color: var(--gray-700);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--gray-300);
}

/* 10e. Benefits — Member Benefit Cards */
.benefits {
    background: var(--gray-100);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--primary);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.benefit-card-cta {
    background: var(--primary-light);
    border-color: rgba(21, 93, 252, 0.15);
}

.benefit-icon {
    color: var(--primary);
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* 10f. Objectives — 3x2 Grid */
.objectives {
    background: var(--white);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.obj-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    position: relative;
}

.obj-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.obj-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.obj-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.obj-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* 10g. Academy Preview — Steps Flow */
.academy-preview {
    background: var(--gray-100);
}

.steps-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin: 48px auto 40px;
    max-width: 900px;
}

.step-item {
    text-align: center;
    flex: 1;
    padding: 0 16px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: var(--gray-300);
    z-index: 0;
}

.step-circle {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 14px;
    position: relative;
    z-index: 1;
}

.step-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.step-item p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.course-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.2s;
}

.course-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* 10h. Projects 2026 — Timeline */
.projects-timeline {
    background: var(--white);
}

.timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-light);
    border-radius: 2px;
}

.timeline-card {
    position: relative;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 28px 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.timeline-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 32px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    z-index: 1;
}

.timeline-quarter {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* 10i. Member Types */
.member-types {
    background: var(--gray-100);
}

.member-types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.member-type-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.member-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.member-type-icon {
    color: var(--primary);
    margin-bottom: 14px;
}

.member-type-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.member-type-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* 10j. Event Cards */
.event-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    margin-bottom: 16px;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.event-date-badge {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-date-badge .event-day {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.event-date-badge .event-month {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.event-body h3 a {
    color: inherit;
    text-decoration: none;
}

.event-body h3 a:hover {
    color: var(--primary);
}

.event-location {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.event-status {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-status.upcoming,
.event-status.status-upcoming {
    background: #DCFCE7;
    color: #166534;
}

.event-status.past,
.event-status.status-past {
    background: var(--gray-100);
    color: var(--gray-500);
}

.event-past {
    opacity: 0.7;
}

.event-image {
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.event-excerpt {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 12px;
}

.event-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.event-title a {
    color: inherit;
    text-decoration: none;
}

.event-title a:hover {
    color: var(--primary);
}

/* 10k. Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.team-card-img {
    width: 100%;
    height: 240px;
    background: var(--gray-100);
    overflow: hidden;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-body {
    padding: 20px;
}

.team-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.team-card-body .team-role {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card-body p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* 10l. FAQ Accordion */
.faq-list {
    margin-top: 40px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-300);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-family: 'Urbanist', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gray-500);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* 10m. Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 2px solid var(--gray-300);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(21, 93, 252, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.pricing-target {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--gray-700);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* 10n. Governance Diagram */
.governance {
    padding: 60px 24px;
}

.gov-level {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    position: relative;
}

.gov-level::after {
    content: '↓';
    display: block;
    width: 100%;
    text-align: center;
    color: var(--gray-300);
    font-size: 1.4rem;
    margin-top: 8px;
}

.gov-level:last-child::after {
    display: none;
}

.gov-node {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 14px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    text-align: center;
    min-width: 200px;
}

.gov-node.primary {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

/* 10o. Footer Multi-column */
.footer-main {
    background: var(--dark);
    padding: 60px 24px 40px;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-top: 16px;
}

.footer-brand .nav-logo svg {
    height: 32px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}

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

.footer-col p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    display: inline-flex;
    padding: 0;
}

.footer-bottom {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* 10p. Tab Switcher */
.tabs-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

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

.tab-content {
    display: none;
}

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

/* 10q. Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* 10r. Course Module Cards */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.course-icon {
    color: var(--primary);
    margin-bottom: 14px;
}

.course-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.course-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 16px;
}

.course-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 600;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 10s. Page Templates */
.page-content {
    padding: 60px 24px;
}

.page-content .container {
    max-width: 800px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Contact page */
.contact-section {
    padding: 60px 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 0.92rem;
    color: var(--gray-500);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-map {
    margin-top: 28px;
}

/* Events page */
.events-section {
    padding: 0 24px 80px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.events-empty {
    text-align: center;
    color: var(--gray-500);
    padding: 60px 0;
    font-size: 1rem;
}

.tabs-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

/* Academy CTA */
.academy-cta {
    background: var(--dark);
    padding: 80px 24px;
    text-align: center;
}

.academy-cta h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.academy-cta p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 28px;
}

/* Governance — page-despre enhancements */
.gov-chart {
    max-width: 700px;
    margin: 40px auto 0;
}

.gov-node h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.gov-node p {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 400;
    margin: 0;
}

.gov-node-primary {
    border-color: var(--primary);
    background: var(--primary-light);
}

.gov-node-primary h3 {
    color: var(--primary);
}

.gov-node-small {
    min-width: 150px;
    padding: 10px 16px;
    font-size: 0.82rem;
}

.gov-level-multi {
    gap: 12px;
}

/* Team section — page-despre */
.team-section {
    padding: 60px 24px;
    background: var(--gray-100);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
}

.team-section .team-card {
    padding: 32px 24px;
}

.team-section .team-card h3 {
    margin-bottom: 4px;
}

/* FAQ section — page-membership */
.faq-section {
    padding: 60px 24px;
    background: var(--gray-100);
    text-align: center;
}

.faq-list {
    text-align: left;
}

/* Pricing section — page-membership */
.pricing {
    padding: 60px 24px;
}

/* Courses section — page-academy */
.courses-section {
    padding: 60px 24px;
    background: var(--gray-100);
}

/* Steps section — page-academy */
.steps-section {
    padding: 60px 24px;
}

/* Footer logo fix */
.footer-logo {
    display: inline-block;
    text-decoration: none;
}

.footer-logo svg {
    height: 32px;
}

/* Footer contact items */
.footer-contact a,
.footer-contact span {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 4px 0;
}

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

/* Footer social in column */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
    padding: 0;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Footer bottom inside footer-main */
.footer-main .footer-bottom {
    margin-top: 40px;
}

/* =============================================
   10t. Objective Detail Pages
   ============================================= */
a.obj-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.obj-icon {
    display: block;
    color: var(--primary);
    margin-bottom: 8px;
}

/* Intro section */
.obj-intro {
    padding: 48px 24px;
}

.obj-intro-inner {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.obj-intro-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--primary-light);
    border-radius: 20px;
    color: var(--primary);
}

.obj-intro-text p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0;
}

/* Key points grid */
.obj-points-section {
    padding: 48px 24px;
    background: var(--gray-100);
}

.obj-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.obj-point-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.obj-point-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.obj-point-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.obj-point-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.obj-point-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

/* Impact stat band */
.obj-stat {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 72px 24px;
    text-align: center;
}

.obj-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.obj-stat .container {
    position: relative;
}

.obj-stat-value {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.obj-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

/* Related objectives */
.obj-related {
    padding: 60px 24px;
}

.obj-related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.obj-related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: var(--gray-100);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    text-align: center;
}

.obj-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.obj-related-card.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.obj-related-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.8rem;
}

.obj-related-icon {
    color: var(--primary);
}

.obj-related-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

/* Objective CTA */
.obj-cta {
    background: var(--primary-light);
    padding: 64px 24px;
    text-align: center;
}

.obj-cta h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.obj-cta p {
    max-width: 580px;
    margin: 0 auto 28px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* =============================================
   11. V2.0 — Responsive Additions
   ============================================= */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .member-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .obj-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .obj-points {
        grid-template-columns: 1fr;
    }

    .obj-intro-inner {
        flex-direction: column;
    }

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

    .mv-split {
        grid-template-columns: 1fr;
    }

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

    .steps-flow {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .step-item:not(:last-child)::after {
        display: none;
    }

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

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

    .hero-counters {
        gap: 24px;
    }

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

    .event-card {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

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

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

    .gov-level-multi {
        flex-direction: column;
        align-items: center;
    }

    .member-types-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px 24px;
        flex-direction: column;
        gap: 4px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
        width: 100%;
    }

    .nav-links .link-ghost {
        display: block;
    }

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

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

    .timeline {
        padding-left: 30px;
    }

    .timeline-card::before {
        left: -23px;
    }

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

    .obj-related-grid {
        grid-template-columns: 1fr;
    }

    .hero-counters {
        gap: 16px;
    }

    .counter-item .counter-value {
        font-size: 1.5rem;
    }
}
