/**
 * Montage Service Page Styles
 * Scoped CSS for /services/montage only
 */

/* ==========================================================================
   VARIABLES
   ========================================================================== */

.montage-page {
    --mt-accent: #2d7a5f;
    --mt-accent-hover: #236349;
    --mt-accent-light: #e8f5f0;
    --mt-text: #1a2634;
    --mt-text-secondary: #5a6b7d;
    --mt-border: #e2e8f0;
    --mt-surface: #fff;
    --mt-surface-alt: #f8fafc;
    --mt-radius: 12px;
    --mt-radius-sm: 8px;
    --mt-shadow: 0 1px 3px rgba(0,0,0,0.08);
    --mt-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
}

/* ==========================================================================
   PAGE CONTAINER
   ========================================================================== */

/* ==========================================================================
   PAGE CONTAINER - MAIN
   ========================================================================== */

.montage-page {
    padding-bottom: 48px;
}

/* Mobile section reordering */
@media (max-width: 599px) {
    .montage-page {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .montage-page > .mt-container:first-of-type { 
        order: 1;
        width: 100%;
        text-align: left;
    } /* Breadcrumb */
    .montage-page > .mt-hero { order: 2; }
    .montage-page > .mt-options { order: 3; } /* Варианты монтажа после hero */
    .montage-page > .mt-included-contact { order: 4; } /* "Что входит" */
    .montage-page > .mt-section.mt-accordion { order: 5; } /* "Гарантия" */
    .montage-page > .mt-section:not(.mt-accordion):not(.mt-section--alt):not(#mt-contact) { order: 6; }
    .montage-page > #mt-contact { order: 7; }
    .montage-page > .mt-section.mt-section--alt:not(.mt-accordion) { order: 8; }
    
    /* Карточки: "Под ключ" первая, "Ваш кондиционер" вторая */
    .mt-options__card:nth-child(1) { order: 2; }
    .mt-options__card--featured { order: 1; }
    .mt-options__card:nth-child(3) { order: 3; }
}

/* Included section (extracted from price for mobile order) */
.mt-included {
    padding: 0;
    background: #fafafa;
}

.mt-included__inner {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 32px;
}

.mt-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .mt-container {
        padding: 0 24px;
    }
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

.mt-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 12px;
    color: var(--mt-text-secondary);
    padding: 12px 0;
    text-align: left;
    width: 100%;
}

.mt-breadcrumb a {
    color: var(--mt-text-secondary);
    text-decoration: none;
    transition: color 0.15s;
}

.mt-breadcrumb a:hover {
    color: var(--mt-accent);
}

.mt-breadcrumb__sep {
    color: var(--mt-border);
}

/* ==========================================================================
   HERO SECTION — Premium Layout (Reference Copy)
   ========================================================================== */

.mt-hero {
    padding: 0 0 24px;
}

.mt-hero__card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.mt-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
}

@media (min-width: 900px) {
    .mt-hero__grid {
        grid-template-columns: 52% 48%;
    }
}

/* ==========================================================================
   Left Column: Content
   ========================================================================== */

.mt-hero__content {
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
}

@media (min-width: 900px) {
    .mt-hero__content {
        padding: 32px 32px 16px 40px;
    }
}

/* Badge */
.mt-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 5px 12px;
    background: #e8f5f0;
    color: var(--mt-accent);
    font-size: 11px;
    font-weight: 500;
    border-radius: 16px;
    margin-bottom: 12px;
}

