﻿/* ==============================================
   emslimx.css
   Pagina: EMSlim HIFEM + RF — Tonifiere & Remodelare
   ============================================== */

/* ========== VARIABLES ========== */
:root {
    --primary-rose: #6b0572;
    --primary-rose-light: #9b3fa2;
    --primary-blush: #f3e4f4;
    --primary-dark: #2D2D2D;
    --accent-gold: #c06ec6;
    --accent-cream: #faf5fb;
    --text-light: #2D2D2D;
    --text-muted: #6B6B6B;
    --gradient-luxury: linear-gradient(135deg, #6b0572 0%, #9b3fa2 50%, #6b0572 100%);
    --gradient-dark: linear-gradient(180deg, #FFFFFF 0%, #faf5fb 100%);
    --rose: #6b0572;
    --rose-light: #9b3fa2;
    --blush: #f3e4f4;
}

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    position: relative;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

/* ========== HERO ========== */
.em-hero {
    min-height: auto;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
    width: 100%;
    padding: 3rem 0 4rem;
}

    .em-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 20% 50%, rgba(107,5,114,0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(155,63,162,0.1) 0%, transparent 40%);
        pointer-events: none;
    }

.em-hero-content {
    position: relative;
    z-index: 2;
}

.em-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(107,5,114,0.1);
    border: 1px solid var(--primary-rose);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-rose);
    margin-bottom: 2rem;
}

.em-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

    .em-hero-title .highlight {
        background: var(--gradient-luxury);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.em-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.em-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

    .em-hero-image img {
        width: 100%;
        height: auto;
        filter: brightness(0.9);
    }

.em-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 1.25rem 2rem;
    border: 1px solid rgba(107,5,114,0.2);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(107,5,114,0.15);
    margin-top: 1.5rem;
    position: relative;
    width: 100%;
}

.em-stat-item {
    text-align: center;
    flex: 1;
}

.em-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(107,5,114,0.15);
    margin: 0 auto;
}

.em-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-rose);
    line-height: 1.1;
}

.em-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.3;
}

/* ========== FLOATING ELEMENTS ========== */
.em-floating {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3e4f4 0%, #9b3fa2 100%);
    opacity: 0.3;
    animation: emFloat 6s ease-in-out infinite;
}

.em-floating-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
}

.em-floating-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -100px;
    animation-delay: 2s;
}

/* ========== KEYFRAMES ========== */
@keyframes emFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes emModalIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========== BUTTONS ========== */
.btn-luxury {
    background: var(--gradient-luxury);
    color: #fff;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-luxury::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s ease;
    }

    .btn-luxury:hover::before {
        left: 100%;
    }

    .btn-luxury:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 40px rgba(107,5,114,0.4);
        color: #fff;
    }

.btn-outline-luxury {
    background: transparent;
    color: var(--primary-rose);
    border: 2px solid var(--primary-rose);
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline-luxury:hover {
        background: var(--primary-rose);
        color: #fff;
        transform: translateY(-3px);
    }

/* ========== SECTIONS ========== */
.em-section {
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.em-section-white {
    background: #fff;
}

.em-section-soft {
    background: linear-gradient(180deg, #faf5fb 0%, #fff 100%);
}

.em-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.em-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(107,5,114,0.1);
    border: 1px solid rgba(107,5,114,0.3);
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-rose);
    margin-bottom: 1.5rem;
}

.em-section-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.em-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.em-deco-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-luxury);
    margin: 1rem auto;
}

/* ========== BENEFIT CARDS ========== */
.em-benefit-card {
    background: #fff;
    border: 1px solid rgba(107,5,114,0.15);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(107,5,114,0.08);
}

    .em-benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-luxury);
        transform: scaleX(0);
        transition: transform 0.5s ease;
    }

    .em-benefit-card:hover::before {
        transform: scaleX(1);
    }

    .em-benefit-card:hover {
        transform: translateY(-10px);
        border-color: rgba(107,5,114,0.4);
        box-shadow: 0 20px 60px rgba(107,5,114,0.15);
    }

.em-benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(107,5,114,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-rose);
    transition: all 0.4s ease;
}

.em-benefit-card:hover .em-benefit-icon {
    background: var(--gradient-luxury);
    color: #fff;
    transform: scale(1.1);
}

.em-benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.em-benefit-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== PROCESS STEPS ========== */
.em-process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 3rem;
}

.em-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: rgba(107,5,114,0.1);
    border: 2px solid var(--primary-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-rose);
    transition: all 0.4s ease;
}

.em-process-step:hover .em-step-number {
    background: var(--gradient-luxury);
    color: #fff;
}

.em-step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.em-step-content p {
    color: var(--text-muted);
    margin: 0;
}

