/* ═══════════════════════════════════════════════════════════════
   ACBIZ LEARN v1 — Main Stylesheet
   Design: Bold Editorial / Deep Navy + Amber Accent
   Fonts: Google Fonts (Syne + DM Sans)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

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

:root {
    /* Brand Palette */
    --navy:        #0a0f2e;
    --navy-mid:    #121a42;
    --navy-soft:   #1c2654;
    --amber:       #f59e0b;
    --amber-light: #fbbf24;
    --amber-dark:  #d97706;
    --teal:        #06b6d4;
    --green:       #10b981;
    --rose:        #f43f5e;

    /* Neutral */
    --white:       #ffffff;
    --off-white:   #f8f9fe;
    --gray-100:    #f1f5f9;
    --gray-200:    #e2e8f0;
    --gray-400:    #94a3b8;
    --gray-600:    #475569;
    --gray-800:    #1e293b;

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    /* Spacing */
    --radius-sm:   6px;
    --radius:      12px;
    --radius-lg:   20px;
    --radius-xl:   32px;

    /* Shadows */
    --shadow-sm:   0 1px 4px rgba(10,15,46,.08);
    --shadow:      0 4px 20px rgba(10,15,46,.12);
    --shadow-lg:   0 12px 48px rgba(10,15,46,.20);
    --shadow-glow: 0 0 40px rgba(245,158,11,.25);
}

/* ── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--gray-800);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: var(--amber);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.brand span.highlight { color: var(--amber); }

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

.nav-center a {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
}

.nav-center a:hover {
    color: var(--white);
    background: rgba(255,255,255,.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions .btn-ghost {
    color: rgba(255,255,255,.75);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
    border: none;
    background: none;
    cursor: pointer;
}

.nav-actions .btn-ghost:hover { color: var(--white); background: rgba(255,255,255,.08); }

.nav-actions .btn-cta {
    background: var(--amber);
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    transition: background .2s, transform .1s;
}

.nav-actions .btn-cta:hover { background: var(--amber-light); transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
}

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

/* Decorative background shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -160px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,.12);
    border: 1px solid rgba(245,158,11,.3);
    color: var(--amber);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.8); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero h1 .accent {
    color: var(--amber);
    position: relative;
    display: inline-block;
}

.hero p.lead {
    font-size: 18px;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.stat-item {}

.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,.45);
    margin-top: 4px;
    font-weight: 400;
    letter-spacing: .3px;
}

/* Hero visual card */
.hero-visual {
    position: relative;
}

.hero-card {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    animation: float 6s ease-in-out infinite;
}

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

.hc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hc-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.hc-info p {
    font-size: 12px;
    color: rgba(255,255,255,.45);
}

.progress-list { display: flex; flex-direction: column; gap: 14px; }

.progress-item {}

.progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.progress-meta span:first-child {
    font-size: 13px;
    color: rgba(255,255,255,.8);
    font-weight: 500;
}

.progress-meta span:last-child {
    font-size: 12px;
    color: var(--amber);
    font-weight: 600;
}

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,.08);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    transition: width 1.5s ease;
}

.progress-fill.teal { background: linear-gradient(90deg, var(--teal), #67e8f9); }
.progress-fill.green { background: linear-gradient(90deg, var(--green), #6ee7b7); }

.hc-footer {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hc-footer span {
    font-size: 12px;
    color: rgba(255,255,255,.4);
}

.streak-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.25);
    color: var(--amber);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

/* Floating mini badges */
.hero-badge-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-800);
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    animation: floatBadge 5s ease-in-out infinite;
}

.hero-badge-float .icon { font-size: 16px; }
.hero-badge-float.b1 { top: -20px; right: -10px; animation-delay: 0s; }
.hero-badge-float.b2 { bottom: 30px; left: -20px; animation-delay: 1.5s; }

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

/* ── SECTION SHARED ─────────────────────────────────────────── */
section { padding: 80px 0; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--amber-dark);
    background: rgba(245,158,11,.1);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 560px;
    font-weight: 300;
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-header-center .section-tag { margin-left: auto; margin-right: auto; }
.section-header-center .section-sub { margin: 0 auto; }

/* ── WHO IS IT FOR ──────────────────────────────────────────── */
.audience-section {
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.audience-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: default;
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--amber);
}

.audience-icon {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
}

.audience-card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.audience-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.55;
}

/* ── FEATURES ───────────────────────────────────────────────── */
.features-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.features-section .section-title { color: var(--white); }
.features-section .section-sub { color: rgba(255,255,255,.5); }
.features-section .section-tag { background: rgba(245,158,11,.15); color: var(--amber); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: background .25s, border-color .25s, transform .25s;
}

.feature-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(245,158,11,.35);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.fi-amber  { background: rgba(245,158,11,.15); }
.fi-teal   { background: rgba(6,182,212,.15); }
.fi-green  { background: rgba(16,185,129,.15); }
.fi-rose   { background: rgba(244,63,94,.15); }
.fi-blue   { background: rgba(59,130,246,.15); }
.fi-purple { background: rgba(139,92,246,.15); }

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    line-height: 1.65;
}

/* ── COURSE CATEGORIES ──────────────────────────────────────── */
.categories-section {
    background: var(--off-white);
}

.categories-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all .25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s;
}

.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gray-200);
}

.cat-card:hover::after { transform: scaleX(1); }

.cat-icon {
    font-size: 32px;
    line-height: 1;
}

.cat-card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.cat-card p {
    font-size: 12px;
    color: var(--gray-400);
}

.cat-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--amber-dark);
    background: rgba(245,158,11,.08);
    padding: 3px 10px;
    border-radius: 100px;
    align-self: flex-start;
}

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-section {
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), var(--teal));
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--amber);
    margin: 0 auto 20px;
}