.mt-hero__badge svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Title */
.mt-hero__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--mt-text);
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.mt-hero__title-accent {
    color: var(--mt-accent);
    text-decoration: underline;
    text-decoration-color: var(--mt-accent);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

/* Description */
.mt-hero__desc {
    font-size: 13px;
    color: var(--mt-text-secondary);
    line-height: 1.5;
    margin: 0 0 16px;
    max-width: 420px;
}

/* Features Card Container */
.mt-hero__features-card {
    display: inline-flex;
    padding: 10px 16px;
    background: var(--mt-surface-alt);
    border: 1px solid var(--mt-border);
    border-radius: 10px;
    margin-top: auto;
}

/* Features Row */
.mt-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mt-hero__feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mt-hero__feature svg {
    width: 18px;
    height: 18px;
    color: var(--mt-accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.mt-hero__feature span {
    font-size: 11px;
    font-weight: 500;
    color: var(--mt-text);
    line-height: 1.3;
}

/* Actions Row */
.mt-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mt-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.mt-hero__btn svg {
    width: 16px;
    height: 16px;
}

.mt-hero__btn--primary {
    background: var(--mt-accent);
    color: #fff !important;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.mt-hero__btn--primary:hover {
    background: var(--mt-accent-hover);
}

.mt-hero__btn--secondary {
    background: #fff;
    color: var(--mt-text);
    border: 1px solid var(--mt-border);
}

.mt-hero__btn--secondary:hover {
    border-color: var(--mt-accent);
    color: var(--mt-accent);
}



/* ==========================================================================
   Works Gallery (Bottom of Left Column)
   ========================================================================== */

.mt-hero__gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.mt-hero__gallery::-webkit-scrollbar {
    display: none;
}

.mt-hero__gallery-item {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--mt-surface-alt);
    border: 1px solid var(--mt-border);
}

.mt-hero__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-hero__gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #d1d5db;
}

.mt-hero__gallery-placeholder svg {
    width: 24px;
    height: 24px;
}

.mt-hero__gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4px 6px;
    background: rgba(0, 0, 0, 0.6);
    font-size: 8px;
    color: #fff;
    line-height: 1.2;
}

/* ==========================================================================
   Right Column: Image + Stats
   ========================================================================== */

.mt-hero__media {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

@media (min-width: 900px) {
    .mt-hero__media {
        min-height: 360px;
    }
}

/* Image Area */
.mt-hero__image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

@media (min-width: 900px) {
    .mt-hero__image {
        border-radius: 0 24px 24px 0;
    }
}

.mt-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient overlay for smooth transition */
.mt-hero__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 899px) {
    .mt-hero__image::before {
        display: none;
    }
}

.mt-hero__image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #9ca3af;
    gap: 8px;
    padding: 20px;
}

.mt-hero__image-placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.4;
}

.mt-hero__image-placeholder span {
    font-size: 11px;
    opacity: 0.7;
}


/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 899px) {
    .mt-hero__media {
        order: -1;
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .mt-hero__content {
        padding: 16px;
        text-align: center;
    }

    /* Mobile title: 23px */
    .mt-hero__title {
        font-size: 1.4375rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .mt-hero__badge {
        justify-content: center;
        margin-bottom: 10px;
    }

    .mt-hero__desc {
        font-size: 12px !important;
        margin-bottom: 14px;
    }
    
    .mt-hero__features-card {
        padding: 10px 12px;
        width: 100%;
        justify-content: center;
    }
    
    .mt-hero__features {
        gap: 10px;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .mt-hero__feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
        flex-shrink: 1;
        min-width: 0;
    }

    .mt-hero__feature svg {
        margin-top: 0;
    }

    .mt-hero__feature span {
        font-size: 9px;
    }
    
    .mt-hero__actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 16px;
    }
    
    .mt-hero__btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .mt-hero__btn {
        transition: none;
    }
}

/* ==========================================================================
   LEGACY BUTTON STYLES (for other sections)
   ========================================================================== */

.mt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.mt-btn svg {
    width: 16px;
    height: 16px;
}

.mt-btn--primary {
    background: var(--mt-accent);
    color: #fff;
}

.mt-btn--primary:hover {
    background: var(--mt-accent-hover);
}

.mt-btn--outline {
    background: transparent;
    color: var(--mt-text);
    border: 1px solid var(--mt-border);
}

.mt-btn--outline:hover {
    border-color: var(--mt-accent);
    color: var(--mt-accent);
}

.mt-btn--telegram {
    background: var(--mt-accent);
    color: #fff;
}

.mt-btn--telegram:hover {
    background: var(--mt-accent-hover);
}

/* ==========================================================================
   PRICE SECTION (точная копия референса)
   ========================================================================== */

.mt-price {
    padding: 48px 0 56px;
    background: #fafafa;
}

/* ==================== ВЕРХНЯЯ ЧАСТЬ ==================== */
.mt-price__top {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 900px) {
    .mt-price__top {
        grid-template-columns: 1fr auto;
        gap: 40px;
        align-items: start;
    }
}

/* Header Left */
.mt-price__header {
    
}

.mt-price__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-bottom: 16px;
}

.mt-price__badge-dot {
    width: 6px;
    height: 6px;
    background: #2d7a5f;
    border-radius: 50%;
}

.mt-price__title {
    font-size: 1.4375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px;
    line-height: 1.15;
    text-align: left;
}

@media (min-width: 901px) {
    .mt-price__title {
        font-size: 36px;
    }
}

@media (max-width: 899px) {
    .mt-price__title {
        text-align: center;
    }
}

