/* ============ HEADER (TOP NAV) ============ */
.web-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 14px 0;
}

.web-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.web-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #8B0049 0%, #C2185B 50%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.web-search {
    flex: 1;
    max-width: 480px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-2);
    border-radius: var(--radius-full);
    padding: 10px 16px;
    border: 1.5px solid transparent;
    transition: all 0.2s;
}

.web-search:focus-within {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(194, 24, 91, 0.08);
}

.web-search i {
    color: var(--text-light);
    font-size: 14px;
}

.web-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
    background: transparent;
    color: var(--text);
}

.web-search input::placeholder {
    color: var(--text-light);
}

.web-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.web-nav-item {
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.web-nav-item:hover {
    color: var(--primary);
    background: var(--accent-pink-soft);
}

.web-nav-item.active {
    color: var(--primary-deep);
    background: var(--accent-pink-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn-lg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 15px;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
}

.icon-btn-lg:hover {
    background: var(--accent-pink-soft);
    color: var(--primary);
}

.icon-btn-lg .badge-lg {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.user-chip-lg {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-2);
    padding: 6px 14px 6px 6px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s;
}

.user-chip-lg:hover {
    background: var(--accent-pink-soft);
}

.avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F48FB1, #CE93D8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.user-name-sm {
    font-size: 13px;
    font-weight: 600;
}

/* ============ SCREENS ============ */
.screen {
    display: none;
    animation: fadeIn 0.3s;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ HERO BANNER ============ */
.hero-web {
    background: linear-gradient(135deg, #FCE4EC 0%, #E1BEE7 50%, #D1C4E9 100%);
    border-radius: var(--radius-xl);
    padding: 60px 60px 60px 60px;
    margin: 32px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.hero-web::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
}

.hero-web-content {
    position: relative;
    z-index: 2;
}

.hero-web-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary-deep);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.hero-web h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #8B0049 0%, #C2185B 50%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero-web p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-web-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #7C3AED 0%, #C2185B 100%);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(194, 24, 91, 0.30);
    transition: all 0.3s;
    cursor: pointer;
}

.hero-web-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(194, 24, 91, 0.40);
}

.hero-web-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-web-phone {
    width: 240px;
    height: 460px;
    background: white;
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 32px 64px rgba(124, 58, 237, 0.25);
    transform: rotate(-5deg);
}

.hero-web-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FCE4EC, #E1BEE7);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

/* ============ FOOTER ============ */
.web-footer {
    background: linear-gradient(180deg, transparent, rgba(252, 228, 236, 0.4));
    padding: 60px 0 40px;
    margin-top: 80px;
    border-top: 1px solid var(--border-light);
}

.web-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand-web {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #8B0049, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.footer-desc-web {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col-web h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col-web ul {
    list-style: none;
}

.footer-col-web ul li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-col-web ul li:hover {
    color: var(--primary);
}

.footer-bottom-web {
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 20px 32px 0;
    border-top: 1px solid var(--border-light);
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-web {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .hero-web-phone {
        display: none;
    }

    .hero-web h1 {
        font-size: 40px;
    }

    .web-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .web-header-inner,
    .web-footer-inner {
        padding: 0 20px;
    }

    .web-nav {
        display: none;
    }

    .hero-web h1 {
        font-size: 32px;
    }

    .web-footer-inner {
        grid-template-columns: 1fr;
    }
}