/* ===== NAICB Global Styles ===== */
:root {
    --neon-green: #4ade80;
    --cyan: #06b6d4;
    --violet: #7c3aed;
    --blue: #2563eb;
    --lavender: #a78bfa;
    --navy: #0f172a;
    --navy-light: #1e293b;
    --navy-mid: #162036;
    --white: #f8fafc;
    --gray: #94a3b8;
    --gray-light: #cbd5e1;
    --gradient-neon: linear-gradient(135deg, var(--neon-green), var(--cyan), var(--violet));
    --gradient-text: linear-gradient(90deg, var(--neon-green), var(--cyan), var(--lavender));
    --gradient-btn: linear-gradient(135deg, var(--neon-green), var(--cyan));
    --gradient-card: linear-gradient(180deg, rgba(30,41,59,0.8), rgba(15,23,42,0.95));
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-glow: 0 0 40px rgba(74, 222, 128, 0.15), 0 0 80px rgba(6, 182, 212, 0.1);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

a { color: var(--cyan); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--neon-green); }

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

/* Gradient text */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-btn);
    color: var(--navy);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.5);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--cyan);
}
.btn-outline:hover {
    background: var(--cyan);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-block { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s;
}
.site-header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    height: 44px;
    width: auto;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(124, 58, 237, 0.15);
}
.nav-link.nav-cta {
    background: var(--gradient-btn);
    color: var(--navy);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
}
.nav-link.nav-cta:hover {
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
    color: var(--navy);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 70%);
    top: 10%;
    right: -10%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}
.hero-glow::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
    top: 40%;
    left: -60%;
    animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 20px); }
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--neon-green);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    animation: pulse-border 3s ease-in-out infinite;
}
@keyframes pulse-border {
    0%, 100% { border-color: var(--neon-green); box-shadow: 0 0 10px rgba(74, 222, 128, 0.2); }
    50% { border-color: var(--cyan); box-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 48px;
}

/* ===== OFFERINGS ===== */
.offerings {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

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

.offering-card {
    background: var(--gradient-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.offering-gov::before { background: var(--gradient-btn); }
.offering-cred::before { background: linear-gradient(90deg, var(--violet), var(--lavender)); }
.offering-ce::before { background: linear-gradient(90deg, var(--cyan), var(--blue)); }

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(124, 58, 237, 0.4);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--cyan);
}
.offering-gov .card-icon { color: var(--neon-green); }
.offering-cred .card-icon { color: var(--violet); }
.offering-ce .card-icon { color: var(--cyan); }

.card-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.badge-green { background: rgba(74, 222, 128, 0.15); color: var(--neon-green); border: 1px solid rgba(74, 222, 128, 0.3); }
.badge-violet { background: rgba(124, 58, 237, 0.15); color: var(--lavender); border: 1px solid rgba(124, 58, 237, 0.3); }
.badge-cyan { background: rgba(6, 182, 212, 0.15); color: var(--cyan); border: 1px solid rgba(6, 182, 212, 0.3); }
.badge-blue { background: rgba(37, 99, 235, 0.15); color: var(--blue); border: 1px solid rgba(37, 99, 235, 0.3); }

.offering-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.card-tagline {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.card-detail {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.price-item {
    background: rgba(15, 23, 42, 0.6);
    border-radius: var(--radius);
    padding: 12px 8px;
}
.price-item .price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-green);
}
.price-item .price-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-highlight {
    margin-bottom: 24px;
}
.price-highlight .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--lavender);
}
.price-highlight .price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
}

.ce-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}
.ce-tier {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: var(--cyan);
}

/* ===== STATS ===== */
.stats {
    padding: 80px 0;
    background: var(--navy-mid);
    border-top: 1px solid rgba(124, 58, 237, 0.15);
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--navy);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
}
.testimonial-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: #facc15;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
}
.testimonial-text {
    color: var(--gray-light);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
}
.testimonial-author span {
    color: var(--gray);
    font-size: 0.8rem;
}

/* ===== CHALLENGE SECTION ===== */
.challenge-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.challenge-inner {
    position: relative;
    background: var(--gradient-card);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    text-align: center;
    overflow: hidden;
}
.challenge-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.12), transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}
.challenge-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.challenge-desc {
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.challenge-prizes {
    margin-bottom: 32px;
}
.challenge-prizes h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--cyan);
}
.challenge-prizes ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.challenge-prizes li {
    padding: 8px 20px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--neon-green);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-light);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    height: 48px;
    margin-bottom: 16px;
}
.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.footer-tagline {
    font-style: italic;
}
.footer-links h4, .footer-contact h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--white);
}
.footer-links a {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--neon-green); }
.footer-contact p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--gray);
    transition: all 0.3s;
}
.social-icon:hover {
    color: var(--neon-green);
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
    transform: translateY(-2px);
}
.social-icon svg { width: 16px; height: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(124, 58, 237, 0.15);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    color: var(--gray);
    font-size: 0.8rem;
}