/* ========== ZONE TAGS ========== */
.em-area-tag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(107,5,114,0.1);
    border: 1px solid rgba(107,5,114,0.3);
    border-radius: 50px;
    margin: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

    .em-area-tag:hover {
        background: var(--gradient-luxury);
        color: #fff;
        border-color: transparent;
        transform: scale(1.05);
    }

    .em-area-tag i {
        font-size: 0.5rem;
        vertical-align: middle;
    }

/* ========== TEXT UTILITIES ========== */
.em-text-body {
    line-height: 1.85;
    font-size: 1.05rem;
}

.em-text-body-sm {
    line-height: 1.85;
    font-size: 1.02rem;
}

.em-text-sm {
    line-height: 1.85;
    font-size: 0.95rem;
}

.em-text-caption {
    font-size: 0.92rem;
}

.em-text-rose {
    color: var(--primary-rose);
}

.em-icon-rose {
    color: var(--primary-rose);
}

/* ========== IMAGE UTILITIES ========== */
.em-img-rounded {
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(107,5,114,0.15);
    border: 1px solid rgba(107,5,114,0.1);
}

/* ========== CALLOUT ========== */
.em-callout {
    padding: 1.5rem;
    border-radius: 14px !important;
    background: rgba(107,5,114,0.05);
    border: 1px solid rgba(107,5,114,0.15);
    margin-top: 1rem;
}

    .em-callout p {
        margin-bottom: 0;
        color: var(--text-muted);
        line-height: 1.75;
        font-size: 0.95rem;
    }

.em-callout--lg p {
    line-height: 1.8;
    font-size: 1rem;
}

/* ========== COMPARISON TABLE ========== */
.em-comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -15px;
    padding: 0 15px;
}

.em-comparison-table {
    background: #fff;
    border: 1px solid rgba(107,5,114,0.15);
    border-radius: 20px;
    overflow: hidden;
    min-width: 600px;
    box-shadow: 0 5px 30px rgba(107,5,114,0.1);
}

    .em-comparison-table thead {
        background: rgba(107,5,114,0.1);
    }

    .em-comparison-table th {
        padding: 1.5rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
        border: none;
        color: var(--primary-rose);
    }

    .em-comparison-table td {
        padding: 1.25rem 1.5rem;
        border-color: rgba(107,5,114,0.1);
        vertical-align: middle;
        color: var(--primary-dark);
    }

    .em-comparison-table tbody tr {
        transition: all 0.3s ease;
    }

        .em-comparison-table tbody tr:hover {
            background: rgba(107,5,114,0.05);
        }

.em-check-icon {
    color: #4CAF50;
    font-size: 1.2rem;
}

.em-partial-icon {
    color: #FFC107;
    font-size: 1.2rem;
}

.em-cross-icon {
    color: #e57373;
    font-size: 1.2rem;
}

.em-highlight-col {
    background: rgba(107,5,114,0.08) !important;
}

/* ========== TREATMENT CARDS ========== */
.em-treat-card {
    background: #fff;
    border: 1px solid rgba(107,5,114,0.1);
    border-radius: 18px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(107,5,114,0.06);
    position: relative;
    overflow: hidden;
}

    .em-treat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--gradient-luxury);
        border-radius: 18px 0 0 18px;
    }

    .em-treat-card h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .em-treat-card h4 i {
            color: var(--primary-rose);
        }

    .em-treat-card p {
        color: var(--text-muted);
        line-height: 1.75;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

/* ========== VIDEO WRAPPER ========== */
.em-video-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(107,5,114,0.12);
    border: 1px solid rgba(107,5,114,0.1);
}

    .em-video-wrap video {
        width: 100%;
        display: block;
    }

.em-video-caption {
    background: var(--gradient-luxury);
    color: #fff;
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.em-video-responsive {
    position: relative;
    padding-top: 100%;
}

    .em-video-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* ========== GALLERY ========== */
.em-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.em-gallery--2col {
    grid-template-columns: repeat(2, 1fr);
}

.em-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(107,5,114,0.1);
    border: 1px solid rgba(107,5,114,0.1);
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
}

    .em-gallery-item::after {
        content: '\f00e';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #fff;
        background: rgba(107,5,114,0.4);
        opacity: 0;
        transition: opacity 0.35s ease;
        pointer-events: none;
    }

    .em-gallery-item:hover::after {
        opacity: 1;
    }

    .em-gallery-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(107,5,114,0.2);
    }

    .em-gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .em-gallery-item:hover img {
        transform: scale(1.05);
    }

/* ========== GALLERY MODAL ========== */
.em-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14,14,14,0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

    .em-modal-overlay.active {
        display: flex;
    }

.em-modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid rgba(107,5,114,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: emModalIn 0.3s ease;
}

.em-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .em-modal-header h5 {
        color: #fff;
        font-size: 1rem;
        margin: 0;
    }

.em-modal-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 0.2s;
}

    .em-modal-close:hover {
        color: #fff;
    }

