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

:root {
    --bg: #050608;
    --bg-soft: #0d0f14;
    --panel: rgba(22, 24, 31, 0.92);
    --panel-soft: rgba(255, 255, 255, 0.04);
    --line: rgba(255, 255, 255, 0.08);
    --text: #f7f8fb;
    --muted: #a7adbb;
    --orange: #ff6428;
    --orange-2: #ff854f;
    --blue-glow: rgba(33, 104, 255, 0.34);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 20%, rgba(21, 79, 255, 0.16), transparent 24%),
        radial-gradient(circle at 90% 16%, rgba(255, 100, 40, 0.18), transparent 18%),
        linear-gradient(180deg, #030405 0%, #080a0f 100%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(4, 5, 7, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--orange));
    color: #111;
}

.brand-name {
    font-size: 1rem;
    font-weight: 800;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    color: var(--muted);
    font-weight: 500;
    transition: 0.25s ease;
}

.main-nav a:hover {
    color: #fff;
}

.nav-login {
    padding: 0;
}

.nav-btn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: 0.3s ease;
}

.nav-btn,
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    box-shadow: 0 14px 34px rgba(255, 100, 40, 0.22);
}

.nav-btn:hover,
.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #12141a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    margin: 5px 0;
}

.hero {
    position: relative;
    padding: 72px 0 56px;
    overflow: hidden;
}

.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.5;
}

.hero-blur-left {
    width: 260px;
    height: 260px;
    left: -80px;
    top: 140px;
    background: var(--blue-glow);
}

.hero-blur-right {
    width: 260px;
    height: 260px;
    right: -60px;
    top: 80px;
    background: rgba(255, 100, 40, 0.28);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.hero-badge,
.section-tag {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e8edf8;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-badge {
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin-bottom: 18px;
    max-width: 760px;
}

.hero-content p {
    color: var(--muted);
    max-width: 680px;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hero-stat {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.hero-stat span {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-card {
    width: 100%;
    max-width: 560px;
    border-radius: 32px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.dashboard-top {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.dashboard-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 16px;
}

.dashboard-sidebar,
.mini-card,
.big-panel,
.small-panel,
.line {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.dashboard-sidebar {
    min-height: 340px;
}

.dashboard-main {
    display: grid;
    gap: 14px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mini-card {
    min-height: 88px;
}

.card-orange {
    background: linear-gradient(180deg, rgba(255, 100, 40, 0.28), rgba(255, 100, 40, 0.08));
}

.dashboard-panels {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px;
}

.big-panel,
.small-panel {
    min-height: 192px;
}

.dashboard-lines {
    display: grid;
    gap: 12px;
}

.line {
    min-height: 24px;
}

.line.short {
    width: 70%;
}

.floating-box {
    position: absolute;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(17,18,22,0.92);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.floating-box span {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
    margin-bottom: 4px;
}

.floating-box strong {
    font-size: 1rem;
}

.floating-one {
    left: 0;
    bottom: 70px;
}

.floating-two {
    right: 0;
    top: 84px;
}

.counter-strip {
    padding: 16px 0 24px;
}

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

.counter-item {
    padding: 24px;
    border-top: 1px solid rgba(255, 100, 40, 0.35);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.counter-item strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 6px;
}

.counter-item span {
    color: var(--muted);
}

.features-section,
.pricing-section,
.faq-section {
    padding: 92px 0;
}

.features-section,
.pricing-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
}

.benefits-section {
    padding: 92px 0;
}

.stats-section {
    padding: 0 0 46px;
}

.section-head {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-head.center {
    text-align: center;
    margin-inline: auto;
}

.section-head h2 {
    font-size: clamp(1.9rem, 4vw, 3.3rem);
    line-height: 1.08;
    margin-top: 14px;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.section-head p {
    color: var(--muted);
}

.feature-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card,
.price-card,
.faq-item,
.benefit-card,
.cta-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 26px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto -20px -30px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,100,40,0.18), transparent 65%);
}

.feature-number {
    color: var(--orange);
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 1.24rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.benefits-content p {
    color: var(--muted);
    margin-top: 14px;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.benefit-card {
    padding: 24px;
    border-radius: 24px;
    min-height: 180px;
}

.benefit-card h3 {
    font-size: 1.18rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--muted);
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mini-stat {
    padding: 18px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mini-stat strong {
    display: block;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 8px;
}

.mini-stat span {
    color: var(--muted);
}

.price-card {
    position: relative;
    padding: 28px;
    border-radius: 28px;
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.price-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.price {
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
}

.price-card ul {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.price-card li {
    position: relative;
    padding-left: 22px;
    color: #dde2ed;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.price-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 14px 18px;
    border-radius: 16px;
    background: #1a1d24;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 700;
}

.featured {
    border-color: rgba(255,100,40,0.35);
    box-shadow: 0 22px 60px rgba(255,100,40,0.14);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,100,40,0.15);
    color: #ffd1bf;
    font-size: 0.82rem;
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 18px;
    max-width: 920px;
    margin-inline: auto;
}

.faq-item {
    padding: 22px 24px;
    border-radius: 22px;
}

.faq-item h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.faq-item p {
    color: var(--muted);
}

.cta-section {
    padding: 0 0 72px;
}

.cta-box {
    padding: 36px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 10px;
}

.cta-box p {
    color: var(--muted);
}

.site-footer {
    padding: 34px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 24px;
    padding-bottom: 22px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 12px;
}

.site-footer p,
.site-footer li a {
    color: var(--muted);
}

.site-footer ul {
    display: grid;
    gap: 10px;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    text-align: center;
    color: var(--muted);
}

@media (max-width: 1100px) {
    .hero-grid,
    .feature-grid,
    .pricing-grid,
    .counter-grid,
    .mini-stats,
    .footer-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 18px;
        background: rgba(11,12,15,0.98);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

    .main-nav.show {
        display: flex;
    }

    .hero-grid,
    .benefits-grid,
    .benefit-cards,
    .feature-grid,
    .pricing-grid,
    .counter-grid,
    .mini-stats,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 56px;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        min-height: 72px;
    }

    .dashboard-cards,
    .dashboard-panels {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .floating-one,
    .floating-two {
        position: static;
        margin-top: 14px;
    }
}

@media (max-width: 576px) {
    .container {
        width: min(100% - 20px, var(--container));
    }

    .nav-wrap {
        min-height: 76px;
    }

    .hero-content h1 {
        letter-spacing: -0.03em;
    }

    .btn,
    .nav-btn {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .feature-card,
    .price-card,
    .faq-item,
    .benefit-card,
    .cta-box,
    .dashboard-card {
        border-radius: 22px;
    }

    .features-section,
    .pricing-section,
    .faq-section,
    .benefits-section {
        padding: 72px 0;
    }

    .mini-stat strong {
        font-size: 2.4rem;
    }
}