/*
Theme Name:  Kapscode Pulse
Theme URI:   https://kapscode.com
Author:      Kapscode
Author URI:  https://kapscode.com
Description: A bold, modern WordPress theme with a dark orange aesthetic, glassmorphism surfaces, and gradient-driven design. Built for courses and landing pages with Tutor LMS support.
Version:     2.0.0
Requires at least: 6.0
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kapscodepulse
Tags:        education, lms, tutor-lms, course, landing-page, dark, modern, orange
*/

:root {
    --bg-deep: #0b0b1a;
    --bg-surface: #13132b;
    --bg-elevated: #1a1a3e;
    --bg-card: rgba(26, 26, 62, 0.6);
    --primary: #EB5B27;
    --primary-glow: rgba(235, 91, 39, 0.35);
    --primary-light: #f0774a;
    --primary-dark: #c94d1f;
    --secondary: #f0774a;
    --secondary-glow: rgba(240, 119, 74, 0.25);
    --secondary-light: #ff8a5c;
    --accent: #ff8a5c;
    --accent-light: #ffa07a;
    --accent-glow: rgba(255, 138, 92, 0.3);
    --success: #10b981;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(235, 91, 39, 0.2);
    --border-light: rgba(235, 91, 39, 0.1);
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(235, 91, 39, 0.15);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Cascadia Code', 'Fira Code', monospace;
    --max-width: 1200px;
    --section-pad: 100px 5%;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-deep);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--secondary-light);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

a:hover {
    color: var(--primary-light);
}

ul,
ol {
    list-style: none;
}

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

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

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

::selection {
    background: var(--primary);
    color: var(--white);
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: linear-gradient(135deg, var(--accent), #ff8a5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--secondary-light);
    margin-bottom: 16px;
    background: rgba(235, 91, 39, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(235, 91, 39, 0.18);
}

.section-tag::before {
    content: '//';
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 13px;
}

.section-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-8px) rotate(1deg);
    }

    66% {
        transform: translateY(4px) rotate(-1deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--accent-glow);
    }

    50% {
        box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(235, 91, 39, 0.15);
    }
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translate(100px, -100px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes count-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 8s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.animate-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

.animate-slide-up {
    animation: slide-up 0.7s ease-out forwards;
}

.animate-slide-up-d1 {
    animation: slide-up 0.7s ease-out 0.1s forwards;
    opacity: 0;
}

.animate-slide-up-d2 {
    animation: slide-up 0.7s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-d3 {
    animation: slide-up 0.7s ease-out 0.3s forwards;
    opacity: 0;
}

.animate-slide-up-d4 {
    animation: slide-up 0.7s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-slide-up-d5 {
    animation: slide-up 0.7s ease-out 0.5s forwards;
    opacity: 0;
}

.animate-slide-up-d6 {
    animation: slide-up 0.7s ease-out 0.6s forwards;
    opacity: 0;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
}

.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    z-index: -1;
    opacity: 0.3;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 20px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(235, 91, 39, 0.08);
    color: var(--text-primary);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.btn-lg {
    font-size: 17px;
    padding: 18px 40px;
}

.btn-sm {
    font-size: 13px;
    padding: 10px 20px;
}

#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 11, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

#site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.site-branding .site-title {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--text-primary);
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.03em;
}

.site-branding .site-title span {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-logo-link img.custom-logo {
    width: 180px;
    height: auto;
    max-width: 100%;
}

#primary-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

#primary-menu li {
    list-style: none;
}

#primary-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
    border-radius: var(--radius-sm);
}

#primary-menu li a:hover,
#primary-menu li.current-menu-item a {
    color: var(--text-primary);
    background: rgba(235, 91, 39, 0.1);
}

#primary-menu .menu-cta a {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    border-radius: var(--radius-md);
    padding: 10px 22px;
    font-weight: 600;
    margin-left: 12px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

#primary-menu .menu-cta a:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--primary-glow);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

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

