/* ============================================================
   GERGASI - LANDING PAGE STYLES
   ============================================================ */

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

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --brand: #f5a623;
    --brand-dark: #1a1a2e;
    --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;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.10);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.25s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
}

/* ----- container ----- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    font-family: var(--font);
}

.btn-primary {
    background: var(--brand);
    color: var(--white);
}
.btn-primary:hover {
    background: #d48c1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.30);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}
.btn-outline:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.20);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 12px 0;
    transition: all var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-dark);
    text-decoration: none;
}
.navbar .logo span {
    color: var(--brand);
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar .nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color var(--transition);
}
.navbar .nav-links a:hover {
    color: var(--brand);
}

.navbar .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar .nav-actions .lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    border: none;
    font-family: var(--font);
}
.navbar .nav-actions .lang-selector i {
    font-size: 12px;
}

.navbar .hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-800);
    cursor: pointer;
}

/* ----- mobile nav ----- */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0 12px;
    border-top: 1px solid var(--gray-200);
    margin-top: 12px;
}
.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: 4px 0;
}

.nav-mobile .nav-actions-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #faf9ff 0%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.06), transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
    color: var(--brand-dark);
    margin-bottom: 16px;
}
.hero-content h1 span {
    color: var(--brand);
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 480px;
    margin-bottom: 28px;
}

.hero-content .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
}
.hero-stats .stat {
    text-align: center;
}
.hero-stats .stat .number {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-dark);
}
.hero-stats .stat .label {
    font-size: 14px;
    color: var(--gray-400);
}

.hero-visual .mockup {
    width: 100%;
    max-width: 520px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px 28px 32px;
    border: 1px solid var(--gray-200);
}

.mockup .mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.mockup .mockup-header .dots {
    display: flex;
    gap: 6px;
}
.mockup .mockup-header .dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}
.mockup .mockup-header .dots span:nth-child(1) { background: #ef4444; }
.mockup .mockup-header .dots span:nth-child(2) { background: #f59e0b; }
.mockup .mockup-header .dots span:nth-child(3) { background: #10b981; }

.mockup .mockup-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mockup .mockup-row {
    display: flex;
    gap: 12px;
}
.mockup .mockup-row .bar {
    height: 12px;
    border-radius: 50px;
    background: var(--gray-100);
    flex: 1;
}
.mockup .mockup-row .bar.fill {
    background: var(--brand);
    width: 60%;
}
.mockup .mockup-row .bar.fill2 {
    background: var(--primary);
    width: 40%;
}
.mockup .mockup-row .bar.fill3 {
    background: var(--secondary);
    width: 75%;
}
.mockup .mockup-row .bar.fill4 {
    background: var(--success);
    width: 30%;
}

.mockup .mockup-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}
.mockup .mockup-footer .avatar-group {
    display: flex;
}
.mockup .mockup-footer .avatar-group .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-300);
    border: 2px solid var(--white);
    margin-right: -8px;
}
.mockup .mockup-footer .avatar-group .avatar:last-child {
    margin-right: 0;
}
.mockup .mockup-footer .avatar-group .avatar:nth-child(1) { background: #f5a623; }
.mockup .mockup-footer .avatar-group .avatar:nth-child(2) { background: #8b5cf6; }
.mockup .mockup-footer .avatar-group .avatar:nth-child(3) { background: #3b82f6; }
.mockup .mockup-footer .avatar-group .avatar:nth-child(4) { background: #10b981; }

.mockup .mockup-footer .live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--danger);
}
.mockup .mockup-footer .live-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--danger);
    animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
    padding: 80px 0;
}

.features .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.features .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
}
.features .section-header p {
    color: var(--gray-500);
    font-size: 17px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    background: var(--gray-50);
    color: var(--brand);
}
.feature-card .icon.blue { background: #dbeafe; color: #3b82f6; }
.feature-card .icon.green { background: #d1fae5; color: #10b981; }
.feature-card .icon.purple { background: #ede9fe; color: #8b5cf6; }
.feature-card .icon.orange { background: #fef3c7; color: #f59e0b; }
.feature-card .icon.red { background: #fecaca; color: #ef4444; }
.feature-card .icon.teal { background: #ccfbf1; color: #14b8a6; }

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    padding: 80px 0;
    background: var(--gray-50);
}

.how-it-works .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.how-it-works .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
}
.how-it-works .section-header p {
    color: var(--gray-500);
    font-size: 17px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
    padding: 24px;
}
.step .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 16px;
}
.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}
.step p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================================
   TOP TEACHERS
   ============================================================ */
.top-teachers {
    padding: 80px 0;
}

.top-teachers .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.top-teachers .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
}
.top-teachers .section-header p {
    color: var(--gray-500);
    font-size: 17px;
}

.teacher-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.teacher-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: all var(--transition);
}
.teacher-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.teacher-card .avatar-lg {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 12px;
}
.teacher-card .name {
    font-weight: 600;
    font-size: 16px;
}
.teacher-card .subject {
    font-size: 13px;
    color: var(--gray-400);
}
.teacher-card .rating {
    margin-top: 6px;
    color: var(--warning);
    font-size: 14px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 80px 0;
    background: var(--brand-dark);
    color: var(--white);
}

