/* ============================================================
   СТРАНИЦА ОБО МНЕ
   ============================================================ */

/* ===== HERO ===== */
.package-hero {
    position: relative;
    padding: 180px 0 100px;
    background:linear-gradient(135deg, #faf6f2 0%, #000000 50%, #e8ddd0 100%);
    overflow: hidden;
    color: white;
    text-align: center;
}

.package-hero::before,
.package-hero::after {
    display: none;
}

.package-hero__label {
    display: inline-block;
    padding: 8px 24px;
    background: rgb(187 168 153);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 24px;
    font-family: 'Open Sans Condensed', sans-serif;
}

.package-hero__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(36px, 6vw, 64px);
    color: white;
    margin: 0 0 20px;
    font-weight: 600;
    line-height: 1.1;
}

.package-hero__divider {
    width: 60px;
    height: 2px;
    background: var(--warm);
    margin: 24px auto;
}

.package-hero__text {
    font-size: 18px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.package-hero__price {
    display: inline-block;
    font-family: 'Cormorant', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--warm);
    font-weight: 600;
    margin-top: 24px;
}

/* ===== ЧТО ВХОДИТ / ОБО МНЕ ===== */
.package-includes {
    padding: 100px 0;
    background: var(--white);
}

.package-includes__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--main-color);
    text-align: center;
    margin: 0 0 60px;
    font-weight: 600;
}

.package-includes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.package-include {
    position: relative;
    padding: 40px 30px;
    background: var(--bg);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid transparent;
}

.package-include::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), var(--warm));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.package-include:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(59, 59, 59, 0.08);
}

.package-include:hover::before {
    transform: scaleX(1);
}

.package-include__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(59, 59, 59, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.package-include__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--main-color);
    transition: all 0.4s ease;
}

.package-include:hover .package-include__icon {
    background: var(--main-color);
    transform: scale(1.1);
}

.package-include:hover .package-include__icon svg {
    fill: var(--secondary);
}

.package-include__title {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    color: var(--main-color);
    margin: 0 0 12px;
    font-weight: 600;
}

.package-include__text {
    font-size: 14px;
    color: rgba(59, 59, 59, 0.6);
    line-height: 1.7;
    margin: 0;
}


/* ===== ТЕКСТОВЫЙ БЛОК ===== */
.package-text {
    padding: 80px 0;
    background: var(--cream);
}

.package-text__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.package-text__content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--main-color);
    margin-bottom: 24px;
}

.package-text__content p:last-child {
    margin-bottom: 0;
}


/* ===== О ВЕДУЩЕЙ (если нужна отдельная секция) ===== */
.package-about {
    padding: 100px 0;
    background: var(--bg);
}

.package-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.package-about__photo {
    position: relative;
}

.package-about__photo img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.package-about__photo::before {
    display: none;
}

.package-about__content {
    padding: 20px 0;
}

.package-about__label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 59, 59, 0.08);
    color: var(--main-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 15px;
    margin-bottom: 20px;
}

.package-about__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--main-color);
    margin: 0 0 24px;
    font-weight: 600;
    line-height: 1.2;
}

.package-about__text {
    font-size: 16px;
    color: rgba(59, 59, 59, 0.65);
    line-height: 1.9;
    margin: 0 0 16px;
}

.package-about__text:last-child {
    margin-bottom: 0;
}

.package-about__signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--cream-dark);
}

.package-about__signature-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--warm);
}

.package-about__signature-info {
    display: flex;
    flex-direction: column;
}

.package-about__signature-name {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    color: var(--main-color);
    font-weight: 600;
}

.package-about__signature-phone {
    font-size: 14px;
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.package-about__signature-phone:hover {
    color: var(--main-color);
}


/* ===== ГАЛЕРЕЯ ===== */
.package-gallery {
    padding: 100px 0;
    background: var(--white);
}

.package-gallery__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--main-color);
    text-align: center;
    margin: 0 0 16px;
    font-weight: 600;
}

.package-gallery__subtitle {
    font-size: 16px;
    color: rgba(59, 59, 59, 0.6);
    text-align: center;
    margin: 0 0 50px;
}

.package-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.package-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    aspect-ratio: 1;
}

