@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
    unicode-range: U +0460 -052F, U +1C80 -1C8A, U +20B4, U +2DE0 -2DFF, U + A640-A69F, U + FE2E-FE2F;
}
body {
    font-family: Inter, sans-serif;
    margin: 0;
    color: #3e4348;
    background: transparent;
}

header {
    text-align: center;
    padding: 80px 20px 0px;
    color: #3e4348;
}

header h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

header p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

section {
    padding: 0px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: left;
    color: #3e4348;
}
.description {
    font-size: 20px;
    color: green;
}
.bg-block {
    position: relative;
    width: 100%;
    height: 100%;
    background: url("bg.png") center top / 100% auto repeat-y;
}

.bg-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5); /* прозрачность 0.5 */
    z-index: 1;
}
.bg-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}
.card {
    /*background: transparent;*/
    padding: 30px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.05);*/
    margin-bottom: 30px;
}

/*.card div {*/
/*    width: 50%;*/
/*}*/

.card div h2 {
    margin-bottom: 15px;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review {
    min-width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

.review p {
    font-style: italic;
}

.review h4 {
    margin-top: 15px;
}

.buttons {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 50px;
}

button {
    padding: 10px 15px;
    border: none;
    background: #4facfe;
    color: white;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 6px;
}
.cta-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
    letter-spacing: 0.3px;
}

/* Hover эффект */
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.45);
}

/* Нажатие */
.cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Фокус (доступность) */
.cta-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.4);
}
.stats-section {
    padding: 60px 20px;
    background: transparent;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-card {
    background: #f5f7fa;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    text-align: center;
    min-width: 160px;
    flex: 1 1 150px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
    font-size: 1.5em;
    font-weight: bold;
}
.offer {
    padding: 0 15px;
}
.pricing {
    background: transparent;
    font-family: Inter, system-ui, -apple-system, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-subtitle {
    color: #64748b;
    margin-bottom: 50px;
    font-size: 18px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    position: relative;
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.popular {
    border: 2px solid #22c55e;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-desc {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 25px;
}

.price {
    margin-bottom: 25px;
}

.amount {
    font-size: 42px;
    font-weight: 700;
}

.period {
    color: #64748b;
    margin-left: 6px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.features li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.btn:hover {
    background: #f1f5f9;
}

.btn.primary {
    background: #22c55e;
    color: #fff;
    border: none;
}

.btn.primary:hover {
    background: #16a34a;
}












/* Overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

/* Контент */
.modal-content {
    background: transparent;
    /*width: 95%;*/
    /*max-width: 330px;*/
    /*max-height: 315px;*/
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.2s ease;
}

/* Кнопка закрытия */
.close-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 22px;
    border: none;
    background: none;
    cursor: pointer;
}

/* Анимация */
@keyframes fadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .popular {
        transform: none;
    }
    .card {
        grid-template-columns: 1fr;
    }
}