﻿/* ==============================================
   de-ce-epilare-laser.css
   Pagina: De ce epilare laser?
   ============================================== */

/* ========== PAGE VARIABLES ========== */
.sf-page {
    --accent: #c4008c;
    --accent-light: #e040b0;
    --accent-bright: #ff5efd;
    --accent-pale: #ffe4fb;
    --accent-glow: #d420a0;
    --dark: #0e0e0e;
    --charcoal: #1a1a1a;
    --bg: #fdf3fb;
    --white: #fafafa;
    --muted: #888;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
}

.sf-page {
    font-family: var(--font-body);
    color: #333;
    overflow-x: hidden;
}

/* ========== 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-laser {
    position: relative;
    background: linear-gradient(160deg, #0e0e0e 0%, #1a0518 40%, #2d0828 70%, #0e0e0e 100%);
    padding: 80px 0 60px;
    overflow: hidden;
    text-align: center;
}

    .sf-hero-laser::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 70%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(196,0,140,0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .sf-hero-laser::after {
        content: '';
        position: absolute;
        bottom: -50%;
        right: -20%;
        width: 60%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(255,94,253,0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.sf-hero-badge {
    display: inline-block;
    background: rgba(196,0,140,0.25);
    border: 1px solid rgba(255,94,253,0.3);
    color: var(--accent-bright);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.79rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sf-hero-laser 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-laser 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-laser p.lead {
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    max-width: 640px;
    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(196,0,140,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.86rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none !important;
    transition: all 0.25s;
}

    .sf-pill:hover {
        background: rgba(196,0,140,0.2);
        border-color: rgba(196,0,140,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-dark {
        background: var(--dark);
        color: #fff;
    }

    .sf-section.sf-bg-light {
        background: var(--bg);
        color: #333;
    }

    .sf-section.sf-bg-gradient {
        background: linear-gradient(180deg, #0e0e0e, #1a0518, #0e0e0e);
        color: #fff;
    }

    .sf-section.sf-bg-white {
        background: #fff;
        color: #333;
    }

.sf-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sf-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.79rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 14px;
}

    .sf-section-label::before,
    .sf-section-label::after {
        content: '';
        width: 30px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent-light));
    }

    .sf-section-label::after {
        background: linear-gradient(90deg, var(--accent-light), transparent);
    }

.sf-section-header h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sf-section-header p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.sf-bg-dark .sf-section-header h2,
.sf-bg-gradient .sf-section-header h2 {
    color: #fff;
}

.sf-bg-dark .sf-section-header p,
.sf-bg-gradient .sf-section-header p {
    color: rgba(255,255,255,0.5);
}

/* ========== ALT ROWS ========== */
.sf-alt-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

    .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;
}

.sf-bg-dark .sf-alt-text h3,
.sf-bg-gradient .sf-alt-text h3 {
    color: #fff;
}

.sf-bg-light .sf-alt-text h3,
.sf-bg-white .sf-alt-text h3 {
    color: var(--dark);
}

.sf-alt-text h3 span {
    color: var(--accent);
}

.sf-bg-dark .sf-alt-text h3 span,
.sf-bg-gradient .sf-alt-text h3 span {
    color: var(--accent-bright);
}

.sf-alt-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.sf-bg-dark .sf-alt-text p,
.sf-bg-gradient .sf-alt-text p {
    color: rgba(255,255,255,0.6);
}

/* ========== CUSTOM LIST ========== */
.sf-list {
    list-style: none;
    padding-left: 0;
}

    .sf-list li {
        padding: 8px 0 8px 22px;
        position: relative;
        font-size: 1.05rem;
        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;
        }

.sf-bg-dark .sf-list li {
    color: rgba(255,255,255,0.7);
}

    .sf-bg-dark .sf-list li::before {
        background: var(--accent-bright);
        opacity: 0.7;
    }

.sf-bg-gradient .sf-list li {
    color: rgba(255,255,255,0.7);
}

    .sf-bg-gradient .sf-list li::before {
        background: var(--accent-bright);
        opacity: 0.7;
    }

/* ========== 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(196,0,140,0.3);
}

    .sf-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(196,0,140,0.4);
        color: #fff !important;
    }

.sf-btn-outline {
    background: transparent;
    color: var(--accent) !important;
    border: 2px solid rgba(196,0,140,0.3);
}

    .sf-btn-outline:hover {
        background: var(--accent);
        color: #fff !important;
        border-color: var(--accent);
    }

.sf-bg-dark .sf-btn-outline {
    color: var(--accent-bright) !important;
    border-color: rgba(255,94,253,0.3);
}

    .sf-bg-dark .sf-btn-outline:hover {
        background: var(--accent-light);
        color: #fff !important;
    }

.sf-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

/* ========== VIDEO ========== */
.sf-video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(196,0,140,0.2);
    border: 2px solid rgba(196,0,140,0.15);
}

    .sf-video-wrap video {
        width: 100%;
        display: block;
    }

