/* business-landing.css */

.business-landing {
    width: 1440px;
    min-height: 100vh;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background-color: #544864;
    color: white;
}

.btn-primary:hover {
    background-color: #3e354a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(84, 72, 100, 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

/* Заголовки секций */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #544864;
    text-align: center;
    margin-bottom: 16px;
}

.section-title-left {
    text-align: left;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

/* Hero секция */
.hero {
    padding: 10px 0 10px;
    background: linear-gradient(135deg, #fef7f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*gap: 10px;*/
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: #EB826B20;
    color: #EB826B;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #262825;
    margin-bottom: 24px;
}

.hero-title-accent {
    color: #EB826B;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.5;
}

.hero-buttons {
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 16px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #544864;
}

.hero-stat-label {
    font-size: 14px;
    color: #93A2AB;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 2px;
    box-shadow: 0 25px 50px rgba(84, 72, 100, 0.15);
}

/* Проблемы */
.problems {
    padding: 80px 0;
    background-color: #ffffff;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.problem-card {
    background: #f9f9f9;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(84, 72, 100, 0.1);
}

.problem-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-white {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.problem-title {
    font-size: 18px;
    font-weight: 700;
    color: #262825;
    margin-bottom: 12px;
}

.problem-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Решение */
.solution {
    padding: 80px 0;
    background-color: #f7f7f7;
}

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

.solution-highlight {
    color: #EB826B;
}

.solution-text {
    font-size: 18px;
    color: #666;
    margin: 24px 0 32px;
    line-height: 1.5;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.solution-feature-icon {
    width: 28px;
    height: 28px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

.solution-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: #262825;
    margin-bottom: 4px;
}

.solution-feature p {
    font-size: 14px;
    color: #666;
}

.solution-img {
    width: 100%;
    border-radius:  2px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Как это работает (исправлено: иконки с фоном) */
.how-it-works {
    padding: 80px 0;
    background-color: #ffffff;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background: #f9f9f9;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(84, 72, 100, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #EB826B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.step-card-icon-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.step-card-icon-bg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-white {
    width: 44px;
    height: 44px;
    filter: brightness(0) invert(1);
}

.step-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #544864;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.step-arrow-large {
    font-size: 32px;
    color: #EB826B;
    font-weight: 300;
}

/* Функции */
.features {
    padding: 80px 0;
    background-color: #f7f7f7;
}

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

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(84, 72, 100, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #262825;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Цены (один тариф) */
.pricing {
    padding: 80px 0;
    background-color: #ffffff;
}





.pricing-features-single {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.pricing-features-single li {
    padding: 8px 0;
    font-size: 15px;
    color: #262825;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pricing-note {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    background: #f9f9f9;
    padding: 24px 32px;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-note-icon {
    flex-shrink: 0;
}

.gift-icon {
    width: 28px;
    height: 28px;
}

.pricing-note-text {
    font-size: 16px;
    color: #544864;
}

.pricing-note-text strong {
    color: #EB826B;
}

/* Аудитория бизнес */
.audience-business {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.audience-business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.audience-business-card {
    background: white;
    border-radius: 24px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-business-card:hover {
    transform: translateY(-5px);
    background-color: #544864;
}

.audience-business-card:hover h4,
.audience-business-card:hover p {
    color: white;
}

.audience-business-card:hover .audience-icon-img {
    filter: brightness(0) invert(1);
}

.audience-business-icon {
    margin-bottom: 20px;
}

.audience-icon-img {
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

.audience-business-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #262825;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.audience-business-card p {
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

/* Отзывы бизнес */
.testimonials-business {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-business-card {
    background: #f9f9f9;
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(84, 72, 100, 0.1);
}

.testimonial-business-text {
    font-size: 16px;
    color: #262825;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-business-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-business-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.testimonial-business-name {
    font-weight: 700;
    color: #544864;
}

.testimonial-business-role {
    font-size: 12px;
    color: #93A2AB;
}

/* CTA */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #544864 0%, #3e354a 100%);
}

.cta-container {
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

.cta-buttons {
    margin-bottom: 20px;
}

.cta .btn-primary {
    background-color: #EB826B;
}

.cta .btn-primary:hover {
    background-color: #d96b52;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Адаптивность */
@media screen and (max-width: 1440px) {
    .business-landing {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }

    .problems-grid,
    .features-grid,
    .audience-business-grid,
    .testimonials-business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow-large {
        transform: rotate(90deg);
    }

    .pricing-features-single {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hero-container,
    .solution-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .section-title-left {
        text-align: center;
    }

    .solution-feature {
        text-align: left;
    }

    .problems-grid,
    .features-grid,
    .audience-business-grid,
    .testimonials-business-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-single {
        padding: 32px 24px;
    }

    .pricing-price-single {
        font-size: 44px;
    }

    .pricing-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    .step-card {
        min-width: auto;
        width: 100%;
    }

    .pricing-price-single {
        font-size: 36px;
    }

    .pricing-currency {
        font-size: 24px;
    }
}

.icon-white-small {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}


/* Персональная страница */
.personal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.personal-page-img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(84, 72, 100, 0.1);
}

.personal-page-text {
    font-size: 18px;
    color: #666;
    margin: 24px 0 32px;
    line-height: 1.5;
}

.personal-page-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.personal-page-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.personal-page-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.personal-page-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: #262825;
    margin-bottom: 6px;
}

.personal-page-feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.personal-page-code {
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 13px;
    color: #EB826B;
}

@media screen and (max-width: 768px) {
    .personal-page-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .personal-page-feature {
        text-align: left;
    }
}


/* Добавить в конец файла business-landing.css */

/* Основная цена */
.pricing-main {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-price-large {
    font-size: 64px;
    font-weight: 800;
    color: #544864;
    line-height: 1.2;
}

.pricing-price-caption {
    font-size: 20px;
    color: #93A2AB;
    margin-top: 8px;
}

.pricing-discount-note {
    font-size: 14px;
    color: #EB826B;
    margin-top: 12px;
}

/* Детали тарификации */
.pricing-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.pricing-detail-item {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-detail-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(84, 72, 100, 0.1);
}

.pricing-detail-value {
    font-size: 28px;
    font-weight: 800;
    color: #544864;
    margin-bottom: 8px;
}

.pricing-detail-label {
    font-size: 14px;
    color: #262825;
    font-weight: 500;
}

.pricing-detail-hint {
    font-size: 12px;
    color: #93A2AB;
    margin-top: 8px;
}

/* Блок возможностей тарифа */
.pricing-features-block {
    background: white;
    border-radius: 32px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(84, 72, 100, 0.08);
    border: 1px solid #eaeaea;
}

.pricing-features-title {
    font-size: 24px;
    font-weight: 700;
    color: #544864;
    text-align: center;
    margin-bottom: 32px;
}

.pricing-features-single {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
    margin: 0;
    padding: 0;
}

.pricing-features-single li {
    padding: 8px 0;
    font-size: 15px;
    color: #262825;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Адаптивность для новых блоков */
@media screen and (max-width: 1024px) {
    .pricing-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-features-single {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .pricing-price-large {
        font-size: 48px;
    }

    .pricing-details {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-features-block {
        padding: 24px;
    }

    .pricing-features-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .pricing-price-large {
        font-size: 40px;
    }

    .pricing-detail-value {
        font-size: 24px;
    }
}


.pricing-gifts {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pricing-gift-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: #f9f9f9;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-gift-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(84, 72, 100, 0.1);
}

.pricing-gift-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pricing-gift-text {
    text-align: center;
}

.pricing-gift-text strong {
    display: block;
    font-size: 18px;
    color: #544864;
    margin-bottom: 8px;
}

.pricing-gift-text span {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .pricing-gifts {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pricing-gift-item {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
    }

    .pricing-gift-icon {
        width: 56px;
        height: 56px;
    }
}