:root {
    --primary-color: #fcbbd3;
    --primary-dark: #fbbbd3;
    --primary-light: #ffd5e3;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --section-padding: 60px 0;
    --bg-light: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons - увеличены и с КАПСОМ */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Header */
header {
    background-color: var(--primary-color);
    padding: 10px 0;
    position: relative;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

header h1 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 10px;
}

.tagline {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

/* Hero Section - улучшенная структура и компактность */
.hero {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    border-bottom: 1px solid #eee;
}

.hero-content {
    display: flex;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
    text-align: center;
}

.hero-description {
    margin-bottom: 10px;
}

.hero-description p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.hero-description .tagline {
    font-size: 22px;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* Уменьшение размеров изображений */
.hero-image {
    margin: 15px auto 10px;
    max-width: 350px;
    width: 100%;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

/* Ценовой бейдж */
.price-badge {
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    margin: 0 auto 10px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--primary-light);
}

.price-badge p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.price-badge span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.old-price {
    text-decoration: line-through;
    color: #999 !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    margin-right: 5px;
}

.price .old-price {
    font-size: 34px !important;
    vertical-align: middle;
}

.price-badge .small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 5px;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

/* Кастомные CSS иконки */
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-light);
    position: relative;
}

.icon-chart::before {
    content: '';
    width: 30px;
    height: 20px;
    background: #fbbbd3;
    position: relative;
    display: block;
    clip-path: polygon(0 100%, 30% 40%, 50% 70%, 70% 30%, 100% 100%);
}

.icon-target::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid #fbbbd3;
    border-radius: 50%;
    position: relative;
    display: block;
}

.icon-target::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #fbbbd3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-bolt::before {
    content: '';
    width: 20px;
    height: 30px;
    background: #fbbbd3;
    position: relative;
    display: block;
    clip-path: polygon(50% 0, 90% 40%, 60% 50%, 100% 100%, 40% 60%, 70% 50%, 30% 0);
}

.icon-reload::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid #fbbbd3;
    border-radius: 50%;
    border-right-color: transparent;
    position: relative;
    display: block;
    transform: rotate(45deg);
}

.icon-doc::before {
    content: '';
    width: 24px;
    height: 30px;
    border: 3px solid #fbbbd3;
    position: relative;
    display: block;
    border-radius: 2px;
}

.icon-doc::after {
    content: '';
    width: 14px;
    height: 2px;
    background: #fbbbd3;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 6px 0 var(--primary-dark), 0 12px 0 var(--primary-dark);
}

.icon-users::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #fbbbd3;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 18px;
}

.icon-users::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #fbbbd3;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 18px;
}

.icon-infinity::before {
    content: '';
    width: 30px;
    height: 15px;
    border: 3px solid #fbbbd3;
    border-top: none;
    position: relative;
    display: block;
    border-radius: 0 0 15px 15px;
    transform: rotate(90deg);
}

.icon-infinity::after {
    content: '';
    width: 30px;
    height: 15px;
    border: 3px solid #fbbbd3;
    border-bottom: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    border-radius: 15px 15px 0 0;
}

.icon-message::before {
    content: '';
    width: 30px;
    height: 22px;
    border: 3px solid #fbbbd3;
    position: relative;
    display: block;
    border-radius: 5px;
}

.icon-message::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fbbbd3;
    position: absolute;
    bottom: 10px;
    right: 15px;
}

.icon-hands::before {
    content: '';
    width: 15px;
    height: 15px;
    border: 3px solid #fbbbd3;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 13px;
}