@media (max-width: 599px) {
    .mt-price__title {
        font-size: 1.4375rem !important;
        text-align: center;
    }
    
    .mt-price__features {
        display: none !important;
    }
}

/* Features Row */
.mt-price__features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.mt-price__feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mt-price__feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    color: #2d7a5f;
}

.mt-price__feature-icon svg {
    width: 18px;
    height: 18px;
}

.mt-price__feature span {
    font-size: 12px;
    color: #333;
    line-height: 1.3;
}

/* Promo Card - горизонтальный */
.mt-price__promo {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #fef6ed 0%, #fdebd8 100%);
    border-radius: 14px;
    padding: 16px 20px;
}

.mt-price__promo-icon {
    width: 36px;
    height: 36px;
    background: #e67e22;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mt-price__promo-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.mt-price__promo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mt-price__promo-label {
    font-size: 11px;
    color: #996633;
    font-weight: 500;
}

.mt-price__promo-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
}

.mt-price__promo-title span {
    color: #e67e22;
}

/* ==================== КАРТОЧКИ ЦЕН ==================== */
.mt-price__cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 1100px) {
    .mt-price__cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .mt-price__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .mt-price__cards {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    /* Compact mobile price cards */
    .mt-price__card {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 12px 14px;
        border-radius: 12px;
        text-align: left;
        gap: 0;
    }
    
    .mt-price__card-check {
        display: none !important;
    }
    
    /* Hide power on mobile */
    .mt-price__card-power {
        display: none !important;
    }
    
    /* Area on left */
    .mt-price__card-area {
        order: 1;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        margin-bottom: 0;
        min-width: 70px;
    }
    
    /* AC image in center */
    .mt-price__card-img {
        display: flex !important;
        order: 2;
        flex-grow: 1;
        height: 36px !important;
        margin: 0 !important;
        justify-content: center;
    }
    
    .mt-price__card-img svg {
        width: 95px !important;
        height: 32px !important;
    }
    
    /* Price on right */
    .mt-price__card-price {
        order: 3;
        font-size: 19px !important;
        margin-bottom: 0;
        margin-left: auto;
        min-width: 80px;
        text-align: right;
    }
    
    .mt-price__card-price span {
        font-size: 15px !important;
    }
    
    .mt-price__card-note {
        order: 4;
        width: 100%;
        margin-top: 6px;
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 6px;
    }
}

.mt-price__card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.mt-price__card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-color: #d0d0d0;
}

.mt-price__card-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5f0;
    border-radius: 50%;
    margin-bottom: 8px;
}

.mt-price__card-check svg {
    width: 14px;
    height: 14px;
    color: #2d7a5f;
}

.mt-price__card-power {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.mt-price__card-area {
    font-size: 12px;
    color: #2d7a5f;
    margin-bottom: 16px;
}

.mt-price__card-img {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.mt-price__card-img svg {
    width: 100%;
    max-width: 100px;
    height: auto;
}

.mt-price__card-price {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a5f;
    margin-bottom: 12px;
}

.mt-price__card-price span {
    font-size: 18px;
    font-weight: 500;
}

.mt-price__card-prefix {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-right: 2px;
}

.mt-price__card-note {
    font-size: 11px;
    color: #999;
    padding: 6px 10px;
    background: #f8f8f8;
    border-radius: 8px;
}

/* ==================== НИЖНИЙ РЯД ==================== */
.mt-price__bottom {
    
}

/* What's Included */
.mt-price__included {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 28px;
}

.mt-price__included-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.mt-price__included-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 24px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

@media (max-width: 900px) {
    .mt-price__included-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .mt-price__included-list {
        grid-template-columns: 1fr;
    }
}

.mt-price__included-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mt-price__included-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #2d7a5f;
    margin-top: 2px;
}

.mt-price__included-list li span {
    font-size: 12px;
    color: #333;
    line-height: 1.4;
}

.mt-price__included-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.mt-price__included-note svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #bbb;
    margin-top: 1px;
}

/* Guarantee Cards */
.mt-price__guarantee {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mt-price__guarantee-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 20px;
}

.mt-price__guarantee-icon {
    width: 44px;
    height: 44px;
    background: #e8f5f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mt-price__guarantee-icon svg {
    width: 22px;
    height: 22px;
    color: #2d7a5f;
}

.mt-price__guarantee-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.mt-price__guarantee-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */

.mt-section {
    padding: 32px 0;
}

.mt-section--alt {
    background: var(--mt-surface-alt);
}