/* ============================================================
   HERO
   ============================================================ */
.kp-hero {
    padding: 80px 5% 100px;
    position: relative;
    overflow: hidden;
}

.kp-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(235, 91, 39, 0.15), transparent 70%);
    pointer-events: none;
    animation: float-slow 8s ease-in-out infinite;
}

.kp-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(235, 91, 39, 0.1), transparent 70%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite reverse;
}

.kp-hero .hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.kp-hero .hero-orbs span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: drift 12s linear infinite;
}

.kp-hero .hero-orbs span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.kp-hero .hero-orbs span:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 16s;
    width: 4px;
    height: 4px;
}

.kp-hero .hero-orbs span:nth-child(3) {
    left: 50%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.kp-hero .hero-orbs span:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 18s;
    width: 5px;
    height: 5px;
    background: var(--primary-light);
}

.kp-hero .hero-orbs span:nth-child(5) {
    left: 85%;
    top: 15%;
    animation-delay: 3s;
    animation-duration: 15s;
    width: 3px;
    height: 3px;
    background: var(--secondary-light);
}

.kp-hero .hero-orbs span:nth-child(6) {
    left: 40%;
    top: 80%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(235, 91, 39, 0.1);
    border: 1px solid rgba(235, 91, 39, 0.25);
    color: var(--secondary-light);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary-glow);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.kp-hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 17px;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
}

.hero-stat .num {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-stat .lbl {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 400;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-glow-card {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: float 7s ease-in-out infinite;
}

.hero-glow-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent, rgba(235, 91, 39, 0.1), transparent, rgba(235, 91, 39, 0.05), transparent);
    animation: rotate-glow 8s linear infinite;
    pointer-events: none;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-glow-card .glow-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-glow-card .placeholder-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.hero-glow-card .code-line {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
}

.hero-glow-card .code-line .hl {
    color: var(--secondary-light);
}

.hero-glow-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ============================================================
   INFO STRIP
   ============================================================ */
.kp-info-strip {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.kp-info-strip::before,
.kp-info-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.kp-info-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-surface), transparent);
}

.kp-info-strip::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-surface), transparent);
}

.info-strip-track {
    display: inline-flex;
    gap: 48px;
    animation: scroll-strip 40s linear infinite;
    padding: 0 24px;
}

.info-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.info-strip-item .cyber-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
    flex-shrink: 0;
}

.info-strip-item .cyber-check {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-sm);
    background: rgba(16, 185, 129, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

@keyframes scroll-strip {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.kp-section {
    padding: var(--section-pad);
    position: relative;
}

.kp-section-dark {
    background: var(--bg-surface);
}

.kp-section-dark .section-desc {
    color: var(--text-muted);
}

.kp-section-grid-bg {
    background-image:
        linear-gradient(var(--border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Section dividers */
.section-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ============================================================
   VALUE PROPS
   ============================================================ */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.value-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.value-card:hover::after {
    opacity: 1;
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(235, 91, 39, 0.15), rgba(240, 119, 74, 0.1));
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   CURRICULUM
   ============================================================ */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.curriculum-phase {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s;
}

.curriculum-phase:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-glow);
}

.curriculum-phase-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--secondary-light);
    background: rgba(235, 91, 39, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
    border: 1px solid rgba(235, 91, 39, 0.2);
}

.curriculum-phase-title {
    font-size: 19px;
    margin-bottom: 16px;
    font-weight: 700;
}

.curriculum-weeks {
    display: grid;
    gap: 10px;
}

.curriculum-week {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.2s;
}

.curriculum-week:hover {
    background: rgba(235, 91, 39, 0.05);
    border-color: var(--border-light);
}

.curriculum-week-num {
    font-family: var(--font-mono);
    background: rgba(235, 91, 39, 0.1);
    color: var(--primary-light);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 100px;
    flex-shrink: 0;
    margin-top: 3px;
    min-width: 34px;
    text-align: center;
}

.curriculum-week-text {
    flex: 1;
}

/* ============================================================
   OUTCOMES
   ============================================================ */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.outcome-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

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

.outcome-card .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.outcome-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.outcome-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
    max-width: 800px;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(235, 91, 39, 0.12), rgba(240, 119, 74, 0.06));
    box-shadow: 0 0 40px var(--primary-glow);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 100px;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.plan-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pricing-card.featured .plan-name {
    color: var(--secondary-light);
}

.price-main {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}

.pricing-card:not(.featured) .price-main {
    color: var(--text-primary);
}

.price-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
    margin-bottom: 24px;
}

