/* ===========================
   CareerForge Academy — Global Stylesheet
   Стиль: яркий + классический
   =========================== */

:root {
    /* Palette — bright & classic */
    --navy: #14213d;
    --navy-dark: #0a1226;
    --royal: #1e40af;
    --royal-light: #3b82f6;
    --orange: #fb8500;
    --orange-deep: #e85d04;
    --yellow: #ffb703;
    --red: #d62828;
    --green: #2a9d8f;
    --cream: #fefae0;
    --paper: #fffbf0;
    --ink: #1c1917;
    --slate: #475569;
    --gray-100: #f5f5f4;
    --gray-200: #e7e5e4;
    --gray-300: #d6d3d1;

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Spacing */
    --container: 1240px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(20, 33, 61, 0.06);
    --shadow: 0 8px 24px rgba(20, 33, 61, 0.10);
    --shadow-lg: 0 20px 50px rgba(20, 33, 61, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--royal);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: var(--orange-deep);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--orange-deep);
    margin-bottom: 12px;
}

/* ===========================
   Google Material Symbols
   =========================== */
.icon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.icon.filled  { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
.icon.bold    { font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 24; }
.icon-sm  { font-size: 18px; }
.icon-lg  { font-size: 32px; }
.icon-xl  { font-size: 40px; }
.icon-2xl { font-size: 52px; }

/* Logo image */
.logo-mark {
    width: 38px;
    height: 38px;
    display: block;
    flex-shrink: 0;
}
.site-header .logo,
.footer-brand .logo {
    gap: 12px;
}

/* Partner-logo images */
.partner-logo {
    height: 36px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(70%);
    opacity: 0.75;
    transition: filter .25s ease, opacity .25s ease, transform .2s ease;
}
.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}
.partner-logo-dark {
    filter: brightness(0) invert(1);
    opacity: 0.55;
}
.partner-logo-dark:hover { opacity: 0.95; }

/* Social icon images (use Simple Icons CDN) */
.footer-social a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
.footer-social a:hover img { opacity: 1; }

/* ===========================
   Top notice bar
   =========================== */
.notice-bar {
    background: linear-gradient(90deg, var(--navy) 0%, var(--royal) 100%);
    color: var(--paper);
    font-size: 0.85rem;
    padding: 8px 0;
    text-align: center;
}
.notice-bar strong { color: var(--yellow); }
.notice-bar a { color: var(--yellow); margin-left: 8px; }

/* ===========================
   Header / Navigation
   =========================== */
.site-header {
    background: var(--paper);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 32px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--navy);
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    letter-spacing: -0.015em;
}
.logo .logo-mark { align-self: center; }
.logo .accent {
    color: var(--orange-deep);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.main-nav > li {
    list-style: none;
    position: relative;
}

.main-nav > li > a {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.main-nav > li > a::after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    background: var(--orange);
    transition: width .25s ease;
    position: absolute;
    bottom: 4px;
    left: 0;
}
.main-nav > li:hover > a::after { width: 100%; }

/* Mega menu */
.mega {
    position: absolute;
    top: 100%;
    left: -120px;
    width: 760px;
    background: var(--paper);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 28px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.main-nav > li:hover .mega { display: grid; }

.mega-col h4 {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange-deep);
    margin-bottom: 12px;
}
.mega-col ul li {
    list-style: none;
    padding: 6px 0;
}
.mega-col a {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
}
.mega-col a:hover { color: var(--royal); }

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

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    font-family: var(--font-sans);
    text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--orange-deep);
    color: white;
}
.btn-primary:hover { background: var(--orange); color: white; }

.btn-dark {
    background: var(--navy);
    color: white;
}
.btn-dark:hover { background: var(--royal); color: white; }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }

.btn-yellow {
    background: var(--yellow);
    color: var(--navy);
}
.btn-yellow:hover { background: var(--orange); color: white; }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ===========================
   Hero
   =========================== */
.hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(251, 133, 0, 0.18), transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(30, 64, 175, 0.15), transparent 50%),
        var(--cream);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(20, 33, 61, 0.04) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 20px;
}
.hero h1 .highlight {
    background: linear-gradient(120deg, transparent 0%, transparent 8%, rgba(255, 183, 3, 0.55) 8%, rgba(255, 183, 3, 0.55) 95%, transparent 95%);
    padding: 0 6px;
    font-style: italic;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--slate);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}
.trust-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--navy);
    line-height: 1;
}
.trust-stat span {
    font-size: 0.85rem;
    color: var(--slate);
}

.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.hero-image .badge-float {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}
.badge-float .ico {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--yellow);
    display: grid;
    place-items: center;
    color: var(--navy);
}
.badge-float .ico .icon { font-size: 24px; }
.badge-1 { top: 30px; left: -30px; }
.badge-2 { bottom: 30px; right: -20px; }

/* ===========================
   Trust strip / logos
   =========================== */
.trust-strip {
    padding: 40px 0;
    background: var(--paper);
    border-bottom: 1px solid var(--gray-200);
}
.trust-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.trust-label {
    font-size: 0.85rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}