.package-gallery__item:nth-child(3n+1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.package-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-gallery__item:hover img {
    transform: scale(1.08);
}

.package-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-gallery__item:hover::after {
    opacity: 1;
}


/* ===== CTA ===== */
.package-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.package-cta__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--secondary);
    margin: 0 0 16px;
    font-weight: 600;
    position: relative;
    text-align: center;
}

.package-cta__text {
    font-size: 18px;
    color: rgba(222, 216, 216, 0.7);
    max-width: 80%;
    margin: 0 auto 40px;
    position: relative;
    text-align: center;
}

.package-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--secondary);
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    font-family: inherit;
}

.package-cta__btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: var(--main-color);
}

.package-cta__btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


/* ===== АДАПТИВ ===== */
@media (max-width: 991px) {
    .package-about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .package-about__photo img {
        height: 400px;
    }

    .package-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-gallery__item:nth-child(3n+1) {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1;
    }
}

@media (max-width: 767px) {
    .package-hero {
        padding: 140px 0 80px;
    }

    .package-includes,
    .package-about,
    .package-gallery {
        padding: 70px 0;
    }

    .package-cta {
        padding: 60px 0;
    }

    .package-text {
        padding: 50px 0;
    }

    .package-includes__grid {
        grid-template-columns: 1fr;
    }

    .package-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .package-gallery__item:nth-child(3n+1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .package-about__photo img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .package-gallery__grid {
        grid-template-columns: 1fr;
    }

    .package-gallery__item:nth-child(3n+1) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ============================================================
   СТРАНИЦА КОНТАКТЫ
   ============================================================ */

/* ===== HERO SUBTITLE ===== */
.blog-article-hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
}


/* ===== КОНТАКТЫ ОСНОВНОЙ БЛОК ===== */
.contacts {
    padding: 100px 0;
    background: var(--white);
}

.contacts__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}


/* ===== ФОРМА ===== */
.contacts__form-wrapper {
    background: var(--bg);
    border-radius: var(--radius);
}

.contacts__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--main-color);
    margin: 0 0 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contacts__title svg {
    width: 24px;
    height: 24px;
    fill: var(--warm);
}

.contacts__form-desc {
    font-size: 15px;
    color: rgba(59, 59, 59, 0.6);
    margin: 0 0 30px;
    line-height: 1.6;
}

.contacts__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contacts__field {
    position: relative;
}

.contacts__field--full {
    grid-column: span 2;
}

.contacts__input-wrap {
    position: relative;
}

.contacts__input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: rgba(59, 59, 59, 0.3);
    transition: fill 0.3s ease;
    pointer-events: none;
}

.contacts__input-icon--top {
    top: 18px;
    transform: none;
}

.contacts__input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 1px solid rgba(59, 59, 59, 0.12);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--main-color);
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.contacts__input::placeholder {
    color: rgba(59, 59, 59, 0.4);
}

.contacts__input:focus {
    border-color: var(--warm);
    box-shadow: 0 0 0 3px rgba(187, 168, 153, 0.15);
}

.contacts__input:focus + .contacts__input-icon,
.contacts__input:focus ~ .contacts__input-icon {
    fill: var(--warm);
}

.contacts__input--textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 16px;
}

.contacts__input-wrap--textarea .contacts__input-icon {
    top: 18px;
    transform: none;
}

.contacts__error {
    display: block;
    font-size: 12px;
    color: #e74c3c;
    margin-top: 6px;
    min-height: 18px;
}

.contacts__submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-dark) 100%);
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    font-family: inherit;
    justify-content: center;
}

.contacts__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 59, 59, 0.25);
}

.contacts__submit-arrow {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contacts__trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.contacts__trust svg {
    width: 16px;
    height: 16px;
    fill: rgba(59, 59, 59, 0.3);
    flex-shrink: 0;
}

.contacts__trust span {
    font-size: 12px;
    color: rgba(59, 59, 59, 0.4);
}


/* ===== ИНФОРМАЦИЯ СПРАВА ===== */
.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts__card {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius);
    padding: 35px 30px;
    color: white;
}

.contacts__card-title {
    font-family: 'Cormorant', serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 8px;
}

.contacts__card-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.contacts__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.contacts__item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.contacts__item-icon {
    width: 48px;
    height: 48px;
    background: rgba(187, 168, 153, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contacts__item-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--warm);
}

.contacts__item-icon--wa {
    background: rgba(37, 211, 102, 0.12);
}

