﻿/* ==============================================
   slabeste-tshape.css
   Pagina: Slăbire localizată și eliminare celulită T-Shape 2.0
   ============================================== */

/* ========== PAGE VARIABLES ========== */
.sf-page {
    --accent: #6b0572;
    --accent-light: #9b3fa2;
    --accent-bright: #c06ec6;
    --accent-pale: #f3e4f4;
    --accent-glow: #8a2090;
    --dark: #0e0e0e;
    --charcoal: #1a1a1a;
    --white: #ffffff;
    --muted: #777;
    --text: #444;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
}

.sf-page {
    font-family: var(--font-body);
    color: var(--text);
    overflow-x: hidden;
    background: #fff;
}

/* ========== ANIMATIONS ========== */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    [data-animate].sf-visible {
        opacity: 1;
        transform: none !important;
    }

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(-50px);
}

[data-animate="fade-right"] {
    transform: translateX(50px);
}

[data-animate="fade-in"] {
    transform: scale(0.95);
}

[data-animate="zoom-in"] {
    transform: scale(0.85);
}

.sf-delay-1 {
    transition-delay: 0.1s;
}

.sf-delay-2 {
    transition-delay: 0.2s;
}

.sf-delay-3 {
    transition-delay: 0.3s;
}

.sf-delay-4 {
    transition-delay: 0.4s;
}

.sf-delay-5 {
    transition-delay: 0.5s;
}

.sf-delay-6 {
    transition-delay: 0.6s;
}

/* ========== HERO ========== */
.sf-hero {
    position: relative;
    background: linear-gradient(160deg, #0e0e0e 0%, #1a0a1e 40%, #2d0b30 70%, #0e0e0e 100%);
    padding: 80px 0 60px;
    overflow: hidden;
    text-align: center;
}

    .sf-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 70%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(107,5,114,0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .sf-hero::after {
        content: '';
        position: absolute;
        bottom: -50%;
        right: -20%;
        width: 60%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(155,63,162,0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.sf-hero-badge {
    display: inline-block;
    background: rgba(107,5,114,0.25);
    border: 1px solid rgba(155,63,162,0.3);
    color: var(--accent-bright);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sf-hero h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .sf-hero h1 span {
        background: linear-gradient(135deg, var(--accent-bright), var(--accent-pale));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.sf-hero p.lead {
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 30px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.sf-hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

    .sf-hero-scroll:hover {
        color: var(--accent-bright);
    }

    .sf-hero-scroll i {
        animation: sf-bounce-down 2s infinite;
    }

@keyframes sf-bounce-down {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ========== QUICK NAV ========== */
.sf-quick-nav {
    background: var(--dark);
    border-bottom: 1px solid rgba(107,5,114,0.15);
    padding: 16px 0;
    position: sticky;
    top: 60px;
    z-index: 100;
}

.sf-quick-nav-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

    .sf-quick-nav-inner::-webkit-scrollbar {
        display: none;
    }

.sf-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none !important;
    transition: all 0.25s;
}

    .sf-pill:hover {
        background: rgba(107,5,114,0.2);
        border-color: rgba(107,5,114,0.4);
        color: #fff;
    }

    .sf-pill i {
        font-size: 0.77rem;
        color: var(--accent-light);
    }

/* ========== SECTIONS ========== */
.sf-section {
    padding: 70px 0;
}

    .sf-section.sf-bg-white {
        background: #fff;
    }

    .sf-section.sf-bg-soft {
        background: #f9f3fa;
    }

    .sf-section.sf-bg-dark {
        background: var(--dark);
        color: #fff;
    }

.sf-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sf-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

    .sf-section-label::before,
    .sf-section-label::after {
        content: '';
        width: 30px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent));
    }

    .sf-section-label::after {
        background: linear-gradient(90deg, var(--accent), transparent);
    }

.sf-section-label--left {
    text-align: left;
}

.sf-section-header h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sf-section-header p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== ALT ROWS ========== */
.sf-alt-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

    .sf-alt-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s;
    }

    .sf-alt-img:hover img {
        transform: scale(1.03);
    }

.sf-alt-text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.25;
    color: var(--dark);
}

    .sf-alt-text h3 span {
        color: var(--accent);
    }

.sf-alt-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text);
}

/* ========== FEATURE CARDS ========== */
.sf-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(107,5,114,0.08);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .sf-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--accent-light), transparent);
    }

    .sf-feature-card:hover {
        box-shadow: 0 8px 35px rgba(107,5,114,0.12);
        transform: translateY(-4px);
    }