.trust-logos {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.trust-strip .container {
    padding: 12px 24px;
}

/* ===========================
   Section base
   =========================== */
section { padding: 80px 0; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-head p {
    color: var(--slate);
    font-size: 1.1rem;
    margin-top: 12px;
}

/* ===========================
   "What's your goal?" three paths
   =========================== */
.paths { background: white; }
.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.path-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 2px solid var(--gray-200);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.path-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--path-color, var(--orange));
}
.path-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--path-color, var(--orange));
}
.path-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--path-color, var(--orange));
    color: white;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.path-icon .icon { font-size: 34px; color: white; }
.path-card h3 { margin-bottom: 10px; }
.path-card p { color: var(--slate); margin-bottom: 20px; }
.path-card .arrow-link {
    color: var(--path-color, var(--orange));
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.path-card .arrow-link::after {
    content: '→';
    transition: transform .2s ease;
}
.path-card:hover .arrow-link::after { transform: translateX(6px); }

/* ===========================
   Categories grid with stock photos
   =========================== */
.categories { background: var(--cream); }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cat-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow);
    transition: transform .3s ease;
    display: block;
}
.cat-card:hover { transform: translateY(-6px); }
.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 18, 38, 0.85) 100%);
}
.cat-card .cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    color: white;
    z-index: 1;
}
.cat-card h3 {
    color: white;
    margin-bottom: 6px;
    font-size: 1.6rem;
}
.cat-card .cat-meta {
    font-size: 0.88rem;
    opacity: 0.92;
    display: flex;
    gap: 16px;
}
.cat-card .cat-meta span::before {
    content: '●';
    color: var(--yellow);
    margin-right: 6px;
}

/* ===========================
   Why choose us — feature grid
   =========================== */
.why { background: white; }
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feat {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--paper);
    border-left: 4px solid var(--orange);
}
.feat .feat-icon {
    margin-bottom: 12px;
    display: flex;
}
.feat .feat-icon .icon { font-size: 36px; color: var(--orange-deep); }
.feat h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--navy);
}
.feat p { color: var(--slate); font-size: 0.95rem; }

/* ===========================
   B2B Strip
   =========================== */
.b2b {
    background: var(--navy);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.b2b::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(251, 133, 0, 0.25), transparent 70%);
}
.b2b h2 { color: white; }
.b2b .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.b2b p { color: rgba(255,255,255,0.85); margin: 16px 0 28px; font-size: 1.05rem; }
.b2b-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.b2b-stat {
    padding: 24px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.12);
}
.b2b-stat strong {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--yellow);
    display: block;
    line-height: 1;
}
.b2b-stat span { color: rgba(255,255,255,0.8); margin-top: 8px; display: block; }

/* ===========================
   Testimonials
   =========================== */
.testimonials { background: var(--cream); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--orange);
}
.testi .quote {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--ink);
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    padding-top: 20px;
}
.testi .quote::before {
    content: '"';
    position: absolute;
    top: -16px; left: -4px;
    font-size: 4rem;
    color: var(--orange);
    line-height: 1;
    font-weight: 900;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.testi-author strong { display: block; color: var(--navy); }
.testi-author span { font-size: 0.85rem; color: var(--slate); }

/* ===========================
   Financing strip
   =========================== */
.financing {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    padding: 56px 0;
    color: var(--navy);
}
.financing .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.financing h2 { color: var(--navy); font-size: 1.8rem; max-width: 540px; }
.financing-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.financing-tag {
    background: rgba(20, 33, 61, 0.12);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===========================
   FAQ
   =========================== */
.faq { background: white; }
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--gray-200);
}
.faq-item summary {
    padding: 24px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-family: var(--font-serif);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--orange);
    transition: transform .25s ease;
    font-family: var(--font-sans);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    padding: 0 0 24px;
    color: var(--slate);
    line-height: 1.7;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.8);
    padding: 70px 0 30px;
    font-size: 0.92rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo { color: white; }
.footer-brand p { margin: 16px 0; max-width: 280px; }
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: grid; place-items: center;
    color: white;
    transition: background .2s ease;
}
.footer-social a:hover { background: var(--orange-deep); }
.footer-col h5 {
    color: white;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; }
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.accred-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.accred-badges span {
    background: rgba(255,255,255,0.08);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ===========================
   Page hero (sub-pages)
   =========================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
}
.page-hero h1 { color: white; }
.page-hero p { max-width: 700px; margin: 16px auto 0; color: rgba(255,255,255,0.85); font-size: 1.15rem; }
.page-hero .crumbs {
    margin-bottom: 24px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}
.page-hero .crumbs a { color: var(--yellow); }

/* ===========================
   Course listing grid
   =========================== */
.filter-bar {
    background: white;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 70px;
    z-index: 50;
}
.filter-bar .container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.filter-chip {
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s ease;
}
.filter-chip:hover, .filter-chip.active {
    background: var(--navy);
    color: white;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.course-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.course-card .thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}
