/* ==================== VARIABLES ==================== */
:root {
    --cream: #F7F4ED;
    --sage: #8FA88E;
    --sage-light: rgba(143, 168, 142, 0.14);
    --deep-green: #2C5F2D;
    --deep-green-dark: #1a3d1b;
    --gold: #D4AF37;
    --gold-light: rgba(212, 175, 55, 0.12);
    --charcoal: #1A1F2E;
    --white: #FFFFFF;
    --gray-50:  #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --red-500:  #EF4444;
    --green-500:#22C55E;

    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
    --shadow-xl: 0 24px 80px rgba(0,0,0,0.18);
    --shadow-glow: 0 0 32px rgba(143,168,142,0.45);
    --shadow-gold: 0 0 32px rgba(212,175,55,0.35);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    --transition-fast: all 0.15s ease;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'IBM Plex Sans', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.font-display { font-family: 'Playfair Display', serif; }

.hidden { display: none !important; }

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--deep-green); }

/* ==================== NAVBAR ==================== */
.navbar {
    background: rgba(247,244,237,0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(143,168,142,0.12);
    box-shadow: 0 1px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 500;
}
.navbar.scrolled {
    background: rgba(247,244,237,0.98);
    box-shadow: var(--shadow-md);
}

/* ==================== HAMBURGER ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: 40px; height: 40px;
    border: none; background: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.hamburger:hover { background: var(--gray-100); }
.hamburger-line {
    width: 22px; height: 2px;
    background: var(--deep-green);
    border-radius: 1px;
    transition: var(--transition);
}
.hamburger.open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 80px 0 0 0;
    background: white;
    z-index: 400;
    padding: 24px;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: slideInLeft 0.28s ease;
}
.mobile-menu.open { display: flex; }

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: linear-gradient(135deg, var(--sage) 0%, var(--deep-green) 100%);
    color: white; border: none; cursor: pointer;
    font-weight: 600; letter-spacing: 0.01em;
    position: relative; overflow: hidden;
    transition: var(--transition);
    font-family: inherit;
}
.btn-primary::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,0.18),transparent);
    transition: left 0.55s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-primary:active { transform: translateY(0); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #B8950A 100%);
    color: white; border: none; cursor: pointer;
    font-weight: 600; transition: var(--transition);
    position: relative; overflow: hidden; font-family: inherit;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white; cursor: pointer;
    font-weight: 600; transition: var(--transition); font-family: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn-ghost {
    background: transparent;
    color: var(--gray-600); border: none; cursor: pointer;
    font-weight: 500; transition: var(--transition-fast); font-family: inherit;
}
.btn-ghost:hover { color: var(--deep-green); }

/* Loading state */
.btn-loading { pointer-events: none; opacity: 0.75; }
.btn-loading::after {
    content: '';
    display: inline-block;
    width: 14px; height: 14px; margin-left: 8px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==================== CARDS ==================== */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(143,168,142,0.07);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card-glass {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(44,95,45,0.10), inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ==================== HERO ==================== */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(140deg, #0d2b0e 0%, #1a4a1c 30%, #2C5F2D 60%, #3d7a3e 100%);
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
}
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 15% 55%, rgba(143,168,142,0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(212,175,55,0.13) 0%, transparent 45%),
        radial-gradient(ellipse at 65% 85%, rgba(44,95,45,0.35) 0%, transparent 50%);
}
.hero-bg::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 130px;
    background: linear-gradient(to top, var(--cream), transparent);
}
@keyframes gradientShift {
    0%,100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-content { position: relative; z-index: 10; color: white; text-align: center; }

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    animation: float 8s ease-in-out infinite;
}
.hero-orb-1 { width: 400px; height: 400px; background: var(--sage); top: -100px; left: -100px; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--gold); bottom: 50px; right: -80px; animation-delay: -4s; }

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