.contacts__item-icon--wa svg {
    fill: #25D366;
}

.contacts__item-icon--tg {
    background: rgba(0, 136, 204, 0.12);
}

.contacts__item-icon--tg svg {
    fill: #0088cc;
}

.contacts__item-icon--email {
    background: rgba(187, 168, 153, 0.15);
}

.contacts__item-icon--location {
    background: rgba(231, 76, 60, 0.1);
}

.contacts__item-icon--location svg {
    fill: #e74c3c;
}

.contacts__item-icon--time {
    background: rgba(52, 152, 219, 0.1);
}

.contacts__item-icon--time svg {
    fill: #3498db;
}

.contacts__item:hover .contacts__item-icon {
    transform: scale(1.1);
}

.contacts__item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contacts__item-label {
    font-size: 12px;
    color: rgba(59, 59, 59, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contacts__item-value {
    font-size: 15px;
    color: var(--main-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts__item-value:hover {
    color: var(--warm);
}

.contacts__item-value--text {
    font-weight: 400;
    color: rgba(59, 59, 59, 0.8);
}


/* ===== СОЦСЕТИ ===== */
.contacts__social {
    padding: 20px;
    background: var(--bg);
    border-radius: 14px;
}

.contacts__social-label {
    display: block;
    font-size: 13px;
    color: rgba(59, 59, 59, 0.5);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contacts__social-links {
    display: flex;
    gap: 12px;
}

.contacts__social-link {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contacts__social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--main-color);
    transition: all 0.3s ease;
}

.contacts__social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contacts__social-link:hover svg {
    fill: var(--warm);
}


/* ===== БЫСТРЫЕ КОНТАКТЫ ===== */
.contacts-quick {
    padding: 80px 0;
    background: var(--bg);
}

.contacts-quick__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--main-color);
    text-align: center;
    margin: 0 0 40px;
    font-weight: 600;
}

.contacts-quick__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contacts-quick__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
    background: white;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
}

.contacts-quick__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--warm);
}

.contacts-quick__item--wa:hover {
    border-color: #8533e2;
}

.contacts-quick__item--tg:hover {
    border-color: #0088cc;
}

.contacts-quick__item--callback {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-dark) 100%);
    color: white;
}

.contacts-quick__item--callback:hover {
    border-color: var(--main-color);
}

.contacts-quick__icon {
    width: 56px;
    height: 56px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contacts-quick__icon svg {
    width: 26px;
    height: 26px;
    fill: var(--main-color);
}

.contacts-quick__item--wa .contacts-quick__icon {
    background: rgba(37, 211, 102, 0.12);
}

.contacts-quick__item--wa .contacts-quick__icon svg {
    fill: #25D366;
}

.contacts-quick__item--tg .contacts-quick__icon {
    background: rgba(0, 136, 204, 0.12);
}

.contacts-quick__item--tg .contacts-quick__icon svg {
    fill: #0088cc;
}

.contacts-quick__item--callback .contacts-quick__icon {
    background: rgba(255, 255, 255, 0.15);
}

.contacts-quick__item--callback .contacts-quick__icon svg {
    fill: white;
}

.contacts-quick__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
}

.contacts-quick__item--callback .contacts-quick__label {
    color: white;
}

.contacts-quick__value {
    font-size: 12px;
    color: rgba(59, 59, 59, 0.5);
}

.contacts-quick__item--callback .contacts-quick__value {
    color: rgba(255, 255, 255, 0.7);
}


/* ===== FAQ ===== */
.contacts-faq {
    padding: 100px 0;
    background: var(--white);
}

.contacts-faq__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--main-color);
    text-align: center;
    margin: 0 0 50px;
    font-weight: 600;
}