.course-card .thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
}
.course-card:hover .thumb img { transform: scale(1.06); }
.course-card .tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--orange-deep);
    color: white;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.course-card .body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.course-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.course-card .desc {
    color: var(--slate);
    font-size: 0.95rem;
    margin-bottom: 16px;
    flex: 1;
}
.course-card .meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--slate);
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--gray-200);
}
.course-card .meta strong { color: var(--navy); }
.course-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.course-card .price {
    font-family: var(--font-serif);
    color: var(--navy);
    font-size: 1.4rem;
    font-weight: 700;
}
.course-card .price small { font-size: 0.8rem; color: var(--slate); font-weight: 400; }

/* ===========================
   Auth pages (login / register / success)
   =========================== */
.auth-shell {
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: var(--paper);
}
.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}
.auth-form {
    width: 100%;
    max-width: 440px;
}
.auth-form h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}
.auth-form .lead {
    color: var(--slate);
    margin-bottom: 32px;
    font-size: 1.02rem;
}
.field {
    margin-bottom: 18px;
}
.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.98rem;
    background: white;
    color: var(--ink);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(251, 133, 0, 0.12);
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.field-help {
    font-size: 0.82rem;
    color: var(--slate);
    margin-top: 6px;
}
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0 22px;
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.5;
}
.checkbox-row input { margin-top: 3px; accent-color: var(--orange-deep); }
.auth-submit {
    width: 100%;
    font-size: 1.02rem;
    padding: 14px 24px;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0;
    color: var(--slate);
    font-size: 0.85rem;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}
.sso-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    background: white;
    color: var(--navy);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: border-color .15s ease, transform .12s ease;
    margin-bottom: 10px;
    text-decoration: none;
}
.sso-btn:hover { border-color: var(--navy); transform: translateY(-1px); }
.sso-btn img { width: 18px; height: 18px; }
.auth-foot {
    text-align: center;
    color: var(--slate);
    font-size: 0.92rem;
    margin-top: 24px;
}
.auth-foot a { font-weight: 700; }
.auth-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--slate);
    font-size: 0.88rem;
    margin-bottom: 32px;
}

/* Visual side (illustration / quote) */
.auth-visual-side {
    background:
        radial-gradient(circle at 20% 30%, rgba(251, 133, 0, 0.30), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 183, 3, 0.25), transparent 50%),
        linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}
.auth-visual-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
}
.auth-visual-inner {
    max-width: 460px;
    position: relative;
    z-index: 1;
}
.auth-visual-inner blockquote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.4;
    font-style: italic;
    margin: 0 0 24px;
}
.auth-visual-inner blockquote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--yellow);
    line-height: 0.6;
    display: block;
    margin-bottom: 12px;
}
.auth-visual-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.18);
}
.auth-visual-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    object-fit: cover;
}
.auth-visual-author strong { display: block; }
.auth-visual-author span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.auth-visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.auth-visual-stats div strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.7rem;
    color: var(--yellow);
    line-height: 1;
}
.auth-visual-stats div span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
}

/* Success page */
.success-shell {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(42, 157, 143, 0.18), transparent 60%),
        radial-gradient(circle at 20% 90%, rgba(251, 133, 0, 0.15), transparent 60%),
        var(--paper);
    padding: 60px 24px;
}
.success-card {
    background: white;
    border-radius: 24px;
    padding: 56px 48px;
    box-shadow: var(--shadow-lg);
    max-width: 580px;
    width: 100%;
    text-align: center;
    border-top: 6px solid var(--green);
}
.success-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, #4cb8aa 100%);
    color: white;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 30px rgba(42, 157, 143, 0.35);
    animation: pop .5s cubic-bezier(.34, 1.56, .64, 1);
}
.success-icon .icon { font-size: 50px; }
@keyframes pop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
}
.success-card h1 { margin-bottom: 12px; }
.success-card p { color: var(--slate); font-size: 1.05rem; margin-bottom: 28px; }
.success-card .next-steps {
    text-align: left;
    background: var(--paper);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 28px 0;
}
.success-card .next-steps h4 {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--orange-deep);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}
.success-card .next-steps ul { list-style: none; }
.success-card .next-steps li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: var(--ink);
    font-size: 0.94rem;
}
.success-card .next-steps li .icon {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--green);
    font-size: 20px;
}
.success-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .auth-shell { grid-template-columns: 1fr; }
    .auth-visual-side { display: none; }
    .success-card { padding: 40px 28px; }
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 960px) {
    .hero-grid, .b2b .container { grid-template-columns: 1fr; }
    .hero-image img { height: 360px; }
    .paths-grid, .cat-grid, .course-grid, .feat-grid, .testi-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .main-nav { display: none; }
}
@media (max-width: 620px) {
    section { padding: 56px 0; }
    .paths-grid, .cat-grid, .course-grid, .feat-grid, .testi-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero { padding: 50px 0 70px; }
    .hero-image .badge-float { display: none; }
}