/* ==================== TRUST BADGES ==================== */
.trust-badge {
    display: inline-flex;
    align-items: center; gap: 6px;
    padding: 7px 18px;
    background: rgba(255,255,255,0.13);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-full);
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.95);
    transition: var(--transition-fast);
}
.trust-badge:hover { background: rgba(255,255,255,0.22); }

/* ==================== SECTION TAG ==================== */
.section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--sage-light);
    color: var(--deep-green);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.07em; text-transform: uppercase;
}

/* ==================== STAT COUNTER ==================== */
.stat-number {
    font-size: 52px; font-weight: 800;
    background: linear-gradient(135deg, var(--sage), var(--deep-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-card {
    background: linear-gradient(135deg, rgba(143,168,142,0.09) 0%, rgba(44,95,45,0.04) 100%);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(143,168,142,0.09);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ==================== FEATURES ==================== */
.feature-icon {
    width: 66px; height: 66px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, var(--sage-light), rgba(44,95,45,0.09));
    transition: var(--transition);
    flex-shrink: 0;
}
.card:hover .feature-icon { transform: scale(1.1) rotate(4deg); }

/* ==================== HOW IT WORKS ==================== */
.step-number {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--deep-green));
    color: white;
    font-size: 20px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(143,168,142,0.09);
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute; top: 16px; left: 26px;
    font-size: 90px;
    font-family: 'Playfair Display', serif;
    color: var(--sage); opacity: 0.18; line-height: 1;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.star { color: var(--gold); }

/* ==================== PRICING ==================== */
.pricing-popular {
    border: 2px solid var(--gold) !important;
    position: relative;
}
.pricing-badge {
    position: absolute; top: -15px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), #B8950A);
    color: white;
    padding: 5px 22px;
    border-radius: var(--radius-full);
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
}

/* ==================== FAQ ==================== */
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 10px;
    transition: var(--transition);
    background: white;
}
.faq-item.open { border-color: var(--sage); box-shadow: var(--shadow-sm); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; cursor: pointer;
    font-weight: 600; font-size: 15px;
    transition: var(--transition-fast);
    user-select: none; border: none; background: none;
    width: 100%; text-align: left; font-family: inherit;
    color: var(--charcoal);
}
.faq-question:hover { background: var(--gray-50); color: var(--deep-green); }
.faq-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--sage-light);
    color: var(--deep-green);
    font-size: 20px; font-weight: 300;
    flex-shrink: 0; transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--deep-green); color: white; transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1), padding 0.28s ease;
    padding: 0 24px; color: var(--gray-600); font-size: 15px; line-height: 1.7;
    background: var(--gray-50);
}
.faq-item.open .faq-answer { max-height: 320px; padding: 16px 24px 22px; }

/* ==================== FOOTER ==================== */
.footer { background: #111827; color: rgba(255,255,255,0.65); }
.footer-link {
    color: rgba(255,255,255,0.45);
    text-decoration: none; font-size: 13px;
    transition: var(--transition-fast);
    display: block; margin-bottom: 8px;
}
.footer-link:hover { color: var(--gold); }
.footer-social {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none; font-size: 16px;
    transition: var(--transition-fast);
}
.footer-social:hover { background: var(--sage); color: white; }

/* ==================== FORMS (glassmorphism) ==================== */
.form-input {
    width: 100%; padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px; font-family: inherit;
    transition: var(--transition-fast);
    background: white; color: var(--charcoal); outline: none;
}
.form-input:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 4px rgba(143,168,142,0.15);
    transform: translateY(-1px);
}
.form-input.valid   { border-color: var(--green-500); }
.form-input.invalid { border-color: var(--red-500); }
.form-group { position: relative; }
.form-icon {
    position: absolute; right: 14px; top: 50%;
    transform: translateY(-50%);
    font-size: 16px; pointer-events: none;
    transition: var(--transition-fast);
}