.contacts-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contacts-faq__item {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 30px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.contacts-faq__item:hover {
    border-left-color: var(--warm);
    transform: translateX(6px);
}

.contacts-faq__question {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    color: var(--main-color);
    margin: 0 0 12px;
    font-weight: 600;
}

.contacts-faq__answer {
    font-size: 15px;
    color: rgba(59, 59, 59, 0.7);
    line-height: 1.7;
    margin: 0;
}


/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .contacts__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacts-quick__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts-faq__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .contacts {
        padding: 70px 0;
    }

    .contacts__form-wrapper {
        padding: 30px 20px;
    }

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

    .contacts__field--full {
        grid-column: span 1;
    }

    .contacts-quick {
        padding: 60px 0;
    }

    .contacts-quick__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .contacts-quick__item {
        padding: 20px 15px;
    }

    .contacts-faq {
        padding: 70px 0;
    }

    .contacts-faq__item {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .contacts-quick__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ПРАВАЯ КОЛОНКА — ПРОДАЮЩИЕ БЛОКИ
   ============================================================ */

/* ===== PROMO ===== */
.contacts-promo {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: var(--radius);
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.contacts-promo::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contacts-promo__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.contacts-promo__fire {
    width: 32px;
    height: 32px;
    animation: firePulse 2s ease-in-out infinite;
}

.contacts-promo__fire svg {
    width: 100%;
    height: 100%;
    fill: #e74c3c;
}

@keyframes firePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.contacts-promo__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--warm);
}

.contacts-promo__title {
    font-family: 'Cormorant', serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px;
    color: white;
}

.contacts-promo__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 20px;
}

.contacts-promo__text strong {
    color: var(--warm);
}

.contacts-promo__timer {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contacts-promo__timer-item {
    text-align: center;
}

.contacts-promo__timer-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--warm);
    line-height: 1;
}

.contacts-promo__timer-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contacts-promo__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--warm) 0%, #c4956a 100%);
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    justify-content: center;
}

.contacts-promo__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.contacts-promo__btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}


/* ===== WHY CHOOSE ===== */
.contacts-why {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 24px;
}

.contacts-why__title {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    color: var(--main-color);
    margin: 0 0 20px;
    font-weight: 600;
}

.contacts-why__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contacts-why__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contacts-why__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacts-why__icon svg {
    width: 20px;
    height: 20px;
}

.contacts-why--star {
    background: rgba(212, 165, 116, 0.15);
}

.contacts-why--star svg {
    fill: var(--warm);
}

.contacts-why--heart {
    background: rgba(231, 76, 60, 0.1);
}

.contacts-why--heart svg {
    fill: #e74c3c;
}

.contacts-why--shield {
    background: rgba(46, 204, 113, 0.1);
}

.contacts-why--shield svg {
    fill: #2ecc71;
}

.contacts-why--clock {
    background: rgba(52, 152, 219, 0.1);
}

.contacts-why--clock svg {
    fill: #3498db;
}

.contacts-why__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contacts-why__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
}

.contacts-why__desc {
    font-size: 12px;
    color: rgba(59, 59, 59, 0.5);
    line-height: 1.5;
}


/* ===== REVIEW ===== */
.contacts-review {
    background: linear-gradient(135deg, rgba(247, 232, 215, 0.5) 0%, rgba(241, 208, 185, 0.3) 100%);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 24px;
    border-left: 3px solid var(--warm);
}

.contacts-review__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.contacts-review__stars svg {
    width: 18px;
    height: 18px;
    fill: var(--warm);
}

.contacts-review__text {
    font-size: 14px;
    color: rgba(59, 59, 59, 0.85);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 16px;
}

.contacts-review__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contacts-review__photo {
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-review__photo svg {
    width: 20px;
    height: 20px;
    fill: var(--warm);
}

.contacts-review__info {
    display: flex;
    flex-direction: column;
}

.contacts-review__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--main-color);
}

.contacts-review__date {
    font-size: 11px;
    color: rgba(59, 59, 59, 0.4);
}


/* ===== ACHIEVEMENTS ===== */
.contacts-achievements {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid rgba(59, 59, 59, 0.08);
}

.contacts-achievements__title {
    font-family: 'Cormorant', serif;
    font-size: 18px;
    color: var(--main-color);
    margin: 0 0 20px;
    font-weight: 600;
    text-align: center;
}