.icon-hands::after {
    content: '';
    width: 15px;
    height: 15px;
    border: 3px solid #fbbbd3;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 13px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* How it works */
.how-it-works {
    padding: 25px 0;
    background-color: var(--white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.how-it-works-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.how-it-works-image {
    flex: 1;
    max-width: 60%;
    margin: 0 auto;
}

.how-it-works-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.how-it-works-steps {
    flex: 1;
}

.step {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text p {
    margin-bottom: 0;
    font-size: 18px;
}

/* Кнопка в разделе How it works */
.cta-center {
    text-align: center;
    margin-top: 30px;
}

/* Benefits */
.benefits {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.benefit-card:hover {
    transform: scale(1.05);
    border-bottom: 3px solid var(--primary-color);
}

/* Стили для номеров в блоке "что ты получаешь" */
.benefit-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 15px;
}

.benefit-card:hover .benefit-number {
    background-color: var(--primary-dark);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.benefit-card p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-dark);
}

/* For whom */
.for-whom {
    padding: var(--section-padding);
    background-color: var(--white);
}

.for-whom h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.audience-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.audience-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.audience-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.audience-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Demo */
.demo {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.demo h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.demo-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Обновленная карусель для видео */
.demo-carousel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
    position: relative;
}

.carousel-items {
    width: 80%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-navigation:first-child {
    left: 0;
}

.carousel-navigation:last-child {
    right: 0;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Видео контейнер с улучшенной кнопкой воспроизведения */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    display: block;
    cursor: pointer;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--primary-dark);
}

.play-btn:hover {
    background-color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.carousel-item {
    display: none;
}

.carousel-item.active {
    display: block;
}

.demo-caption {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 16px;
}

/* Testimonials - блок с отзывами */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--white);
    border-top: 1px solid #eee;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    max-width: 500px;
    border-radius: 15px;
    padding: 4px;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-dark);
}

.testimonial-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Pricing */
.pricing {
    padding: var(--section-padding);
    background-color: var(--white);
    text-align: center;
}

.pricing-card {
    background-color: var(--white);
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-color);
}

.pricing-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.price-features {
    margin-bottom: 30px;
    text-align: left;
}

.price-features p {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

/* Исправленные галочки */
.check-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    flex-shrink: 0;
}

.check-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 12px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    top: 3px;
    left: 7px;
}

/* Примечание о цене */
.price-note {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

/* FAQ */
.faq {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.faq-item:hover {
    border-bottom: 3px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* CTA */
.cta {
    padding: var(--section-padding);
    background-color: var(--white);
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Добавляю стили для блока комбо-предложения */
.combo-offer {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.combo-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.combo-card h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.combo-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #333;
}

.combo-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

/* Footer - обновленный */
footer {
    background-color: var(--bg-light);
    color: var(--text-light);
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-legal, .footer-contacts {
    flex: 1;
    min-width: 250px;
}

.footer-legal p, .footer-contacts p {
    margin-bottom: 8px;
    font-size: 14px;
}

footer a {
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

/* Responsive - улучшенная версия для мобильных устройств */
@media (max-width: 992px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .how-it-works-content {
        flex-direction: column;
    }
    
    .how-it-works-image {
        margin-bottom: 5px;
        max-width: 70%;
    }
    
    .carousel-items {
        width: 90%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-description .tagline {
        font-size: 20px;
    }
    
    .hero-description p {
        font-size: 16px;
    }
    
    .features h2, 
    .how-it-works h2, 
    .benefits h2, 
    .for-whom h2, 
    .demo h2,
    .testimonials h2,
    .pricing h2, 
    .combo-card h2,
    .faq h2, 
    .cta h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .section-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    /* Компактный вид для мобильных устройств */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    /* Компактный вид для блока бенефитов */
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
    
    /* Компактный вид для блока аудитории */
    .audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .audience-card {
        padding: 20px 15px;
    }
    
    .audience-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .audience-card p {
        font-size: 14px;
    }
    
    /* Компактный вид для FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .faq-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
    
    /* Корректировка видео-карусели */
    .play-btn {
        width: 60px;
        height: 60px;
    }
    
    .play-btn::after {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 18px solid var(--primary-dark);
    }
    
    /* Компактная нумерация для мобильных */
    .benefit-number {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .testimonials-grid {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 3px;
    }
    .combo-card {
        padding: 30px 20px;
    }
    
    .combo-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 3px 0 20px 0;
    }
    
    .price {
        font-size: 36px;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .step-text p {
        font-size: 14px;
    }
    .section-description {
        font-size: 14px;
    }
    .price-features p {
        font-size: 14px;
    }
    .price-note {
        font-size: 14px;
    }
    
    

    /* Еще более компактный вид для мобильных устройств */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    /* Дополнительные корректировки для блока с ценой */
    .pricing-card {
        padding: 30px 20px;
    }
    
    .check-icon {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
    
    .check-icon::before {
        width: 6px;
        height: 10px;
        top: 3px;
        left: 6px;
    }
    .combo-offer {
        padding: 0;
    }
}