﻿/* ==============================================
   inwave.css
   Pagina: Remodelare Corporală cu Microunde InWave
   ============================================== */

/* ========== VARIABLES ========== */
:root {
    --primary-rose: #6b0572;
    --primary-rose-light: #9b3fa2;
    --primary-blush: #f3e4f4;
    --primary-dark: #2D2D2D;
    --primary-darker: #FFFFFF;
    --accent-gold: #c06ec6;
    --accent-cream: #faf5fb;
    --text-light: #2D2D2D;
    --text-muted: #6B6B6B;
    --gradient-luxury: linear-gradient(135deg, #6b0572 0%, #9b3fa2 50%, #6b0572 100%);
    --gradient-InWave: linear-gradient(135deg, #6b0572 0%, #c06ec6 50%, #6b0572 100%);
    --gradient-dark: linear-gradient(180deg, #FFFFFF 0%, #faf5fb 100%);
    --rose: #6b0572;
    --rose-light: #9b3fa2;
    --blush: #f3e4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.icon-circle {
    width: 70px;
    height: 70px;
}

.icon-circle-sm {
    width: 50px;
    height: 50px;
}

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;
}

/* ========== UTILITY COLORS ========== */
.bg-rose {
    background-color: var(--rose) !important;
}

.bg-rose-light {
    background-color: var(--rose-light) !important;
}

.bg-blush {
    background-color: var(--blush) !important;
}

.text-rose {
    color: var(--rose) !important;
}

.text-rose-light {
    color: var(--rose-light) !important;
}

.border-rose {
    border-color: var(--rose) !important;
}

.bg-gold {
    background-color: var(--accent-gold);
    color: white;
}

.text-gold {
    color: var(--accent-gold);
}

.btn-rose {
    background-color: var(--rose);
    border-color: var(--rose);
    color: #fff;
}

    .btn-rose:hover {
        background-color: #5a0460;
        border-color: #5a0460;
        color: #fff;
    }

.btn-outline-rose {
    color: var(--rose);
    border-color: var(--rose);
}

    .btn-outline-rose:hover {
        background-color: var(--rose);
        color: #fff;
    }

/* ========== HERO ========== */
.hero-section {
    min-height: auto;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
    width: 100%;
    padding: 6rem 0 4rem;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 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%), radial-gradient(ellipse at 60% 80%, rgba(107,5,114,0.08) 0%, transparent 40%);
        pointer-events: none;
    }

.hero-section--compact {
    padding-top: 20px !important;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.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;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title--sm {
    font-size: 2.5rem;
}

.hero-title .highlight {
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .InWave {
    background: var(--gradient-InWave);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-subtitle--medium {
    font-weight: 500;
}

/* ========== LUXURY BUTTONS ========== */
.btn-luxury {
    background: var(--gradient-luxury);
    color: #FFFFFF;
    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;
}

    .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: #FFFFFF;
    }

.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;
}

    .btn-outline-luxury:hover {
        background: var(--primary-rose);
        color: #FFFFFF;
        transform: translateY(-3px);
    }

/* ========== HERO IMAGE & STATS ========== */
.hero-image-container {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

    .hero-image img {
        width: 100%;
        height: auto;
        filter: brightness(0.9);
    }

.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%;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(107,5,114,0.15);
    margin: 0 auto;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-rose);
    line-height: 1.1;
}

.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 ========== */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3e4f4 0%, #9b3fa2 100%);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation-delay: 0s;
}

.floating-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -100px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ========== SECTIONS ========== */
.section {
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.section-dark {
    background: #FFFFFF;
}

.section-gradient {
    background: linear-gradient(180deg, #faf5fb 0%, #FFFFFF 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-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;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== BENEFIT CARDS ========== */
.benefit-card {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    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);
}

    .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;
    }

    .benefit-card:hover::before {
        transform: scaleX(1);
    }

    .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);
    }

.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;
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-luxury);
    color: #FFFFFF;
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== TECHNOLOGY ========== */
.tech-feature {
    display: flex;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(107,5,114,0.1);
}

    .tech-feature:last-child {
        border-bottom: none;
    }

.tech-percentage {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 150px;
}

.tech-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.tech-info p {
    color: var(--text-muted);
    margin: 0;
}

/* ========== PROCESS STEPS ========== */
.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 3rem;
}

.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;
}

.process-step:hover .step-number {
    background: var(--gradient-luxury);
    color: #FFFFFF;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
}

/* ========== TREATMENT AREAS ========== */
.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;
}

    .area-tag:hover {
        background: var(--gradient-luxury);
        color: #FFFFFF;
        border-color: transparent;
        transform: scale(1.05);
    }

.area-dot {
    font-size: 0.5rem;
    vertical-align: middle;
}

/* ========== COMPARISON TABLE ========== */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -15px;
    padding: 0 15px;
}