.step-item h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ── TENANT TYPES ───────────────────────────────────────────── */
.tenants-section {
    background: var(--off-white);
}

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

.tenant-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .25s;
}

.tenant-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--amber);
    transform: translateY(-3px);
}

.tenant-card.featured {
    background: var(--navy);
    border-color: var(--amber);
    box-shadow: var(--shadow-glow);
}

.tenant-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.tenant-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.tenant-card.featured h3 { color: var(--white); }

.tenant-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tenant-card.featured p { color: rgba(255,255,255,.55); }

.tenant-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tenant-features li {
    font-size: 13px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tenant-card.featured .tenant-features li { color: rgba(255,255,255,.7); }

.tenant-features li::before {
    content: '✓';
    width: 18px;
    height: 18px;
    background: rgba(245,158,11,.15);
    color: var(--amber-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── TESTIMONIAL / SOCIAL PROOF ─────────────────────────────── */
.proof-section {
    background: var(--navy);
    padding: 72px 0;
}

.proof-section .section-title { color: var(--white); }
.proof-section .section-tag { background: rgba(245,158,11,.15); color: var(--amber); }

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

.proof-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: background .2s, border-color .2s;
}

.proof-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(245,158,11,.25);
}

.proof-stars {
    color: var(--amber);
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.proof-card blockquote {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
}

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

.proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.proof-author-info span {
    display: block;
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
}

.proof-author-info small {
    font-size: 11px;
    color: rgba(255,255,255,.4);
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-soft) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .section-title { color: var(--white); max-width: 640px; margin: 0 auto 16px; }
.cta-section .section-sub { color: rgba(255,255,255,.5); margin: 0 auto 40px; }
.cta-section .section-tag { margin: 0 auto 16px; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
    background: #060b20;
    color: rgba(255,255,255,.5);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 280px repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .brand { margin-bottom: 16px; }

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,.35);
    max-width: 230px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    transition: color .2s;
}

.footer-col ul li a:hover { color: var(--amber); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 12px;
}

.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--amber); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}

.btn:active { transform: scale(.98); }

.btn-primary {
    background: var(--amber);
    color: var(--navy);
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.35); }

.btn-secondary {
    background: rgba(255,255,255,.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.15);
}
.btn-secondary:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

.btn-dark {
    background: var(--navy);
    color: var(--white);
}
.btn-dark:hover { background: var(--navy-soft); transform: translateY(-2px); }

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

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ── AUTH PAGES ─────────────────────────────────────────────── */
.auth-wrap {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-box {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: 44px;
    width: 100%;
    max-width: 440px;
}

.auth-box .brand { margin-bottom: 32px; justify-content: center; }

.auth-box h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.auth-box p.auth-sub {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    transition: border-color .2s, box-shadow .2s;
}

.form-group input::placeholder { color: rgba(255,255,255,.25); }

.form-group input:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}

.auth-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.4);
}

.auth-footer a { color: var(--amber); font-weight: 600; }

/* ── DASHBOARD ──────────────────────────────────────────────── */
.dash-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 68px);
}

.dash-sidebar {
    background: var(--navy);
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,.06);
}

.sidebar-nav { display: flex; flex-direction: column; gap: 2px; margin-top: 24px; }

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    transition: all .2s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255,255,255,.08);
    color: var(--white);
}

.sidebar-nav a .icon { font-size: 17px; }

.dash-main { padding: 36px; background: var(--off-white); }

.dash-main h1 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
}

/* ── FLASH MESSAGES ─────────────────────────────────────────── */
.alert {
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
    border-left: 4px solid transparent;
}