.pricing-card.featured .price-note {
    color: var(--text-muted);
}

.price-includes {
    margin-bottom: 28px;
}

.price-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.pricing-card.featured .price-includes li {
    color: var(--text-secondary);
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-sm);
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-breakdown {
    font-size: 13px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-family: var(--font-mono);
}

.pricing-card.featured .pricing-breakdown {
    background: rgba(235, 91, 39, 0.08);
    border-color: rgba(235, 91, 39, 0.2);
}

/* ============================================================
   INSTRUCTOR
   ============================================================ */
.instructor-card {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 48px;
}

.instructor-avatar {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
    border: 2px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 900;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-info {
    flex: 1;
    min-width: 260px;
}

.instructor-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.instructor-role {
    font-size: 15px;
    background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 16px;
}

.instructor-bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 560px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(235, 91, 39, 0.08);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ============================================================
   SAFE LEARNING
   ============================================================ */
.safe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.safe-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color 0.2s;
}

.safe-item:hover {
    border-color: var(--border);
}

.safe-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
    flex-shrink: 0;
    margin-top: 7px;
}

.safe-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
    margin-top: 48px;
    max-width: 760px;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-body);
    text-align: left;
    transition: background 0.15s;
}

.faq-question:hover {
    background: rgba(235, 91, 39, 0.05);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: rgba(235, 91, 39, 0.1);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
    color: var(--primary-light);
    transition: all 0.3s;
}

.faq-item.open .faq-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
    position: relative;
    padding: var(--section-pad);
    text-align: center;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(235, 91, 39, 0.12), transparent 70%);
    pointer-events: none;
}

.final-cta-section h2 {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 900;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.final-cta-section .btn {
    position: relative;
    z-index: 1;
}

.seats-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    padding: 56px 5% 32px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.footer-brand .site-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.footer-brand .site-title span {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .footer-logo {
    max-height: 48px;
    width: auto;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-brand .footer-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--secondary-light);
}

/* ============================================================
   TUTOR LMS OVERRIDES
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --tutor-body-color: var(--text-primary);
    --tutor-body-color-rgb: 241, 245, 249;
    --tutor-border-color: rgba(235, 91, 39, 0.2);
    --tutor-color-primary: #EB5B27;
    --tutor-color-primary-rgb: 235, 91, 39;
    --tutor-color-primary-hover: #f0774a;
    --tutor-color-secondary: #1a1a3e;
    --tutor-color-subdued: #94a3b8;
    --tutor-color-muted: #64748b;
    --tutor-color-gray: #1a1a3e;
    --tutor-color-white: rgba(26, 26, 62, 0.6);
    --tutor-color-black: #f1f5f9;
    --tutor-color-success: #10b981;
    --tutor-color-warning: #f59e0b;
    --tutor-color-danger: #ef4444;
}

/* --- General Wrappers & Page Backgrounds --- */
.tutor-page-wrap,
.tutor-wrap-parent {
    background: var(--bg-deep);
    color: var(--text-secondary);
    padding-block: 2rem;
}

.tutor-course-details-page {
    background: var(--bg-deep);
}

.tutor-single-course-sidebar {
    background: transparent;
}

/* --- Tutor Color Utility Overrides --- */
.tutor-color-black {
    color: var(--text-primary) !important;
}

.tutor-color-secondary {
    color: var(--text-secondary) !important;
}

.tutor-color-muted {
    color: var(--text-muted) !important;
}

.tutor-color-white {
    color: var(--text-primary) !important;
}

.tutor-color-success {
    color: var(--success) !important;
}

.tutor-color-warning {
    color: var(--tutor-color-warning) !important;
}

.tutor-color-danger {
    color: var(--tutor-color-danger) !important;
}

.tutor-fs-4,
.tutor-fs-5,
.tutor-fs-6,
.tutor-fs-7 {
    color: var(--text-primary);
}

.tutor-fs-6.tutor-color-secondary,
.tutor-fs-7.tutor-color-secondary {
    color: var(--text-secondary) !important;
}

.tutor-fs-7.tutor-color-muted {
    color: var(--text-muted) !important;
}

/* --- Cards --- */
.tutor-card {
    background: var(--bg-card) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.tutor-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-glow);
}

