/* CSS Custom Properties */
:root {
    --sage-50: #f8faf8;
    --sage-100: #e8f5e8;
    --sage-200: #d1ebd1;
    --sage-300: #a3d9a3;
    --sage-400: #6bb86b;
    --sage-500: #4a9b4a;
    --sage-600: #3a7d3a;
    --sage-700: #2d5f2d;
    --sage-800: #1f4a1f;
    --sage-900: #14361f;
    
    --lavender-50: #faf9ff;
    --lavender-100: #f0edff;
    --lavender-200: #e1dbff;
    --lavender-300: #c7b9ff;
    --lavender-400: #a688ff;
    --lavender-500: #8b5cf6;
    --lavender-600: #7c3aed;
    --lavender-700: #6d28d9;
    --lavender-800: #5b21b6;
    --lavender-900: #4c1d95;

    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;

    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    --rose-300: #fda4af;
    --rose-400: #fb7185;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --rose-700: #be123c;
    --rose-800: #9f1239;
    --rose-900: #881337;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--sage-800);
    background: var(--sage-50);
}

/* Special Background */
.special-bg {
    background: linear-gradient(135deg, 
        var(--amber-50) 0%, 
        var(--amber-100) 15%, 
        var(--amber-200) 30%, 
        var(--amber-100) 45%, 
        var(--lavender-100) 60%, 
        var(--lavender-200) 75%, 
        var(--amber-100) 90%, 
        var(--amber-50) 100%
    );
    position: relative;
    min-height: 100vh;
}

.special-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 184, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(251, 191, 36, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(199, 185, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.special-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.02) 49%, rgba(255, 255, 255, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.02) 49%, rgba(255, 255, 255, 0.02) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.3;
    pointer-events: none;
    animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0px 0px, 0px 0px; }
    100% { background-position: 60px 60px, -60px 60px; }
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.1;
    animation: float 15s ease-in-out infinite;
}

.floating-orb:nth-child(1) {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--lavender-500), var(--sage-400));
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-orb:nth-child(2) {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--amber-400), var(--lavender-500));
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.floating-orb:nth-child(3) {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--sage-400), var(--amber-400));
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

/* App Container */
.app-container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
    background: var(--amber-50);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--sage-400), var(--lavender-400));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.logo-icon i {
    color: white;
    font-size: 1.5rem;
}

.logo-text h2 {
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--amber-800);
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--amber-700);
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    background: rgba(251, 191, 36, 0.1);
}

.nav-group-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amber-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
}

.nav-menu {
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--amber-700);
    border-radius: 0.75rem;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(251, 191, 36, 0.4);
    color: var(--amber-800);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--amber-100), var(--lavender-100));
    color: var(--amber-800);
    box-shadow: var(--shadow-sm);
}

.nav-link i {
    width: 1.25rem;
    text-align: center;
}

/* Motivation Card */
.motivation-card {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--amber-50), var(--lavender-50));
    border-radius: 0.75rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.motivation-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.motivation-header i {
    color: var(--rose-400);
    font-size: 1rem;
}

.motivation-header span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--amber-700);
}

.motivation-card p {
    font-size: 0.75rem;
    color: var(--amber-600);
    line-height: 1.5;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1rem;
    background: var(--amber-50);
    border-top: 1px solid rgba(251, 191, 36, 0.3);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, var(--sage-300), var(--lavender-300));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--amber-700);
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--amber-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-status {
    font-size: 0.75rem;
    color: var(--amber-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* Mobile Header */
.mobile-header {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sidebar-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--amber-800);
    cursor: pointer;
    transition: background-color 0.2s;
}

.sidebar-toggle:hover {
    background: rgba(251, 191, 36, 0.3);
}

.mobile-header h1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--amber-800);
}

/* Page Content */
.page-content {
    flex: 1;
    overflow-y: auto;
    position: relative;
    z-index: 10;
}

.page {
    display: none;
    padding: 1.5rem;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
}

.hero-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-icon > i {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--sage-400), var(--lavender-400), var(--rose-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: var(--shadow-xl);
}

.sparkle {
    position: absolute;
    top: -1rem;
    right: -1rem;
    animation: rotate 20s linear infinite;
}

.sparkle i {
    color: var(--lavender-400);
    font-size: 2rem;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--sage-700), var(--lavender-700), var(--rose-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--sage-600);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-motto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--sage-500);
}

.hero-motto i {
    font-size: 1.25rem;
}

.hero-motto span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Content Grid */
.content-grid {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.main-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-xl);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.card-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sage-800);
    font-size: 1.125rem;
    font-weight: 600;
}

.card-content {
    padding: 1.5rem;
}

/* Daily Exercise Card */
.daily-exercise-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.completion-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sage-500);
}

.completion-status i {
    color: var(--sage-500);
}

.exercise-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid;
}

.category-badge {
    background: var(--rose-100);
    color: var(--rose-800);
    border-color: var(--rose-200);
}

.difficulty-badge {
    background: var(--sage-100);
    color: var(--sage-700);
    border-color: var(--sage-200);
}

