@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap");

:root {
    --navy: #07101f;
    --navy-light: #0d1728;
    --panel: #101b2d;
    --orange: #ff7a00;
    --orange-light: #ff9a3c;
    --white: #ffffff;
    --text: #d8deea;
    --muted: #8f9bb0;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 14% 25%, rgba(255, 122, 0, 0.08), transparent 25%),
        linear-gradient(135deg, #07101f 0%, #0a1323 55%, #07101f 100%);
    color: var(--white);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 16, 31, 0.88);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.navbar {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.logo {
    height: 120px;
    width: auto;
    display: block;
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange), #ff5e00);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(255, 122, 0, 0.3);
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.brand-name strong {
    color: var(--white);
}

.brand-name span {
    margin-top: 5px;
    color: var(--orange);
    font-weight: 800;
}

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

.nav-links a {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--orange), #ff6500);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(255, 122, 0, 0.25);
    transition: 0.2s ease;
}

.nav-button {
    min-height: 44px;
    padding: 0 20px;
    font-size: 14px;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 999px;
    transition: 0.25s ease;
}
.nav-button:hover,
.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(255, 122, 0, 0.36);
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    padding: 90px 0 100px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 650px;
}

.eyebrow {
    width: fit-content;
    margin-bottom: 22px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 122, 0, 0.4);
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.08);
    color: var(--orange-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(46px, 5.4vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

h1 span {
    display: block;
    color: var(--orange);
}

.hero-description {
    max-width: 610px;
    margin-top: 26px;
    color: var(--text);
    font-size: 18px;
}

.hero-benefits {
    margin-top: 28px;
    display: grid;
    gap: 13px;
    list-style: none;
}

.hero-benefits li {
    position: relative;
    padding-left: 31px;
    color: var(--text);
    font-size: 15px;
}

.hero-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-button,
.secondary-button {
    min-height: 54px;
    padding: 0 25px;
    font-size: 15px;
}

.primary-button {
    gap: 10px;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--white);
    font-weight: 700;
    transition: 0.2s ease;
}

.secondary-button:hover {
    border-color: rgba(255, 122, 0, 0.7);
    background: rgba(255, 122, 0, 0.07);
    transform: translateY(-2px);
}

.form-note {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
}

/* Hero visual */

.hero-visual {
    position: relative;
}

..photo-card {
    max-width: 560px;
    margin-left: auto;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
}

.photo-card img {
    width: 100%;
    height: 470px;
    display: block;
    object-fit: cover;
    object-position: center;
}


.stats-card {
    width: calc(100% - 32px);
    margin: -42px auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(12, 23, 40, 0.96);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.stat {
    min-height: 105px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
}

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

.stat strong {
    font-size: 22px;
    line-height: 1;
    color: var(--white);
}

.stat span {
    margin-top: 9px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
}

/* Responsive */

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

    .hero {
        padding-top: 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-content {
        max-width: none;
    }

    .hero-visual {
        max-width: 720px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 26px, 1180px);
    }

    .navbar {
        min-height: 72px;
    }

    .brand-name {
        font-size: 12px;
    }

    .brand-icon {
        width: 41px;
        height: 41px;
        font-size: 16px;
    }

    .nav-button {
        min-height: 40px;
        padding: 0 14px;
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        padding: 58px 0 75px;
    }

    h1 {
        font-size: 43px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }


    .stats-card {
        width: calc(100% - 18px);
        grid-template-columns: 1fr;
        margin-top: -24px;
    }

    .stat {
        min-height: 82px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat:last-child {
        border-bottom: none;
    }
}

 /* =========================
    FEATURES SECTION
 ========================= */

.features{
    padding:120px 0;
}

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}
.section-heading span{
    display:inline-block;
    color:var(--orange);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
    font-size:14px;
}

.section-heading h2{
    font-size:48px;
    line-height:1.15;
    margin-bottom:20px;
}

.section-heading p{
    color:var(--muted);
    font-size:18px;
    line-height:1.7;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.feature-card{
    background:rgba(17,27,45,.95);
    border:1px solid var(--border);
    border-radius:18px;
    padding:34px;
    transition:.3s;
    min-height: 260px;
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:var(--orange);
    box-shadow:0 20px 40px rgba(255,122,0,.15);
}

.feature-number{
    width:52px;
    height:52px;
    border-radius:14px;
    background:linear-gradient(135deg,#ff8c00,#ff6a00);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:24px;
}

.feature-card h3{
    font-size:24px;
    margin-bottom:14px;
}

.feature-card p{
    color:var(--muted);
    line-height:1.7;
}
/* =====================================
   INSTRUCTOR SECTION
===================================== */

.instructor{
    padding:120px 0;
}

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

.instructor-photo img{
    width:100%;
    border-radius:22px;
    display:block;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.section-label{
    display:inline-block;
    color:var(--orange);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.instructor-content h2{
    font-size:48px;
    line-height:1.1;
    margin-bottom:28px;
}

.instructor-content p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:22px;
}

.instructor-highlights{
    list-style:none;
    padding:0;
    margin:35px 0;
}

.instructor-highlights li{
    margin-bottom:16px;
    padding-left:30px;
    position:relative;
    color:var(--text);
}

.instructor-highlights li::before{
    content:"✓";
    color:var(--orange);
    position:absolute;
    left:0;
    font-weight:700;
}

.secondary-button{
    display:inline-block;
    padding:16px 32px;
    border:1px solid var(--border);
    border-radius:14px;
    text-decoration:none;
    color:var(--text);
    font-weight:600;
    transition:.3s;
}

.secondary-button:hover{
    border-color:var(--orange);
    transform:translateY(-3px);
}

@media (max-width:900px){

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

    .instructor-content h2{
        font-size:36px;
    }

}
/* =====================================
   CURRICULUM SECTION
===================================== */

.curriculum {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.module-card {
    min-height: 250px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(16, 27, 45, 0.92);
    transition: 0.3s ease;
}

.module-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 122, 0, 0.65);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.module-number {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.module-card h3 {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.3;
}

.module-card p {
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 960px) {
    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .curriculum {
        padding: 80px 0;
    }

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

    .module-card {
        min-height: auto;
    }
}
/* BONUS MODULE */

.bonus-card{
    border:2px solid var(--orange);
    background:linear-gradient(180deg,#1a2334,#111a2c);
}

.bonus-card:hover{
    box-shadow:0 20px 50px rgba(255,122,0,.25);
}

.bonus-card .module-number{
    background:linear-gradient(135deg,#ff9a1f,#ff6a00);
    color:#fff;
}
/* =====================================
   CAREER OUTCOMES SECTION
===================================== */

.career-outcomes {
    padding: 120px 0;
}

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

.career-card {
    min-height: 270px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(16, 27, 45, 0.92);
    transition: 0.3s ease;
}

.career-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 122, 0, 0.65);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.career-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff8c00, #ff6500);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.career-card h3 {
    margin-bottom: 14px;
    font-size: 23px;
    line-height: 1.3;
}

.career-card p {
    color: var(--muted);
    line-height: 1.75;
}

.career-paths-box {
    margin-top: 45px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1.1fr 1fr auto;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(255, 122, 0, 0.45);
    border-radius: 20px;
    background:
        radial-gradient(
            circle at left center,
            rgba(255, 122, 0, 0.09),
            transparent 38%
        ),
        rgba(16, 27, 45, 0.92);
}

.career-paths-box h3 {
    margin-top: 10px;
    font-size: 30px;
    line-height: 1.2;
}

.career-path-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 12px 22px;
    list-style: none;
}

.career-path-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
    font-size: 14px;
}

.career-path-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 800;
}

@media (max-width: 1000px) {
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-paths-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .career-outcomes {
        padding: 80px 0;
    }

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

    .career-card {
        min-height: auto;
    }

    .career-paths-box {
        padding: 30px;
    }

    .career-path-list {
        grid-template-columns: 1fr;
    }

    .career-paths-box .primary-button {
        width: 100%;
    }
}
/* =====================================
   FAQ SECTION
===================================== */

.faq {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.faq-list {
    width: min(860px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(16, 27, 45, 0.92);
    overflow: hidden;
    transition: 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(255, 122, 0, 0.55);
}

.faq-item[open] {
    border-color: rgba(255, 122, 0, 0.65);
}

.faq-item summary {
    position: relative;
    padding: 24px 62px 24px 26px;
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 28px;
    font-weight: 500;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 62px 26px 26px;
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 640px) {
    .faq {
        padding: 80px 0;
    }

    .faq-item summary {
        padding: 21px 52px 21px 20px;
        font-size: 16px;
    }

    .faq-item summary::after {
        right: 20px;
    }

    .faq-item p {
        padding: 0 20px 22px;
    }
}
/* ==========================
   FINAL CTA
========================== */

.cta-section{
    padding:140px 0;
}

.cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:80px;

    border-radius:30px;

    border:1px solid rgba(255,122,0,.35);

    background:linear-gradient(
        180deg,
        rgba(255,122,0,.08),
        rgba(15,23,42,.98)
    );

    box-shadow:
    0 30px 70px rgba(0,0,0,.45);

}

.cta-box span{

    color:var(--orange);

    letter-spacing:2px;

    font-weight:700;

    text-transform:uppercase;

}

.cta-box h2{

    margin-top:18px;

    font-size:58px;

    line-height:1.1;

}

.cta-box p{

    max-width:650px;

    margin:28px auto 40px;

    color:var(--text-light);

    font-size:20px;

    line-height:1.8;

}

.cta-benefits{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-bottom:50px;

    text-align:left;

}

.cta-benefits div{

    background:rgba(255,255,255,.03);

    border:1px solid var(--border);

    padding:18px 22px;

    border-radius:14px;

    font-weight:600;

}

.cta-box .btn{

    padding:20px 48px;

    font-size:20px;

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

.site-footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
    background: #07101f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 55px;
}

.footer-logo {
    width: 190px;
    height: auto;
    display: block;
    margin-bottom: 22px;
}

.footer-brand p {
    max-width: 390px;
    color: var(--muted);
    line-height: 1.75;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-column h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 16px;
}

.footer-column a {
    color: var(--muted);
    font-size: 14px;
    transition: 0.2s ease;
}

.footer-column a:hover {
    color: var(--orange);
}

.footer-bottom {
    margin-top: 65px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 65px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}
/* =====================================
   SCROLL REVEAL ANIMATION
===================================== */

.reveal-section {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* =====================================
   MOBILE NAVIGATION
===================================== */

@media (max-width: 760px) {

    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 20;
    }

    .nav-button {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        right: 0;
        z-index: 15;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(7, 16, 31, 0.98);
        box-shadow: var(--shadow);
    }

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

    .nav-links a {
        width: 100%;
        padding: 13px 14px;
        border-radius: 10px;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* =====================================
   STUDENT LOGIN PAGE
===================================== */

.login-page {
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.login-container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(15, 27, 47, 0.92);
    box-shadow: var(--shadow);
}

.login-left,
.login-right {
    padding: 64px;
}

.login-left {
    background: rgba(7, 16, 31, 0.72);
}

.login-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(255, 122, 0, 0.14),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            rgba(255, 122, 0, 0.08),
            rgba(15, 27, 47, 0.95)
        );
}

.login-logo {
    width: 220px;
    height: auto;
    margin-bottom: 40px;
}

.login-left h1 {
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.login-left > p,
.login-right p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
}

.login-left > p {
    margin-bottom: 34px;
}

.login-right h2 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.login-page form {
    display: grid;
    gap: 18px;
}

.login-page form p {
    margin: 0;
}

.login-page label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.login-page input[type="text"],
.login-page input[type="password"] {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font: inherit;
    outline: none;
    transition: 0.2s ease;
}

.login-page input[type="text"]:focus,
.login-page input[type="password"]:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
}

.login-page .login-remember label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--text-light);
    font-weight: 500;
}