.mt-section__header {
    text-align: center;
    margin-bottom: 20px;
}

.mt-section__title {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--mt-text);
    margin: 0 0 4px;
}

@media (max-width: 599px) {
    .mt-section__title {
        font-size: 1.4375rem !important;
    }
}

.mt-section__subtitle {
    font-size: 13px;
    color: var(--mt-text-secondary);
    margin: 0;
}

/* ==========================================================================
   WHY TRUST US
   ========================================================================== */

.mt-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

@media (min-width: 640px) {
    .mt-trust__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .mt-trust__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.mt-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    background: var(--mt-surface);
    border: 1px solid var(--mt-border);
    border-radius: 8px;
    transition: box-shadow 0.2s;
}

.mt-trust__item:hover {
    box-shadow: var(--mt-shadow);
}

.mt-trust__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mt-accent-light);
    color: var(--mt-accent);
    border-radius: 8px;
    margin-bottom: 8px;
}

.mt-trust__icon svg {
    width: 16px;
    height: 16px;
}

.mt-trust__label {
    font-size: 11px;
    font-weight: 600;
    color: var(--mt-text);
    line-height: 1.25;
}

/* ==========================================================================
   WHAT INCLUDED
   ========================================================================== */

.mt-included__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

@media (min-width: 640px) {
    .mt-included__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .mt-included__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

.mt-included__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--mt-surface);
    border-radius: 6px;
}

.mt-included__check {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mt-accent);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.mt-included__check svg {
    width: 10px;
    height: 10px;
}

.mt-included__text {
    font-size: 12px;
    color: var(--mt-text);
    line-height: 1.3;
}

/* ==========================================================================
   DUAL OPTION (OWN VS EXTERNAL)
   ========================================================================== */

.mt-dual {
    padding: 32px 0;
}

.mt-dual__inner {
    display: grid;
    gap: 12px;
}

@media (min-width: 768px) {
    .mt-dual__inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

.mt-dual__card {
    position: relative;
    padding: 16px;
    background: var(--mt-surface);
    border: 2px solid var(--mt-border);
    border-radius: 10px;
    transition: border-color 0.2s;
}

.mt-dual__card:hover {
    border-color: var(--mt-accent);
}

.mt-dual__card--highlight {
    border-color: var(--mt-accent);
    background: linear-gradient(135deg, var(--mt-accent-light) 0%, var(--mt-surface) 100%);
}

.mt-dual__badge {
    position: absolute;
    top: -8px;
    right: 16px;
    padding: 3px 10px;
    background: var(--mt-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 10px;
}

.mt-dual__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mt-accent-light);
    color: var(--mt-accent);
    border-radius: 10px;
    margin-bottom: 10px;
}

.mt-dual__icon svg {
    width: 18px;
    height: 18px;
}

.mt-dual__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--mt-text);
    margin: 0 0 4px;
}

.mt-dual__desc {
    font-size: 12px;
    color: var(--mt-text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   STEPS
   ========================================================================== */

.mt-steps__list {
    display: grid;
    gap: 8px;
}

@media (min-width: 640px) {
    .mt-steps__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mt-steps__list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mt-steps__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: var(--mt-surface);
    border-radius: 6px;
}

.mt-steps__num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mt-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.mt-steps__content {
    flex: 1;
}

.mt-steps__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--mt-text);
    margin: 0 0 2px;
}

.mt-steps__desc {
    font-size: 11px;
    color: var(--mt-text-secondary);
    margin: 0;
    line-height: 1.3;
}

/* ==========================================================================
   GUARANTEE & ACCOUNT
   ========================================================================== */

/* Главные карточки гарантии */
.mt-guarantee__highlights {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 600px) {
    .mt-guarantee__highlights {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.mt-guarantee__highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 20px;
}

.mt-guarantee__highlight-icon {
    width: 44px;
    height: 44px;
    background: #e8f5f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mt-guarantee__highlight-icon svg {
    width: 22px;
    height: 22px;
    color: #2d7a5f;
}

.mt-guarantee__highlight-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.mt-guarantee__highlight-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.mt-guarantee__grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .mt-guarantee__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.mt-guarantee__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mt-guarantee__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mt-guarantee__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--mt-border);
}

.mt-guarantee__item:last-child {
    border-bottom: none;
}

