:root {
    --primary-color: rgb(28 5 245);
    --primary-hover: rgb(47 25 255);
    --background-color: #060816;
    --card-color: rgba(15, 18, 40, 0.88);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-color: #ffffff;
    --text-muted: #9da7c3;
    --shadow-primary: 0 25px 80px rgba(28, 5, 245, 0.35);
    --radius-lg: 28px;
    --radius-md: 20px;
    --transition: all 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top, rgba(28, 5, 245, 0.25), transparent 35%), var(--background-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    touch-action: pan-y;

}

.navbar {
    backdrop-filter: blur(20px);
}

.navbar-brand {
    text-decoration: none;
}

.brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgb(28 5 245), rgb(73 56 255));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.brand-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.brand-description {
    font-size: 13px;
    color: var(--text-muted);
}

.nav-link {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: #fff;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgb(28 5 245), rgb(64 47 255));
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 12px 35px rgba(28, 5, 245, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgb(41 20 255), rgb(82 66 255));
    color: #fff;
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-lg-custom {
    min-width: 220px;
    min-height: 60px;
}

.hero-main {
    padding: 80px 0 120px;
}

.hero-badge,
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c6cbdb;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(16px);
}

.hero-title {
    font-size: 72px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -3px;
}

.hero-description {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 620px;
}

.hero-stats {
    max-width: 700px;
}

.hero-stat-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.hero-stat-value {
    font-size: 34px;
    font-weight: 800;
}

.hero-stat-label {
    color: var(--text-muted);
    margin-top: 8px;
}