.alert-success { background: #ecfdf5; color: #065f46; border-color: #10b981; }
.alert-error   { background: #fef2f2; color: #991b1b; border-color: #ef4444; }
.alert-warning { background: #fffbeb; color: #92400e; border-color: var(--amber); }
.alert-info    { background: #eff6ff; color: #1e40af; border-color: #3b82f6; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-scroll { grid-template-columns: repeat(2, 1fr); }
    .tenants-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero { padding: 72px 0 56px; }
    .nav-center { display: none; }
    .nav-toggle { display: flex; }
    .features-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .tenants-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    section { padding: 56px 0; }
    .dash-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .audience-grid { grid-template-columns: 1fr; }
    .categories-scroll { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.mobile-nav {
    display: none;
    background: var(--navy-mid);
    border-top: 1px solid rgba(255,255,255,.06);
}

.mobile-nav.open { display: block; }

.mobile-nav-links {
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links a {
    color: rgba(255,255,255,.65);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .2s;
}

.mobile-nav-links a:hover { color: var(--white); }
.mobile-nav-links hr { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 8px 0; }
.mobile-nav-links .mobile-cta { color: var(--amber); font-weight: 700; }

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.trust-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.trust-logos {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-logos span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    padding: 6px 18px;
    border-right: 1px solid var(--gray-200);
    white-space: nowrap;
}

.trust-logos span:last-child { border-right: none; }

/* ── FOOTER SOCIALS ─────────────────────────────────────────── */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    transition: all .2s;
}

.footer-socials a:hover {
    background: rgba(245,158,11,.15);
    border-color: rgba(245,158,11,.3);
    color: var(--amber);
}

/* ── SCROLL REVEAL ANIMATION ────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

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

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }


/* ═══════════════════════════════════════════════════════════════
   ACBIZ LEARN v1.1 — Course Marketplace Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── MARKETPLACE HEADER ─────────────────────────────────────── */
.mp-header {
    background: var(--navy);
    padding: 40px 0 32px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.mp-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.mp-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.mp-title-accent { color: var(--amber); }

.mp-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,.45);
}

/* Search bar */
.mp-search-form { flex: 1; max-width: 500px; }

.mp-search-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color .2s;
}

.mp-search-wrap:focus-within {
    border-color: var(--amber);
    background: rgba(255,255,255,.1);
}

.mp-search-icon {
    padding: 0 12px;
    font-size: 16px;
    flex-shrink: 0;
}

.mp-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 11px 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
}

.mp-search-input::placeholder { color: rgba(255,255,255,.3); }

.mp-search-wrap .btn {
    border-radius: 0;
    padding: 11px 20px;
    font-size: 13px;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.mp-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 60px;
    align-items: start;
}

/* ── SIDEBAR ────────────────────────────────────────────────── */
.mp-sidebar {
    position: sticky;
    top: 84px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-block {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 18px 16px;
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    transition: all .15s;
    text-decoration: none;
}

.sidebar-link:hover {
    background: var(--gray-100);
    color: var(--navy);
}

.sidebar-link.active {
    background: rgba(245,158,11,.12);
    color: var(--amber-dark);
    font-weight: 700;
}

.sidebar-count {
    background: var(--gray-100);
    color: var(--gray-400);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 100px;
    min-width: 24px;
    text-align: center;
}

.sidebar-link.active .sidebar-count {
    background: rgba(245,158,11,.2);
    color: var(--amber-dark);
}

/* ── SORT BAR ───────────────────────────────────────────────── */
.mp-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.mp-results-label {
    font-size: 13px;
    color: var(--gray-600);
}

.mp-sort-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-sort-label {
    font-size: 12px;
    color: var(--gray-400);
    white-space: nowrap;
}

.mp-sort-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.sort-pill {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    transition: all .15s;
    white-space: nowrap;
}

.sort-pill:hover { border-color: var(--amber); color: var(--amber-dark); }
.sort-pill.active { background: var(--amber); border-color: var(--amber); color: var(--navy); }

/* ── COURSE GRID ────────────────────────────────────────────── */
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

/* ── COURSE CARD ────────────────────────────────────────────── */
.course-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .22s, box-shadow .22s, border-color .22s;
    text-decoration: none;
    color: inherit;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.course-thumb {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.course-thumb-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
}

.course-thumb-icon {
    font-size: 40px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}

.badge-featured {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--amber);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
}

.badge-free {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--green);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
}

.course-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.course-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--amber-dark);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.course-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-tagline {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.course-instructor {
    font-size: 11px;
    color: var(--gray-400);
}

.level-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
}

.level-beginner     { background: rgba(16,185,129,.12); color: #065f46; }
.level-intermediate { background: rgba(245,158,11,.12); color: var(--amber-dark); }
.level-advanced     { background: rgba(244,63,94,.12);  color: #9f1239; }
.level-all          { background: var(--gray-100); color: var(--gray-600); }

.course-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.stars { color: var(--amber); font-size: 11px; letter-spacing: 1px; }
.rating-num { font-size: 12px; font-weight: 700; color: var(--amber-dark); }
.rating-count { font-size: 11px; color: var(--gray-400); }

.course-enrolled,
.course-hours {
    font-size: 11px;
    color: var(--gray-400);
}

.course-footer {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--gray-100);
}

.price-free   { font-size: 15px; font-weight: 800; color: var(--green); }
.price-paid   { font-size: 15px; font-weight: 800; color: var(--navy); }
.price-sale   { font-size: 15px; font-weight: 800; color: var(--rose); }
.price-orig   { font-size: 12px; color: var(--gray-400); text-decoration: line-through; margin-left: 4px; }

/* ── EMPTY STATE ────────────────────────────────────────────── */
.mp-empty {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.mp-empty-icon { font-size: 56px; margin-bottom: 16px; }

.mp-empty h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
}

.mp-empty p { color: var(--gray-600); margin-bottom: 24px; }

/* ── PAGINATION ─────────────────────────────────────────────── */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 8px;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    transition: all .15s;
}

.page-btn:hover { border-color: var(--amber); color: var(--amber-dark); }
.page-btn.active { background: var(--amber); border-color: var(--amber); color: var(--navy); }

/* ── COURSE DETAIL ──────────────────────────────────────────── */
.cd-hero {
    padding: 52px 0 0;
}

.cd-hero-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.cd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}

.cd-breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.cd-breadcrumb a:hover { color: var(--amber); }
.cd-breadcrumb span { opacity: .4; }

.cd-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.cd-tagline {
    font-size: 17px;
    color: rgba(255,255,255,.65);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.6;
}

.cd-meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.cd-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cd-rating-num { font-size: 18px; font-weight: 800; color: var(--amber); }
.cd-stars .star { font-size: 16px; }
.cd-stars .star.filled { color: var(--amber); }
.cd-stars .star.half   { color: var(--amber); opacity: .6; }
.cd-stars .star.empty  { color: rgba(255,255,255,.2); }
.cd-rating-count { font-size: 13px; color: rgba(255,255,255,.4); }
.cd-enrolled { font-size: 13px; color: rgba(255,255,255,.5); }

.cd-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.cd-tag {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.cd-instructor {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    padding-bottom: 32px;
}

.cd-instructor strong { color: var(--amber); }

/* Price card */
.cd-price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 84px;
    margin-top: -20px;
}

.cd-thumb-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
    display: block;
}

.cd-price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.cd-price-free { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--green); }
.cd-price-now  { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--navy); }
.cd-price-was  { font-size: 16px; color: var(--gray-400); text-decoration: line-through; }

.cd-enroll-btn { font-size: 16px; padding: 14px 24px; }

.cd-includes { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gray-100); }

.cd-includes h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.cd-includes ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.cd-includes ul li {
    font-size: 13px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Course body */
.cd-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    padding-top: 36px;
    padding-bottom: 60px;
    align-items: start;
}

.cd-body-main { display: flex; flex-direction: column; gap: 32px; }