.comparison-table {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    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);
}

    .comparison-table thead {
        background: rgba(107,5,114,0.1);
    }

    .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);
    }

    .comparison-table td {
        padding: 1.25rem 1.5rem;
        border-color: rgba(107,5,114,0.1);
        vertical-align: middle;
        color: var(--primary-dark);
    }

    .comparison-table tbody tr {
        transition: all 0.3s ease;
    }

        .comparison-table tbody tr:hover {
            background: rgba(107,5,114,0.05);
        }

.check-icon {
    color: #4CAF50;
    font-size: 1.2rem;
}

.partial-icon {
    color: #FFC107;
    font-size: 1.2rem;
}

.highlight-col {
    background: rgba(107,5,114,0.08) !important;
}

/* ========== RESULTS CARDS ========== */
.result-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(107,5,114,0.15);
}

    .result-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .result-card:hover img {
        transform: scale(1.05);
    }

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(45,45,45,0.9));
    color: #FFFFFF;
}

.result-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--gradient-luxury);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

/* ========== CONTRAINDICATIONS ========== */
.contra-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(107,5,114,0.1);
    color: var(--primary-dark);
}

.contra-icon {
    width: 30px;
    height: 30px;
    background: rgba(107,5,114,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

    .contra-icon i {
        color: var(--primary-rose);
        font-size: 0.8rem;
    }

/* ========== RECOMMENDATIONS ========== */
.rec-card {
    background: rgba(107,5,114,0.05);
    border: 1px solid rgba(107,5,114,0.2);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

    .rec-card h4 {
        color: var(--primary-rose);
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }

.rec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .rec-list li {
        padding: 0.75rem 0 0.75rem 30px;
        position: relative;
        color: var(--text-muted);
    }

        .rec-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-rose);
        }

/* ========== CTA SECTION ========== */
.cta-section {
    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%;
}

.cta-section--compact {
    padding: 3.5rem 0;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.cta-desc {
    max-width: 700px;
    line-height: 1.8;
    font-size: 1rem;
}

.cta-note {
    max-width: 600px;
    font-size: 0.9rem;
}

.cta-location {
    font-size: 0.85rem;
}

/* ========== FOOTER ========== */
.footer {
    background: #2D2D2D;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(107,5,114,0.2);
    overflow: hidden;
    width: 100%;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.footer-text {
    color: #A0A0A0;
    line-height: 1.8;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #A0A0A0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--primary-rose-light);
        }

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(107,5,114,0.2);
    border: 1px solid rgba(107,5,114,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-rose-light);
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--gradient-luxury);
        color: #FFFFFF;
        transform: translateY(-3px);
    }

.footer-bottom {
    border-top: 1px solid rgba(107,5,114,0.2);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: #A0A0A0;
    font-size: 0.9rem;
}

/* ========== DECORATIVE ========== */
.decorative-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-luxury);
    margin: 1rem auto;
}

.img-placeholder {
    background: linear-gradient(135deg, rgba(107,5,114,0.2), rgba(155,63,162,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========== BMI CALCULATOR ========== */
.bmi-calculator-card {
    background: #FFFFFF;
    border: 1px solid rgba(107,5,114,0.2);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(107,5,114,0.15);
    position: relative;
    overflow: hidden;
}

    .bmi-calculator-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--gradient-luxury);
    }

.bmi-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bmi-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 1rem;
    font-size: 2rem;
    color: var(--primary-rose);
}

.bmi-header h4 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 0;
}

