/* ===== VARIABLES ===== */

:root {
    --teal: #0f4ea4;
    --teal-dark: #0a3575;
    --teal-light: #eaf3fc;
    --teal-mid: #bfd9f5;
    --gold: #27b5cf;
    --gold-light: #e6f8fc;
    --text: #111b3a;
    --text-muted: #55627d;
    --bg: #ffffff;
    --bg-soft: #f4f8fd;
    --border: #dbe6f3;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(15, 78, 164, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 78, 164, 0.14);
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}


/* ===== RESET ===== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

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

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


/* ===== UTILITIES ===== */

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

.section {
    padding: 80px 0;
}

em {
    font-style: italic;
    color: var(--teal);
    font-family: var(--font-display);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-light);
    border: 1px solid var(--teal-mid);
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}


/* ===== ENTRANCE ANIMATIONS ===== */

@keyframes pageFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--anim-delay, 0ms);
    will-change: opacity, transform;
}

[data-animate="fade"] {
    transform: none;
}

[data-animate="left"] {
    transform: translateX(-28px);
}

[data-animate="right"] {
    transform: translateX(28px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.hero .hero-badge {
    animation: pageFadeIn 0.55s ease-out 0.05s both;
}

.hero h1 {
    animation: pageFadeInUp 0.7s ease-out 0.15s both;
}

.hero .hero-sub {
    animation: pageFadeInUp 0.7s ease-out 0.25s both;
}

.hero .hero-cta {
    animation: pageFadeInUp 0.7s ease-out 0.35s both;
}

.hero .hero-stats {
    animation: pageFadeInUp 0.7s ease-out 0.45s both;
}

@media (prefers-reduced-motion: reduce) {
    [data-animate],
    .hero .hero-badge,
    .hero h1,
    .hero .hero-sub,
    .hero .hero-cta,
    .hero .hero-stats {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}


/* ===== BUTTONS ===== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 78, 164, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border-color: var(--teal);
}

.btn-outline:hover {
    background: var(--teal-light);
}

.btn-nav {
    background: var(--teal);
    color: #fff;
    padding: 9px 22px;
    font-size: 0.875rem;
}

.btn-nav:hover {
    background: var(--teal-dark);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}


/* Keep course card CTAs visually as buttons even without btn-primary class. */

.course-footer .btn-sm {
    background: var(--teal-light);
    color: var(--teal-dark);
    border: 1.5px solid var(--teal-mid);
}

.course-footer .btn-sm:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.full-width {
    width: 100%;
}


/* ===== NAV ===== */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

#navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
}

.logo {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
    color: var(--text);
}

.logo-img {
    display: block;
    width: auto;
    height: 38px;
    object-fit: contain;
}

.logo span {
    color: var(--teal);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    flex-wrap: nowrap;
    align-items: center;
    margin-left: auto;
    margin-right: 0.75rem;
}

.nav-links a {
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--text-muted);
    transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
    background: var(--teal-light);
}

.nav-links a.student-login {
    background: var(--gold-light);
    color: #0b3f8f;
    border: 1px solid #bfd9f5;
}

.nav-links a.student-login:hover {
    background: #dff2fa;
    color: #0a3575;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

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

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px 20px;
    border-top: 1px solid var(--border);
    background: #fff;
}

.mobile-menu a {
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

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

.mobile-menu.open {
    display: flex;
}

@media (max-width: 1200px) {
    .btn-nav {
        display: none;
    }
    .nav-links a {
        padding: 6px 8px;
        font-size: 0.84rem;
    }
}


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

.hero {
    min-height: auto;
    /* display: flex; */
    align-items: center;
    padding: 108px 0 56px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eaf3fc 0%, #f2f7ff 40%, #eefbff 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 78, 164, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 181, 207, 0.08) 0%, transparent 70%);
    bottom: 0;
    left: 10%;
}

.container.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    text-align: left;
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    position: absolute;
    right: 3%;
    top: 52%;
    transform: translateY(-50%);
    width: min(34vw, 420px);
    z-index: 1;
}

.hero-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 999px;
    background: var(--teal-light);
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid var(--teal-mid);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal);
    font-family: var(--font-display);
}

.stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 240px;
}

.hc-icon {
    font-size: 1.5rem;
}

.hc-text {
    font-size: 0.85rem;
}

.hc-text strong {
    display: block;
    color: var(--text);
}

.hc-text {
    color: var(--text-muted);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 1.5s;
}


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

.page-hero {
    background: linear-gradient(135deg, #e8f5f3 0%, #f0faf8 60%, #fdf9f3 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero.short {
    padding: 120px 0 60px;
    text-align: left;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero.short p {
    margin: 0;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}


/* ===== WHY GRID ===== */

.why {
    background: var(--bg-soft);
}

.why h2 {
    text-align: center;
}

.why .section-label {
    display: block;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-mid);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.9rem;
}


/* ===== COURSES ===== */

.courses-preview {}

.courses-preview h2,
.courses-preview .section-label {
    text-align: center;
    display: block;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.courses-grid.large {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.course-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-mid);
}

.course-card.featured {
    border-color: var(--teal-mid);
    background: var(--teal-light);
}

.course-card.featured::before {
    transform: scaleX(1);
}

.course-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--teal-light);
    color: var(--teal);
    margin-bottom: 1rem;
    border: 1px solid var(--teal-mid);
}

.course-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.course-card p {
    font-size: 0.9rem;
    flex: 1;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.course-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--teal);
    font-family: var(--font-display);
}

.courses-cta {
    text-align: center;
    margin-top: 3rem;
}


/* Filter bar */

.filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.course-card.hidden {
    display: none;
}


/* ===== BUNDLE ===== */

.bundle {
    background: var(--teal);
    color: #fff;
}

.bundle-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 360px);
    align-items: center;
    gap: 2.5rem;
}

.bundle-text {
    max-width: 760px;
}

.bundle-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bundle h2 {
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.bundle h2 em {
    color: var(--teal-mid);
}

.bundle p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
}

.bundle-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.bundle-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 0;
    font-size: 0.95rem;
}

.bundle-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bundle-price strong {
    font-size: 2.2rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
}

.bundle-price del {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

.bundle-price span {
    background: var(--gold);
    color: #fff;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bundle .btn-primary {
    background: #fff;
    color: var(--teal);
    border-color: #fff;
}

.bundle .btn-primary:hover {
    background: var(--teal-light);
}

.bundle-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bundle-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
}

.bundle-circle span {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-display);
    line-height: 1;
}

.bundle-circle small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: 4px;
}


/* ===== SUBSCRIPTION ===== */

.subscription {
    background: var(--bg-soft);
    text-align: center;
}

.subscription .section-label,
.subscription h2 {
    display: block;
    text-align: center;
}

.sub-card {
    max-width: 420px;
    margin: 3rem auto 0;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 2px solid var(--teal-mid);
    box-shadow: var(--shadow-lg);
}