.cd-section h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

/* What you'll learn */
.cd-learn-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
}

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

.learn-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

.learn-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(245,158,11,.12);
    color: var(--amber-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
}

/* Description */
.cd-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Instructor */
.cd-instructor-box {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.instructor-profile {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.instructor-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: var(--amber);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.instructor-info h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.instructor-info p  { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* Reviews */
.cd-rating-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.rating-big {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
}

.rating-stars-big .star { font-size: 24px; }
.rating-stars-big .star.filled { color: var(--amber); }
.rating-stars-big .star.half   { color: var(--amber); opacity: .6; }
.rating-stars-big .star.empty  { color: var(--gray-200); }
.rating-label { font-size: 12px; color: var(--gray-400); margin-top: 4px; }

.reviews-list { display: flex; flex-direction: column; gap: 16px; }

.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 18px;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: white;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-header strong { font-size: 14px; color: var(--navy); display: block; }
.review-stars .star { font-size: 12px; }
.review-stars .star.filled { color: var(--amber); }
.review-stars .star.empty  { color: var(--gray-200); }
.review-date { font-size: 11px; color: var(--gray-400); margin-left: auto; white-space: nowrap; }
.review-text { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* Related sidebar */
.cd-related { position: sticky; top: 84px; }

.cd-related > h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.related-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 10px;
    transition: all .2s;
}

.related-card:hover { border-color: var(--amber); transform: translateY(-2px); box-shadow: var(--shadow); }

.related-thumb {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.related-title { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 4px; }
.related-price { font-size: 12px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .mp-layout { grid-template-columns: 200px 1fr; gap: 20px; }
    .course-grid { grid-template-columns: repeat(2, 1fr); }
    .cd-hero-inner { grid-template-columns: 1fr; }
    .cd-price-card { position: static; margin-top: 0; max-width: 400px; }
    .cd-body { grid-template-columns: 1fr; }
    .cd-related { position: static; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
    .cd-related > h3 { grid-column: 1/-1; }
    .cd-related > a:last-child { grid-column: 1/-1; }
}

@media (max-width: 768px) {
    .mp-layout { grid-template-columns: 1fr; }
    .mp-sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
    .course-grid { grid-template-columns: 1fr; }
    .mp-header-inner { flex-direction: column; align-items: flex-start; }
    .mp-search-form { max-width: 100%; width: 100%; }
    .mp-sort-bar { flex-direction: column; align-items: flex-start; }
    .learn-grid { grid-template-columns: 1fr; }
    .cd-related { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .mp-sidebar { grid-template-columns: 1fr; }
    .mp-sort-pills { gap: 4px; }
    .sort-pill { font-size: 11px; padding: 4px 9px; }
}

/* ── UTILITY ADDITIONS ──────────────────────────────────────── */
.btn-full { width: 100%; justify-content: center; }


/* ── DASHBOARD ──────────────────────────────────────────────── */
.dash-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.dash-welcome h1 {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.dash-section { margin-bottom: 40px; }

.dash-section-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-100);
}

/* My courses grid */
.dash-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.dash-course-card {
    display: flex;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    transition: all .2s;
    text-decoration: none;
    color: inherit;
}

.dash-course-card:hover {
    border-color: var(--amber);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.dash-course-thumb {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.dash-course-info { flex: 1; min-width: 0; }

.dash-course-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--amber-dark);
    margin-bottom: 4px;
}

.dash-course-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-progress-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-progress-bar {
    flex: 1;
    height: 5px;
    background: var(--gray-100);
    border-radius: 100px;
    overflow: hidden;
}

.dash-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    border-radius: 100px;
    transition: width 1s ease;
}

.dash-progress-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
}

/* Empty state */
.dash-empty {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.dash-empty-icon { font-size: 52px; margin-bottom: 16px; }

.dash-empty h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.dash-empty p {
    color: var(--gray-600);
    font-size: 15px;
    max-width: 420px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.dash-quick-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.dash-quick-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    background: var(--gray-100);
    padding: 7px 16px;
    border-radius: 100px;
    transition: all .2s;
}

.dash-quick-links a:hover {
    background: rgba(245,158,11,.15);
    color: var(--amber-dark);
}

/* Recommended */
.dash-rec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.dash-rec-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 14px;
    transition: all .2s;
    text-decoration: none;
    color: inherit;
}

.dash-rec-card:hover {
    border-color: var(--amber);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.dash-rec-thumb {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.dash-rec-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 4px;
}

.dash-rec-price { font-size: 12px; }

@media (max-width: 768px) {
    .dash-layout { grid-template-columns: 1fr; }
    .dash-sidebar { display: none; }
    .dash-main { padding: 20px 16px; }
    .dash-welcome { flex-direction: column; align-items: flex-start; }
    .dash-course-grid { grid-template-columns: 1fr; }
    .dash-rec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .dash-rec-grid { grid-template-columns: 1fr; }
    .dash-empty { padding: 40px 20px; }
}

/* ── NAV ACTIVE STATE ───────────────────────────────────────── */
.nav-center a.active {
    color: var(--white);
    background: rgba(255,255,255,.1);
}


/* ═══════════════════════════════════════════════════════════════
   ACBIZ LEARN v1.2 — Instructor Studio Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── LAYOUT ─────────────────────────────────────────────────── */
.instructor-body { background: #f0f2f8; }

.ins-layout {
    display: grid;
    grid-template-columns: 256px 1fr;
    min-height: 100vh;
}

/* ── SIDEBAR ────────────────────────────────────────────────── */
.ins-sidebar {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    flex-shrink: 0;
}

.ins-sidebar-top {
    padding: 24px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ins-role-badge {
    display: inline-block;
    background: rgba(245,158,11,.2);
    color: var(--amber);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(245,158,11,.3);
    width: fit-content;
}

.ins-nav { flex: 1; padding: 16px 12px; display: flex; flex-direction: column; gap: 20px; }

.ins-nav-section { display: flex; flex-direction: column; gap: 2px; }

.ins-nav-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
    padding: 0 10px;
    margin-bottom: 4px;
}

.ins-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    transition: all .15s;
    text-decoration: none;
}

.ins-nav-link:hover { background: rgba(255,255,255,.07); color: var(--white); }
.ins-nav-link.active { background: rgba(245,158,11,.15); color: var(--amber); font-weight: 600; }

.ins-nav-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }

.ins-sidebar-user {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ins-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-dark), var(--amber));
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ins-user-info { overflow: hidden; }
.ins-user-info strong { display: block; font-size: 12px; font-weight: 700; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ins-user-info span  { font-size: 11px; color: rgba(255,255,255,.35); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }

/* ── TOP BAR ────────────────────────────────────────────────── */
.ins-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    height: 64px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 50;
}

.ins-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--navy);
    padding: 4px;
}