.mt-guarantee__item svg {
    width: 16px;
    height: 16px;
    color: var(--mt-accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.mt-guarantee__item span {
    font-size: 12px;
    color: var(--mt-text);
    line-height: 1.4;
}

.mt-guarantee__preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mt-guarantee__card {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    background: var(--mt-surface-alt);
    border: 1px solid var(--mt-border);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
}

.mt-guarantee__card:hover {
    transform: scale(3);
    z-index: 100;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.mt-guarantee__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

.mt-guarantee__card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.3s ease;
}

.mt-guarantee__card:hover span {
    opacity: 0;
}

.mt-guarantee__placeholder svg {
    width: 18px;
    height: 18px;
    opacity: 0.4;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */

.mt-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .mt-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .mt-gallery__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.mt-gallery__item {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--mt-surface-alt);
    border: 1px solid var(--mt-border);
    border-radius: var(--mt-radius-sm);
    overflow: hidden;
}

.mt-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-gallery__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 100%;
    color: var(--mt-text-secondary);
    font-size: 11px;
    text-align: center;
    padding: 8px;
}

.mt-gallery__placeholder svg {
    width: 24px;
    height: 24px;
    opacity: 0.4;
}

.mt-gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
}

/* ==========================================================================
   CONTACT SPECIALIST
   ========================================================================== */

.mt-contact {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: var(--mt-surface);
    border: 1px solid var(--mt-accent);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(45, 122, 95, 0.08);
}

.mt-contact__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mt-contact__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--mt-accent-light);
    border: 2px solid var(--mt-accent);
    overflow: hidden;
    flex-shrink: 0;
}

.mt-contact__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-contact__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mt-accent-light);
    color: var(--mt-accent);
}

.mt-contact__photo-placeholder svg {
    width: 28px;
    height: 28px;
}

.mt-contact__info {
    flex: 1;
}

.mt-contact__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--mt-text);
    margin: 0 0 2px;
}

.mt-contact__role {
    font-size: 11px;
    color: var(--mt-text-secondary);
    margin: 0;
}

.mt-contact__status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    font-size: 10px;
    color: var(--mt-accent);
}

.mt-contact__status::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--mt-accent);
    border-radius: 50%;
}

.mt-contact__phone {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--mt-text);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.15s;
}

.mt-contact__phone:hover {
    color: var(--mt-accent);
}

.mt-contact__actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mt-contact__actions .mt-btn {
    width: 100%;
    padding: 8px 14px;
    font-size: 12px;
}

.mt-contact__actions .mt-btn--telegram {
    color: #fff !important;
}

/* Callback Form */
.mt-callback {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--mt-border);
}

.mt-callback__title {
    font-size: 12px;
    font-weight: 600;
    color: var(--mt-text);
    margin: 0 0 8px;
}

.mt-callback__form {
    display: flex;
    gap: 6px;
}

.mt-callback__input {
    flex: 1;
    padding: 8px 12px;
    font-size: 13px;
    border: 1px solid var(--mt-border);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.15s;
}

.mt-callback__input:focus {
    border-color: var(--mt-accent);
}

.mt-callback__submit {
    padding: 8px 14px;
    background: var(--mt-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}

.mt-callback__submit:hover {
    background: var(--mt-accent-hover);
}

.mt-callback__submit svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.mt-faq__list {
    max-width: 700px;
    margin: 0 auto;
}

.mt-faq__item {
    border-bottom: 1px solid var(--mt-border);
}

.mt-faq__item:last-child {
    border-bottom: none;
}

.mt-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--mt-text);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.15s;
}

.mt-faq__question:hover {
    color: var(--mt-accent);
}

.mt-faq__question svg {
    width: 16px;
    height: 16px;
    color: var(--mt-text-secondary);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.mt-faq__item.active .mt-faq__question svg {
    transform: rotate(180deg);
}

.mt-faq__answer {
    display: none;
    padding-bottom: 12px;
    font-size: 12px;
    color: var(--mt-text-secondary);
    line-height: 1.5;
}

.mt-faq__item.active .mt-faq__answer {
    display: block;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.mt-final-cta {
    text-align: center;
    padding: 32px 20px;
    background: linear-gradient(135deg, var(--mt-accent) 0%, var(--mt-accent-hover) 100%);
    border-radius: 10px;
    color: #fff;
}

.mt-final-cta__title {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    margin: 0 0 6px;
}

.mt-final-cta__desc {
    font-size: 13px;
    opacity: 0.9;
    margin: 0 0 16px;
}

.mt-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.mt-final-cta .mt-btn--white {
    background: #fff;
    color: var(--mt-accent);
}

.mt-final-cta .mt-btn--white:hover {
    background: var(--mt-accent-light);
}

.mt-final-cta .mt-btn--ghost {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.mt-final-cta .mt-btn--ghost:hover {
    background: rgba(255,255,255,0.25);
}

/* ==========================================================================
   OVERVIEW: WHAT INCLUDED + WHY CHOOSE US
   ========================================================================== */

.mt-overview {
    padding: 24px 0;
}

.mt-overview__grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .mt-overview__grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 20px;
        align-items: start;
    }
}

.mt-overview__card {
    padding: 16px;
    background: var(--mt-surface);
    border: 1px solid var(--mt-border);
    border-radius: 10px;
}

.mt-overview__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--mt-text);
    margin: 0 0 6px;
}