.sf-video-caption {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========== CALLOUT ========== */
.sf-callout {
    background: linear-gradient(135deg, rgba(196,0,140,0.08), rgba(255,94,253,0.05));
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 20px 0;
}

    .sf-callout p {
        margin: 0;
        font-size: 1.01rem;
        line-height: 1.7;
    }

    .sf-callout.sf-callout-dark {
        background: linear-gradient(135deg, rgba(196,0,140,0.15), rgba(255,94,253,0.08));
        border-left-color: var(--accent-bright);
    }

.sf-callout-dark p {
    color: rgba(255,255,255,0.7);
}

/* ========== ADVANTAGE CARDS ========== */
.sf-adv-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(196,0,140,0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

    .sf-adv-card:hover {
        box-shadow: 0 8px 30px rgba(196,0,140,0.12);
        transform: translateY(-3px);
    }

.sf-adv-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;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(196,0,140,0.3);
}

.sf-adv-card h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.sf-adv-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ========== ZONE CARDS ========== */
.sf-zone-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    height: 100%;
}

    .sf-zone-card:hover {
        border-color: rgba(196,0,140,0.3);
        background: rgba(196,0,140,0.06);
        transform: translateY(-2px);
    }

.sf-zone-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-bright);
    flex-shrink: 0;
}

.sf-zone-card span {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ========== CONTENT CARDS ========== */
.sf-content-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

    .sf-content-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(196,0,140,0.12);
    }

.sf-content-card-body {
    padding: 28px 24px;
}

    .sf-content-card-body h3 {
        font-family: var(--font-display);
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--accent);
        margin-bottom: 14px;
    }

    .sf-content-card-body p {
        font-size: 0.95rem;
        line-height: 1.75;
        color: #555;
        margin-bottom: 0;
    }

/* ========== CTA BANNER ========== */
.sf-cta-banner {
    background: linear-gradient(135deg, #c4008c, #e040b0, #c4008c);
    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::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -30px;
        width: 200px;
        height: 200px;
        background: #fff;
        opacity: 0.04;
        border-radius: 50%;
    }

    .sf-cta-banner h3 {
        font-family: var(--font-display);
        font-size: 1.98rem;
        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;
    }

/* ========== PRICE SECTION ========== */
.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;
    }

/* ========== UTILITY CLASSES (ex inline styles) ========== */
.sf-section-label--left {
    text-align: left;
}

.sf-icon-tip {
    color: #d4a054;
    margin-right: 8px;
}

.sf-icon-accent {
    color: var(--accent);
    margin-right: 8px;
}

.sf-icon-accent-bright {
    color: var(--accent-bright);
    margin-right: 8px;
}

.sf-text-accent-bright {
    color: var(--accent-bright);
}

.sf-link-accent-bright {
    color: var(--accent-bright);
    text-decoration: underline;
}

.sf-video-col {
    padding: 5px !important;
}

.sf-video-ar {
    aspect-ratio: 1.778;
}

.sf-img-ar-200 {
    aspect-ratio: 2;
}

.sf-img-ar-150 {
    aspect-ratio: 1.497;
}

.sf-img-ar-149 {
    aspect-ratio: 1.499;
}

.sf-img-ar-143 {
    aspect-ratio: 1.43;
}

.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);
}

.sf-content-card-link {
    text-decoration: none !important;
}

.sf-card-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.sf-card-desc {
    font-size: 0.88rem;
}

.sf-icon-mr {
    margin-right: 10px;
}

.sf-price-spacer {
    height: 16px !important;
    margin-top: 16px !important;
}

/* ========== WISTIA EMBED ========== */
wistia-player[media-id='6brqb4rds6']:not(:defined) {
    background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/6brqb4rds6/swatch');
    display: block;
    filter: blur(5px);
    padding-top: 100.0%;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .sf-hero-laser 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;
        }
}

@media (max-width: 767px) {
    .sf-hero-laser {
        padding: 50px 0 40px;
    }

        .sf-hero-laser h1 {
            font-size: 1.65rem;
        }

    .sf-btn-group {
        flex-direction: column;
    }

        .sf-btn-group .sf-btn {
            justify-content: center;
        }
}