.tutor-card-body {
    background: transparent !important;
}

.tutor-card-footer {
    background: transparent;
    border-top: 1px solid var(--border-light);
}

.tutor-card .tutor-card-title a {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 18px;
}

.tutor-card .tutor-card-title a:hover {
    color: var(--primary-light);
}

/* --- Course Archive / Loop --- */
.tutor-course-loop,
.tutor-courses-grid {
    gap: 24px !important;
}

.tutor-course-loop-price {
    color: var(--text-secondary);
}

.tutor-course-loop-level {
    background: rgba(235, 91, 39, 0.12);
    color: var(--primary-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
}

.tutor-course-loop-author {
    color: var(--text-muted);
}

.tutor-course-loop-meta {
    color: var(--text-muted);
}

/* --- Single Course Page --- */
.tutor-course-details-header {
    background: transparent;
}

.tutor-course-details-title {
    color: var(--text-primary);
}

.tutor-course-details-top {
    background: transparent;
}

.tutor-meta {
    color: var(--text-secondary);
}

.tutor-meta a {
    color: var(--secondary-light);
}

.tutor-meta a:hover {
    color: var(--primary-light);
}

.tutor-course-details-tab .tutor-is-sticky {
    background: var(--bg-surface) !important;
    border-bottom: 1px solid var(--border-light);
}

.tutor-nav-tabs-container {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-light);
}

.tutor-nav-link {
    color: var(--text-secondary);
    background: transparent;
    border: none;
}

.tutor-nav-link.is-active {
    color: var(--primary-light);
    border-bottom-color: var(--primary);
}

.tutor-nav-link:hover {
    color: var(--primary-light);
}

/* --- Accordion --- */
.tutor-accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
}

.tutor-accordion-item-header {
    background: var(--bg-elevated) !important;
    color: var(--text-primary) !important;
    font-weight: 700;
    padding: 16px 20px;
}

.tutor-accordion-item-header.is-active {
    background: rgba(235, 91, 39, 0.08) !important;
    border-bottom: 1px solid var(--border-light);
}

.tutor-accordion-item-body {
    background: var(--bg-surface) !important;
}

.tutor-accordion-item-body-content {
    padding: 8px 0;
}

.tutor-course-content-list {
    padding-inline: 20px;
}

.tutor-course-content-list-item {
    background: transparent !important;
    border-bottom: 1px solid var(--border-light);
    padding: 12px 20px !important;
    transition: background 0.2s;
}

.tutor-course-content-list-item:hover {
    background: rgba(235, 91, 39, 0.04);
}

.tutor-course-content-list-item-title a {
    color: var(--text-primary);
    font-weight: 600;
}

.tutor-course-content-list-item-title a:hover {
    color: var(--primary-light);
}

.tutor-course-content-list-item-duration {
    color: var(--text-muted);
}