.sf-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(107,5,114,0.3);
}

.sf-feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.sf-feature-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ========== STEPS ========== */
.sf-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    counter-reset: sf-step;
}

.sf-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px 24px;
    position: relative;
    counter-increment: sf-step;
}

    .sf-step::before {
        content: counter(sf-step);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent), var(--accent-light));
        color: #fff;
        font-family: var(--font-display);
        font-size: 1.2rem;
        font-weight: 700;
        margin: 0 auto 16px;
        box-shadow: 0 4px 15px rgba(107,5,114,0.3);
        position: relative;
        z-index: 2;
    }

    .sf-step::after {
        content: '';
        position: absolute;
        top: 54px;
        left: calc(50% + 30px);
        width: calc(100% - 60px);
        height: 2px;
        background: linear-gradient(90deg, var(--accent-light), rgba(107,5,114,0.15));
        z-index: 1;
    }

    .sf-step:last-child::after {
        display: none;
    }

    .sf-step h5 {
        font-family: var(--font-display);
        font-size: 1.02rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 8px;
    }

    .sf-step p {
        font-size: 0.88rem;
        color: var(--muted);
        line-height: 1.55;
        margin: 0;
    }

/* ========== VIDEO ========== */
.sf-video-wrap video {
    width: 100%;
    display: block;
}

/* ========== GALLERY ITEMS ========== */
.sf-gallery-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(107,5,114,0.08);
    cursor: pointer;
    transition: all 0.3s;
}

    .sf-gallery-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(107,5,114,0.15);
    }

    .sf-gallery-item img {
        width: 100%;
        display: block;
        transition: transform 0.4s;
    }

    .sf-gallery-item:hover img {
        transform: scale(1.04);
    }

/* ========== MINI GALLERY ========== */
.sf-results-strip {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(107,5,114,0.08);
}

.sf-results-strip-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
}

    .sf-results-strip-title i {
        font-size: 0.85rem;
    }

    .sf-results-strip-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, rgba(107,5,114,0.2), transparent);
    }

.sf-mini-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/* ========== CALLOUT ========== */
.sf-callout {
    background: linear-gradient(135deg, rgba(107,5,114,0.06), rgba(155,63,162,0.03));
    border-left: 4px solid var(--accent);
    border-radius: 0 14px 14px 0;
    padding: 20px 24px;
    margin: 20px 0;
}

    .sf-callout p {
        margin: 0;
        font-size: 1.0rem;
        line-height: 1.7;
        color: var(--text);
    }

/* ========== STAT BADGES ========== */
.sf-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 20px 0;
}

.sf-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(107,5,114,0.06), rgba(155,63,162,0.03));
    border: 1px solid rgba(107,5,114,0.1);
    border-radius: 14px;
    padding: 14px 20px;
    flex: 1;
    min-width: 140px;
}

.sf-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.sf-stat-label {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.35;
}

/* ========== CUSTOM LIST ========== */
.sf-list {
    list-style: none;
    padding-left: 0;
}

    .sf-list li {
        padding: 8px 0 8px 22px;
        position: relative;
        font-size: 1.0rem;
        line-height: 1.7;
    }

        .sf-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 15px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.6;
        }

/* ========== BUTTONS ========== */
.sf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
}

.sf-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(107,5,114,0.3);
}

    .sf-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(107,5,114,0.4);
        color: #fff !important;
    }

.sf-btn-outline {
    background: transparent;
    color: var(--accent) !important;
    border: 2px solid rgba(107,5,114,0.25);
}

    .sf-btn-outline:hover {
        background: var(--accent);
        color: #fff !important;
        border-color: var(--accent);
    }

.sf-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.sf-btn-group--center {
    justify-content: center;
}

.sf-btn-white {
    background: #fff;
    color: var(--accent) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sf-btn-ghost {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.3);
}

