﻿body {
    margin: 0;
    font-family: Vazirmatn, Tahoma, sans-serif;
    background: #f4f7fb;
    color: #172033;
}

.landing-page {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(22, 163, 184, .18), transparent 35%), linear-gradient(135deg, #f8fbff 0%, #eef4fb 100%);
}

.landing-header {
    height: 76px;
    padding: 0 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, #12385f, #17a2b8);
    color: white;
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 800;
}

.brand-title {
    font-size: 20px;
    font-weight: 800;
}

.brand-subtitle {
    font-size: 12px;
    color: #6b7280;
}

.landing-nav {
    display: flex;
    gap: 28px;
}

    .landing-nav a {
        color: #334155;
        text-decoration: none;
        font-size: 14px;
    }

.login-button,
.primary-action,
.submit-login {
    border: 0;
    border-radius: 14px;
    background: #12385f;
    color: white;
    padding: 12px 22px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Samim';
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    padding: 80px 72px 40px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(23, 162, 184, .12);
    color: #0f7182;
    font-weight: 700;
    font-size: 13px;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.35;
    margin: 24px 0;
    color: #0f2742;
}

    .hero h1 span {
        display: block;
        color: #17a2b8;
    }

.hero p {
    font-size: 18px;
    line-height: 2;
    color: #475569;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
}
.amisa-hero {
    position: relative;
    min-height: calc(100vh - 76px);
    padding: 90px 24px 120px;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(124, 58, 237, .08), transparent 38%), linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}

    .amisa-hero::after {
        content: "";
        position: absolute;
        left: -10%;
        right: -10%;
        bottom: -220px;
        height: 420px;
        background: #f2eff7;
        border-radius: 50% 50% 0 0;
        z-index: 0;
    }