.ins-page-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ins-topbar-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* ── CONTENT ────────────────────────────────────────────────── */
.ins-main { display: flex; flex-direction: column; min-height: 100vh; overflow: hidden; }
.ins-content { padding: 28px 32px 48px; flex: 1; }
.ins-flash { padding: 0 32px; margin-top: 12px; }

/* ── PANEL ──────────────────────────────────────────────────── */
.ins-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
}

.ins-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-100);
    gap: 12px;
    flex-wrap: wrap;
}

.ins-panel-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
}

/* ── STATS ROW ──────────────────────────────────────────────── */
.ins-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.ins-stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: box-shadow .2s;
}

.ins-stat-card:hover { box-shadow: var(--shadow); }

.ins-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.ins-stat-body { display: flex; flex-direction: column; gap: 2px; }

.ins-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.ins-stat-label { font-size: 12px; color: var(--gray-400); font-weight: 500; }

/* ── NOTICE ─────────────────────────────────────────────────── */
.ins-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(245,158,11,.08);
    border: 1px solid rgba(245,158,11,.25);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 13px;
    color: var(--gray-800);
    margin-bottom: 24px;
    line-height: 1.6;
}

.ins-notice-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.ins-notice a { color: var(--amber-dark); font-weight: 600; margin-left: 4px; }

/* ── TABLE ──────────────────────────────────────────────────── */
.ins-table-wrap { overflow-x: auto; }

.ins-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ins-table th {
    padding: 10px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--gray-400);
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
    white-space: nowrap;
}

.ins-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
    color: var(--gray-800);
}

.ins-table tr:last-child td { border-bottom: none; }
.ins-table tr:hover td { background: #fafbff; }

.ins-course-cell { display: flex; align-items: center; gap: 12px; }

.ins-course-thumb {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ins-course-cell strong { display: block; font-size: 13px; color: var(--navy); margin-bottom: 2px; }
.ins-course-cat { font-size: 11px; color: var(--gray-400); }

/* Status pills */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}

.status-published { background: rgba(16,185,129,.12); color: #065f46; }
.status-draft     { background: rgba(100,116,139,.12); color: var(--gray-600); }
.status-archived  { background: rgba(244,63,94,.10);  color: #9f1239; }

/* Actions */
.ins-actions { display: flex; gap: 4px; align-items: center; }

.ins-action-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
}

.ins-action-btn:hover { border-color: var(--amber); background: rgba(245,158,11,.08); }
.ins-action-delete:hover { border-color: var(--rose); background: rgba(244,63,94,.08); }

/* Empty state */
.ins-empty {
    text-align: center;
    padding: 60px 40px;
}

.ins-empty-icon { font-size: 48px; margin-bottom: 16px; }
.ins-empty h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.ins-empty p { color: var(--gray-600); max-width: 380px; margin: 0 auto 24px; font-size: 14px; line-height: 1.6; }

/* ── FORMS ──────────────────────────────────────────────────── */
.ins-form { padding: 24px; }
.ins-form-section { margin-bottom: 28px; }
.ins-form-section h3 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-100);
}

.ins-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.ins-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
}

.ins-field input,
.ins-field select,
.ins-field textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}

.ins-field input:focus,
.ins-field select:focus,
.ins-field textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}

.ins-field input:disabled { background: var(--gray-100); color: var(--gray-400); cursor: not-allowed; }
.ins-hint { font-size: 11px; color: var(--gray-400); line-height: 1.5; }
.req { color: var(--rose); }
.ins-section-note { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }

.ins-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ins-price-wrap {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.ins-price-wrap:focus-within { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245,158,11,.12); }
.ins-price-prefix { padding: 10px 12px; background: var(--gray-100); color: var(--gray-600); font-weight: 600; font-size: 14px; border-right: 1px solid var(--gray-200); }
.ins-price-wrap input { border: none; border-radius: 0; box-shadow: none !important; }
.ins-price-wrap input:focus { box-shadow: none !important; }

.ins-form-footer {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid var(--gray-100);
    margin-top: 8px;
}

/* Status radio options */
.ins-status-pills { display: flex; gap: 10px; flex-wrap: wrap; }

.ins-status-option {
    flex: 1;
    min-width: 140px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 12px 14px;
    cursor: pointer;
    transition: all .15s;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ins-status-option input[type="radio"] { display: none; }
.ins-status-option:hover { border-color: var(--amber); background: rgba(245,158,11,.04); }
.ins-status-option.selected,
.ins-status-option:has(input:checked) { border-color: var(--amber); background: rgba(245,158,11,.08); }

.iso-icon { font-size: 18px; }
.iso-label { font-size: 13px; font-weight: 700; color: var(--navy); }
.iso-hint  { font-size: 11px; color: var(--gray-400); }

/* ── CURRICULUM BUILDER ─────────────────────────────────────── */
.ins-add-section-wrap {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
    align-items: center;
}

.ins-inline-input {
    flex: 1;
    padding: 9px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color .2s;
}

.ins-inline-input:focus { outline: none; border-color: var(--amber); }
.ins-inline-short { max-width: 80px; flex: none; }
.ins-inline-select { padding: 9px 12px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 13px; color: var(--gray-800); background: var(--white); }
.ins-inline-check { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--gray-600); cursor: pointer; white-space: nowrap; }