.duration {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--sage-600);
    font-size: 0.875rem;
}

.exercise-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sage-800);
    margin-bottom: 0.5rem;
}

.exercise-content p {
    color: var(--sage-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.exercise-instructions {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(255, 255, 255, 0.5));
    border-radius: 0.75rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
    margin-bottom: 1rem;
}

.exercise-instructions h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--amber-800);
    margin-bottom: 0.5rem;
}

.exercise-instructions h5 i {
    color: var(--lavender-500);
}

.exercise-instructions p {
    color: var(--amber-700);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sage-500), var(--lavender-500));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--sage-600), var(--lavender-600));
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--sage-700);
    border: 1px solid var(--sage-300);
}

.btn-outline:hover {
    background: var(--sage-50);
    border-color: var(--sage-400);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Quick Actions */
.actions-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .actions-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.action-card {
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.assessment-action {
    background: linear-gradient(135deg, var(--lavender-50), var(--lavender-100));
    border-color: rgba(139, 92, 246, 0.2);
}

.assessment-action:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.journal-action {
    background: linear-gradient(135deg, var(--sage-50), var(--sage-100));
    border-color: rgba(107, 184, 107, 0.2);
}

.journal-action:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.action-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.assessment-action .action-icon {
    background: var(--lavender-200);
    color: var(--lavender-600);
}

.journal-action .action-icon {
    background: var(--sage-200);
    color: var(--sage-600);
}

.action-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.assessment-action h4 {
    color: var(--lavender-800);
}

.journal-action h4 {
    color: var(--sage-800);
}

.action-content p {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.assessment-action p {
    color: var(--lavender-700);
}

.journal-action p {
    color: var(--sage-700);
}

.action-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.assessment-action .action-link {
    color: var(--lavender-600);
}

.journal-action .action-link {
    color: var(--sage-600);
}

.action-card:hover .action-link {
    transform: translateX(0.25rem);
}

/* Stats */
.stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.75rem;
}

.stat-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-info i {
    font-size: 1.25rem;
}

.stat-info span {
    font-weight: 500;
    color: var(--sage-700);
}

.stat-value {
    text-align: right;
}

.stat-value span {
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--sage-800);
}

.stat-value small {
    font-size: 0.75rem;
    color: var(--sage-600);
}

/* Progress */
.progress-item {
    margin-bottom: 1rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.progress-header span:first-child {
    color: var(--sage-700);
}

.progress-header span:last-child {
    color: var(--sage-800);
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background: var(--sage-200);
    border-radius: 0.25rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--sage-400), var(--lavender-400));
    border-radius: 0.25rem;
    transition: width 0.3s ease;
}

.progress-actions {
    padding-top: 1rem;
    border-top: 1px solid rgba(107, 184, 107, 0.2);
}

/* Page Headers */
.assessment-container,
.journal-container,
.learn-container,
.progress-container,
.profile-container {
    max-width: 72rem;
    margin: 0 auto;
}

.assessment-header,
.journal-header,
.learn-header,
.progress-header,
.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

.assessment-icon,
.journal-icon,
.learn-icon,
.progress-icon,
.profile-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--sage-400), var(--lavender-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-lg);
}

.assessment-icon i,
.journal-icon i,
.learn-icon i,
.progress-icon i,
.profile-icon i {
    color: white;
    font-size: 2rem;
}

.assessment-header h1,
.journal-header h1,
.learn-header h1,
.progress-header h1,
.profile-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--sage-800);
    margin-bottom: 0.5rem;
}

.assessment-header p,
.journal-header p,
.learn-header p,
.progress-header p,
.profile-header p {
    color: var(--sage-600);
    max-width: 42rem;
    margin: 0 auto;
}

/* Assessment Styles */
.assessment-card {
    max-width: 48rem;
    margin: 0 auto;
}

.assessment-progress {
    margin-bottom: 1.5rem;
}

.question-container {
    margin-bottom: 1.5rem;
}

.assessment-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(107, 184, 107, 0.2);
}

/* Journal Styles */
.journal-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .journal-content {
        grid-template-columns: 2fr 1fr;
    }
}

.journal-actions {
    margin-bottom: 1.5rem;
}

.journal-entries {
    min-height: 400px;
}

/* Learn Styles */
.eq-pillars {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .eq-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .eq-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-card {
    padding: 1.5rem;
    text-align: center;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pillar-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--sage-400), var(--lavender-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sage-800);
    margin-bottom: 0.75rem;
}

.pillar-card p {
    color: var(--sage-600);
    line-height: 1.5;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    max-width: 32rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--sage-200);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sage-800);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--sage-600);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
}

.modal-close:hover {
    background: var(--sage-100);
}

.modal-body {
    padding: 1.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--sage-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--sage-300);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-400);
    box-shadow: 0 0 0 3px rgba(107, 184, 107, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page {
        padding: 1rem;
    }
    
    .card-header,
    .card-content {
        padding: 1rem;
    }
    
    .assessment-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .assessment-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .eq-pillars {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.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; }

.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; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 50%; }