/* ===== PAGE HEADER (sub-pages) ===== */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.page-header p {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 80px 0;
}
.content-section:nth-child(even) {
    background: var(--navy-mid);
}
.content-section:nth-child(odd) {
    background: var(--navy);
}

/* ===== PRICING TABLE ===== */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 32px 0;
}
.pricing-table thead th {
    background: rgba(124, 58, 237, 0.2);
    padding: 16px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}
.pricing-table tbody td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    font-size: 0.95rem;
    color: var(--gray-light);
}
.pricing-table tbody tr {
    background: rgba(30, 41, 59, 0.5);
    transition: background 0.3s;
}
.pricing-table tbody tr:hover {
    background: rgba(124, 58, 237, 0.1);
}
.pricing-table .price-cell {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--neon-green);
}

/* ===== INFO CARDS ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}
.info-card {
    background: var(--gradient-card);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s;
}
.info-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-4px);
}
.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.info-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
}
.info-card .card-icon-sm {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

/* ===== TIER PATH DIAGRAM ===== */
.tier-path {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 40px 0;
    position: relative;
}
.tier-path::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-neon);
    z-index: 0;
}
.tier-block {
    flex: 1;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px 16px;
    background: var(--gradient-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius);
    margin: 0 8px;
    transition: all 0.3s;
}
.tier-block:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.5);
}
.tier-block .tier-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.tier-block h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.tier-block .tier-creds {
    font-size: 0.8rem;
    color: var(--gray);
}
.tier-foundation .tier-label { color: var(--neon-green); }
.tier-1 .tier-label { color: var(--cyan); }
.tier-2 .tier-label { color: var(--lavender); }
.tier-3 .tier-label { color: var(--violet); }

/* ===== CREDENTIAL CARDS ===== */
.cred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
}
.cred-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}
.cred-card:hover {
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}
.cred-card .cred-abbr {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.cred-card .cred-name {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ===== DIR BADGE ===== */
.dir-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(74, 222, 128, 0.08);
    border: 2px solid var(--neon-green);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.15);
    margin-bottom: 32px;
}
.dir-badge svg {
    width: 28px;
    height: 28px;
}

/* ===== MODULES LIST ===== */
.modules-list {
    list-style: none;
    margin: 24px 0;
}
.modules-list li {
    padding: 20px 24px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--radius);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s;
}
.modules-list li:hover {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(30, 41, 59, 0.8);
}
.module-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
    flex-shrink: 0;
    width: 40px;
}
.module-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.module-content p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== FEATURES LIST ===== */
.features-list {
    list-style: none;
    margin: 24px 0;
}
.features-list li {
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 12px;
}
.features-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
    flex-shrink: 0;
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--gray-light);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.2);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-group select option {
    background: var(--navy);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== CONTACT INFO ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info-list {
    list-style: none;
}
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.contact-info-list .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
}
.contact-info-list .info-icon svg {
    width: 20px;
    height: 20px;
}

/* ===== ABOUT PAGE ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 32px 0;
}
.value-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}
.value-card:hover {
    border-color: rgba(74, 222, 128, 0.3);
    transform: translateY(-4px);
}
.value-card .value-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}
.value-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.value-card p {
    font-size: 0.8rem;
    color: var(--gray);
}

.founder-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
}
.founder-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
}
.founder-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.founder-info .founder-title {
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 16px;
}
.founder-info p {
    color: var(--gray-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

/* ===== CE PAGE ===== */
.ce-req-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}
.ce-req-card {
    background: var(--gradient-card);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}
.ce-req-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.4);
}
.ce-req-card .ce-hours {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.ce-req-card .ce-period {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 16px;
}
.ce-req-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.ce-req-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== CHALLENGE PAGE ===== */
.challenge-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.challenge-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74, 222, 128, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 222, 128, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.prize-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}
.prize-card {
    background: var(--gradient-card);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}
.prize-card:hover {
    border-color: rgba(74, 222, 128, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.1);
}
.prize-card .prize-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}
.prize-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.prize-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

.past-winners {
    margin: 48px 0;
}
.winner-placeholder {
    background: rgba(30, 41, 59, 0.6);
    border: 1px dashed rgba(124, 58, 237, 0.3);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    color: var(--gray);
    font-style: italic;
}

/* ===== TWO COL LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .offerings-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tier-path { flex-direction: column; }
    .tier-path::before { display: none; }
    .ce-req-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .prize-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .founder-section { grid-template-columns: 1fr; text-align: center; }
    .founder-photo { max-width: 200px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    }
    .main-nav.open { display: flex; }
    .nav-link { padding: 12px 16px; width: 100%; text-align: left; }
    .hero-title { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .cred-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; }
    .price-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .cred-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}