.bmi-label {
    display: block;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.bmi-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(107,5,114,0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

    .bmi-input:focus {
        outline: none;
        border-color: var(--primary-rose);
        box-shadow: 0 0 0 4px rgba(107,5,114,0.1);
        background: #FFFFFF;
    }

    .bmi-input::placeholder {
        color: #999;
    }

.bmi-result {
    background: linear-gradient(135deg, rgba(107,5,114,0.05), rgba(243,228,244,0.3));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(107,5,114,0.15);
}

.bmi-value-container {
    margin-bottom: 1rem;
}

.bmi-value-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.bmi-value {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.bmi-category {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
}

    .bmi-category.underweight {
        background: rgba(52,152,219,0.15);
        color: #2980b9;
    }

    .bmi-category.normal {
        background: rgba(46,204,113,0.15);
        color: #27ae60;
    }

    .bmi-category.overweight {
        background: rgba(243,156,18,0.15);
        color: #d68910;
    }

    .bmi-category.obese {
        background: rgba(231,76,60,0.15);
        color: #c0392b;
    }

.bmi-recommendation {
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

    .bmi-recommendation.suitable {
        background: linear-gradient(135deg, rgba(46,204,113,0.1), rgba(39,174,96,0.15));
        border: 1px solid rgba(46,204,113,0.3);
    }

        .bmi-recommendation.suitable h5 {
            color: #27ae60;
        }

    .bmi-recommendation.not-suitable {
        background: linear-gradient(135deg, rgba(231,76,60,0.1), rgba(192,57,43,0.15));
        border: 1px solid rgba(231,76,60,0.3);
    }

        .bmi-recommendation.not-suitable h5 {
            color: #c0392b;
        }

    .bmi-recommendation h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .bmi-recommendation p {
        margin: 0;
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
    }

.bmi-scale {
    background: rgba(107,5,114,0.05);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(107,5,114,0.1);
}

    .bmi-scale h6 {
        color: var(--primary-dark);
        font-size: 0.9rem;
        font-weight: 600;
    }

.bmi-scale-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.bmi-scale-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bmi-scale-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* ========== RESULTS GALLERY ========== */
.results-gallery-section {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #faf5fb 0%, #FFFFFF 100%);
    overflow: hidden;
}

.results-gallery-section--reversed {
    background: linear-gradient(180deg, #FFFFFF 0%, #faf5fb 100%);
}

.results-gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .results-gallery-header h3 {
        font-size: 2rem;
        font-weight: 600;
        color: var(--primary-dark);
        margin-bottom: 0.5rem;
    }

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

.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;
}

    .gallery-item::after {
        content: '\f00e';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: #fff;
        background: rgba(107,5,114,0.4);
        opacity: 0;
        transition: opacity 0.35s ease;
        border-radius: 16px;
        pointer-events: none;
    }

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

    .gallery-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(107,5,114,0.2);
        border-color: rgba(107,5,114,0.3);
    }

    .gallery-item img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

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

/* ========== GALLERY MODAL ========== */
.inwave-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14,14,14,0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

    .inwave-modal-overlay.active {
        display: flex;
    }

.inwave-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: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.inwave-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .inwave-modal-header h5 {
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
    }

.inwave-modal-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}

    .inwave-modal-close:hover {
        color: #fff;
    }

.inwave-modal-body {
    padding: 0;
    text-align: center;
}

    .inwave-modal-body img {
        width: 100%;
        display: block;
    }

.inwave-modal-footer {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.inwave-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;
}

    .inwave-modal-nav:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(107,5,114,0.4);
    }

    .inwave-modal-nav:disabled {
        opacity: 0.3;
        cursor: default;
        transform: none;
        box-shadow: none;
    }

.inwave-modal-counter {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    align-self: center;
}

/* ========== TECH COLLAPSE SECTION ========== */
.iw-tech-bg {
    background: #faf5fb;
}

.iw-badge-pill {
    letter-spacing: 2px;
}

.iw-tech-img {
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(107,5,114,0.15);
    border: 1px solid rgba(107,5,114,0.1);
    width: 100%;
}

.tech-collapse-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    padding: 18px 30px;
    background: linear-gradient(135deg, rgba(107,5,114,0.08), rgba(155,63,162,0.04));
    border: 1px solid rgba(107,5,114,0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    margin: 0 auto;
    max-width: 700px;
}

    .tech-collapse-trigger:hover {
        background: linear-gradient(135deg, rgba(107,5,114,0.14), rgba(155,63,162,0.08));
        border-color: rgba(107,5,114,0.3);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(107,5,114,0.1);
    }

    .tech-collapse-trigger h4 {
        margin: 0;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--primary-dark);
    }

    .tech-collapse-trigger i.toggle-icon {
        font-size: 0.85rem;
        color: var(--primary-rose);
        transition: transform 0.4s ease;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(107,5,114,0.1);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .tech-collapse-trigger.expanded i.toggle-icon {
        transform: rotate(180deg);
    }

.tech-collapse-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

    .tech-collapse-body.open {
        max-height: 5000px;
    }

.tech-collapse-inner {
    padding-top: 2.5rem;
}

.tech-detail-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;
}

    .tech-detail-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--gradient-luxury);
        border-radius: 18px 0 0 18px;
    }

    .tech-detail-card h4,
    .tech-detail-card span {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .tech-detail-card h4 i,
        .tech-detail-card span i {
            color: var(--primary-rose);
            font-size: 1rem;
        }

    .tech-detail-card p {
        color: var(--text-muted);
        line-height: 1.75;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

        .tech-detail-card p:last-child {
            margin-bottom: 0;
        }

.tech-mini-stats {
    display: flex;
    gap: 16px;
    margin: 1rem 0 0;
}

.tech-mini-stat {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(107,5,114,0.06), rgba(155,63,162,0.03));
    border-radius: 12px;
    border: 1px solid rgba(107,5,114,0.08);
}

    .tech-mini-stat strong {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-rose);
        line-height: 1;
        margin-bottom: 4px;
    }

    .tech-mini-stat span {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

.tech-mechanism-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 1rem;
}