.curriculum-list { padding: 8px 12px 16px; display: flex; flex-direction: column; gap: 10px; }
.curriculum-empty { padding: 32px; text-align: center; color: var(--gray-400); font-size: 13px; }

.curriculum-section {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.cs-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-100);
}

.cs-drag { color: var(--gray-400); cursor: grab; font-size: 14px; }
.cs-title { flex: 1; font-size: 14px; font-weight: 700; color: var(--navy); }
.cs-count { font-size: 11px; color: var(--gray-400); white-space: nowrap; }

.cs-delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    color: var(--gray-400);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}

.cs-delete-btn:hover { background: rgba(244,63,94,.1); color: var(--rose); }

.cs-lessons { padding: 0; }

.cs-lesson {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--gray-100);
    transition: background .15s;
}

.cs-lesson:hover { background: #fafbff; }
.lesson-type-icon { font-size: 14px; flex-shrink: 0; }
.lesson-title { flex: 1; font-size: 13px; color: var(--gray-800); }

.lesson-meta { display: flex; align-items: center; gap: 8px; }

.lesson-dur {
    font-size: 11px;
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 2px 7px;
    border-radius: 100px;
}

.lesson-free {
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
    background: rgba(16,185,129,.1);
    padding: 2px 7px;
    border-radius: 100px;
}

.lesson-delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    color: var(--gray-400);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    flex-shrink: 0;
}

.lesson-delete-btn:hover { background: rgba(244,63,94,.1); color: var(--rose); }

.cs-add-lesson { padding: 8px 14px; }

.add-lesson-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--amber-dark);
    padding: 6px 0;
    transition: color .15s;
}

.add-lesson-btn:hover { color: var(--amber); }

.lesson-form {
    padding: 12px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
    border: 1px solid var(--gray-200);
}

.lesson-form-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.lesson-form-actions { display: flex; gap: 8px; }

/* ── EDIT LAYOUT ────────────────────────────────────────────── */
.ins-edit-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 24px;
    align-items: start;
}

.ins-edit-left  { display: flex; flex-direction: column; }
.ins-edit-right { display: flex; flex-direction: column; position: sticky; top: 76px; }

.ins-stats-mini { padding: 20px 24px; }
.ins-stats-mini h3 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }

.mini-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    text-align: center;
}

.mini-stats-grid div { padding: 12px 8px; background: var(--off-white); border-radius: var(--radius-sm); }
.mini-stats-grid span { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--navy); }
.mini-stats-grid small { font-size: 10px; color: var(--gray-400); }

.ins-curriculum-meta { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 6px; }

/* ── PROFILE ────────────────────────────────────────────────── */
.ins-profile-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
}

.ins-profile-sidebar { position: sticky; top: 76px; display: flex; flex-direction: column; gap: 0; }
.ins-profile-sidebar .ins-panel { padding: 20px 24px; }

.ins-profile-avatar-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--off-white);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.ins-profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: var(--amber);
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ins-profile-stats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 4px; }

.ins-profile-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
}

.ips-num { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--navy); }
.ips-label { font-size: 12px; color: var(--gray-400); }

/* Checklist */
.ins-checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.ins-checklist li { font-size: 13px; color: var(--gray-600); }
.ins-checklist li.done { color: var(--gray-800); }

.ins-profile-progress { display: flex; align-items: center; gap: 10px; }
.ins-progress-bar { flex: 1; height: 6px; background: var(--gray-100); border-radius: 100px; overflow: hidden; }
.ins-progress-fill { height: 100%; background: linear-gradient(90deg, var(--amber), var(--amber-light)); border-radius: 100px; transition: width 1s ease; }
.ins-profile-progress span { font-size: 12px; font-weight: 700; color: var(--amber-dark); white-space: nowrap; }

/* Tips */
.ins-tip-panel { padding: 20px 24px; }
.ins-tips { padding-left: 16px; display: flex; flex-direction: column; gap: 8px; }
.ins-tips li { font-size: 12px; color: var(--gray-600); line-height: 1.55; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .ins-edit-layout { grid-template-columns: 1fr; }
    .ins-edit-right { position: static; }
    .ins-profile-layout { grid-template-columns: 1fr; }
    .ins-profile-sidebar { position: static; }
}