.login-page input[type="checkbox"] {
    accent-color: var(--orange);
}

.login-page .login-submit input {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange), #ff6500);
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(255, 122, 0, 0.25);
    transition: 0.2s ease;
}

.login-page .login-submit input:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 122, 0, 0.34);
}

@media (max-width: 800px) {
    .login-container {
        grid-template-columns: 1fr;
    }

    .login-left,
    .login-right {
        padding: 42px 28px;
    }

    .login-right {
        min-height: 280px;
    }

    .login-logo {
        width: 180px;
    }
}
/* =====================================
   STUDENT DASHBOARD
===================================== */

.academy-dashboard {
    min-height: calc(100vh - 110px);
    padding: 70px 0 100px;
}

.dashboard-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.dashboard-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 122, 0, 0.12),
            transparent 34%
        ),
        rgba(15, 27, 47, 0.92);
    box-shadow: var(--shadow);
}

.dashboard-eyebrow {
    margin-bottom: 10px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.dashboard-welcome h1 {
    margin-bottom: 14px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
}

.dashboard-welcome p:last-child {
    max-width: 700px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
}

.dashboard-logout {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--white);
    font-weight: 700;
    transition: 0.2s ease;
}

.dashboard-logout:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    .academy-dashboard {
        padding-top: 40px;
    }

    .dashboard-welcome {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 24px;
    }
}
<div class="dashboard-grid">

    <main class="dashboard-main">

        <section class="dashboard-card continue-card">

            <div class="dashboard-card-header">
                <div>
                    <p class="dashboard-eyebrow">CONTINUE LEARNING</p>
                    <h2>Construction Estimator Accelerator</h2>
                </div>

                <span class="course-progress-number">0%</span>
            </div>

            <p class="current-lesson-label">Your next lesson</p>

            <h3>Module 1 — Plan Reading Foundations</h3>

            <p class="current-lesson-description">
                Continue building the plan-reading skills every professional
                construction estimator needs.
            </p>

            <div class="course-progress-bar">
                <span style="width: 0%;"></span>
            </div>

            <div class="continue-card-actions">

                <a
                    href="<?php echo esc_url(home_url('/student-portal/enrolled-courses/')); ?>"
                    class="primary-button"
                >
                    Continue Course
                </a>

                <a
                    href="<?php echo esc_url(home_url('/student-portal/')); ?>"
                    class="secondary-button"
                >
                    View My Courses
                </a>

            </div>

        </section>

    </main>