/* --- Sidebar Card --- */
.tutor-sidebar-card {
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.tutor-sidebar-card .tutor-sidebar-price {
    color: var(--primary-light) !important;
    font-weight: 900 !important;
    font-size: 32px !important;
}

/* --- Sidebar Widgets (Instructor, Requirements, Tags, Audience) --- */
.tutor-single-course-sidebar-more>div {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
}

.tutor-course-details-widget {
    background: transparent;
}

.tutor-course-details-widget-title {
    color: var(--text-primary) !important;
    font-weight: 700;
}

.tutor-course-details-widget-list {
    color: var(--text-secondary) !important;
}

.tutor-course-details-widget-list li span {
    color: var(--text-secondary);
}

.tutor-course-details-instructors {
    background: transparent;
}

.tutor-course-details-instructors a.tutor-color-black {
    color: var(--text-primary) !important;
}

.tutor-course-details-instructors a.tutor-color-black:hover {
    color: var(--primary-light) !important;
}

.tutor-instructor-designation {
    color: var(--text-muted) !important;
}

.tutor-tag-list li a {
    background: rgba(235, 91, 39, 0.08);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    font-size: 13px;
    transition: all 0.2s;
}

.tutor-tag-list li a:hover {
    background: rgba(235, 91, 39, 0.15);
    color: var(--primary-light);
    border-color: var(--border);
}

/* --- Lesson Content Wrappers --- */
.tutor-course-single-content-wrapper {
    background: var(--bg-deep);
}

.tutor-course-single-sidebar-wrapper {
    background: var(--bg-surface);
    border-right: 1px solid var(--border-light);
}

/* --- Spotlight Mobile --- */
.tutor-spotlight-mobile-progress-complete {
    background: var(--bg-card) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

/* --- Course Topic List --- */
.tutor-course-topics-list .tutor-course-topic-title-text {
    color: var(--text-primary);
    font-weight: 700;
}

.tutor-course-topic-item a {
    color: var(--text-secondary);
}

.tutor-course-topic-item a:hover {
    color: var(--primary-light);
}

/* --- Ratings --- */
.tutor-ratings .tutor-star-rating-icon,
.tutor-star-icons .tutor-icon-star-full {
    color: var(--accent) !important;
}

.tutor-ratings-count {
    color: var(--text-muted);
}

/* --- Progress Bar --- */
.tutor-progress-bar .tutor-progress-filled,
.tutor-progress-bar .tutor-progress-value {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark)) !important;
}

.tutor-progress-bar {
    background: rgba(255, 255, 255, 0.08);
}

/* --- Buttons --- */
.tutor-btn {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    border-radius: var(--radius-md) !important;
    transition: all 0.3s !important;
}

.tutor-btn-primary,
.tutor-enroll-course-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 15px var(--primary-glow) !important;
}

.tutor-btn-primary:hover,
.tutor-enroll-course-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px var(--primary-glow) !important;
}

.tutor-btn-outline-primary {
    background: transparent !important;
    color: var(--primary-light) !important;
    border: 2px solid var(--primary) !important;
}

.tutor-btn-outline-primary:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

.tutor-btn-ghost {
    color: var(--text-secondary) !important;
    background: transparent !important;
    border: none !important;
}

.tutor-btn-ghost:hover {
    color: var(--primary-light) !important;
    background: rgba(235, 91, 39, 0.08) !important;
}

/* --- Forms & Inputs --- */
.tutor-form-group input[type="text"],
.tutor-form-group input[type="email"],
.tutor-form-group input[type="password"],
.tutor-form-group input[type="number"],
.tutor-form-group input[type="tel"],
.tutor-form-group input[type="url"],
.tutor-form-group input[type="search"],
.tutor-form-group textarea,
.tutor-form-group select {
    background: var(--bg-elevated) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-md) !important;
    padding: 12px 16px !important;
    font-family: var(--font-body);
    font-size: 14px;
}

.tutor-form-group input:focus,
.tutor-form-group textarea:focus,
.tutor-form-group select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px var(--primary-glow) !important;
    outline: none !important;
}

.tutor-form-group label {
    color: var(--text-secondary);
    font-weight: 600;
}