/* ========== CTA BANNER ========== */
.sf-cta-banner {
    background: linear-gradient(135deg, #6b0572, #9b3fa2, #6b0572);
    background-size: 200% 100%;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .sf-cta-banner::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 160px;
        height: 160px;
        background: #fff;
        opacity: 0.06;
        border-radius: 50%;
    }

    .sf-cta-banner h3 {
        font-family: var(--font-display);
        font-size: 1.9rem;
        font-weight: 700;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .sf-cta-banner p {
        font-size: 1.05rem;
        opacity: 0.7;
        margin-bottom: 24px;
        position: relative;
        z-index: 1;
    }

/* ========== FAQ ========== */
.sf-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.sf-faq-item {
    background: #fff;
    border: 1px solid rgba(107,5,114,0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
}

    .sf-faq-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--accent), var(--accent-light));
        opacity: 0;
        transition: opacity 0.3s;
        border-radius: 18px 0 0 18px;
    }

    .sf-faq-item:hover {
        border-color: rgba(107,5,114,0.18);
        box-shadow: 0 6px 28px rgba(107,5,114,0.08);
    }

        .sf-faq-item:hover::before,
        .sf-faq-item.sf-open::before {
            opacity: 1;
        }

    .sf-faq-item.sf-open {
        border-color: rgba(107,5,114,0.2);
        box-shadow: 0 8px 32px rgba(107,5,114,0.1);
    }

.sf-faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.25s;
    line-height: 1.45;
}

    .sf-faq-question:hover {
        color: var(--accent);
    }

    .sf-faq-question:focus {
        outline: none;
    }

    .sf-faq-question span {
        flex: 1;
    }

.sf-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(--accent);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s;
}

.sf-faq-item:hover .sf-faq-num,
.sf-faq-item.sf-open .sf-faq-num {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    box-shadow: 0 4px 12px rgba(107,5,114,0.25);
}

.sf-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;
}

    .sf-faq-toggle i {
        color: var(--accent-light);
        font-size: 0.75rem;
        transition: transform 0.35s ease;
    }

.sf-faq-item.sf-open .sf-faq-toggle {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: 0 3px 10px rgba(107,5,114,0.25);
}

    .sf-faq-item.sf-open .sf-faq-toggle i {
        color: #fff;
        transform: rotate(180deg);
    }

.sf-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;
}

.sf-faq-item.sf-open .sf-faq-answer {
    max-height: 500px;
    padding: 0 24px 22px 78px;
}

.sf-faq-answer p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.75;
    margin: 0;
}

.sf-faq-answer strong {
    color: var(--dark);
}

.sf-faq-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(107,5,114,0.06), rgba(155,63,162,0.03));
    border: 1px dashed rgba(107,5,114,0.15);
    border-radius: 16px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

    .sf-faq-cta:hover {
        border-color: rgba(107,5,114,0.3);
        background: rgba(107,5,114,0.08);
    }

    .sf-faq-cta p {
        margin: 0;
        font-size: 0.92rem;
        color: var(--muted);
    }

    .sf-faq-cta i {
        color: var(--accent);
        font-size: 1.1rem;
    }

.sf-faq-cta-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

/* ========== PRICE HEADER ========== */
.sf-price-header {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    padding: 20px 0;
    text-align: center;
}

    .sf-price-header h2 {
        font-family: var(--font-display);
        color: #fff;
        font-size: 1.6rem;
        font-weight: 700;
        margin: 0;
    }

/* ========== TRUST BADGES ========== */
.sf-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.sf-trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid rgba(107,5,114,0.08);
    border-radius: 14px;
    padding: 18px 22px;
    min-width: 220px;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s;
}

    .sf-trust-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(107,5,114,0.1);
    }

.sf-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(107,5,114,0.25);
}

.sf-trust-badge h6 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 2px;
}

.sf-trust-badge span {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}

/* ========== AUTO-PLAY VIDEO ========== */
.sf-autoplay-video video {
    width: 100%;
    display: block;
}

/* ========== GALLERY MODAL ========== */
.sf-modal-gallery .modal-content {
    background: var(--dark);
    border: 1px solid rgba(107,5,114,0.2);
    border-radius: 18px;
    overflow: hidden;
}

.sf-modal-gallery .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 20px;
}

.sf-modal-gallery .modal-title {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
}

.sf-modal-gallery .modal-header .close {
    color: rgba(255,255,255,0.5);
    font-size: 1.4rem;
    text-shadow: none;
    opacity: 1;
}

.sf-modal-gallery .modal-body {
    padding: 0;
}

    .sf-modal-gallery .modal-body img {
        width: 100%;
        padding: 0;
    }

.sf-modal-gallery .modal-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 20px;
}

.sf-modal-gallery .btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

    .sf-modal-gallery .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(107,5,114,0.4);
    }