.tech-mechanism-item {
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(107,5,114,0.05), rgba(155,63,162,0.02));
    border-radius: 14px;
    border: 1px solid rgba(107,5,114,0.08);
}

    .tech-mechanism-item h5 {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--primary-rose);
        margin-bottom: 0.5rem;
    }

    .tech-mechanism-item p {
        font-size: 0.88rem;
        margin: 0;
    }

.tech-applicator-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 1rem;
}

.tech-applicator-item {
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(107,5,114,0.15);
    background: #fff;
}

    .tech-applicator-item h5 {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--primary-rose);
        margin-bottom: 0.4rem;
    }

    .tech-applicator-item p {
        font-size: 0.88rem;
        margin: 0;
    }

/* ========== FAQ ========== */
.iw-faq-card {
    text-align: left;
    padding: 0;
    overflow: hidden;
}

.iw-faq-item {
    border-bottom: 1px solid rgba(107,5,114,0.1);
    padding: 1.5rem 2rem;
    cursor: pointer;
}

    .iw-faq-item:last-child {
        border-bottom: none;
    }

.iw-faq-q {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.iw-faq-num {
    color: var(--primary-rose);
    font-family: 'Playfair Display', serif;
}

.iw-faq-a {
    display: none;
    margin-top: 12px;
}

    .iw-faq-a p {
        margin: 0;
        line-height: 1.75;
        font-size: 0.95rem;
    }

/* ========== UTILITY / INLINE REPLACEMENTS ========== */
.iw-text-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 850px;
    margin: 0 auto;
}

.iw-text-protocol {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.iw-img-ar-1 {
    aspect-ratio: 1;
}

.iw-img-ar-1339 {
    aspect-ratio: 1.339;
}

.iw-img-ar-1098 {
    aspect-ratio: 1.098;
}

.iw-img-ar-1140 {
    aspect-ratio: 1.140;
}

.iw-icon-rose {
    color: var(--primary-rose);
}

.iw-icon-rose-mr {
    color: var(--primary-rose);
    margin-right: 8px;
}

.iw-icon-rose-mr2 {
    color: var(--primary-rose);
    margin-right: 10px;
}

.iw-text-rose-strong {
    color: var(--primary-rose);
}

.iw-result-icon {
    color: var(--primary-rose);
}

.iw-result-stat h5 {
    font-size: 0.95rem;
}

.iw-deco-sm {
    width: 60px;
    height: 3px;
}

.iw-price-spacer {
    height: 16px !important;
}

.iw-price-banner {
    background-color: #f5ecf5;
    color: yellow;
    padding: 10px !important;
    margin-top: -16px !important;
    border-radius: 0 !important;
}

    .iw-price-banner h2 {
        color: #6b0572;
        font-size: 24px;
    }

    .iw-price-banner p {
        color: #6B6B6B;
    }

/* Wistia embed */
wistia-player[media-id='c119rrgfzz']:not(:defined) {
    background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/c119rrgfzz/swatch');
    display: block;
    filter: blur(5px);
    padding-top: 100.0%;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        padding: 1rem 1.25rem;
        border-radius: 12px;
        margin-top: 1.25rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-divider {
        height: 30px;
    }

    .tech-percentage {
        font-size: 3rem;
        min-width: 100px;
    }

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

    .gallery-item img {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 4rem 0 2.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .process-step {
        padding-left: 80px;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

    .hero-stats {
        padding: 0.85rem 0.75rem;
        margin-top: 1rem;
        border-radius: 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .stat-divider {
        height: 24px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .tech-feature {
        flex-direction: column;
        text-align: center;
    }

    .tech-percentage {
        font-size: 2.5rem;
        min-width: auto;
        margin-bottom: 0.5rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

        .comparison-table th,
        .comparison-table td {
            padding: 0.75rem 0.5rem;
        }

    .floating-element {
        display: none;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .area-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin: 0.25rem;
    }

    .tech-mechanism-grid {
        grid-template-columns: 1fr;
    }

    .tech-applicator-row {
        grid-template-columns: 1fr;
    }

    .tech-mini-stats {
        flex-direction: column;
        gap: 10px;
    }

    .tech-mini-stat strong {
        font-size: 1.5rem;
    }

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

    .gallery-item img {
        height: 160px;
    }

    .gallery-item {
        border-radius: 10px;
    }

        .gallery-item::after {
            border-radius: 10px;
        }

    .inwave-modal-content {
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        padding: 3rem 0 2rem;
    }

    .btn-luxury, .btn-outline-luxury {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }

    .section-header {
        margin-bottom: 1.25rem;
    }

    .benefit-card {
        padding: 1.5rem 1.25rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    .bmi-calculator-card {
        padding: 1.5rem;
    }

    .bmi-value {
        font-size: 3rem;
    }

    .bmi-scale-items {
        grid-template-columns: 1fr;
    }
}