/* --- Login Page --- */
.tutor-login-wrap {
    background: var(--bg-card) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 40px;
    max-width: 440px;
    margin: 60px auto;
}

.tutor-login-form-wrapper {
    background: transparent !important;
}

/* --- Lesson Sidebar --- */
.tutor-course-lesson-sidebar {
    background: var(--bg-surface) !important;
    border-right: 1px solid var(--border-light) !important;
}

.tutor-course-lesson-sidebar .tutor-lesson-title {
    color: var(--text-secondary) !important;
}

.tutor-course-lesson-sidebar .tutor-lesson-title:hover {
    color: var(--primary-light) !important;
}

.tutor-course-lesson-sidebar .tutor-course-topic-title {
    color: var(--text-primary) !important;
}

.tutor-course-lesson-sidebar .is-complete .tutor-icon-check-mark-circle {
    color: var(--success) !important;
}

/* --- Quiz --- */
.tutor-quiz-body {
    background: var(--bg-surface);
    color: var(--text-secondary);
}

.tutor-quiz-question {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
}

.tutor-quiz-option {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-secondary);
    transition: border-color 0.2s;
}

.tutor-quiz-option:hover {
    border-color: var(--primary);
}

.tutor-quiz-option.is-selected {
    border-color: var(--primary);
    background: rgba(235, 91, 39, 0.1);
}

.tutor-quiz-option.is-correct {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.tutor-quiz-option.is-incorrect {
    border-color: var(--tutor-color-danger);
    background: rgba(239, 68, 68, 0.1);
}

/* --- Dashboard --- */
.tutor-frontend-dashboard-header {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 24px;
}

.tutor-dashboard-left-menu {
    background: var(--bg-deep) !important;
    border-right: 1px solid var(--border-light);
}

.tutor-dashboard-content {
    background: var(--bg-deep);
}

.tutor-dashboard-title {
    color: var(--text-primary);
}

.tutor-dashboard-content-inner h3,
.tutor-dashboard-content-inner h4,
.tutor-dashboard-content-inner h5 {
    color: var(--text-primary);
}

.tutor-dashboard-menu-item-link {
    color: var(--text-secondary) !important;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    transition: all 0.2s;
}

.tutor-dashboard-menu-item-link:hover {
    background: rgba(235, 91, 39, 0.08);
    color: var(--primary-light) !important;
}

.tutor-dashboard-menu li.is-active a {
    color: var(--primary-light) !important;
    background: rgba(235, 91, 39, 0.1) !important;
    border-radius: var(--radius-sm) !important;
}

/* --- Dashboard Cards & Tables --- */
.tutor-profile-completion,
.tutor-course-progress-item,
.tutor-frontend-dashboard-course-progress .tutor-card,
.tutor-dashboard-content-inner .tutor-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-lg) !important;
}