@media (max-width: 1024px) {
    .ins-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ins-layout { grid-template-columns: 1fr; }
    .ins-sidebar { position: fixed; left: -256px; transition: left .3s; height: 100vh; }
    .ins-sidebar.open { left: 0; box-shadow: 4px 0 24px rgba(0,0,0,.3); }
    .ins-menu-btn { display: flex; }
    .ins-content { padding: 20px 16px 40px; }
    .ins-topbar { padding: 0 16px; }
    .ins-topbar-actions .btn:first-child { display: none; }
    .ins-stats-row { grid-template-columns: repeat(2, 1fr); }
    .ins-form-row { grid-template-columns: 1fr; }
    .ins-status-pills { flex-direction: column; }
    .mini-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .ins-stats-row { grid-template-columns: 1fr; }
    .lesson-form-row { flex-direction: column; align-items: flex-start; }
    .ins-inline-short { max-width: 100%; width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════
   ACBIZ LEARN v1.2 — Homepage Redesign Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── TOPBAR STRIP ───────────────────────────────────────────── */
.topbar-strip {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 8px 0;
    font-size: 12px;
}

.topbar-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left, .topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-item { color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 4px; }
.topbar-divider { color: rgba(255,255,255,.15); }
.topbar-link { color: rgba(255,255,255,.55); transition: color .2s; font-weight: 500; }
.topbar-link:hover { color: var(--amber); }
.topbar-link-cta { color: var(--amber); font-weight: 700; }

/* ── UPDATED NAVBAR ─────────────────────────────────────────── */
.nav-categories-wrap { position: relative; flex-shrink: 0; }

.nav-cat-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.8);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.nav-cat-btn:hover { background: rgba(255,255,255,.12); color: var(--white); }
.nav-cat-icon { font-size: 15px; }
.nav-cat-arrow { font-size: 10px; transition: transform .2s; }
.nav-cat-btn.open .nav-cat-arrow { transform: rotate(180deg); }

.cat-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 240px;
    z-index: 500;
    display: none;
    flex-direction: column;
    gap: 2px;
}

.cat-dropdown.open { display: flex; }

.cat-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all .15s;
}

.cat-dropdown a:hover { background: rgba(245,158,11,.08); color: var(--amber-dark); }

.nav-link {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,.08);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hp-hero {
    background: var(--navy);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
}

.hp-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hp-blob1 {
    width: 500px; height: 500px;
    background: rgba(245,158,11,.08);
    top: -150px; right: -100px;
}

.hp-blob2 {
    width: 350px; height: 350px;
    background: rgba(6,182,212,.06);
    bottom: -100px; left: -80px;
}

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

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,.12);
    border: 1px solid rgba(245,158,11,.3);
    color: var(--amber);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hp-badge-dot {
    width: 7px; height: 7px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hp-hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.hp-h1-accent { color: var(--amber); }

.hp-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 300;
}

.hp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hp-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.3);
    transition: all .2s;
}
.hp-btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.hp-btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
}
.hp-btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* Social proof */
.hp-social-proof { display: flex; align-items: center; gap: 16px; }

.hp-avatars { display: flex; }

.hp-av {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; color: var(--white);
    margin-left: -10px;
    flex-shrink: 0;
}

.hp-avatars .hp-av:first-child { margin-left: 0; }

.hp-proof-text strong { display: block; font-size: 13px; color: var(--white); font-weight: 700; }
.hp-proof-stars { font-size: 12px; color: var(--amber); margin-top: 2px; }
.hp-proof-stars span { color: rgba(255,255,255,.45); }

/* Hero visual */
.hp-hero-visual { position: relative; }

.hp-hero-card-main {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-xl);
    overflow: hidden;
    animation: float 7s ease-in-out infinite;
}

.hp-hero-card-inner { padding: 36px; }
.hp-card-emoji { font-size: 52px; margin-bottom: 20px; display: block; }

.hp-hero-card-inner h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.hp-hero-card-inner p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
    margin-bottom: 20px;
}

.hp-card-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.hp-card-tags span {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
}

/* Floating stat cards */
.hp-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    animation: floatBadge 5s ease-in-out infinite;
}

.hp-fc1 { top: -16px; right: -16px; animation-delay: 0s; }
.hp-fc2 { bottom: 60px; left: -24px; animation-delay: 1.5s; }
.hp-fc3 { bottom: -16px; right: 40px; animation-delay: 0.8s; }

.hp-fc-icon { font-size: 22px; }
.hp-float-card strong { display: block; font-size: 15px; font-weight: 800; color: var(--navy); line-height: 1; }
.hp-float-card small  { font-size: 11px; color: var(--gray-400); }

/* ── STATS BAR ──────────────────────────────────────────────── */
.hp-stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 36px 0;
}

.hp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.hp-stat-item {
    text-align: center;
    padding: 8px 20px;
    border-right: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.hp-stat-num {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.hp-stat-label {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 500;
}

/* ── FEATURES SPLIT ─────────────────────────────────────────── */
.hp-features {
    background: var(--off-white);
    padding: 88px 0;
}

.hp-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.hp-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 36px;
}

.hp-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

.hp-fl-check {
    width: 22px; height: 22px;
    background: var(--amber);
    color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.hp-features-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hp-feat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all .25s;
}

.hp-feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--amber); }

.hp-feat-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.hp-feat-card h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.hp-feat-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ── SECTION SHARED (homepage) ──────────────────────────────── */
.hp-section { padding: 80px 0; }

.hp-featured-section { background: var(--white); }
.hp-categories-section { background: var(--off-white); }
.hp-lists-section { background: var(--white); }
.hp-learners-section { background: var(--off-white); }

.hp-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hp-section-header.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
}

/* ── FEATURED COURSE CARDS ──────────────────────────────────── */
.hp-course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hp-course-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .22s, box-shadow .22s;
    text-decoration: none;
    color: inherit;
}

.hp-course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.hp-course-thumb {
    height: 140px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

.hp-course-thumb-icon {
    font-size: 48px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
    transition: transform .25s;
}

.hp-course-card:hover .hp-course-thumb-icon { transform: scale(1.12); }

.hp-badge-free {
    position: absolute; top: 10px; right: 10px;
    background: var(--green); color: white;
    font-size: 10px; font-weight: 700;
    padding: 3px 9px; border-radius: 100px;
}

.hp-course-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }

.hp-course-cat {
    font-size: 11px; font-weight: 700;
    color: var(--amber-dark);
    text-transform: uppercase; letter-spacing: .5px;
}