.hero-center {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

    .hero-center h1 {
        margin: 0;
        color: #111827;
        font-size: clamp(46px, 7vw, 96px);
        line-height: 1.25;
        font-weight: 900;
        letter-spacing: -2px;
    }

        .hero-center h1::after {
            content: "";
            display: inline-block;
            width: 260px;
            height: 28px;
            background: #ffb02e;
            border-radius: 999px;
            transform: translateY(-18px);
            margin-right: -250px;
            position: relative;
            z-index: -1;
        }

.hero-subtitle {
    margin: 22px 0 0;
    color: #111827;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
}

    .hero-subtitle::after {
        content: "";
        display: block;
        width: 190px;
        height: 8px;
        background: #1fb6ff;
        border-radius: 999px;
        margin: 8px auto 0;
    }

.hero-description {
    max-width: 760px;
    margin: 28px auto 0;
    color: #667085;
    font-size: 20px;
    line-height: 2;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.hero-primary,
.hero-secondary {
    min-width: 190px;
    height: 58px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

.hero-primary {
    border: 0;
    background: #7b496f;
    color: white;
    box-shadow: 0 12px 28px rgba(123, 73, 111, .25);
}

.hero-secondary {
    border: 1px solid #e5e7eb;
    background: #f7f7fa;
    color: #7b496f;
}

.hero-points {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 28px;
    color: #667085;
    font-size: 14px;
}

    .hero-points span {
        white-space: nowrap;
    }

.hero-event {
    position: relative;
    z-index: 1;
    width: fit-content;
    max-width: calc(100% - 32px);
    margin: 95px auto 0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 22px;
    background: white;
    border: 1px solid #eef0f4;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .1);
    color: #111827;
}

.event-badge {
    background: #dc2626;
    color: white;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero-event a {
    color: #7b496f;
    text-decoration: none;
    font-weight: 800;
}

@media (max-width: 768px) {
    .amisa-hero {
        padding-top: 60px;
    }

    .hero-center h1 {
        font-size: 44px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons,
    .hero-points,
    .hero-event {
        flex-direction: column;
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;
    }

    .hero-event {
        border-radius: 24px;
        text-align: center;
    }
}

.secondary-action {
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    background: white;
    color: #12385f;
    padding: 12px 22px;
    cursor: pointer;
    font-weight: 700;
}

.dashboard-card {
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 32px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(15, 39, 66, .16);
}

.dashboard-header {
    display: flex;
    gap: 8px;
}

    .dashboard-header span {
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #cbd5e1;
    }

.dashboard-title {
    margin: 28px 0;
    font-size: 22px;
    font-weight: 800;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

    .stat-row div {
        background: #f8fafc;
        border-radius: 20px;
        padding: 18px;
    }

    .stat-row small {
        color: #64748b;
    }

    .stat-row strong {
        display: block;
        margin-top: 8px;
        font-size: 20px;
    }

.chart-placeholder {
    height: 170px;
    margin-top: 24px;
    display: flex;
    align-items: end;
    gap: 14px;
}

    .chart-placeholder div {
        flex: 1;
        border-radius: 12px 12px 0 0;
        background: linear-gradient(180deg, #17a2b8, #12385f);
    }

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 32px 72px 80px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(15, 39, 66, .08);
}

    .feature-card h3 {
        color: #12385f;
    }

    .feature-card p {
        color: #64748b;
        line-height: 1.9;
    }

.login-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

    .login-modal.show {
        display: block;
    }

.login-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(6px);
}

.login-box {
    position: relative;
    width: min(420px, calc(100% - 32px));
    margin: 10vh auto;
    background: white;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 30px 90px rgba(0,0,0,.25);
}

.close-login {
    position: absolute;
    left: 18px;
    top: 18px;
    border: 0;
    background: #f1f5f9;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
}

.login-box h2 {
    margin-top: 10px;
    color: #12385f;
}

.login-box p {
    color: #64748b;
}

.login-box form {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.login-box label {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.login-box input {
    height: 46px;
    border-radius: 14px;
    border: 1px solid #cbd5e1;
    padding: 0 14px;
    font-size: 15px;
}

.submit-login {
    margin-top: 12px;
    height: 48px;
}
.user-button {
    border: 0;
    border-radius: 14px;
    background: white;
    color: #12385f;
    padding: 12px 22px;
    cursor: pointer;
    font-weight: 700;
    border: 1px solid #dbe4ef;
font-family: 'Samim';
}

@media (max-width: 900px) {
    .landing-header {
        padding: 0 20px;
    }

    .landing-nav,
    .brand-title,
    .brand-subtitle {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 48px 24px;
    }

        .hero h1 {
            font-size: 36px;
        }

    .features {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}



.user-status-wrapper {
    position: relative;

    display: flex;
    align-items: center;
    gap: 12px;
}

.user-button {
    border: 1px solid #dbe4ef;
    border-radius: 14px;
    background: white;
    color: #12385f;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-arrow {
    font-size: 12px;
}

.user-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 180px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 18px 45px rgba(15, 39, 66, .16);
    z-index: 1000;
}

    .user-menu button {
        width: 100%;
        border: 0;
        background: transparent;
        padding: 12px 14px;
        border-radius: 12px;
        text-align: right;
        cursor: pointer;
        font-family: inherit;
        color: #334155;
    }

        .user-menu button:hover {
            background: #f1f5f9;
        }

    .user-menu .logout-item {
        color: #dc2626;
    }

.top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.apps-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    color: #374151;
}
    .apps-button:hover {
        background: #a9b1bd;
    }
.ticket-button {
    border: 0;
    border-radius: 14px;
    background: #dc2626;
    color: white;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Samim';
    transition: .2s;
}

    .ticket-button:hover {
        background: #b91c1c;
    }
.user-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: transparent;
}

.user-menu {
    z-index: 99999;
}

.amisa-apps-section {
    padding: 140px 24px;
    background: #f4f4f6;
}

.apps-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.apps-content h2 {
    margin: 0;

    color: #111827;

    font-size: clamp(34px, 4vw, 68px);
    line-height: 1.6;

    font-weight: 900;
    letter-spacing: -1px;
}

.apps-text {
    margin-top: 48px;

    color: #374151;

    font-size: clamp(24px, 2vw, 42px);
    line-height: 1.9;

    font-weight: 400;
}

.apps-text.second {
    margin-top: 70px;
    color: #4b5563;
}

@media (max-width: 768px) {

    .amisa-apps-section {
        padding: 90px 20px;
    }

    .apps-content h2 {
        font-size: 34px;
        line-height: 1.8;
    }

    .apps-text {
        font-size: 20px;
        line-height: 2;
    }
}