.mt-overview__intro {
    font-size: 12px;
    color: var(--mt-text-secondary);
    line-height: 1.5;
    margin: 0 0 12px;
}

.mt-overview__subtitle {
    font-size: 12px;
    color: var(--mt-text-secondary);
    line-height: 1.4;
    margin: 0 0 12px;
}

/* Numbered List in Left Card */
.mt-overview__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

@media (min-width: 640px) {
    .mt-overview__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px 12px;
    }
}

.mt-overview__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
}

.mt-overview__num {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mt-accent-light);
    color: var(--mt-accent);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.mt-overview__text {
    font-size: 11px;
    color: var(--mt-text);
    line-height: 1.4;
}

.mt-overview__text strong {
    color: var(--mt-text);
    font-weight: 600;
}

/* Note at bottom of included list */
.mt-overview__note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 10px;
    background: var(--mt-surface-alt);
    border-radius: 6px;
    font-size: 10px;
    color: var(--mt-text-secondary);
    line-height: 1.4;
}

.mt-overview__note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.6;
}

/* Benefits List in Right Card */
.mt-overview__benefits {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.mt-overview__benefit {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--mt-border);
}

.mt-overview__benefit:last-child {
    border-bottom: none;
}

.mt-overview__benefit svg {
    width: 16px;
    height: 16px;
    color: var(--mt-accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.mt-overview__benefit span {
    font-size: 11px;
    color: var(--mt-text);
    line-height: 1.4;
}

/* ==========================================================================
   DESKTOP-ONLY STYLES: Price title left-aligned + Included + Contact grid
   ========================================================================== */

/* Desktop: Price title aligned left */
@media (min-width: 1024px) {
    .mt-price__title {
        text-align: left;
    }
    
    .mt-price__header {
        text-align: left;
    }
}

/* Desktop: Hide mobile-only contact section */
@media (min-width: 1024px) {
    .mt-contact-mobile-only {
        display: none !important;
    }
}

/* Mobile: Hide desktop aside (show only on desktop) */
.mt-included-contact__aside {
    display: none !important;
}

@media (min-width: 1024px) {
    .mt-included-contact__aside {
        display: flex !important;
        flex-direction: column;
    }
}

/* Desktop: Show aside and create grid layout */
@media (min-width: 1024px) {
    .mt-included-contact {
        padding: 40px 0 60px;
        background: #fafafa;
    }
    
    .mt-included-contact__grid {
        display: grid;
        grid-template-columns: 1fr 280px;
        gap: 24px;
        align-items: stretch;
    }
    
    .mt-included-contact__main {
        display: flex;
        flex-direction: column;
    }
    
    /* Contact card header in aside */
    .mt-contact-aside__header {
        margin-bottom: 12px;
    }
    
    .mt-contact-aside__header .mt-section__title {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        line-height: 1.3;
    }
    
    /* Contact card in aside - fills remaining height */
    .mt-included-contact__aside .mt-contact {
        max-width: 100%;
        padding: 16px;
        border-radius: 10px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .mt-included-contact__aside .mt-contact__header {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .mt-included-contact__aside .mt-contact__photo {
        width: 48px;
        height: 48px;
    }
    
    .mt-included-contact__aside .mt-contact__name {
        font-size: 14px;
        margin-bottom: 1px;
    }
    
    .mt-included-contact__aside .mt-contact__role {
        font-size: 11px;
    }
    
    .mt-included-contact__aside .mt-contact__status {
        font-size: 10px;
        margin-top: 2px;
    }
    
    .mt-included-contact__aside .mt-contact__phone {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .mt-included-contact__aside .mt-contact__actions {
        gap: 6px;
    }
    
    .mt-included-contact__aside .mt-contact__actions .mt-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .mt-included-contact__aside .mt-callback {
        margin-top: auto;
        padding-top: 12px;
    }
    
    .mt-included-contact__aside .mt-callback__title {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .mt-included-contact__aside .mt-callback__form {
        display: flex;
        gap: 0;
        width: 100%;
    }
    
    .mt-included-contact__aside .mt-callback__input {
        flex: 1;
        min-width: 0;
        font-size: 12px;
        padding: 8px 10px;
        border-radius: 6px 0 0 6px;
        border-right: none;
    }
    
    .mt-included-contact__aside .mt-callback__submit {
        padding: 8px 10px;
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 0 6px 6px 0;
    }
    
    /* Price included - expand on desktop */
    .mt-included-contact .mt-price__included {
        max-width: none;
        flex: 1;
    }
    
    .mt-included-contact .mt-price__included-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ==========================================================================
   MONTAGE OPTIONS SECTION — Варианты монтажа
   ========================================================================== */

.mt-options {
    padding: 24px 0 32px;
}

.mt-options .mt-options__title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--mt-text);
    margin: 0 0 4px;
}

.mt-options__subtitle {
    font-size: 0.875rem;
    color: var(--mt-text-secondary);
    margin: 0 0 16px;
}

.mt-options__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 600px) {
    .mt-options__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .mt-options__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mt-options__card {
    display: flex;
    flex-direction: column;
    background: var(--mt-surface);
    border: 1px solid var(--mt-border);
    border-radius: var(--mt-radius);
    overflow: hidden;
}

.mt-options__card--featured {
    border: 2px solid #5a9a7a;
    box-shadow: 0 2px 8px rgba(90, 154, 122, 0.15);
}

.mt-options__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.mt-options__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mt-options__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 16px 16px;
}

.montage-page .mt-options__card-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--mt-text);
    margin: 0 0 8px;
    line-height: 1.25;
    min-height: 1.25em;
    letter-spacing: -0.01em;
}

@media (min-width: 900px) {
    .montage-page .mt-options__card-title {
        white-space: nowrap;
    }
}

.mt-options__card-text {
    font-size: 0.8125rem;
    color: var(--mt-text-secondary);
    line-height: 1.5;
    margin: 0 0 12px;
}

/* Features row */
.mt-options__features {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.mt-options__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
}

.mt-options__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8f5ee;
    color: var(--mt-accent);
    margin-bottom: 4px;
    flex-shrink: 0;
}

.mt-options__feature-icon svg {
    width: 14px;
    height: 14px;
}

.mt-options__feature-text {
    font-size: 0.6875rem;
    color: var(--mt-text-secondary);
    line-height: 1.25;
}

/* Footer row */
.mt-options__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--mt-border);
    background: var(--mt-surface-alt);
}