</div>
/* =====================================
   ESTIMATOR ACADEMY STUDENT PORTAL
===================================== */

.academy-portal {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(255, 122, 0, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #07101f 0%,
            #0a1323 55%,
            #07101f 100%
        );
}

.portal-layout {
    width: min(1500px, 100%);
    min-height: 100vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.portal-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 34px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 16, 31, 0.96);
}

.portal-logo-link {
    display: block;
    margin-bottom: 42px;
}

.portal-logo {
    width: 205px;
    height: auto;
    display: block;
}

.portal-navigation {
    display: grid;
    gap: 10px;
}

.portal-nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 700;
    transition: 0.2s ease;
}

.portal-nav-link:hover {
    border-color: rgba(255, 122, 0, 0.35);
    background: rgba(255, 122, 0, 0.08);
    color: var(--white);
}

.portal-nav-link.active {
    border-color: rgba(255, 122, 0, 0.45);
    background: linear-gradient(
        135deg,
        rgba(255, 122, 0, 0.18),
        rgba(255, 101, 0, 0.08)
    );
    color: var(--white);
}

.portal-logout {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--white);
    font-weight: 800;
    transition: 0.2s ease;
}

.portal-logout:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.portal-main {
    padding: 48px;
}

.portal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
    padding: 34px 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(255, 122, 0, 0.12),
            transparent 30%
        ),
        rgba(15, 27, 47, 0.92);
    box-shadow: var(--shadow);
}