.sub-price {
    font-size: 3rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.sub-price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.sub-card p {
    margin-bottom: 1.5rem;
}

.sub-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.sub-features li {
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.sub-features li:last-child {
    border-bottom: none;
}


/* ===== CERTIFICATES ===== */

.certs {}

.certs-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.certs-text {
    flex: 1;
    min-width: 280px;
}

.cert-features {
    list-style: none;
    margin-top: 1.5rem;
}

.cert-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}

.cert-features li span {
    font-size: 1.2rem;
}

.cert-features li:last-child {
    border-bottom: none;
}

.cert-visual {
    flex: 1;
    min-width: 280px;
}

.cert-mock {
    background: linear-gradient(135deg, #fff 0%, var(--teal-light) 100%);
    border: 2px solid var(--teal-mid);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cert-mock::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(15, 78, 164, 0.03) 20px, rgba(15, 78, 164, 0.03) 21px);
}

.cert-top {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cert-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.cert-course {
    font-size: 1rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cert-bottom {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* ===== PLATFORM ===== */

.platform {
    background: var(--bg-soft);
}

.platform .section-label {
    display: block;
    text-align: center;
}

.platform h2 {
    text-align: center;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.platform-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.25s ease;
}

.platform-card:hover {
    border-color: var(--teal-mid);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.platform-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.platform-card p {
    font-size: 0.9rem;
}


/* Keep section badges compact even when section styles use display:block */

.why .section-label,
.courses-preview .section-label,
.subscription .section-label,
.platform .section-label,
.faqs .section-label,
.options .section-label,
.who-we-work .section-label,
.placement-detail .section-label,
.governance .section-label,
.partnership .section-label {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}


/* ===== FAQs ===== */

.faqs {
    background: var(--bg-soft);
}

.faqs h2 {
    text-align: center;
}

.faqs .section-label {
    display: block;
    text-align: center;
}

.faq-list {
    max-width: 720px;
    margin: 3rem auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: background 0.2s;
}

.faq-q:hover {
    background: var(--teal-light);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--teal);
    flex-shrink: 0;
    transition: transform 0.3s;
    font-style: normal;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem;
}


/* ===== CTA BANNER ===== */

.cta-banner {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    text-align: center;
}

.cta-banner h2 {
    color: #fff;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-banner h2 em {
    color: var(--teal-mid);
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--teal);
    border-color: #fff;
}

.cta-banner .btn-primary:hover {
    background: var(--teal-light);
}

.placement-contact-note {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.25rem;
    font-weight: 500;
}


/* ===== CONTACT ===== */

.contact {
    background: var(--bg-soft);
}

.contact-inner {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-details {
    margin: 1.5rem 0;
}

.cd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.cd-item:last-child {
    border-bottom: none;
}

.contact-corporate {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.contact-corporate h3 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-corporate p {
    font-size: 0.9rem;
}

.contact-form {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.25rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(15, 78, 164, 0.1);
}

.form-success {
    display: none;
    margin-top: 1rem;
    padding: 12px 16px;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.form-success.visible {
    display: block;
}


/* ===== COURSE PAGE ===== */

.courses-section {}

.course-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

.course-detail-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.course-detail-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.outcomes-list {
    list-style: none;
}

.outcomes-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.outcomes-list li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
}

.outcomes-list li:last-child {
    border-bottom: none;
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-soft);
    border-radius: 8px;
}

.module-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--teal);
    font-family: var(--font-display);
    min-width: 32px;
}

.module-info strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.module-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

.cig-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    padding: 1rem;
    background: var(--teal-light);
    border-radius: 8px;
}

.cig-item span {
    font-size: 1.5rem;
}

.cig-item strong {
    font-size: 0.8rem;
}

.course-sidebar {
    position: sticky;
    top: 90px;
}

.purchase-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 2px solid var(--teal-mid);
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.purchase-price {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.purchase-meta {
    margin-bottom: 1.5rem;
}

.pm-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.pm-row:last-child {
    border-bottom: none;
}

.purchase-guarantee {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

.sidebar-bundle {
    background: var(--gold-light);
    border: 1px solid #e8d5b0;
    border-radius: var(--radius);
    padding: 1.5rem;
}

.sidebar-bundle strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.sidebar-bundle p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.sidebar-bundle .btn-outline {
    color: var(--gold);
    border-color: var(--gold);
}

.sidebar-bundle .btn-outline:hover {
    background: var(--gold-light);
}


/* ===== ABOUT PAGE ===== */

.about-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-mission {
    flex: 0 0 280px;
}

.mission-card {
    background: var(--teal);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.mission-card h3 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.85);
}

.options {
    background: var(--bg-soft);
}

.options h2 {
    text-align: center;
}

.options .section-label {
    display: block;
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.option-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-intro {
    background: #fff;
}

.team-intro .container {
    max-width: 880px;
}


/* ===== PLACEMENTS ===== */

.placement-overview {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.placement-overview .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.provides-grid {
    text-align: center;
}

.provides-grid h2 {
    margin-bottom: 2rem;
}

.provides-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.provide-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.pc-icon {
    font-size: 1.4rem;
}

.provide-card p {
    font-size: 0.9rem;
    margin: 0;
}

.nmc-note {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.who-we-work {
    background: var(--bg-soft);
}

.who-we-work h2 {
    text-align: center;
}

.who-we-work .section-label {
    display: block;
    text-align: center;
}

.work-with-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0 2rem;
}

.ww-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
}

.ww-card span {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.ww-card p {
    font-size: 0.9rem;
    margin: 0;
}

.ww-note {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    font-style: italic;
}

.placement-about {
    background: #fff;
}

.placement-about .container {
    max-width: 920px;
}

.placement-detail .section-label {
    display: block;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem;
    margin: 2rem 0;
}

.detail-item {
    padding: 12px 16px;
    background: var(--teal-light);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--teal-mid);
}

.develop-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.develop-pills span {
    padding: 8px 16px;
    background: var(--teal);
    color: #fff;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
}

.governance {
    background: var(--bg-soft);
}

.governance .section-label {
    display: block;
}

.gov-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gov-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--border);
}

.gov-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.gov-card ul {
    list-style: none;
}

.gov-card li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    padding-left: 16px;
    position: relative;
}