.mt-options__price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mt-accent);
    white-space: nowrap;
}

.mt-options__price-note {
    font-size: 0.75rem;
    color: var(--mt-text-secondary);
    white-space: nowrap;
}

.mt-options__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid var(--mt-accent);
    background: #fff;
    color: var(--mt-accent);
    transition: background 0.15s, color 0.15s;
}

.mt-options__btn:hover {
    background: var(--mt-accent-light);
}

.mt-options__btn--primary,
.montage-page .mt-options__btn--primary {
    background: var(--mt-accent);
    color: #fff !important;
    border-color: var(--mt-accent);
}

.mt-options__btn--primary:hover,
.montage-page .mt-options__btn--primary:hover {
    background: var(--mt-accent-hover);
    color: #fff !important;
}

.mt-options__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: #e8f5ee;
    color: #2d7a5f;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
    z-index: 1;
}

.mt-options__discount {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 5px 12px;
    background: #f97316;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    z-index: 1;
}

/* Mobile: Section styling */
@media (max-width: 1023px) {
    .mt-included-contact {
        padding: 0;
        background: #fafafa;
    }
    
    .mt-included-contact__grid {
        display: block;
    }
    
    .mt-included-contact__main {
        max-width: 600px;
        margin: 0 auto;
        padding-bottom: 32px;
    }
}

.mt-overview__benefit strong {
    font-weight: 600;
}

/* Highlighted benefit (guarantee) */
.mt-overview__benefit--highlight {
    background: var(--mt-accent-light);
    margin: 4px -10px;
    padding: 8px 10px;
    border-radius: 6px;
    border-bottom: none;
}

.mt-overview__benefit--highlight + .mt-overview__benefit {
    border-top: none;
}

/* Contact Block inside Right Card */
.mt-overview__contact {
    padding-top: 12px;
    border-top: 1px solid var(--mt-border);
}

.mt-overview__phone {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--mt-text);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.15s;
}