/* ==================== QUESTIONNAIRE ==================== */
.question-option {
    display: flex; align-items: center;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer; transition: var(--transition-fast);
    margin-bottom: 10px; background: white; user-select: none;
}
.question-option:hover { border-color: var(--sage); background: var(--sage-light); transform: translateX(4px); }
.question-option:has(input:checked) {
    border-color: var(--deep-green);
    background: rgba(44,95,45,0.05);
    box-shadow: var(--shadow-sm);
}
.question-option input { margin-right: 14px; accent-color: var(--deep-green); flex-shrink: 0; }

/* ==================== PROGRESS BAR ==================== */
.progress-bar {
    background: linear-gradient(90deg, var(--sage), var(--deep-green));
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
    border-radius: var(--radius-full);
    position: relative; overflow: hidden;
}
.progress-bar::after {
    content: '';
    position: absolute; top: 0; left: -100%; right: 0; bottom: 0;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,0.4),transparent);
    animation: shimmer 2s infinite;
}
@keyframes shimmer { to { left: 100%; } }

/* ==================== BADGES ==================== */
.badge-premium { background: linear-gradient(135deg, var(--gold), #B8950A); color: white; }
.badge-free    { background: var(--gray-200); color: var(--gray-600); }
.badge {
    display: inline-flex; align-items: center;
    padding: 5px 14px; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
}

/* ==================== DASHBOARD SIDEBAR ==================== */
.dashboard-layout { display: flex; min-height: calc(100vh - 80px); }

.sidebar {
    width: 255px; flex-shrink: 0;
    background: white;
    border-right: 1px solid var(--gray-200);
    padding: 28px 14px;
    position: sticky; top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    display: flex; flex-direction: column;
}
.sidebar-logo {
    display: flex; align-items: center; gap: 10px;
    padding: 0 10px 24px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 16px;
}
.sidebar-nav-item {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer; font-weight: 500; font-size: 14px;
    color: var(--gray-600);
    transition: var(--transition-fast);
    border: none; background: none; width: 100%; text-align: left;
    margin-bottom: 3px; font-family: inherit;
}
.sidebar-nav-item:hover { background: var(--sage-light); color: var(--deep-green); }
.sidebar-nav-item.active {
    background: linear-gradient(135deg,rgba(143,168,142,0.18),rgba(44,95,45,0.09));
    color: var(--deep-green); font-weight: 700;
    box-shadow: var(--shadow-sm);
}
.sidebar-icon { font-size: 18px; width: 22px; text-align: center; flex-shrink: 0; }
.sidebar-divider { border: none; border-top: 1px solid var(--gray-200); margin: 12px 10px; }
.sidebar-bottom { margin-top: auto; padding-top: 16px; }

.dashboard-content { flex: 1; padding: 32px; overflow-x: hidden; background: var(--cream); }

/* Mobile dashboard tabs */
.dashboard-tabs-mobile {
    display: none;
    overflow-x: auto; gap: 6px;
    padding: 12px 16px;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    -webkit-overflow-scrolling: touch;
}
.dashboard-tabs-mobile::-webkit-scrollbar { display: none; }
.tab-btn-mobile {
    flex-shrink: 0; padding: 8px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: white; cursor: pointer;
    font-size: 13px; font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-fast); font-family: inherit;
    white-space: nowrap;
}
.tab-btn-mobile.active {
    border-color: var(--deep-green);
    background: var(--deep-green); color: white;
}
/* Keep legacy .tab-btn for JS compat */
.tab-btn { background: none; border: none; cursor: pointer; transition: var(--transition-fast); font-family: inherit; }

/* ==================== EXERCISE CARD ==================== */
.exercise-card {
    border-left: 3px solid var(--sage);
    background: var(--gray-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 16px; transition: var(--transition-fast);
}
.exercise-card:hover { background: white; border-left-color: var(--deep-green); box-shadow: var(--shadow-sm); }

/* ==================== TOAST SYSTEM ==================== */
.toast-container {
    position: fixed; top: 96px; right: 24px;
    z-index: 9999; display: flex; flex-direction: column; gap: 10px;
    pointer-events: none;
}
.toast {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    background: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.07);
    max-width: 380px; min-width: 280px;
    pointer-events: all;
    animation: toastIn 0.35s cubic-bezier(0.4,0,0.2,1) forwards;
    border-left: 4px solid var(--sage);
    font-size: 14px; font-weight: 500;
}
.toast.toast-success { border-left-color: var(--green-500); }
.toast.toast-error   { border-left-color: var(--red-500); }
.toast.toast-info    { border-left-color: #3B82F6; }
.toast.toast-warning { border-left-color: var(--gold); }
.toast.hiding { animation: toastOut 0.28s ease forwards; }
.toast-icon    { font-size: 20px; flex-shrink: 0; }
.toast-msg     { flex: 1; color: var(--gray-700); }
.toast-close   { background: none; border: none; cursor: pointer; font-size: 16px; color: var(--gray-400); transition: var(--transition-fast); line-height: 1; padding: 2px; }
.toast-close:hover { color: var(--gray-700); }

@keyframes toastIn  { from { opacity:0; transform: translateX(100%) scale(0.9); } to { opacity:1; transform: translateX(0) scale(1); } }
@keyframes toastOut { from { opacity:1; transform: translateX(0); } to { opacity:0; transform: translateX(110%); } }

/* ==================== MODAL ==================== */
.modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.48);
    backdrop-filter: blur(5px);
    z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}