.hero-dashboard-card {
    position: relative;
    padding: 28px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(20, 23, 48, 0.95), rgba(10, 12, 30, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.dashboard-dots {
    display: flex;
    gap: 8px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-label {
    font-size: 14px;
    color: var(--text-muted);
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
    font-weight: 600;
}

.sidebar-item.active {
    border-color: rgba(28, 5, 245, 0.5);
    background: rgba(28, 5, 245, 0.14);
    box-shadow: 0 10px 40px rgba(28, 5, 245, 0.2);
}

.sidebar-item.muted {
    opacity: 0.5;
}

.message-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    margin-bottom: 18px;
}

.message-card.incoming {
    background: rgba(255, 255, 255, 0.04);
}

.message-card.outgoing {
    background: rgba(28, 5, 245, 0.12);
    border: 1px solid rgba(28, 5, 245, 0.3);
}

.message-avatar {
    min-width: 52px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-name {
    font-size: 15px;
    font-weight: 700;
}

.message-text {
    margin-top: 6px;
    color: var(--text-muted);
    line-height: 1.7;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
}

.metric-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(28, 5, 245, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.metric-value {
    font-size: 24px;
    font-weight: 800;
}

.metric-label {
    color: var(--text-muted);
    font-size: 14px;
}

.section-main {
    padding: 120px 0;
}

.section-title {
    margin-top: 24px;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
}

.section-description {
    margin: 24px auto 0;
    max-width: 760px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.feature-card {
    padding: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    backdrop-filter: blur(16px);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(28, 5, 245, 0.35);
    box-shadow: 0 20px 60px rgba(28, 5, 245, 0.16);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(28, 5, 245, 0.2), rgba(28, 5, 245, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 28px;
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.section-channels {
    background: rgba(255, 255, 255, 0.02);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 22px;
    font-weight: 700;
    transition: var(--transition);
}

.channel-card i {
    font-size: 34px;
}

.channel-card.active {
    background: rgba(28, 5, 245, 0.12);
    border-color: rgba(28, 5, 245, 0.4);
}

.channel-card.muted {
    opacity: 0.55;
}

.future-box {
    padding: 80px;
    border-radius: 42px;
    background: linear-gradient(180deg, rgba(28, 5, 245, 0.18), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
}

.future-title {
    margin-top: 30px;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
}

.future-description {
    max-width: 780px;
    margin: 26px auto 0;
    color: var(--text-muted);
    font-size: 20px;
    line-height: 1.8;
}

.future-tag {
    padding: 16px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
}

.footer-main {
    padding: 0 0 60px;
}

.footer-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 32px 40px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    font-size: 28px;
    font-weight: 800;
}

.footer-text {
    margin-top: 10px;
    color: var(--text-muted);
}

.footer-socials a {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: rgba(28, 5, 245, 0.2);
}

.hero-blur {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    background: rgb(28 5 245);
}

.hero-blur-left {
    top: -120px;
    left: -120px;
}

.hero-blur-right {
    bottom: -120px;
    right: -120px;
}

@media (max-width: 1199px) {

    .hero-title {
        font-size: 58px;
    }

    .section-title,
    .future-title {
        font-size: 46px;
    }
}

@media (max-width: 991px) {

    .hero-main {
        padding-top: 40px;
    }

    .hero-title {
        font-size: 46px;
        letter-spacing: -1px;
    }

    .section-title,
    .future-title {
        font-size: 40px;
    }

    .future-box {
        padding: 50px 30px;
    }

    .footer-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {

    .hero-title {
        font-size: 38px;
    }

    .hero-description,
    .section-description,
    .future-description {
        font-size: 16px;
    }

    .section-main {
        padding: 80px 0;
    }

    .section-title,
    .future-title {
        font-size: 32px;
    }

    .channels-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .hero-dashboard-card {
        padding: 28px;
    }

    .btn-lg-custom {
        width: 100%;
    }
}

.footer-main {
    padding: 0 0 70px;
}

.footer-cta-box {
    padding: 70px;
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(28, 5, 245, 0.22), rgba(8, 10, 24, 0.96)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
}

.footer-cta-blur {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgb(28 5 245);
    filter: blur(140px);
    opacity: 0.22;
}

.footer-cta-blur-left {
    top: -140px;
    left: -100px;
}

.footer-cta-blur-right {
    right: -120px;
    bottom: -160px;
}

.footer-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.footer-title {
    margin-top: 30px;
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -3px;
    max-width: 760px;
}

.footer-description {
    margin-top: 28px;
    max-width: 620px;
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
}

.footer-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 22px;
}

.footer-demo-button {
    width: 100%;
    min-height: 110px;
    border-radius: 34px;
    padding: 28px 34px;
    background: linear-gradient(135deg, rgb(28 5 245), rgb(70 54 255));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 30px 70px rgba(28, 5, 245, 0.4);
    transition: all 0.25s ease;
}

.footer-demo-button:hover {
    transform: translateY(-4px) scale(1.01);
    color: #fff;
}

.footer-demo-icon {
    min-width: 74px;
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.footer-telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.footer-telegram-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(28, 5, 245, 0.3);
    color: #fff;
}

@media (max-width: 1199px) {

    .footer-title {
        font-size: 52px;
    }
}

@media (max-width: 991px) {

    .footer-cta-box {
        padding: 45px 30px;
    }

    .footer-title {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .footer-actions {
        align-items: stretch;
    }
}

@media (max-width: 767px) {

    .footer-title {
        font-size: 34px;
    }

    .footer-description {
        font-size: 16px;
    }

    .footer-demo-button {
        min-height: 90px;
        padding: 22px 24px;
        font-size: 24px;
        border-radius: 26px;
    }

    .footer-demo-icon {
        min-width: 58px;
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 20px;
    }
}

.section-enterprise {
    position: relative;
}

.enterprise-box {
    padding: 70px;
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(28, 5, 245, 0.08), rgba(8, 10, 24, 0.98)),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
}

.enterprise-blur {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgb(28 5 245);
    filter: blur(140px);
    opacity: 0.16;
}

.enterprise-blur-left {
    top: -120px;
    left: -120px;
}

.enterprise-blur-right {
    right: -120px;
    bottom: -160px;
}

.enterprise-title {
    margin-top: 28px;
    font-size: 58px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2px;
    max-width: 760px;
}

.enterprise-description {
    margin-top: 28px;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.9;
}

.enterprise-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 42px;
}

.enterprise-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.enterprise-feature-icon {
    min-width: 64px;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(28, 5, 245, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.enterprise-feature-title {
    font-size: 22px;
    font-weight: 700;
}

.enterprise-feature-description {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.8;
}

.enterprise-clients-card {
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.enterprise-clients-label {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 28px;
}

.enterprise-client-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.enterprise-client-item + .enterprise-client-item {
    margin-top: 18px;
}

.enterprise-client-logo {
    min-width: 62px;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgb(28 5 245), rgb(67 50 255));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 14px 35px rgba(28, 5, 245, 0.35);
}

.enterprise-client-name {
    font-size: 20px;
    font-weight: 700;
}

.enterprise-client-description {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.enterprise-contact-button {
    width: 100%;
    min-height: 74px;
    margin-top: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgb(28 5 245), rgb(61 44 255));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 18px 45px rgba(28, 5, 245, 0.3);
    transition: all 0.25s ease;
}

.enterprise-contact-button:hover {
    transform: translateY(-3px);
    color: #fff;
}

@media (max-width: 1199px) {

    .enterprise-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {

    .enterprise-box {
        padding: 45px 30px;
    }

    .enterprise-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {

    .enterprise-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .enterprise-description,
    .enterprise-feature-description {
        font-size: 16px;
    }

    .enterprise-feature {
        flex-direction: column;
    }

    .enterprise-clients-card {
        padding: 24px;
    }
}