.mt-overview__phone:hover {
    color: var(--mt-accent);
}

.mt-overview__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Small button variant */
.mt-btn--sm {
    padding: 7px 12px;
    font-size: 11px;
}

.mt-btn--sm svg {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   MOBILE ACCORDION (only for screens <= 599px)
   ========================================================================== */

/* Desktop: accordion elements hidden/transparent */
.mt-accordion__hint,
.mt-accordion__chevron {
    display: none;
}

@media (max-width: 599px) {
    /* Remove section padding for accordion sections */
    .mt-section.mt-accordion {
        padding: 0 !important;
        background: transparent !important;
    }
    
    /* Remove included block padding for accordion */
    .mt-price__included.mt-accordion {
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }
    
    /* Price section bottom part compact on mobile */
    .mt-price__bottom {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }
    
    /* Remove extra margin at end of price section */
    .mt-price {
        padding-bottom: 24px !important;
    }
    
    /* Uniform accordion card style */
    .mt-accordion__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding: 16px;
        background: #fff;
        border: 1px solid #e8e8e8;
        border-radius: 12px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mt-accordion.active .mt-accordion__header {
        border-radius: 12px 12px 0 0;
        border-bottom: none;
    }
    
    .mt-accordion__header-content {
        flex: 1;
        text-align: center;
        padding-right: 12px;
    }
    
    .mt-accordion__hint {
        display: block;
        font-size: 12px;
        color: #2d7a5f;
        margin-top: 4px;
    }
    
    .mt-accordion__chevron {
        display: block;
        width: 20px;
        height: 20px;
        color: #999;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
    
    .mt-accordion.active .mt-accordion__chevron {
        transform: rotate(180deg);
    }
    
    /* Accordion Body */
    .mt-accordion__body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        background: #fff;
        border: 1px solid #e8e8e8;
        border-top: none;
        border-radius: 0 0 12px 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .mt-accordion.active .mt-accordion__body {
        max-height: 2000px;
    }
    
    .mt-accordion__body > * {
        padding: 16px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Title styles inside accordion */
    .mt-accordion .mt-price__included-title,
    .mt-accordion .mt-section__title {
        font-size: 15px !important;
        font-weight: 600 !important;
        margin: 0 !important;
        color: #1a1a1a;
    }
    
    .mt-accordion .mt-section__subtitle {
        display: none;
    }
    
    /* Section accordion specific - container padding */
    .mt-section.mt-accordion .mt-container {
        padding: 0 16px;
    }
    
    /* Gap between price section and guarantee section */
    .mt-price + .mt-section.mt-accordion {
        margin-top: -24px !important;
        padding-top: 12px !important;
    }
    
    /* Compact list inside accordion */
    .mt-accordion .mt-price__included-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .mt-accordion .mt-price__included-list li span {
        font-size: 12px;
    }
    
    .mt-accordion .mt-price__included-note {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #f0f0f0;
    }
    
    /* Guarantee section compact */
    .mt-accordion .mt-guarantee__highlights {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .mt-accordion .mt-guarantee__highlight {
        padding: 12px;
        background: #f9fafb;
        border-radius: 10px;
    }
    
    .mt-accordion .mt-guarantee__highlight h4 {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .mt-accordion .mt-guarantee__highlight p {
        font-size: 11px;
        margin: 0;
    }
    
    .mt-accordion .mt-guarantee__grid {
        margin-top: 16px;
    }
    
    .mt-accordion .mt-guarantee__list {
        gap: 8px;
    }
    
    .mt-accordion .mt-guarantee__item span {
        font-size: 12px;
    }
    
    .mt-accordion .mt-guarantee__preview {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .mt-accordion .mt-guarantee__card {
        padding: 0;
        aspect-ratio: 16 / 10;
        min-width: 0;
        max-width: 100%;
    }
    
    /* Disable all zoom on mobile */
    .mt-accordion .mt-guarantee__card,
    .mt-accordion .mt-guarantee__card:hover,
    .mt-accordion .mt-guarantee__card:active,
    .mt-accordion .mt-guarantee__card:focus {
        transform: none !important;
        z-index: auto !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    }
    
    .mt-accordion .mt-guarantee__card img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: cover;
        display: block;
    }
    
    .mt-accordion .mt-guarantee__card span {
        font-size: 10px;
    }
    
    /* Ensure accordion body doesn't overflow */
    .mt-accordion .mt-guarantee__grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .mt-accordion .mt-guarantee__content {
        min-width: 0;
    }
}
