/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0B0D15;
    color: #E5E7EB;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Badge ===== */
.badge {
    display: inline-block;
    background: rgba(79, 70, 229, 0.15);
    color: #818CF8;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

/* ===== Header ===== */
.header {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo span {
    background: linear-gradient(135deg, #E5E7EB 0%, #9CA3AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #E5E7EB;
}

/* ===== Hero ===== */
.hero {
    padding: 70px 0 90px;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content .badge {
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #4F46E5 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: #9CA3AF;
    max-width: 460px;
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #4F46E5;
    color: #fff;
}
.btn-primary:hover {
    background: #4338CA;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #E5E7EB;
    border-color: rgba(255, 255, 255, 0.08);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: #E5E7EB;
    border-color: rgba(255, 255, 255, 0.12);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero__stats {
    display: flex;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__stats div {
    font-size: 0.85rem;
    color: #9CA3AF;
}

.hero__stats span {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #E5E7EB;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cloud-icon svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

/* ===== Features ===== */
.features {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section-header .badge {
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-header p {
    color: #9CA3AF;
    font-size: 1.05rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(79, 70, 229, 0.2);
    transform: translateY(-4px);
}

.feature-card__icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #9CA3AF;
}

/* ===== Pricing ===== */
.pricing {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.popular {
    border-color: rgba(79, 70, 229, 0.4);
    background: rgba(79, 70, 229, 0.04);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #4F46E5;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card .price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #9CA3AF;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 0 0 28px;
    padding: 0;
    font-size: 0.9rem;
    color: #D1D5DB;
}

.pricing-card ul li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 20px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copy {
    font-size: 0.85rem;
    color: #6B7280;
    margin-top: 4px;
}

.footer__links {
    display: flex;
    gap: 28px;
}

.footer__links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: #E5E7EB;
}

/* ===== Адаптив ===== */
@media (max-width: 968px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__buttons {
        justify-content: center;
    }
    .hero__stats {
        justify-content: center;
    }
    .features__grid,
    .pricing__grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 640px) {
    .header__inner {
        flex-direction: column;
        gap: 14px;
    }
    .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .features__grid,
    .pricing__grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: none;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero__stats {
        gap: 20px;
        flex-wrap: wrap;
    }
}