.hp-course-title {
    font-family: var(--font-display);
    font-size: 15px; font-weight: 700;
    color: var(--navy); line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.hp-course-by { font-size: 12px; color: var(--gray-400); }

.hp-course-meta {
    display: flex; align-items: center; gap: 5px;
    flex-wrap: wrap; font-size: 12px; color: var(--gray-400);
}

.hp-stars { color: var(--amber); font-size: 12px; letter-spacing: 1px; }
.hp-stars-sm { font-size: 11px; }
.hp-rating-num { font-size: 12px; font-weight: 700; color: var(--amber-dark); }
.hp-rating-count { font-size: 11px; color: var(--gray-400); }
.hp-dot { color: var(--gray-200); }
.hp-dur { font-size: 11px; }

.hp-course-footer { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--gray-100); }

.hp-price-free { font-size: 15px; font-weight: 800; color: var(--green); }
.hp-price-now  { font-size: 15px; font-weight: 800; color: var(--navy); margin-right: 6px; }
.hp-price-old  { font-size: 12px; color: var(--gray-400); text-decoration: line-through; }

/* ── CATEGORIES PILLS ───────────────────────────────────────── */
.hp-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.hp-cat-pill {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all .2s;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.hp-cat-pill::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    transform: scaleX(0); transform-origin: left; transition: transform .25s;
}

.hp-cat-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--amber); }
.hp-cat-pill:hover::after { transform: scaleX(1); }

.hp-cat-pill-icon { font-size: 28px; }
.hp-cat-pill-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--navy); }
.hp-cat-pill-count { font-size: 11px; font-weight: 600; color: var(--amber-dark); background: rgba(245,158,11,.1); padding: 2px 8px; border-radius: 100px; width: fit-content; }

/* ── LISTS (bestsellers + top rated) ────────────────────────── */
.hp-lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.hp-list-panel {}

.hp-list-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.hp-list-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.hp-list-items { display: flex; flex-direction: column; gap: 1px; }

.hp-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
    color: inherit;
    transition: background .15s;
    border-radius: var(--radius-sm);
}

.hp-list-item:last-child { border-bottom: none; }
.hp-list-item:hover { background: var(--off-white); padding-left: 8px; }

.hp-list-thumb {
    width: 64px; height: 64px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.hp-list-info { flex: 1; min-width: 0; }
.hp-list-info h4 { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 4px; }
.hp-list-by { font-size: 11px; color: var(--gray-400); margin-bottom: 6px; }

.hp-list-meta {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap; font-size: 12px;
}

.hp-list-dur { font-size: 11px; color: var(--gray-400); margin-left: auto; }

/* ── INSTRUCTOR BANNER ──────────────────────────────────────── */
.hp-instructor-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hp-instructor-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(245,158,11,.08) 0%, transparent 65%);
    pointer-events: none;
}

.hp-ibanner-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hp-ibanner-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 12px 0 16px;
}

.hp-ibanner-copy p { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.7; font-weight: 300; max-width: 480px; }

.hp-ibanner-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hp-ibs-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    display: flex; flex-direction: column; gap: 4px;
    transition: background .2s;
}

.hp-ibs-card:hover { background: rgba(255,255,255,.1); }
.hp-ibs-card span { font-size: 24px; margin-bottom: 4px; }
.hp-ibs-card strong { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--white); }
.hp-ibs-card small { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── LEARNER TYPES ──────────────────────────────────────────── */
.hp-learner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hp-learner-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all .22s;
}

.hp-learner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--amber); }

.hp-learner-card span { font-size: 36px; display: block; margin-bottom: 12px; }
.hp-learner-card h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.hp-learner-card p { font-size: 12px; color: var(--gray-400); line-height: 1.5; }

/* ── CTA ────────────────────────────────────────────────────── */
.hp-cta {
    background: var(--amber);
    padding: 80px 0;
}

.hp-cta-inner { text-align: center; }

.hp-cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.hp-cta-inner p { font-size: 17px; color: rgba(10,15,46,.6); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

.hp-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hp-cta .btn-primary {
    background: var(--navy);
    color: var(--white);
}

.hp-cta .btn-primary:hover {
    background: var(--navy-soft);
    box-shadow: 0 8px 24px rgba(10,15,46,.3);
}

.hp-cta .hp-btn-outline-white {
    color: var(--navy);
    border-color: rgba(10,15,46,.3);
}

.hp-cta .hp-btn-outline-white:hover {
    background: rgba(10,15,46,.08);
    border-color: var(--navy);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hp-hero-grid { grid-template-columns: 1fr 380px; gap: 40px; }
    .hp-course-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-cats-grid { grid-template-columns: repeat(4, 1fr); }
    .hp-ibanner-inner { grid-template-columns: 1fr; }
    .hp-ibanner-stats { grid-template-columns: repeat(4, 1fr); }
    .hp-learner-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .hp-hero-grid { grid-template-columns: 1fr; }
    .hp-hero-visual { display: none; }
    .hp-features-grid { grid-template-columns: 1fr; gap: 40px; }
    .hp-lists-grid { grid-template-columns: 1fr; }
    .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
    .hp-stat-item:nth-child(2n) { border-right: none; }
    .hp-learner-grid { grid-template-columns: repeat(4, 1fr); }
    .nav-categories-wrap { display: none; }
}

@media (max-width: 768px) {
    .topbar-strip { display: none; }
    .hp-cats-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-features-right { grid-template-columns: 1fr; }
    .hp-course-grid { grid-template-columns: 1fr; }
    .hp-learner-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-ibanner-stats { grid-template-columns: repeat(2, 1fr); }
    .hp-hero { padding: 56px 0 48px; }
}

@media (max-width: 480px) {
    .hp-stats-grid { grid-template-columns: 1fr 1fr; }
    .hp-learner-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-hero-actions { flex-direction: column; }
    .hp-hero-actions .btn { width: 100%; justify-content: center; }
    .hp-cta-actions { flex-direction: column; align-items: center; }
}
