/* Import Google Fonts - Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Sora:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --teal: #10b981;
    --teal-dark: #059669;
    --orange: #f59e0b;
    --orange-dark: #d97706;
    --purple-light: #ede9fe;
    --teal-light: #d1fae5;
    --orange-light: #fef3c7;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --navy: #0f172a;
    --navy-light: #1e293b;
    
    /* Animation Variables */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: white;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling with enhanced behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 6px;
    border: 2px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* Selection Style */
::selection {
    background: var(--primary);
    color: white;
}

/* Page Load Animation */
@keyframes page-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: page-fade-in 0.6s var(--ease-out-expo);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.4s var(--ease-out-expo);
    animation: nav-slide-down 0.8s var(--ease-out-expo);
}

@keyframes nav-slide-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 
                0 1px 3px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.4s var(--ease-spring);
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05) translateY(-2px);
}

.logo:active {
    transform: scale(0.98);
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
    transition: filter 0.3s ease;
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 6px 12px rgba(99, 102, 241, 0.5));
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    display: block;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    transform: translateY(-2px);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
}

.nav-links a.active {
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.08);
    cursor: pointer;
    transition: transform 0.3s var(--ease-spring), background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(99, 102, 241, 0.15);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav-container.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.nav-container.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 160px 2rem 120px;
    background: linear-gradient(135deg, #fafaff 0%, #f5f7ff 50%, #f0f3ff 100%);
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated Background Gradient Orbs */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float-slow 20s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float-slow 15s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float-slow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
                0 2px 6px rgba(0, 0, 0, 0.04);
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.hero-badge svg circle {
    animation: pulse-circle 2s ease-in-out infinite;
}

@keyframes pulse-circle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.03em;
}

.hero-title span {
    display: inline-block;
}

.hero-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.3;
    animation: gradient-slide 3s ease-in-out infinite;
}