.modal-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 44px; max-width: 440px; width: 100%;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.26s cubic-bezier(0.34,1.56,0.64,1);
}

/* ==================== SUCCESS PAGE ==================== */
.success-icon {
    width: 110px; height: 110px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--deep-green));
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; margin: 0 auto 32px;
    animation: scaleIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: var(--shadow-glow);
}
.countdown-ring {
    width: 60px; height: 60px; border-radius: 50%;
    border: 3px solid var(--gray-200);
    border-top-color: var(--deep-green);
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle; margin-left: 8px;
}

/* ==================== SKELETON ==================== */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}
@keyframes skeletonShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp  { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn    { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn   { from { opacity:0; transform:scale(0.88); } to { opacity:1; transform:scale(1); } }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes pulseGlow { 0%,100% { box-shadow:0 0 20px rgba(143,168,142,0.3); } 50% { box-shadow:0 0 50px rgba(143,168,142,0.6); } }

.fade-in-up              { animation: fadeInUp 0.7s cubic-bezier(0.4,0,0.2,1) forwards; }
.fade-in-up-delay-1      { animation: fadeInUp 0.7s 0.15s cubic-bezier(0.4,0,0.2,1) both; }
.fade-in-up-delay-2      { animation: fadeInUp 0.7s 0.30s cubic-bezier(0.4,0,0.2,1) both; }
.fade-in-up-delay-3      { animation: fadeInUp 0.7s 0.45s cubic-bezier(0.4,0,0.2,1) both; }
.fade-in-up-delay-4      { animation: fadeInUp 0.7s 0.60s cubic-bezier(0.4,0,0.2,1) both; }

/* Scroll reveal */
.scroll-reveal { opacity:0; transform:translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal.revealed { opacity:1; transform:translateY(0); }
.scroll-reveal.delay-1 { transition-delay: 0.10s; }
.scroll-reveal.delay-2 { transition-delay: 0.20s; }
.scroll-reveal.delay-3 { transition-delay: 0.30s; }
.scroll-reveal.delay-4 { transition-delay: 0.40s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-desktop { display: none; }
    .sidebar { display: none; }
    .dashboard-layout { flex-direction: column; }
    .dashboard-content { padding: 16px; }
    .dashboard-tabs-mobile { display: flex; }
    .modal-box { padding: 28px; }
    .toast-container { right: 12px; left: 12px; }
    .toast { min-width: unset; max-width: none; }
    .hero-section { min-height: 80vh; }
    .hero-bg::after { display: none; }
}
@media (min-width: 769px) { .dashboard-tabs-mobile { display: none; } }
