/* Основная двухколоночная секция */
.main-two-column-section {
    padding: 100px 20px 100px 20px;
    background-color: #f8f9fa;
    font-family: 'Rubik', sans-serif;
}

.two-column-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Левая колонка: изображение и заголовок */
.left-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: sticky;
    top: 60px;
    height: fit-content;
}

.hero-image-section {
    border-radius: 20px;
    padding: 60px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 100%;
    min-height: 500px;
}

.hero-image-section:hover {
    transform: translateY(-5px);
}

/* Блок "Почему мы?" */
.why-us-section {
    margin-top: 20px;
    padding: 25px;
    /* margin-bottom: 180px; */
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-us-section:hover {
    transform: translateY(-3px);
}

.why-us-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.why-us-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #F97316;
    border-radius: 2px;
}

.why-us-content {
    display: block;
}

.why-us-text-block {
    font-family: 'Rubik', sans-serif;
    color: #333;
    line-height: 1.6;
}

.why-us-text-block p {
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 400;
    color: #555;
    text-align: justify;
    line-height: 1.7;
}

.why-us-text-block .highlight {
    color: #F97316;
    font-weight: 600;
    background: rgba(249, 115, 22, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.why-us-text-block .highlight:hover {
    background: rgba(249, 115, 22, 0.2);
    transform: scale(1.02);
}

.why-us-text-block p:last-child {
    margin-bottom: 0;
}

/* Галерея внутри блока "Почему мы?" */
.why-us-gallery {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: block;
}

/* FAQ-подобные акции */
.faq-offers-section {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-offers-section:hover {
    transform: translateY(-3px);
}

.faq-offers-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-offer-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

.faq-offer-item:hover {
    border-color: #F97316;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

.faq-offer-header {
    padding: 16px 20px 16px 20px;
    background: #f9fafb;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    padding-right: 50px;
}

.faq-offer-header:hover {
    background: #fef3c7;
}

.faq-offer-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #F97316;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-offer-item.active .faq-offer-header::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-offer-item.active .faq-offer-header {
    background: #fef3c7;
}

.faq-offer-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.faq-offer-question {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.faq-offer-content {
    padding: 0 20px;
    background-color: white;
    border-top: 1px solid #e5e7eb;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    opacity: 0;
}

.faq-offer-item.active .faq-offer-content {
    padding: 20px;
    max-height: 500px;
    opacity: 1;
}

.faq-offer-content p {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.faq-offer-content p strong {
    color: #F97316;
    font-weight: 600;
}

.faq-offer-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.benefit-item {
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #22C55E;
    background-color: rgba(34, 197, 94, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: rgba(34, 197, 94, 0.2);
    transform: scale(1.05);
}

/* Блоки с ценами */
.pricing-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-block {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.pricing-block-title {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #F97316;
}

.logistics-block .pricing-block-title,
.logistics-ozon-block .pricing-block-title {
    border-bottom-color: #F97316;
}

/* Убрали цветные подчеркивания для заголовков */

.pricing-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}



/* Убрали цветные левые границы у элементов */

.pricing-item:hover {
    background-color: #fef3c7;
    transform: translateX(5px);
}

.item-name {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    flex: 1;
}

.item-price {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.full-price-button {
    text-align: center;
    margin-top: 10px;
}

.btn-view-all-price {
    display: inline-block;
    padding: 15px 30px;
    background-color: #F97316;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-view-all-price:hover {
    background-color: #EA580C;
    transform: translateY(-2px);
}

.hero-image-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-image-description {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-image-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rubik', sans-serif;
}

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

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

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Правая колонка: вся информация */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-section {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-section:hover {
    transform: translateY(-3px);
}

.info-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #F97316;
    border-radius: 2px;
}

/* Вертикальный список преимуществ */
.advantages-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advantage-info-card {
    padding: 20px;
    border-radius: 12px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.advantage-info-card:hover {
    background-color: #f0f1f3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.advantage-info-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    max-width: 80%;
}

.advantage-tag {
    font-size: 9px;
    font-weight: 600;
    font-style: italic;
    padding: 2px 5px;
    border-radius: 2px;
    text-transform: uppercase;
}

.advantage-tag.orange {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

.advantage-tag.yellow {
    color: #EAB308;
    background: rgba(234, 179, 8, 0.1);
}

.advantage-tag.green {
    color: #22C55E;
    background: rgba(34, 197, 94, 0.1);
}

.advantage-info-icon {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.advantage-info-icon svg {
    width: 32px;
    height: 32px;
    color: #F97316;
}

.advantage-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    text-align: center;
    margin: 10px 0;
}

.advantage-info-title span {
    color: #F97316;
}

.advantage-info-button {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    margin-top: 5px;
    align-self: center;
    display: inline-block;
}

.advantage-info-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #F97316;
    bottom: -2px;
    left: 0;
    transform: skewX(-15deg) rotate(-2deg);
    transition: all 0.2s ease-in-out;
    opacity: 0;
}

.advantage-info-card:hover .advantage-info-button::after {
    opacity: 1;
    background: #EA580C;
    height: 3px;
    bottom: -3px;
}

/* Секция с ценами */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.pricing-card {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    min-height: 200px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-card-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #F97316;
    padding-bottom: 10px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Rubik', sans-serif;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list span:first-child {
    font-weight: 400;
    color: #eee;
}

.pricing-list span:last-child {
    font-weight: 500;
    color: white;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .main-two-column-section {
        padding: 30px 15px 40px 15px;
    }

    .two-column-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .left-column {
        position: static;
        height: auto;
        max-height: none;
    }

    .hero-image-section {
        min-height: 400px;
        height: auto;
    }

    .why-us-section {
        margin-top: 30px;
    }

    .why-us-title {
        font-size: 20px;
    }

    .gallery-grid {
        gap: 12px;
    }

    .gallery-caption {
        font-size: 13px;
    }

    .why-us-text-block p {
        font-size: 14px;
        margin-bottom: 14px;
        line-height: 1.6;
    }

    .faq-offer-item {
        gap: 12px;
    }

    .faq-offer-header {
        padding: 14px 16px;
    }

    .faq-offer-question {
        font-size: 15px;
    }

    .faq-offer-content {
        padding: 16px;
    }

    .faq-offer-content p {
        font-size: 14px;
    }

    .benefit-item {
        font-size: 12px;
        padding: 5px 10px;
    }

    .pricing-blocks-container {
        gap: 15px;
    }

    .pricing-block {
        padding: 15px;
    }

    .pricing-block-title {
        font-size: 16px;
    }

    .pricing-item {
        padding: 10px 12px;
    }

    .item-name {
        font-size: 13px;
    }

    .item-price {
        font-size: 13px;
    }

    .hero-image-content h1 {
        font-size: 36px;
    }

    .hero-image-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .main-two-column-section {
        padding: 20px 15px 40px 15px;
    }

    .two-column-container {
        gap: 20px;
    }

    .left-column {
        position: static;
        height: auto;
        max-height: none;
    }

    .hero-image-section {
        padding: 40px 30px;
        min-height: 400px;
        height: auto;
    }

    .hero-image-content h1 {
        font-size: 28px;
    }

    .hero-image-description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-image-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
    }

    .info-section {
        padding: 25px 20px;
    }

    .info-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .advantage-info-card {
        padding: 15px;
    }

    .advantage-info-title {
        font-size: 16px;
    }

    .pricing-card {
        min-height: 180px;
    }

    .pricing-card-content {
        padding: 15px;
    }

    .pricing-card-title {
        font-size: 18px;
    }

    .pricing-list li {
        font-size: 14px;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .main-two-column-section {
        padding: 15px 10px 40px 10px;
    }

    .left-column {
        position: static;
        height: auto;
        max-height: none;
    }

    .hero-image-section {
        padding: 30px 20px;
        min-height: 350px;
        height: auto;
    }

    .why-us-section {
        margin-top: 25px;
        padding: 20px;
    }

    .why-us-title {
        font-size: 18px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-caption {
        font-size: 11px;
        padding: 15px 10px 10px;
    }

    .why-us-text-block p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .faq-offers-container {
        gap: 12px;
    }

    .faq-offer-header {
        padding: 12px 14px;
    }

    .faq-offer-question {
        font-size: 14px;
    }

    .faq-offer-content {
        padding: 14px;
    }

    .faq-offer-content p {
        font-size: 13px;
    }

    .faq-offer-benefits {
        gap: 8px;
    }

    .benefit-item {
        font-size: 11px;
        padding: 4px 8px;
    }

    .pricing-blocks-container {
        gap: 12px;
    }

    .pricing-block {
        padding: 12px;
    }

    .pricing-block-title {
        font-size: 15px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .pricing-item {
        padding: 8px 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .item-name {
        font-size: 12px;
    }

    .item-price {
        font-size: 12px;
        align-self: flex-end;
    }

    .btn-view-all-price {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-image-content h1 {
        font-size: 24px;
    }

    .hero-image-description {
        font-size: 15px;
    }

    .info-section {
        padding: 20px 15px;
    }

    .info-title {
        font-size: 20px;
    }

    .advantage-info-title {
        font-size: 15px;
    }

    .advantage-info-button {
        font-size: 14px;
    }

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

    .pricing-card {
        min-height: 160px;
    }

    .pricing-card-title {
        font-size: 16px;
    }

    .pricing-list li {
        font-size: 13px;
        padding: 5px 0;
    }
}

