```css
/* ===== CREATIVE COURSES PAGE - COMPLETE CSS ===== */
/* Dark Theme with Gold Accents */

/* ===== CSS VARIABLES ===== */
:root {
    --gold: #f8be14;
    --gold-dark: #e5ae12;
    --gold-light: #fad257;
    --gold-soft: #fff3e0;
    
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --bg-light: #222222;
    
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-tertiary: #999999;
    --text-muted: #666666;
    
    --border-light: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(248, 190, 20, 0.2);
    --border-gold-solid: rgba(248, 190, 20, 0.5);
    
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 25px -5px rgba(248, 190, 20, 0.2);
    
    /* Software Colors */
    --ps-blue: #31a8ff;
    --ai-orange: #ff9a00;
    --id-pink: #f45d7a;
    --pr-magenta: #e976a3;
    --ae-purple: #9b6b9b;
    --figma-purple: #a259ff;
}

/* ===== RESET & GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    background: rgba(248, 190, 20, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 60px;
    border: 1px solid var(--border-gold);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gold-highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.gold-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(248, 190, 20, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn-gold, .btn-gold-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.btn-gold-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-gold:hover, .btn-gold-large:hover {
    background: var(--gold-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -8px rgba(248, 190, 20, 0.4);
}

.btn-gold i, .btn-gold-large i {
    transition: transform 0.3s ease;
}

.btn-gold:hover i, .btn-gold-large:hover i {
    transform: translateX(5px);
}

.btn-outline-gold, .btn-ghost-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--text-primary);
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
    cursor: pointer;
}

.btn-ghost-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-outline-gold:hover, .btn-ghost-large:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    background: rgba(248, 190, 20, 0.05);
}

/* ===== HERO SECTION ===== */
.hero-modern {
    position: relative;
    padding: 6rem 0 8rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(248, 190, 20, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(248, 190, 20, 0.03) 0%, transparent 40%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 10px);
    pointer-events: none;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 190, 20, 0.02));
    pointer-events: none;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left Content */
.hero-main {
    max-width: 600px;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: #999999;
}

.breadcrumb-item.active {
    color: #f8be14;
    font-weight: 500;
}

.hero-breadcrumb i {
    color: #666666;
    font-size: 0.7rem;
}

.hero-label {
    margin-bottom: 1.5rem;
}

.label-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.2);
    border-radius: 60px;
    padding: 0.6rem 1.2rem;
    color: #f8be14;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.label-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: linear-gradient(135deg, #f8be14, #fad257);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.title-highlight {
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(248, 190, 20, 0.2);
    border-radius: 30px;
    z-index: -1;
}

.hero-text {
    font-size: 1.2rem;
    color: #b3b3b3;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.text-highlight {
    color: #f8be14;
    font-weight: 600;
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(248, 190, 20, 0.3);
    border-radius: 2px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #f8be14;
    color: #0a0a0a;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 8px 20px -5px rgba(248, 190, 20, 0.3);
}

.cta-primary i {
    transition: transform 0.3s ease;
}

.cta-primary:hover {
    background: #e5ae12;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(248, 190, 20, 0.4);
}

.cta-primary:hover i {
    transform: translateX(5px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: #ffffff;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cta-icon i {
    color: #f8be14;
    font-size: 1rem;
}

.cta-secondary:hover {
    border-color: #f8be14;
    transform: translateY(-3px);
}

.cta-secondary:hover .cta-icon {
    background: #f8be14;
}

.cta-secondary:hover .cta-icon i {
    color: #0a0a0a;
}

.hero-stats-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f8be14;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(248, 190, 20, 0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999999;
    font-size: 0.9rem;
}

.trust-item i {
    color: #f8be14;
    font-size: 1rem;
}

/* Right Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.visual-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    animation: floatSoft 8s ease-in-out infinite;
}

.element-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem 0.8rem 1rem;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    min-width: 160px;
}

.element-content i {
    font-size: 1.5rem;
}

.element-content span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

/* Element Colors */
.ps .element-content i { color: var(--ps-blue); }
.ai .element-content i { color: var(--ai-orange); }
.id .element-content i { color: var(--id-pink); }
.pr .element-content i { color: var(--pr-magenta); }
.ae .element-content i { color: var(--ae-purple); }
.figma .element-content i { color: var(--figma-purple); }

.main-1 { top: 0; left: 5%; animation-delay: 0s; }
.main-2 { top: 15%; right: 5%; animation-delay: 0.2s; }
.main-3 { bottom: 30%; left: 0; animation-delay: 0.4s; }
.main-4 { top: 35%; right: 10%; animation-delay: 0.6s; }
.main-5 { bottom: 15%; right: 15%; animation-delay: 0.8s; }
.main-6 { bottom: 40%; left: 15%; animation-delay: 1s; }

.floating-element:hover .element-content {
    transform: scale(1.1) translateY(-5px);
    border-color: rgba(248, 190, 20, 0.6);
    box-shadow: 0 20px 40px -10px rgba(248, 190, 20, 0.4);
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-12px) translateX(5px); }
    50% { transform: translateY(-20px) translateX(-5px); }
    75% { transform: translateY(-8px) translateX(3px); }
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: pulseGlow 10s ease-in-out infinite;
    pointer-events: none;
}

.circle-1 {
    width: 350px;
    height: 350px;
    background: #f8be14;
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.circle-2 {
    width: 250px;
    height: 250px;
    background: #fad257;
    bottom: 10%;
    left: 10%;
    opacity: 0.1;
    animation-delay: 3s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: #fce9aa;
    top: 40%;
    left: 30%;
    opacity: 0.12;
    animation-delay: 6s;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

.decor-line {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(248, 190, 20, 0.2), transparent);
    pointer-events: none;
}

.line-1 {
    top: 25%;
    right: 20%;
    transform: rotate(45deg);
    animation: lineMove 15s linear infinite;
}

.line-2 {
    bottom: 35%;
    left: 15%;
    transform: rotate(-30deg);
    animation: lineMove 12s linear infinite reverse;
}

@keyframes lineMove {
    0% { transform: rotate(45deg) translateX(-100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(45deg) translateX(100px); opacity: 0; }
}

.decor-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.decor-dots span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #f8be14;
    border-radius: 50%;
    opacity: 0.2;
    box-shadow: 0 0 10px #f8be14;
    animation: dotPulse 4s ease-in-out infinite;
}

.decor-dots span:nth-child(1) { top: 15%; right: 25%; width: 8px; height: 8px; animation-delay: 0s; }
.decor-dots span:nth-child(2) { bottom: 20%; left: 15%; width: 5px; height: 5px; animation-delay: 1s; }
.decor-dots span:nth-child(3) { top: 60%; right: 35%; width: 10px; height: 10px; animation-delay: 2s; }
.decor-dots span:nth-child(4) { bottom: 35%; right: 10%; width: 7px; height: 7px; animation-delay: 3s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.5); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #999999;
    font-size: 0.85rem;
    animation: bounce 2s infinite;
    z-index: 20;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== QUICK ASSIST SECTION ===== */
.quick-assist-section {
    padding: 2rem 0 3rem;
    position: relative;
    z-index: 20;
}

.assist-card {
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border: 1px solid rgba(248, 190, 20, 0.15);
    border-radius: 40px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.assist-card:hover {
    border-color: rgba(248, 190, 20, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 25px 45px -15px rgba(248, 190, 20, 0.15);
}

.assist-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.assist-icon {
    width: 80px;
    height: 80px;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.assist-icon i {
    font-size: 2.5rem;
    color: var(--gold);
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(248, 190, 20, 0.2);
    animation: pulseRing 2.5s ease-out infinite;
    z-index: 1;
}

@keyframes pulseRing {
    0% { width: 80px; height: 80px; opacity: 0.5; }
    50% { width: 100px; height: 100px; opacity: 0.2; }
    100% { width: 120px; height: 120px; opacity: 0; }
}

.assist-content {
    flex: 1;
}

.assist-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.assist-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

.assist-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 1rem 2.2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px -5px rgba(248, 190, 20, 0.3);
}

.assist-btn i {
    transition: transform 0.3s ease;
}

.assist-btn:hover {
    background: var(--gold-dark);
    transform: translateX(8px) scale(1.05);
    box-shadow: 0 15px 30px -5px rgba(248, 190, 20, 0.4);
}

.assist-btn:hover i {
    transform: translateX(5px);
}

/* Assessment Preview */
.assessment-preview {
    background: linear-gradient(145deg, #141414, #1a1a1a);
    border: 1px solid rgba(248, 190, 20, 0.15);
    border-radius: 32px;
    padding: 2.5rem;
    margin-top: 2.5rem;
}

.assessment-header {
    margin-bottom: 2rem;
}

.step-indicator {
    display: inline-block;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.2);
    color: var(--gold);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.assessment-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.questions-container {
    margin-bottom: 2rem;
}

.question-item {
    display: block;
}

.question-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.option-card:hover {
    border-color: var(--gold);
    background: rgba(248, 190, 20, 0.05);
}

.option-card input[type="radio"] {
    margin-right: 1rem;
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
}

.option-content {
    color: var(--text-secondary);
    font-size: 1rem;
}

.option-card.selected {
    background: rgba(248, 190, 20, 0.1);
    border-color: var(--gold);
}

.option-card.selected .option-content {
    color: var(--gold);
    font-weight: 500;
}

.assessment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(248, 190, 20, 0.05);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.submit-btn {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    font-weight: 600;
}

.submit-btn:hover {
    background: var(--gold-dark);
    transform: translateX(3px);
}

.step-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 12px;
}

/* Results Preview */
.results-preview {
    background: linear-gradient(145deg, #141414, #1a1a1a);
    border: 1px solid rgba(248, 190, 20, 0.2);
    border-radius: 32px;
    padding: 2.5rem;
    margin-top: 2.5rem;
}

.results-card {
    text-align: center;
}

.results-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.results-icon i {
    font-size: 2.5rem;
    color: var(--bg-dark);
}

.results-card h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.roadmap-list {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.roadmap-item:last-child {
    border-bottom: none;
}

.roadmap-item i {
    color: var(--gold);
    width: 20px;
}

.results-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.restart-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 0.8rem 2rem;
    border-radius: 60px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.restart-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.explore-btn {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.8rem 2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: var(--gold-dark);
    transform: translateX(5px);
}

/* ===== CATEGORY EXPLORE ===== */
.category-explore {
    padding: 4rem 0;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card-link {
    text-decoration: none;
}

.category-card-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.category-card-item:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.category-card-item:hover::before {
    transform: scaleX(1);
}

.category-card-item .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.category-card-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.category-card-item p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.card-arrow {
    color: var(--text-tertiary);
    transition: all 0.3s ease;
    display: inline-block;
}

.category-card-item:hover .card-arrow {
    color: var(--gold);
    transform: translateX(5px);
}

/* ===== FOUNDATION CORNER ===== */
.foundation-corner {
    padding: 4rem 0;
    background: var(--bg-card);
}

.foundation-wrapper {
    background: var(--bg-dark);
    border-radius: 48px;
    padding: 3rem;
    border: 1px solid var(--border-light);
}

.foundation-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.foundation-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
}

.foundation-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.foundation-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.foundation-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.foundation-item.required {
    border-color: var(--border-gold);
    position: relative;
    overflow: hidden;
}

.foundation-item.required::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.foundation-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.2rem 1rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
}

.item-icon.theory-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.item-icon.ps-icon i,
.item-icon.ps-icon span { color: var(--ps-blue); }
.item-icon.ai-icon i,
.item-icon.ai-icon span { color: var(--ai-orange); }
.item-icon.id-icon i,
.item-icon.id-icon span { color: var(--id-pink); }

.item-icon i {
    font-size: 1.8rem;
}

.item-icon span {
    font-size: 1.7rem;
    font-weight: 700;
}

.foundation-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.foundation-item p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.item-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}

.item-topics span {
    padding: 0.25rem 0.8rem;
    background: rgba(248, 190, 20, 0.08);
    border: 1px solid rgba(248, 190, 20, 0.15);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.item-topics span:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
    cursor: default;
}

.item-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.item-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.item-link:hover {
    color: var(--gold);
}

.item-link:hover i {
    transform: translateX(5px);
}

/* ===== CAREER SHOWCASE ===== */
.career-showcase {
    padding: 4rem 0;
}

.track-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--border-light);
    border-radius: 60px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.tracks-container {
    display: none;
}

.tracks-container.active {
    display: block;
}

.tracks-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.track-spotlight {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.track-spotlight.popular {
    border-color: var(--border-gold);
}

.track-spotlight.highlight {
    background: linear-gradient(145deg, var(--bg-card), rgba(248, 190, 20, 0.05));
}

.track-spotlight.ultimate {
    background: linear-gradient(145deg, var(--bg-card), rgba(162, 89, 255, 0.05));
}

.track-spotlight:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.spotlight-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.prerequisite-chip {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(248, 190, 20, 0.1);
    color: var(--gold);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

.spotlight-header {
    padding: 2rem 2rem 1rem;
}

.software-strip {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.soft-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
}

.soft-icon.ps { color: var(--ps-blue); }
.soft-icon.ai { color: var(--ai-orange); }
.soft-icon.id { color: var(--id-pink); }
.soft-icon.pr { color: var(--pr-magenta); }
.soft-icon.ae { color: var(--ae-purple); }
.soft-icon.figma { color: var(--figma-purple); }

.spotlight-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    padding-right: 100px;
}

.spotlight-body {
    padding: 0 2rem 2rem;
}

.spotlight-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.track-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.track-stats i {
    color: var(--gold);
    margin-right: 0.3rem;
}

.skill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-cloud span {
    padding: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 60px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.track-detail-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.track-detail-link:hover {
    gap: 0.6rem;
}

/* ===== SPECIALIZATION GRID ===== */
.specialization-grid-section {
    padding: 4rem 0;
    background: var(--bg-card);
}

.specialization-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.specialization-card-link {
    text-decoration: none;
}

.specialization-master-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.specialization-master-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.spec-bg-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.spec-icon-group {
    width: 70px;
    height: 70px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.spec-icon-group i {
    font-size: 2.5rem;
    color: var(--gold);
}

.specialization-master-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.specialization-master-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.spec-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.spec-skills span {
    padding: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 60px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.spec-prereq {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(248, 190, 20, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 60px;
    width: fit-content;
}

.spec-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.spec-link:hover {
    color: var(--gold);
    gap: 0.6rem;
}

/* ===== SOFTWARE SPOTLIGHT ===== */
.software-spotlight-section {
    padding: 4rem 0;
}

.software-filter-chips {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--border-light);
    border-radius: 60px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-chip.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.software-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.software-tile-link {
    text-decoration: none;
    display: block;
}

.software-tile {
    height: 280px;
    perspective: 1000px;
    cursor: pointer;
}

.tile-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 24px;
}

.software-tile:hover .tile-inner {
    transform: rotateY(180deg);
}

.tile-front, .tile-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}

.tile-front {
    background: var(--bg-card);
}

.tile-front i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.tile-front span {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tile-front h4 {
    font-size: 1rem;
    color: var(--text-secondary);
}

.tile-back {
    background: var(--bg-elevated);
    transform: rotateY(180deg);
    border-color: var(--border-gold);
}

.tile-back p {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tile-meta {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.tile-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.ps-tile .tile-front i,
.ps-tile .tile-front span { color: var(--ps-blue); }
.ai-tile .tile-front i,
.ai-tile .tile-front span { color: var(--ai-orange); }
.id-tile .tile-front i,
.id-tile .tile-front span { color: var(--id-pink); }
.pr-tile .tile-front i,
.pr-tile .tile-front span { color: var(--pr-magenta); }
.ae-tile .tile-front i,
.ae-tile .tile-front span { color: var(--ae-purple); }
.figma-tile .tile-front i,
.figma-tile .tile-front span { color: var(--figma-purple); }

/* ===== JOURNEY TIMELINE ===== */
.journey-timeline {
    padding: 4rem 0;
    background: var(--bg-card);
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    text-align: center;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.2rem;
    box-shadow: 0 0 0 5px rgba(248, 190, 20, 0.1);
}

.step-detail h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-detail p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion-section {
    padding: 4rem 0;
}

.accordion {
    max-width: 800px;
    margin: 2rem auto 0;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--border-gold);
}

.accordion-toggle {
    display: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(248, 190, 20, 0.02);
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.accordion-header i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.accordion-toggle:checked + .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    padding: 0 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: all 0.3s ease;
    overflow: hidden;
}

.accordion-toggle:checked + .accordion-header + .accordion-body {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-card));
}

.cta-banner {
    background: linear-gradient(145deg, var(--bg-card), rgba(248, 190, 20, 0.05));
    border: 1px solid var(--border-gold);
    border-radius: 48px;
    padding: 4rem;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .foundation-showcase,
    .category-cards,
    .specialization-flex,
    .software-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-main {
        max-width: 100%;
        order: 2;
    }
    
    .hero-breadcrumb {
        justify-content: center;
    }
    
    .hero-label {
        text-align: center;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats-grid {
        justify-content: center;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .hero-visual {
        height: 450px;
        order: 1;
    }
    
    .assist-card {
        flex-direction: column;
        text-align: center;
    }
    
    .assist-content p {
        max-width: 100%;
    }
    
    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tracks-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 4rem 0 6rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .element-content {
        min-width: 140px;
        padding: 0.6rem 1.2rem 0.6rem 0.8rem;
    }
    
    .element-content i {
        font-size: 1.3rem;
    }
    
    .element-content span {
        font-size: 0.85rem;
    }
    
    .foundation-showcase,
    .category-cards,
    .specialization-flex,
    .software-masonry,
    .timeline-steps {
        grid-template-columns: 1fr;
    }
    
    .foundation-wrapper {
        padding: 2rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .track-actions {
        flex-direction: column;
    }
    
    .cta-banner {
        padding: 3rem 2rem;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .btn-gold-large, .btn-ghost-large {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .element-content {
        min-width: 120px;
        padding: 0.5rem 1rem 0.5rem 0.6rem;
    }
    
    .element-content i {
        font-size: 1.1rem;
    }
    
    .element-content span {
        font-size: 0.75rem;
    }
    
    .circle-1 {
        width: 250px;
        height: 250px;
    }
    
    .circle-2 {
        width: 180px;
        height: 180px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .preview-header h4 {
        font-size: 1.5rem;
    }
    
    .track-highlights {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .spotlight-badge,
    .prerequisite-chip {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .spotlight-header h3 {
        padding-right: 0;
    }
    
    .results-footer {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .element-content {
        min-width: 100px;
        padding: 0.4rem 0.8rem 0.4rem 0.5rem;
    }
    
    .element-content i {
        font-size: 1rem;
    }
    
    .element-content span {
        font-size: 0.7rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .accordion-header {
        padding: 1.2rem 1.5rem;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .floating-element,
    .decor-circle,
    .decor-dots span,
    .decor-line,
    .scroll-indicator,
    .assist-icon i,
    .icon-pulse,
    .cta-primary,
    .cta-secondary,
    .category-card-item,
    .foundation-item,
    .track-spotlight,
    .specialization-master-card,
    .software-tile .tile-inner,
    .btn-gold,
    .btn-gold-large,
    .assist-btn,
    .element-content {
        animation: none !important;
        transition: none !important;
    }
    
    .floating-element:hover .element-content {
        transform: translateY(-5px);
    }
    
    .software-tile:hover .tile-inner {
        transform: rotateY(180deg);
        transition: transform 0.1s ease;
    }
    
    .cta-primary:hover,
    .cta-secondary:hover,
    .assist-btn:hover {
        transform: translateY(-2px);
    }
}
```