.gov-card li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.gov-card li:last-child {
    border-bottom: none;
}

.partnership .section-label,
.partnership h2 {
    display: block;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.pg-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1.25rem;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.pg-item span {
    font-size: 1.4rem;
}

.pg-item p {
    font-size: 0.9rem;
    margin: 0;
}


/* ===== FOOTER ===== */

footer {
    background: var(--text);
    color: #fff;
    padding: 48px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(280px, 1.8fr) minmax(280px, 1fr);
    column-gap: 3rem;
    row-gap: 2rem;
    align-items: start;
    padding-bottom: 2.25rem;
}

.footer-brand {
    max-width: 680px;
}

.footer-brand .logo {
    color: #fff;
    background: #fff;
    border-radius: 10px;
    padding: 7px 10px;
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-brand .logo .logo-img {
    height: 34px;
}

.footer-site-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-brand .logo span {
    color: var(--teal-mid);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.fl-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fl-col strong {
    color: #fff;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.fl-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.fl-col a:hover {
    color: var(--teal-mid);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin: 0;
}


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

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 102px 0 48px;
    }
    .hero-logo-wrap {
        position: static;
        transform: none;
        width: auto;
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
    .hero-logo {
        width: auto;
        height: 60px;
    }
    .hero-visual {
        display: none;
    }
    .course-layout {
        grid-template-columns: 1fr;
    }
    .course-sidebar {
        position: static;
    }
    .cert-info-grid {
        grid-template-columns: 1fr;
    }
    .certs-inner {
        flex-direction: column;
    }
    .platform-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-inner {
        gap: 0.75rem;
        padding: 0 16px;
    }
    .logo {
        font-size: 1.05rem;
        max-width: calc(100% - 52px);
    }
    .nav-links,
    .btn-nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .section {
        padding: 60px 0;
    }
    .bundle-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .bundle-visual {
        justify-content: center;
    }
    .about-grid {
        flex-direction: column;
    }
    .about-mission {
        flex: none;
        width: 100%;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-links {
        gap: 2rem;
    }
    .contact-inner {
        flex-direction: column;
    }
    .hero-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 0.95rem;
    }
    .hero-logo {
        height: 52px;
        width: auto;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero-cta .btn {
        text-align: center;
    }
    .why-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }
    .cert-info-grid {
        grid-template-columns: 1fr;
    }
    .platform-grid {
        grid-template-columns: 1fr;
    }
}