.contacts-achievements__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contacts-achievements__item {
    text-align: center;
    padding: 16px 10px;
    background: var(--bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contacts-achievements__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.contacts-achievements__num {
    font-family: 'Cormorant', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--warm);
    line-height: 1;
    margin-bottom: 6px;
}

.contacts-achievements__text {
    font-size: 11px;
    color: rgba(59, 59, 59, 0.5);
    line-height: 1.4;
}


/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .contacts__inner {
        grid-template-columns: 1fr;
    }

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

    .contacts-promo {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .contacts__aside {
        grid-template-columns: 1fr;
    }

    .contacts-promo {
        grid-column: span 1;
    }

    .contacts-promo__timer {
        gap: 12px;
    }

    .contacts-achievements__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================================
   PRICES PAGE
   ============================================================ */

/* ===== HERO ===== */
.prices-hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
        padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prices-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(187, 168, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.prices-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--warm);
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.prices-hero__label svg {
    width: 16px;
    height: 16px;
    fill: var(--warm);
}

.prices-hero__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(36px, 6vw, 56px);
    color: white;
    margin: 0 0 20px;
    font-weight: 600;
}

.prices-hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.prices-hero__features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.prices-hero__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.prices-hero__feature svg {
    width: 20px;
    height: 20px;
    fill: var(--warm);
}


/* ===== НАВИГАЦИЯ ===== */
.prices-nav {
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
    z-index: 5;
}

.prices-nav__inner {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.prices-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--bg);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    box-sizing: border-box;
}

.prices-nav__link:hover {
    border-color: var(--warm);
    transform: translateY(-2px);
}

.prices-nav__link--popular {
    background: linear-gradient(135deg, rgba(187, 168, 153, 0.15) 0%, rgba(187, 168, 153, 0.05) 100%);
    border-color: var(--warm);
}

.prices-nav__badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--warm);
    color: var(--main-color);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.prices-nav__icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prices-nav__icon svg {
    width: 18px;
    height: 18px;
    fill: var(--warm);
}

.prices-nav__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--main-color);
    margin-right: 8px;
}

.prices-nav__price {
    font-size: 13px;
    color: rgba(59, 59, 59, 0.5);
}


/* ===== ПАКЕТЫ ===== */
.price-section {
    padding: 100px 20px;
    background: white;
}

.price-section--reverse {
    background: var(--bg);
}

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

.price-section--reverse .price-section__inner {
    direction: rtl;
}

.price-section--reverse .price-section__media,
.price-section--reverse .price-section__content {
    direction: ltr;
}


/* ===== МЕДИА ===== */
.price-section__media {
    position: sticky;
    top: 160px;
}

.price-section__image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 16px;
}

.price-section__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.price-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.price-section:hover .price-section__image img {
    transform: scale(1.05);
}

.price-section__image--premium {
    border: 3px solid var(--warm);
}

.price-section__overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.price-section__tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--warm);
    color: var(--main-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
}

.price-section__tag--premium {
    background: linear-gradient(135deg, #d4a574 0%, #c19a6b 100%);
    color: white;
}

.price-section__crown {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.price-section__crown svg {
    width: 26px;
    height: 26px;
    fill: var(--main-color);
}

.price-section__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.price-section__gallery-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.price-section__gallery-more {
    aspect-ratio: 1;
    background: rgba(187, 168, 153, 0.15);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.price-section__gallery-more:hover {
    background: rgba(187, 168, 153, 0.25);
}

.price-section__gallery-more span {
    font-size: 18px;
    font-weight: 700;
    color: var(--warm);
}

.price-section__gallery-more svg {
    width: 20px;
    height: 20px;
    fill: var(--warm);
    margin-top: 4px;
}


/* ===== КОНТЕНТ ===== */
.price-section__header {
    margin-bottom: 24px;
}

.price-section__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--warm);
    margin-bottom: 8px;
}

.price-section__title {
    font-family: 'Cormorant', serif;
    font-size: 42px;
    color: var(--main-color);
    margin: 0 0 16px;
    font-weight: 600;
}

.price-section__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-section__amount {
    font-family: 'Cormorant', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--warm);
}

.price-section__currency {
    font-size: 20px;
    color: rgba(59, 59, 59, 0.5);
}

.price-section__descr {
    font-size: 16px;
    color: rgba(59, 59, 59, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}


/* ===== ФУНКЦИИ ===== */
.price-section__includes {
    margin-bottom: 30px;
}

.price-section__includes-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 20px;
}

.price-section__includes-title svg {
    width: 20px;
    height: 20px;
    fill: var(--warm);
}

.price-section__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-section__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.price-section__feature:hover {
    background: rgba(187, 168, 153, 0.1);
    transform: translateX(4px);
}

.price-section__feature--highlight {
    background: rgba(187, 168, 153, 0.08);
    border: 1px solid rgba(187, 168, 153, 0.2);
}