/* ========== UTILITY (inline replacements) ========== */
.sf-icon-accent {
    color: var(--accent);
    margin-right: 8px;
}

.sf-icon-mr {
    margin-right: 10px;
}

.sf-img-ar-1 {
    aspect-ratio: 1;
}

.sf-img-ar-0552 {
    aspect-ratio: 0.552;
}

.sf-img-ar-0726 {
    aspect-ratio: 0.726;
}

.sf-img-ar-1339 {
    aspect-ratio: 1.339;
}

.sf-img-ar-1039 {
    aspect-ratio: 1.039;
}

.sf-img-ar-132 {
    aspect-ratio: 1.32;
}

.sf-img-ar-1333 {
    aspect-ratio: 1.333;
}

.sf-img-ar-1778 {
    aspect-ratio: 1.778;
}

.sf-col-no-pad {
    padding: 0 !important;
}

.sf-callout--maxw {
    max-width: 860px;
    margin: 30px auto 0;
}

.sf-faq-section {
    position: relative;
    overflow: hidden;
}

.sf-price-spacer {
    height: 16px !important;
    margin-top: 16px !important;
}

.sf-mt-neg32 {
    margin-top: -32px;
}

.sf-modal-close-icon {
    color: rgba(255,255,255,0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .sf-hero h1 {
        font-size: 2rem;
    }

    .sf-section-header h2 {
        font-size: 1.7rem;
    }

    .sf-alt-text h3 {
        font-size: 1.3rem;
    }

    .sf-section {
        padding: 50px 0;
    }

    .sf-cta-banner {
        padding: 36px 24px;
    }

        .sf-cta-banner h3 {
            font-size: 1.4rem;
        }

    .sf-mini-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .sf-hero {
        padding: 50px 0 40px;
    }

        .sf-hero h1 {
            font-size: 1.65rem;
        }

    .sf-btn-group {
        flex-direction: column;
    }

        .sf-btn-group .sf-btn {
            justify-content: center;
        }

    .sf-steps {
        flex-direction: column;
    }

    .sf-step::after {
        top: auto;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: 20px;
        transform: translateX(-50%);
    }

    .sf-trust-badge {
        max-width: 100%;
    }

    .sf-mini-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .sf-stat-row {
        gap: 8px;
        justify-content: center;
    }

    .sf-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 4px;
        padding: 12px 8px;
        min-width: 0;
        flex: 1 1 0;
        border-radius: 12px;
    }

    .sf-stat-num {
        font-size: 1.4rem;
    }

    .sf-stat-label {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .sf-faq-answer {
        padding: 0 18px 0 18px;
    }

    .sf-faq-item.sf-open .sf-faq-answer {
        padding: 0 18px 18px 18px;
    }

    .sf-faq-question {
        padding: 16px 18px;
        gap: 12px;
        font-size: 0.92rem;
    }
}

/* ========== GALLERY OVERLAY (replaces Bootstrap modal) ========== */
.sf-gallery-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sf-gallery-content {
    background: var(--dark);
    border: 1px solid rgba(107,5,114,0.2);
    border-radius: 18px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
}

.sf-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .sf-gallery-header h5 {
        color: #fff;
        font-family: var(--font-display);
        font-size: 1rem;
        margin: 0;
    }

.sf-gallery-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}

.sf-gallery-body {
    padding: 0;
}

    .sf-gallery-body img {
        width: 100%;
        display: block;
    }

.sf-gallery-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

    .sf-gallery-footer button {
        background: linear-gradient(135deg, var(--accent), var(--accent-light));
        color: #fff;
        border: none;
        border-radius: 100px;
        padding: 8px 20px;
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.3s;
    }

        .sf-gallery-footer button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .sf-gallery-footer button:not(:disabled):hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(107,5,114,0.4);
        }

    .sf-gallery-footer span {
        color: rgba(255,255,255,0.5);
        font-size: 0.85rem;
    }

/* ========== VIDEO FACADE ========== */
.sf-video-facade {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    background: #0e0e0e;
}

    .sf-video-facade img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s;
    }

    .sf-video-facade:hover img {
        transform: scale(1.03);
    }

.sf-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(107,5,114,0.4);
    transition: all 0.3s;
    cursor: pointer;
}

    .sf-video-play i {
        margin-left: 3px;
    }

.sf-video-facade:hover .sf-video-play {
    transform: translate(-50%, -50%) scale(1.1);
}