.tutor-round-box {
    background: var(--bg-elevated) !important;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.tutor-table-responsive {
    background: transparent;
}

.tutor-table {
    background: transparent !important;
    border-collapse: separate;
    border-spacing: 0;
}

.tutor-table thead {
    background: var(--bg-elevated) !important;
}

.tutor-table thead th {
    color: var(--text-secondary) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    background-color: transparent !important;
}

.tutor-table tbody tr {
    background: var(--bg-card) !important;
    border-bottom: 1px solid var(--border-light);
    background-color: transparent !important;
}

.tutor-table tbody tr:hover {
    background: rgba(235, 91, 39, 0.04) !important;
}

.tutor-table tbody td {
    color: var(--text-secondary) !important;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    background-color: transparent !important;
}

.tutor-table tbody td a {
    color: var(--secondary-light);
}

.tutor-table tbody td a:hover {
    color: var(--primary-light);
}

/* --- Instructor / Public Profile --- */
.tutor-user-public-profile {
    background: var(--bg-deep);
    color: var(--text-secondary);
}

.tutor-user-public-profile .tutor-fs-2,
.tutor-user-public-profile .tutor-fs-3,
.tutor-user-public-profile .tutor-fs-4,
.tutor-user-public-profile .tutor-fs-5 {
    color: var(--text-primary);
}

.tutor-instructor-list-item {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

/* --- Alerts & Notices --- */
.tutor-alert {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
}

.tutor-alert.tutor-primary {
    background: var(--bg-card) !important;
    border-left: 4px solid var(--primary);
}

.tutor-alert.tutor-warning {
    background: var(--bg-card) !important;
    border-left: 4px solid var(--tutor-color-warning);
}

.tutor-alert.tutor-success {
    background: var(--bg-card) !important;
    border-left: 4px solid var(--success);
}

.tutor-alert.tutor-danger {
    background: var(--bg-card) !important;
    border-left: 4px solid var(--tutor-color-danger);
}

.tutor-alert-text {
    color: var(--text-secondary) !important;
}

/* --- Modal --- */
.tutor-modal {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.tutor-modal-window {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.tutor-modal-header {
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
}

.tutor-modal-body {
    background: var(--bg-surface);
    color: var(--text-secondary);
}

.tutor-modal-footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-light);
}

/* --- Dropdown --- */
.tutor-dropdown {
    background: var(--bg-elevated) !important;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.tutor-dropdown-item {
    color: var(--text-secondary);
}

.tutor-dropdown-item:hover {
    background: rgba(235, 91, 39, 0.08);
    color: var(--primary-light);
}

/* --- Pagination --- */
.tutor-pagination-wrap {
    color: var(--text-secondary);
}

.tutor-pagination-wrap .page-numbers {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
}

.tutor-pagination-wrap .page-numbers.current {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary);
}

.tutor-pagination-wrap a.page-numbers:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

/* --- Badges & Chips --- */
.tutor-badge {
    border-radius: var(--radius-sm);
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
}

.tutor-badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.tutor-badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--tutor-color-warning);
}

.tutor-badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--tutor-color-danger);
}

/* --- Avatar --- */
.tutor-avatar {
    border: 2px solid var(--border-light);
}

/* --- Next/Previous Pagination (Lessons) --- */
.tutor-next-previous-pagination-wrap {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    padding: 16px 24px;
}

.tutor-next-previous-pagination-wrap a {
    color: var(--text-secondary);
}

.tutor-next-previous-pagination-wrap a:hover {
    color: var(--primary-light);
}

/* --- Empty State --- */
.tutor-empty-state {
    color: var(--text-muted);
}

.tutor-empty-state .tutor-empty-state-icon {
    opacity: 0.5;
}

/* --- Course Header --- */
.tutor-course-header {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-light);
}

.tutor-course-header .tutor-course-title {
    color: var(--text-primary);
    font-size: clamp(26px, 4vw, 44px);
}

/* --- Dashboard --- */
.tutor-bg-white {
    background-color: transparent !important;
}

.tutor-form-select-options,
.tutor-form-select-option {
    background-color: var(--bg-surface) !important;
}

/* ============================================================
   WORDPRESS CORE
   ============================================================ */
.wp-block-image {
    margin: 1.5rem 0;
}

.aligncenter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-glow-card {
        max-width: 100%;
    }

    .section-with-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 64px 5%;
    }

    #primary-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(11, 11, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 12px 0;
        border-top: 1px solid var(--border-light);
        gap: 0;
    }

    #primary-menu.is-open {
        display: flex;
    }

    #primary-menu li a {
        padding: 14px 24px;
    }

    #primary-menu .menu-cta a {
        margin: 8px 16px;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-stats {
        gap: 24px;
    }

    .instructor-card {
        flex-direction: column;
    }

    .instructor-avatar {
        width: 120px;
        height: 120px;
        font-size: 40px;
    }

    .pricing-wrap {
        max-width: 100%;
    }

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        gap: 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .pricing-wrap {
        grid-template-columns: 1fr;
    }

    .info-strip-track {
        animation-duration: 25s;
    }
}