@keyframes gradient-slide {
    0%, 100% {
        transform: scaleX(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scaleX(1);
        opacity: 0.5;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35),
                0 4px 8px rgba(99, 102, 241, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 32px rgba(99, 102, 241, 0.4),
                0 8px 16px rgba(99, 102, 241, 0.25);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.btn svg {
    transition: transform 0.3s var(--ease-spring);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-secondary:hover svg {
    transform: translateX(-4px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 550px;
    perspective: 1000px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                0 8px 24px rgba(0, 0, 0, 0.08);
    animation: float-card 4s ease-in-out infinite;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.floating-card:hover {
    transform: translateY(-12px) scale(1.05) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15),
                0 12px 32px rgba(0, 0, 0, 0.1);
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-1deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-18px) rotate(1deg);
    }
}

.card-1 {
    top: 60px;
    left: 30px;
    animation-delay: 0s;
    animation-duration: 5s;
}

.card-2 {
    top: 220px;
    right: 50px;
    animation-delay: 0.8s;
    animation-duration: 4.5s;
}

.card-3 {
    bottom: 120px;
    left: 70px;
    animation-delay: 1.6s;
    animation-duration: 5.2s;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s var(--ease-spring);
}

.floating-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-label {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.chart-visual {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15),
                0 12px 32px rgba(0, 0, 0, 0.1);
    animation: float-card 6s ease-in-out infinite;
    animation-delay: 0.5s;
    transition: transform 0.4s ease;
}

.chart-visual:hover {
    transform: translateY(-8px) scale(1.02);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    height: 220px;
    margin-bottom: 1.25rem;
}

.bar {
    width: 36px;
    background: linear-gradient(180deg, #a855f7 0%, #8b5cf6 50%, #6366f1 100%);
    border-radius: 10px 10px 0 0;
    animation: growBar 1.2s var(--ease-out-expo) forwards;
    transform-origin: bottom;
    transform: scaleY(0);
    position: relative;
    box-shadow: 0 -4px 12px rgba(99, 102, 241, 0.3);
}

.bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 10px 10px 0 0;
}

.bar:hover {
    background: linear-gradient(180deg, #c084fc 0%, #a855f7 50%, #8b5cf6 100%);
    box-shadow: 0 -8px 20px rgba(99, 102, 241, 0.5);
}

.chart-label {
    text-align: center;
    font-weight: 700;
    color: var(--teal);
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: number-count 2s ease-out;
}

@keyframes number-count {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes growBar {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.fade-in-up {
    animation: fade-in-up 0.9s var(--ease-out-expo) forwards;
    opacity: 0;
}

.fade-in {
    animation: fade-in 1s var(--ease-out-expo) forwards;
    opacity: 0;
}

.slide-in-left {
    animation: slide-in-left 0.8s var(--ease-out-expo) forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slide-in-right 0.8s var(--ease-out-expo) forwards;
    opacity: 0;
}

/* Offerings Section */
.offerings {
    padding: 100px 2rem;
    background: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
}

.text-gradient {
    background: linear-gradient(135deg, #c7d2fe 0%, #ddd6fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-alt {
    background: linear-gradient(135deg, #c7d2fe 0%, #ddd6fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offering-card {
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offering-card:hover {
    transform: translateY(-8px);
}

.purple-card {
    background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 100%);
}

.teal-card {
    background: linear-gradient(135deg, #d1fae5 0%, #ccfbf1 100%);
}

.orange-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
}

.offering-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.purple-icon {
    background: var(--primary);
    color: white;
}

.teal-icon {
    background: var(--teal);
    color: white;
}

.orange-icon {
    background: var(--orange);
    color: white;
}

.offering-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.offering-description {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Structured Learning Section */
.structured-learning {
    padding: 100px 2rem;
    background: var(--gray-50);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--gray-900);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--gray-700);
    transform: translateX(4px);
}

.learning-paths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.path-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.path-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.beginner-card {
    border-color: var(--teal-light);
}

.beginner-card:hover {
    border-color: var(--teal);
}

.intermediate-card {
    border-color: var(--purple-light);
}

.intermediate-card:hover {
    border-color: var(--primary);
}

.advanced-card {
    border-color: var(--orange-light);
}

.advanced-card:hover {
    border-color: var(--orange);
}

.path-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.beginner-icon {
    background: var(--teal);
}

.intermediate-icon {
    background: var(--primary);
}

.advanced-icon {
    background: var(--orange);
}

.path-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.path-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.path-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.path-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.path-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.path-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--gray-900);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.path-btn:hover {
    background: var(--gray-700);
    gap: 0.75rem;
}

/* Footer */
.footer {
    background: var(--navy);
    color: white;
    padding: 60px 2rem 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    color: white;
}

.footer-tagline {
    margin-top: 1rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Tools Page Specific */
.page-hero {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.tools-section {
    padding: 80px 2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.tool-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 32px rgba(99, 102, 241, 0.15);
}

.tool-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tool-category {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.tool-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.tool-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Page */
.contact-hero {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    text-align: center;
}

.contact-section {
    padding: 80px 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* About Page */
.about-hero {
    padding: 140px 2rem 80px;
    background: var(--navy);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-hero .hero-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.mission-section {
    padding: 80px 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--purple-light);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.mission-text {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.mission-highlight {
    font-weight: 600;
    color: var(--gray-900);
}

.values-section {
    padding: 80px 2rem;
    background: var(--navy);
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.value-card {
    background: var(--navy-light);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-description {
    color: var(--gray-300);
    line-height: 1.7;
}

.audience-section {
    padding: 80px 2rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.audience-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.audience-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.audience-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.audience-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Learn Page */
.learn-hero {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, #d1fae5 0%, #ccfbf1 100%);
    text-align: center;
}

.articles-section {
    padding: 80px 2rem;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--gray-200);
    transition: all 0.4s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.article-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.article-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.read-btn:hover {
    gap: 0.75rem;
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design - Premium Mobile Experience */
@media (max-width: 1200px) {
    .hero-container,
    .offerings-grid,
    .learning-paths,
    .values-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .hero {
        padding: 140px 1.5rem 80px;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
    
    .offerings-grid,
    .learning-paths {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    /* Navigation - Mobile Drawer */
    .nav-container {
        position: relative;
        padding: 1rem 1.5rem;
    }
    
    .nav-toggle {
        display: inline-flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        padding: 0.75rem 1rem 1rem;
        margin: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px) saturate(180%);
        -webkit-backdrop-filter: blur(16px) saturate(180%);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
        display: none;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-container.nav-open .nav-links {
        display: flex;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    
    /* Hero Section - Mobile */
    .hero {
        padding: 120px 1.25rem 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.15;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .floating-card {
        padding: 0.875rem;
        border-radius: 14px;
    }
    
    .card-icon {
        width: 44px;
        height: 44px;
    }
    
    .chart-visual {
        padding: 1.5rem;
        border-radius: 18px;
    }
    
    .chart-bars {
        height: 150px;
        gap: 8px;
    }
    
    .bar {
        width: 24px;
    }
    
    /* Page Hero - Mobile */
    .page-hero h1,
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.125rem;
    }
    
    /* Sections - Mobile */
    .offerings,
    .structured-learning,
    .tools-section,
    .contact-section,
    .mission-section,
    .values-section,
    .audience-section,
    .articles-section {
        padding: 60px 1.25rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    /* Cards - Mobile Optimized */
    .offering-card,
    .path-card,
    .tool-card,
    .value-card,
    .audience-card,
    .article-card {
        padding: 2rem;
    }
    
    .offering-icon,
    .path-icon,
    .tool-icon,
    .value-icon,
    .audience-icon,
    .article-icon {
        width: 56px;
        height: 56px;
    }
    
    .offering-title,
    .path-title,
    .tool-title {
        font-size: 1.5rem;
    }
    
    /* Footer - Mobile */
    .footer {
        padding: 60px 1.25rem 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Contact Form - Mobile */
    .contact-form {
        padding: 2rem;
    }
    
    /* Tools Grid - Mobile */
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    /* Articles Grid - Mobile */
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    /* Category Tabs - Mobile */
    .category-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        font-size: 0.85rem;
        padding: 0.625rem 1rem;
    }
    
    /* Values & Audience - Mobile */
    .values-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    /* Button Adjustments */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
    
    .page-hero h1,
    .about-hero h1 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .view-all-btn,
    .path-btn,
    .read-btn,
    .submit-btn {
        display: none;
    }
    
    body {
        background: white;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Reduced Motion Support - Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-card {
        animation: none;
    }
    
    .hero::before,
    .hero::after {
        animation: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid white;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        outline: 2px solid currentColor;
    }
}

/* Dark Mode Support - Future Ready */
@media (prefers-color-scheme: dark) {
    :root {
        --gray-900: #f9fafb;
        --gray-800: #f3f4f6;
        --gray-700: #e5e7eb;
        --gray-600: #d1d5db;
        --gray-500: #9ca3af;
        --gray-400: #6b7280;
        --gray-300: #4b5563;
        --gray-200: #374151;
        --gray-100: #1f2937;
        --gray-50: #111827;
    }
    
    body {
        background: #0f1419;
        color: #e5e7eb;
    }
}

/* Focus Visible - Keyboard Navigation */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, 
        var(--gray-200) 25%, 
        var(--gray-100) 50%, 
        var(--gray-200) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

/* Enhanced Tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 0.5rem 0.75rem;
    background: var(--gray-900);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
    z-index: 1000;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--gray-900);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

/* Success State Animation */
@keyframes success-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
}

.success {
    animation: success-pulse 1.5s ease-out;
}

/* Error State Animation */
@keyframes error-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.error {
    animation: error-shake 0.5s ease-out;
    border-color: #ef4444 !important;
}

/* Improved Performance */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* GPU Acceleration */
.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Enhanced Offerings Section */
.offerings {
    padding: 120px 2rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.offerings::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    left: -100px;
    animation: float-slow 18s ease-in-out infinite;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fade-in-up 0.8s var(--ease-out-expo);
}

.section-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    display: inline-block;
    position: relative;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--gray-900);
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #c7d2fe 0%, #ddd6fe 50%, #e9d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-alt {
    background: linear-gradient(135deg, #c7d2fe 0%, #ddd6fe 50%, #e9d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.offering-card {
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.offering-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offering-card:hover::before {
    opacity: 1;
}

.offering-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.purple-card {
    background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 100%);
}

.purple-card:hover {
    border-color: var(--primary);
}

.teal-card {
    background: linear-gradient(135deg, #d1fae5 0%, #ccfbf1 100%);
}

.teal-card:hover {
    border-color: var(--teal);
}

.orange-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
}

.orange-card:hover {
    border-color: var(--orange);
}

.offering-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s var(--ease-spring);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.offering-card:hover .offering-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.purple-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.teal-icon {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: white;
}

.orange-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
}

.offering-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    font-family: 'Sora', sans-serif;
}

.offering-description {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Scroll animations enhancement */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s var(--ease-out-expo);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Particle effect */
@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(20px, -20px) rotate(180deg);
        opacity: 0.8;
    }
}

.offerings::after {
    content: '✦';
    position: absolute;
    font-size: 24px;
    color: var(--primary);
    opacity: 0.3;
    animation: particle-float 8s ease-in-out infinite;
    top: 30%;
    right: 10%;
}


/* Spectacular Learning Paths */
.structured-learning {
    padding: 120px 2rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.structured-learning::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    animation: float-slow 20s ease-in-out infinite reverse;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.5rem;
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.15);
    animation: badge-bounce 2s ease-in-out infinite;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1.5rem;
    padding: 1rem 1.75rem;
    background: var(--gray-900);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.view-all-btn:hover {
    background: var(--gray-700);
    transform: translateX(6px) translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.learning-paths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.path-card {
    background: white;
    border-radius: 28px;
    padding: 2.5rem;
    border: 3px solid transparent;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.7s ease;
}

.path-card:hover::before {
    left: 100%;
}

.path-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.15);
}

.beginner-card {
    border-color: var(--teal-light);
    background: linear-gradient(135deg, white 0%, #f0fdf4 100%);
}

.beginner-card:hover {
    border-color: var(--teal);
    box-shadow: 0 28px 56px rgba(16, 185, 129, 0.2);
}

.intermediate-card {
    border-color: var(--purple-light);
    background: linear-gradient(135deg, white 0%, #faf5ff 100%);
}

.intermediate-card:hover {
    border-color: var(--primary);
    box-shadow: 0 28px 56px rgba(99, 102, 241, 0.2);
}

.advanced-card {
    border-color: var(--orange-light);
    background: linear-gradient(135deg, white 0%, #fffbeb 100%);
}

.advanced-card:hover {
    border-color: var(--orange);
    box-shadow: 0 28px 56px rgba(245, 158, 11, 0.2);
}

.path-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s var(--ease-spring);
}

.path-card:hover .path-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.beginner-icon {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}

.intermediate-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.advanced-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}

.path-badge {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.path-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
}

.path-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.path-meta {
    display: flex;
    gap: 1.75rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
}

.path-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    transform: translateX(4px);
    color: var(--gray-900);
}

.checklist-item svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.path-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.5rem;
    background: var(--gray-900);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.path-btn:hover {
    background: var(--gray-700);
    gap: 1rem;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.path-btn svg {
    transition: transform 0.3s var(--ease-spring);
}

.path-btn:hover svg {
    transform: translateX(4px);
}


/* Epic Footer */
.footer {
    background: linear-gradient(135deg, var(--navy) 0%, #1a1f35 100%);
    color: white;
    padding: 80px 2rem 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float-slow 25s ease-in-out infinite;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-brand .logo-text {
    color: white;
}

.footer-tagline {
    margin-top: 1.25rem;
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    font-weight: 500;
    display: inline-block;
}

.footer-column a:hover {
    color: white;
    padding-left: 8px;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Page-specific enhancements */
.page-hero {
    padding: 160px 2rem 100px;
    background: linear-gradient(135deg, #fafaff 0%, #f5f7ff 50%, #f0f3ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    animation: float-slow 15s ease-in-out infinite;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.02em;
    animation: fade-in-up 0.8s var(--ease-out-expo);
}

.page-hero p {
    font-size: 1.35rem;
    color: var(--gray-600);
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fade-in-up 0.8s var(--ease-out-expo) 0.2s backwards;
}

/* Tools Page Enhancements */
.tools-section {
    padding: 100px 2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid var(--gray-200);
    transition: all 0.5s var(--ease-out-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.6s ease;
}

.tool-card:hover::before {
    left: 100%;
}

.tool-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.tool-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s var(--ease-spring);
}

.tool-card:hover .tool-icon {
    transform: scale(1.15) rotate(-6deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.tool-category {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.tool-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
}

.tool-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Contact Page Enhancements */
.contact-hero {
    padding: 160px 2rem 100px;
    background: linear-gradient(135deg, #fafaff 0%, #f5f7ff 50%, #f0f3ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section {
    padding: 100px 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-200);
    transition: all 0.4s ease;
}

.contact-form:hover {
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.3s var(--ease-out-expo);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.45);
}

.submit-btn:active {
    transform: translateY(-1px);
}


/* Learn Page Enhancements */
.learn-hero {
    padding: 160px 2rem 100px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 50%, #6ee7b7 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.learn-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: 10%;
    animation: float-slow 18s ease-in-out infinite;
}

.articles-section {
    padding: 100px 2rem;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.875rem 1.75rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tab-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.tab-btn svg {
    transition: transform 0.3s var(--ease-spring);
}

.tab-btn:hover svg,
.tab-btn.active svg {
    transform: scale(1.15);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid var(--gray-200);
    transition: all 0.5s var(--ease-out-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.6s ease;
}

.article-card:hover::before {
    left: 100%;
}

.article-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.article-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s var(--ease-spring);
}

.article-card:hover .article-icon {
    transform: scale(1.15) rotate(-6deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.article-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 600;
    padding-top: 1.25rem;
    border-top: 2px solid var(--gray-100);
}

.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s var(--ease-spring);
    margin-left: auto;
}

.read-btn:hover {
    gap: 0.875rem;
}

.read-btn svg {
    transition: transform 0.3s var(--ease-spring);
}

.read-btn:hover svg {
    transform: translateX(4px);
}

/* About Page Enhancements */
.about-hero {
    padding: 160px 2rem 100px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a1f35 50%, #0f1419 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -100px;
    animation: float-slow 20s ease-in-out infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    animation: float-slow 25s ease-in-out infinite reverse;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.02em;
}

.about-hero .hero-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 1.35rem;
    color: var(--gray-300);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.mission-section {
    padding: 100px 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.5rem;
    background: var(--purple-light);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.mission-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 2.5rem;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.02em;
}

.mission-text {
    color: var(--gray-700);
    line-height: 1.9;
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
}

.mission-highlight {
    font-weight: 700;
    color: var(--gray-900);
    position: relative;
    display: inline;
}

.mission-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.3;
}

.values-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1a1f35 100%);
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3.5rem auto 0;
}

.value-card {
    background: linear-gradient(135deg, var(--navy-light) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.4s var(--ease-spring);
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.value-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    font-family: 'Sora', sans-serif;
}

.value-description {
    color: var(--gray-300);
    line-height: 1.8;
    font-size: 1.05rem;
}

.audience-section {
    padding: 100px 2rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 3.5rem auto 0;
}

.audience-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid var(--gray-200);
    transition: all 0.4s var(--ease-out-expo);
}

.audience-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.audience-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: all 0.4s var(--ease-spring);
}

.audience-card:hover .audience-icon {
    transform: scale(1.1) rotate(-5deg);
}

.audience-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
}

.audience-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }
.rounded-2xl { border-radius: 24px; }

.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.hover-scale:hover {
    transform: scale(1.05);
}

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

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}


/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(99, 102, 241, 0.1);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Sora', sans-serif;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Section Description */
.section-description {
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Offering Links */
.offering-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.offering-link:hover {
    gap: 0.875rem;
}

/* Why Section */
.why-section {
    padding: 120px 2rem;
    background: linear-gradient(135deg, #fafaff 0%, white 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--ease-out-expo);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-item svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-family: 'Sora', sans-serif;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.why-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-stat {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.visual-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.stat-large {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Sora', sans-serif;
    margin-bottom: 1rem;
    line-height: 1;
}

.visual-stat p {
    font-size: 1.05rem;
    color: var(--gray-700);
    font-weight: 600;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float-slow 20s ease-in-out infinite;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Sora', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.35rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Footer Enhancements */
.footer-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Responsive for New Sections */
@media (max-width: 1024px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .stat-large {
        font-size: 3rem;
    }
}


/* Mission Stats */
.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.mission-stat-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s var(--ease-out-expo);
}

.mission-stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.15);
}

.mission-stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Sora', sans-serif;
    margin-bottom: 1rem;
    line-height: 1;
}

.mission-stat-card p {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.6;
    font-weight: 500;
}

/* Beliefs Box */
.beliefs-box {
    margin-top: 3rem;
    padding: 3rem;
    background: var(--gray-50);
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}

.beliefs-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    font-family: 'Sora', sans-serif;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.belief-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.belief-item svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.belief-item span {
    color: var(--gray-700);
    line-height: 1.6;
    font-weight: 500;
    font-size: 1.05rem;
}

/* Story Section */
.story-section {
    padding: 100px 2rem;
    background: white;
}

.story-content {
    max-width: 800px;
    margin: 3rem auto 0;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.story-text:last-child {
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #fafaff 0%, white 100%);
}

.team-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.team-value {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-out-expo);
}

.team-value:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.team-value h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
}

.team-value p {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .beliefs-grid {
        grid-template-columns: 1fr;
    }
    
    .team-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mission-stat-number {
        font-size: 3rem;
    }
    
    .story-text {
        font-size: 1.1rem;
    }
    
    .beliefs-box {
        padding: 2rem;
    }
}


/* ================================
   RESOURCES PAGE STYLES
   ================================ */

.resources-section {
    padding: 100px 2rem;
    background: white;
}

.resource-category {
    margin-bottom: 80px;
}

.resource-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 3rem;
    font-family: 'Sora', sans-serif;
    color: var(--gray-900);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.resource-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid var(--gray-200);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.6s ease;
}

.resource-card:hover::before {
    left: 100%;
}

.resource-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.resource-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s var(--ease-spring);
}

.resource-card:hover .resource-icon {
    transform: scale(1.15) rotate(-6deg);
}

.resource-badge {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.resource-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
    line-height: 1.3;
}

.resource-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.resource-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-100);
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 600;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.download-btn:active {
    transform: translateY(0);
}

/* Newsletter CTA Section */
.newsletter-cta-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
}

.newsletter-cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    margin: 0 auto 2rem;
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 8px 24px rgba(99, 102, 241, 0.3));
    animation: float 3s ease-in-out infinite;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    font-family: 'Sora', sans-serif;
}

.newsletter-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.newsletter-submit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    white-space: nowrap;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.newsletter-note {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-style: italic;
}

/* ================================
   VIDEOS PAGE STYLES
   ================================ */

.videos-section {
    padding: 100px 2rem;
    background: white;
}

.video-category {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.video-count {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 600;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: all 0.5s var(--ease-out-expo);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.thumbnail-gradient {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 2;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    transition: all 0.3s var(--ease-spring);
}

.video-card:hover .play-button {
    transform: scale(1.15);
}

.video-info {
    padding: 2rem;
}

.video-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-family: 'Sora', sans-serif;
    line-height: 1.3;
}

.video-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 600;
}

.video-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-level {
    padding: 0.25rem 0.75rem;
    background: var(--gray-100);
    border-radius: 6px;
    font-size: 0.8rem;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 8px 24px rgba(236, 72, 153, 0.3));
    animation: float 3s ease-in-out infinite;
}

.coming-soon-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    font-family: 'Sora', sans-serif;
}

.coming-soon-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.coming-soon-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.topic-tag {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.topic-tag:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Responsive Updates for New Pages */
@media (max-width: 768px) {
    .resources-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-submit {
        justify-content: center;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .coming-soon-topics {
        flex-direction: column;
        align-items: stretch;
    }
}


/* ================================
   PROGRESS DASHBOARD STYLES
   ================================ */

.progress-dashboard {
    padding: 100px 2rem;
    background: white;
}

/* Streak Hero */
.streak-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 4rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 28px;
    margin-bottom: 4rem;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
}

.streak-flame {
    animation: float 3s ease-in-out infinite;
}

.streak-content {
    text-align: left;
}

.streak-number {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Sora', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.streak-label {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
}

.streak-description {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.streak-next {
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    font-weight: 600;
    color: var(--gray-800);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Progress Stats Grid */
.progress-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.progress-stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.progress-stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-900);
    font-family: 'Sora', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Section Heading */
.section-heading {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    font-family: 'Sora', sans-serif;
    color: var(--gray-900);
}

/* Achievements Section */
.achievements-section {
    margin-bottom: 4rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-badge {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.achievement-badge.earned {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.achievement-badge.locked {
    opacity: 0.5;
    filter: grayscale(1);
}

.achievement-badge.earned:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-family: 'Sora', sans-serif;
}

.achievement-description {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.achievement-checkmark {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
}

/* Learning Paths Progress */
.paths-progress-section {
    margin-bottom: 4rem;
}

.paths-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.path-progress-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    transition: all 0.4s ease;
}

.path-progress-card:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.path-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.path-info .path-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.path-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-family: 'Sora', sans-serif;
}

.path-description {
    font-size: 1rem;
    color: var(--gray-600);
}

.progress-bar-container {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.8s var(--ease-out-expo);
}

.progress-percentage {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
}

.continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gray-900);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.continue-btn:hover {
    background: var(--primary);
    transform: translateX(4px);
}

/* Share Progress Section */
.share-progress-section {
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    border-radius: 20px;
}

.share-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.share-description {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--gray-300);
    background: white;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.twitter-btn:hover {
    border-color: #1DA1F2;
    color: #1DA1F2;
}

.facebook-btn:hover {
    border-color: #4267B2;
    color: #4267B2;
}

.link-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Responsive Progress Page */
@media (max-width: 1024px) {
    .progress-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .streak-hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .streak-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .progress-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .streak-number {
        font-size: 4rem;
    }
    
    .streak-label {
        font-size: 1.5rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-visual {
        height: auto;
        display: grid;
        gap: 1rem;
        justify-items: center;
    }

    .floating-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: min(100%, 320px);
        animation: none;
    }

    .card-2,
    .card-3 {
        display: none;
    }

    .chart-visual {
        position: relative;
        bottom: auto;
        right: auto;
        width: min(100%, 320px);
        padding: 1.5rem;
        animation: none;
    }

    .chart-bars {
        height: 120px;
        gap: 6px;
    }

    .bar {
        width: 18px;
    }

    .page-hero {
        padding: 120px 1.25rem 70px;
    }

    .resources-section,
    .videos-section,
    .progress-dashboard,
    .tools-section,
    .newsletter-cta-section,
    .coming-soon-section,
    .cta-section,
    .offerings,
    .structured-learning,
    .contact-section,
    .mission-section,
    .values-section,
    .audience-section,
    .articles-section {
        padding: 60px 1.25rem;
    }

    .resource-card,
    .video-info,
    .achievement-badge,
    .path-progress-card,
    .share-progress-section {
        padding: 1.5rem;
    }

    .resource-meta,
    .video-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .video-meta {
        justify-content: flex-start;
    }

    .category-title {
        font-size: 1.75rem;
    }

    .resource-title,
    .video-title,
    .path-name {
        font-size: 1.25rem;
    }

    .resource-description,
    .video-description,
    .share-description {
        font-size: 1rem;
    }

    .streak-hero {
        padding: 2rem;
    }

    .path-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .share-btn,
    .newsletter-submit {
        width: 100%;
        justify-content: center;
    }
}