.portal-header h1 {
    margin-bottom: 12px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.04;
}

.portal-header > div:first-child > p:last-child {
    max-width: 720px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
}

.portal-eyebrow {
    margin-bottom: 10px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.portal-avatar {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 122, 0, 0.35);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #ff6500);
    color: var(--white);
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(255, 122, 0, 0.22);
}

.portal-progress-card,
.portal-panel,
.portal-stat-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 27, 47, 0.92);
    box-shadow: var(--shadow);
}

.portal-progress-card {
    margin-bottom: 28px;
    padding: 36px;
    border-radius: 22px;
}

.portal-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.portal-card-heading h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
}

.portal-progress-percent {
    flex-shrink: 0;
    color: var(--orange);
    font-size: 30px;
    font-weight: 900;
}

.portal-next-label {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.portal-progress-card h3 {
    margin-bottom: 12px;
    font-size: 25px;
}

.portal-description {
    max-width: 780px;
    margin-bottom: 26px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.75;
}

.portal-progress-bar {
    width: 100%;
    height: 11px;
    overflow: hidden;
    margin-bottom: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.portal-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--orange), #ff6500);
}

.portal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.portal-primary-button,
.portal-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 10px;
    font-weight: 800;
    transition: 0.2s ease;
}

.portal-primary-button {
    background: linear-gradient(135deg, var(--orange), #ff6500);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(255, 122, 0, 0.24);
}

.portal-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 122, 0, 0.34);
}

.portal-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.portal-secondary-button:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.portal-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.portal-stat-card {
    padding: 24px;
    border-radius: 16px;
}

.portal-stat-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--white);
    font-size: 32px;
    font-weight: 900;
}

.portal-stat-card p {
    color: var(--text-light);
    font-size: 14px;
}

.portal-lower-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.portal-panel {
    padding: 30px;
    border-radius: 20px;
}

.portal-panel h2 {
    margin-bottom: 22px;
    font-size: 28px;
}

.portal-resource-links {
    display: grid;
    gap: 12px;
}

.portal-resource-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    color: var(--white);
    font-weight: 700;
    transition: 0.2s ease;
}