.em-modal-body img {
    width: 100%;
    display: block;
}

.em-modal-footer {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.em-modal-nav {
    background: var(--gradient-luxury);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 8px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .em-modal-nav:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(107,5,114,0.4);
    }

    .em-modal-nav:disabled {
        opacity: 0.3;
        cursor: default;
        transform: none;
        box-shadow: none;
    }

.em-modal-counter {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    align-self: center;
}

/* ========== FAQ ========== */
.em-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.em-faq-item {
    background: #fff;
    border: 1px solid rgba(107,5,114,0.12);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
}

    .em-faq-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--gradient-luxury);
        opacity: 0;
        transition: opacity 0.3s;
        border-radius: 18px 0 0 18px;
    }

    .em-faq-item:hover {
        border-color: rgba(107,5,114,0.25);
        box-shadow: 0 6px 28px rgba(107,5,114,0.08);
    }

        .em-faq-item:hover::before, .em-faq-item.em-open::before {
            opacity: 1;
        }

    .em-faq-item.em-open {
        border-color: rgba(107,5,114,0.3);
        box-shadow: 0 8px 32px rgba(107,5,114,0.1);
    }

.em-faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.25s;
    line-height: 1.45;
}

    .em-faq-question:hover {
        color: var(--primary-rose);
    }

    .em-faq-question:focus {
        outline: none;
    }

    .em-faq-question span {
        flex: 1;
    }

.em-faq-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(107,5,114,0.08), rgba(155,63,162,0.04));
    color: var(--primary-rose);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s;
}

.em-faq-item:hover .em-faq-num, .em-faq-item.em-open .em-faq-num {
    background: var(--gradient-luxury);
    color: #fff;
    box-shadow: 0 4px 12px rgba(107,5,114,0.25);
}

.em-faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(107,5,114,0.06);
    transition: all 0.3s;
    flex-shrink: 0;
}

    .em-faq-toggle i {
        color: var(--primary-rose-light);
        font-size: 0.75rem;
        transition: transform 0.35s ease;
    }

.em-faq-item.em-open .em-faq-toggle {
    background: var(--gradient-luxury);
    box-shadow: 0 3px 10px rgba(107,5,114,0.25);
}

    .em-faq-item.em-open .em-faq-toggle i {
        color: #fff;
        transform: rotate(180deg);
    }

.em-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 0 24px 0 78px;
}

.em-faq-item.em-open .em-faq-answer {
    max-height: 500px;
    padding: 0 24px 22px 78px;
}

.em-faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* ========== CTA ========== */
.em-cta {
    background-color: #f5ecf5 !important;
    background: linear-gradient(135deg, rgba(107,5,114,0.1), rgba(243,228,244,0.5));
    border-top: 1px solid rgba(107,5,114,0.2);
    border-bottom: 1px solid rgba(107,5,114,0.2);
    overflow: hidden;
    width: 100%;
}

.em-cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

/* ========== PRICE HEADER ========== */
.em-price-header {
    background-color: #f5ecf5;
    padding: 10px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    text-align: center !important;
}

.em-price-title {
    color: var(--primary-rose);
    font-size: 24px;
    font-weight: 700;
}

.em-price-subtitle {
    color: var(--text-muted);
}

.em-price-spacing {
    margin-top: 32px !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .em-hero-title {
        font-size: 3rem;
    }

    .em-section-title {
        font-size: 2.2rem;
    }

    .em-hero-stats {
        padding: 1rem 1.25rem;
    }

    .em-stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .em-hero-title {
        font-size: 2.2rem;
    }

    .em-hero {
        padding: 3rem 0 2rem;
    }

    .em-section {
        padding: 3rem 0;
    }

    .em-section-title {
        font-size: 1.8rem;
    }

    .em-hero-stats {
        padding: 0.85rem 0.75rem;
    }

    .em-stat-number {
        font-size: 1.5rem;
    }

    .em-stat-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .em-stat-divider {
        height: 24px;
    }

    .em-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .em-gallery-item img {
        height: 180px;
    }

    .em-process-step {
        padding-left: 80px;
    }

    .em-step-number {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

    .em-floating {
        display: none;
    }

    .em-cta-title {
        font-size: 1.8rem;
    }

    .em-area-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin: 0.25rem;
    }

    .em-faq-answer {
        padding: 0 18px 0 18px;
    }

    .em-faq-item.em-open .em-faq-answer {
        padding: 0 18px 18px 18px;
    }

    .em-faq-question {
        padding: 16px 18px;
        gap: 12px;
        font-size: 0.92rem;
    }

    .em-faq-num {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.85rem;
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .em-hero-title {
        font-size: 1.8rem;
    }

    .em-hero-subtitle {
        font-size: 0.95rem;
    }

    .btn-luxury, .btn-outline-luxury {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }

    .em-benefit-card {
        padding: 1.5rem 1.25rem;
    }
}