.testimonials .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.testimonials .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}
.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.testimonial-card .quote {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .author .avatar-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
}
.testimonial-card .author .info .name {
    font-weight: 600;
    font-size: 14px;
}
.testimonial-card .author .info .role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
    padding: 80px 0;
}

.pricing .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.pricing .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
}
.pricing .section-header p {
    color: var(--gray-500);
    font-size: 17px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: all var(--transition);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.pricing-card.popular {
    border-color: var(--brand);
    position: relative;
}
.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: var(--white);
    padding: 2px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 40px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 16px 0 4px;
}
.pricing-card .price small {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-400);
}
.pricing-card .plan-name {
    font-size: 18px;
    font-weight: 600;
}
.pricing-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}
.pricing-card ul li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-card ul li i {
    color: var(--success);
    font-size: 14px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-dark), #2d2d4a);
    color: var(--white);
    text-align: center;
}
.cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}
.cta p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    max-width: 480px;
    margin: 0 auto 28px;
}
.cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--gray-100);
    background: var(--white);
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer .copyright {
    font-size: 14px;
    color: var(--gray-400);
}
.footer .footer-links {
    display: flex;
    gap: 24px;
}
.footer .footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition);
}
.footer .footer-links a:hover {
    color: var(--brand);
}

/* ============================================================
   MODALS (Login / Register)
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideUp 0.30s ease;
    position: relative;
}

@keyframes modalSlideUp {
    from { transform: translateY(20px) scale(0.96); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

.modal .modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--gray-400);
    cursor: pointer;
    transition: color var(--transition);
}
.modal .modal-close:hover {
    color: var(--gray-700);
}

.modal .modal-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 20px;
}
.modal .modal-logo span {
    color: var(--brand);
}

.modal .modal-sub {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 24px;
}

.modal .form-group {
    margin-bottom: 16px;
}
.modal .form-group label {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 4px;
}
.modal .form-group input,
.modal .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font);
    transition: border var(--transition);
    background: var(--white);
    color: var(--gray-800);
}
.modal .form-group input:focus,
.modal .form-group select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}

.modal .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin: 12px 0 20px;
}
.modal .form-options a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
}
.modal .form-options a:hover {
    text-decoration: underline;
}

.modal .btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--radius);
    background: var(--brand);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
}
.modal .btn-submit:hover {
    background: #d48c1a;
}

.modal .modal-switch {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 16px;
}
.modal .modal-switch a {
    color: var(--brand);
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}
.modal .modal-switch a:hover {
    text-decoration: underline;
}

.modal .social-login {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.modal .social-login button {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: all var(--transition);
    font-family: var(--font);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.modal .social-login button:hover {
    background: var(--gray-50);
}

.modal .divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: var(--gray-300);
    font-size: 13px;
}
.modal .divider::before,
.modal .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-content .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual .mockup {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }
    .navbar .hamburger {
        display: block;
    }
    .navbar .nav-actions .lang-selector span {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }
    .hero-content h1 {
        font-size: 36px;
    }

    .steps {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .teacher-cards {
        grid-template-columns: 1fr 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .hero-stats .stat .number {
        font-size: 22px;
    }
    .modal {
        padding: 28px 20px;
    }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }

/* Toast */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 360px;
}
.toast {
    background: var(--gray-900);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideUp 0.30s ease;
    font-size: 14px;
}
.toast i {
    font-size: 18px;
}
.toast.success i { color: var(--success); }
.toast.error i { color: var(--danger); }
.toast.warning i { color: var(--warning); }
.toast.info i { color: var(--primary); }

.toast .toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 18px;
    margin-left: auto;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