.portal-resource-links a:hover {
    border-color: rgba(255, 122, 0, 0.45);
    background: rgba(255, 122, 0, 0.07);
    color: var(--orange);
    transform: translateX(3px);
}

.portal-empty-message {
    color: var(--text-light);
    line-height: 1.75;
}

@media (max-width: 1100px) {
    .portal-layout {
        grid-template-columns: 230px minmax(0, 1fr);
    }

    .portal-main {
        padding: 34px 28px;
    }

    .portal-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .portal-layout {
        display: block;
    }

    .portal-sidebar {
        position: static;
        width: 100%;
        height: auto;
        padding: 22px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .portal-logo-link {
        margin-bottom: 22px;
    }

    .portal-logo {
        width: 170px;
    }

    .portal-navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portal-logout {
        margin-top: 18px;
    }

    .portal-main {
        padding: 28px 20px 60px;
    }

    .portal-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px 24px;
    }

    .portal-card-heading {
        flex-direction: column;
    }

    .portal-lower-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .portal-navigation {
        grid-template-columns: 1fr;
    }

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

    .portal-actions {
        flex-direction: column;
    }

    .portal-primary-button,
    .portal-secondary-button {
        width: 100%;
    }
}

/* =====================================
   ESTIMATOR ACADEMY COURSE PLAYER
===================================== */

.course-player {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 82% 12%,
            rgba(255, 122, 0, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #07101f 0%,
            #0a1323 55%,
            #07101f 100%
        );
}

.course-player-layout {
    width: min(1500px, 100%);
    min-height: 100vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
}

.course-player-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 34px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 16, 31, 0.97);
}

.course-player-back {
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 800;
}

.course-player-back:hover {
    color: var(--white);
}

.course-player-sidebar h2 {
    margin-bottom: 30px;
    font-size: 25px;
    line-height: 1.25;
}

.course-module {
    margin-bottom: 28px;
}

.course-module-title {
    margin-bottom: 10px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.course-lesson {
    display: flex;
    align-items: center;
    min-height: 46px;
    margin-bottom: 8px;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    transition: 0.2s ease;
}

.course-lesson:hover {
    border-color: rgba(255, 122, 0, 0.35);
    background: rgba(255, 122, 0, 0.07);
    color: var(--white);
}

.course-lesson.active {
    border-color: rgba(255, 122, 0, 0.45);
    background: linear-gradient(
        135deg,
        rgba(255, 122, 0, 0.18),
        rgba(255, 101, 0, 0.08)
    );
    color: var(--white);
}

.course-player-main {
    padding: 48px;
}

.course-player-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.course-player-eyebrow {
    margin-bottom: 10px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.course-player-header h1 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
}

.course-player-progress {
    flex-shrink: 0;
    padding: 10px 14px;
    border: 1px solid rgba(255, 122, 0, 0.35);
    border-radius: 999px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 800;
}

.course-video-card,
.course-lesson-content {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(15, 27, 47, 0.92);
    box-shadow: var(--shadow);
}

.course-video-card {
    overflow: hidden;
    margin-bottom: 26px;
}

.course-video-placeholder {
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 122, 0, 0.14),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.01)
        );
}

.course-video-placeholder span {
    padding: 14px 18px;
    border: 1px solid rgba(255, 122, 0, 0.35);
    border-radius: 999px;
    color: var(--orange);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.course-video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 20px;
}

.course-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.course-lesson-content {
    margin-bottom: 26px;
    padding: 34px;
}

.course-lesson-content h2 {
    margin-bottom: 16px;
    font-size: 30px;
}

.course-lesson-content > p {
    max-width: 850px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.75;
}

.course-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.course-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 9px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s ease;
}

.course-download-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.course-player-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.course-prev-button,
.course-next-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 10px;
    font-weight: 800;
    transition: 0.2s ease;
}

.course-prev-button {
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.course-prev-button:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.course-next-button {
    background: linear-gradient(135deg, var(--orange), #ff6500);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(255, 122, 0, 0.24);
}

.course-next-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 122, 0, 0.34);
}

@media (max-width: 900px) {
    .course-player-layout {
        display: block;
    }

    .course-player-sidebar {
        position: static;
        width: 100%;
        height: auto;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .course-player-main {
        padding: 32px 22px 60px;
    }
}

@media (max-width: 640px) {
    .course-player-header {
        flex-direction: column;
    }

    .course-lesson-content {
        padding: 26px 22px;
    }

    .course-downloads,
    .course-player-actions {
        flex-direction: column;
    }

    .course-prev-button,
    .course-next-button,
    .course-download-link {
        width: 100%;
    }
}