.price-section__feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(46, 204, 113, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-section__feature-icon svg {
    width: 16px;
    height: 16px;
    fill: #2ecc71;
}

.price-section__feature--highlight .price-section__feature-icon {
    background: rgba(187, 168, 153, 0.2);
}

.price-section__feature--highlight .price-section__feature-icon svg {
    fill: var(--warm);
}

.price-section__feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-section__feature-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
}

.price-section__feature-desc {
    font-size: 12px;
    color: rgba(59, 59, 59, 0.5);
}


/* ===== СРАВНЕНИЕ ===== */
.price-section__compare {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(187, 168, 153, 0.08);
    border-radius: 10px;
    margin-bottom: 24px;
}

.price-section__compare-label {
    font-size: 13px;
    color: rgba(59, 59, 59, 0.6);
}

.price-section__compare-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--warm);
}

.price-section__compare-note {
    font-size: 12px;
    color: rgba(59, 59, 59, 0.4);
}


/* ===== БОНУС ===== */
.price-section__bonus {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    margin-bottom: 24px;
}

.price-section__bonus-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-section__bonus-icon svg {
    width: 22px;
    height: 22px;
    fill: #f39c12;
}

.price-section__bonus-content {
    display: flex;
    flex-direction: column;
}

.price-section__bonus-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f39c12;
}

.price-section__bonus-desc {
    font-size: 14px;
    color: var(--main-color);
    font-weight: 500;
}


/* ===== КНОПКИ ПАКЕТОВ ===== */
.price-section__actions {
    display: flex;
    gap: 14px;
}

.price-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.price-section__btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.price-section__btn--primary {
    background: var(--main-color);
    color: var(--secondary);
}

.price-section__btn--primary:hover {
    background: var(--warm);
    color: var(--main-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(187, 168, 153, 0.4);
}

.price-section__btn--premium {
    background: linear-gradient(135deg, #d4a574 0%, #c19a6b 100%);
    color: white;
}

.price-section__btn--premium:hover {
    background: linear-gradient(135deg, #c19a6b 0%, #a8855a 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(187, 168, 153, 0.5);
}

.price-section__btn--secondary {
    background: white;
    color: var(--main-color);
    border: 2px solid rgba(59, 59, 59, 0.15);
}

.price-section__btn--secondary:hover {
    border-color: var(--warm);
    color: var(--warm);
    transform: translateY(-3px);
}


/* ===== СРАВНИТЕЛЬНАЯ ТАБЛИЦА ===== */
.price-compare {
    padding: 100px 0;
    background: var(--bg);
}

.price-compare__title {
    font-family: 'Cormorant', serif;
    font-size: 36px;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.price-compare__table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.price-compare__table {
    width: 100%;
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.price-compare__table thead th {
    padding: 50px 20px 20px;
    background: var(--main-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.price-compare__table thead th:first-child {
    text-align: left;
    background: rgba(0, 0, 0, 0.1);
}

.price-compare__pack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.price-compare__pack-name {
    font-family: 'Cormorant', serif;
    font-size: 18px;
    font-weight: 600;
}

.price-compare__pack-price {
    font-size: 13px;
    opacity: 0.8;
}

.price-compare__pack--best {
    position: relative;
}

.price-compare__pack-badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warm);
    color: var(--main-color);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.price-compare__table tbody tr {
    transition: background 0.3s ease;
}

.price-compare__table tbody tr:hover {
    background: rgba(187, 168, 153, 0.05);
}

.price-compare__table tbody td {
    padding: 18px 20px;
    font-size: 14px;
    color: var(--main-color);
    text-align: center;
    border-bottom: 1px solid rgba(59, 59, 59, 0.05);
}

.price-compare__table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    background: rgba(59, 59, 59, 0.02);
}

.price-check,
.price-cross {
    width: 22px;
    height: 22px;
    margin: 0 auto;
}

.price-compare__plus {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(187, 168, 153, 0.2);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--warm);
}

.price-compare__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.price-compare__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 2px solid rgba(59, 59, 59, 0.15);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.price-compare__btn:hover {
    border-color: var(--warm);
    color: var(--warm);
    transform: translateY(-2px);
}

.price-compare__btn--primary {
    background: var(--main-color);
    color: var(--secondary);
    border-color: var(--main-color);
}

.price-compare__btn--primary:hover {
    background: var(--warm);
    color: var(--main-color);
    border-color: var(--warm);
}

.price-compare__btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}


/* ===== ДОПОЛНИТЕЛЬНЫЕ УСЛУГИ ===== */
.price-addons {
    padding: 100px 0;
    background: white;
}

.price-addons__title {
    font-family: 'Cormorant', serif;
    font-size: 36px;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 16px;
    font-weight: 600;
}

.price-addons__subtitle {
    font-size: 16px;
    color: rgba(59, 59, 59, 0.6);
    text-align: center;
    margin-bottom: 50px;
}

.price-addons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-addons__item {
    padding: 30px;
    background: var(--bg);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.price-addons__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--warm);
    background: white;
}

.price-addons__icon {
    width: 60px;
    height: 60px;
    background: rgba(187, 168, 153, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.price-addons__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--warm);
}

.price-addons__name {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    color: var(--main-color);
    margin: 0 0 10px;
    font-weight: 600;
}

.price-addons__desc {
    font-size: 14px;
    color: rgba(59, 59, 59, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.price-addons__price {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(187, 168, 153, 0.15);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--warm);
}


/* ===== FAQ ===== */
.price-faq {
    padding: 100px 0;
    background: var(--bg);
}

.price-faq__title {
    font-family: 'Cormorant', serif;
    font-size: 36px;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.price-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.price-faq__item {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
}

.price-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--main-color);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.3s ease;
}

.price-faq__question:hover {
    background: rgba(187, 168, 153, 0.05);
}

.price-faq__question svg {
    width: 24px;
    height: 24px;
    fill: var(--warm);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.price-faq__item.is-active .price-faq__question svg {
    transform: rotate(180deg);
}

.price-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.price-faq__item.is-active .price-faq__answer {
    max-height: 200px;
    padding: 0 24px 24px;
}

.price-faq__answer p {
    font-size: 14px;
    color: rgba(59, 59, 59, 0.7);
    line-height: 1.7;
    margin: 0;
}


/* ===== CTA ===== */
.price-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.price-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.price-cta__content {
    flex: 1;
}

.price-cta__title {
    font-family: 'Cormorant', serif;
    font-size: 32px;
    color: white;
    margin: 0 0 12px;
    font-weight: 600;
}

.price-cta__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.price-cta__actions {
    display: flex;
    gap: 14px;
}

.price-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.price-cta__btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.price-cta__btn--primary {
    background: var(--warm);
    color: var(--main-color);
}

.price-cta__btn--primary:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-3px);
}

.price-cta__btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.price-cta__btn--secondary:hover {
    border-color: var(--warm);
    color: var(--warm);
}


/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .prices-nav__inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .prices-nav__link {
        padding: 12px 20px;
    }

    .price-section__inner {
        gap: 40px;
    }

    .price-section__media {
        position: relative;
        top: auto;
    }

    .price-addons__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .prices-hero {
        padding: 115px 20px 60px;
    }

    .prices-hero__features {
        flex-direction: column;
        gap: 16px;
    }

    .prices-nav {
        top: 70px;
    }

    .prices-nav__inner {
        flex-direction: column;
        gap: 10px;
    }

    .prices-nav__link {
        width: 100%;
        justify-content: center;
    }

    .price-section {
        padding: 60px 0;
    }

    .price-section__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .price-section--reverse .price-section__inner {
        direction: ltr;
    }

    .price-section__title {
        font-size: 32px;
    }

    .price-section__amount {
        font-size: 28px;
    }

    .price-section__gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .price-section__actions {
        flex-direction: column;
    }

    .price-section__btn {
        justify-content: center;
    }

    .price-compare {
        padding: 60px 0;
    }

    .price-compare__title {
        font-size: 28px;
    }

    .price-compare__actions {
        flex-direction: column;
        align-items: center;
    }

    .price-compare__btn {
        width: 100%;
        justify-content: center;
    }

    .price-addons {
        padding: 60px 0;
    }

    .price-addons__grid {
        grid-template-columns: 1fr;
    }

    .price-faq {
        padding: 60px 0;
    }

    .price-faq__grid {
        grid-template-columns: 1fr;
    }

    .price-cta {
        padding: 60px 0;
    }

    .price-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .price-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .price-cta__btn {
        justify-content: center;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}