﻿/* ==============================================
   epilare-laser-barbati.css
   Pagina: Epilare definitivă bărbați
   ============================================== */

/* ========== PAGE VARIABLES ========== */
.sf-page {
    --accent: #4b0052;
    --accent-light: #6e2078;
    --accent-bright: #9b4aa6;
    --accent-pale: #efe0f2;
    --accent-glow: #5d1366;
    --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-men {
    position: relative;
    background: linear-gradient(160deg, #0e0e0e 0%, #1a0a20 40%, #250e30 70%, #0e0e0e 100%);
    padding: 80px 0 60px;
    overflow: hidden;
    text-align: center;
}

    .sf-hero-men::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 70%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(75,0,82,0.18) 0%, transparent 70%);
        pointer-events: none;
    }

    .sf-hero-men::after {
        content: '';
        position: absolute;
        bottom: -50%;
        right: -20%;
        width: 60%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(110,32,120,0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.sf-hero-badge {
    display: inline-block;
    background: rgba(75,0,82,0.3);
    border: 1px solid rgba(110,32,120,0.35);
    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-men 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-men 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-men p.lead {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    max-width: 740px;
    margin: 0 auto 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.sf-hero-men .sf-hero-quote {
    color: rgba(255,255,255,0.35);
    font-size: 1rem;
    font-style: italic;
    max-width: 680px;
    margin: 0 auto 30px;
    line-height: 1.6;
    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(75,0,82,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(75,0,82,0.25);
        border-color: rgba(75,0,82,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: #f8f3f9;
    }

    .sf-section.sf-bg-dark {
        background: var(--dark);
        color: #fff;
    }

    .sf-section.sf-bg-gradient {
        background: linear-gradient(180deg, #0e0e0e, #1a0a20, #0e0e0e);
        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;
}

.sf-bg-dark .sf-section-label {
    color: var(--accent-bright);
}

    .sf-bg-dark .sf-section-label::before {
        background: linear-gradient(90deg, transparent, var(--accent-bright));
    }

    .sf-bg-dark .sf-section-label::after {
        background: linear-gradient(90deg, var(--accent-bright), transparent);
    }

.sf-bg-dark .sf-section-header h2 {
    color: #fff;
}

.sf-bg-dark .sf-section-header p {
    color: rgba(255,255,255,0.5);
}

.sf-bg-gradient .sf-section-label {
    color: var(--accent-bright);
}

    .sf-bg-gradient .sf-section-label::before {
        background: linear-gradient(90deg, transparent, var(--accent-bright));
    }

    .sf-bg-gradient .sf-section-label::after {
        background: linear-gradient(90deg, var(--accent-bright), transparent);
    }

.sf-bg-gradient .sf-section-header h2 {
    color: #fff;
}

.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.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);
}

/* ========== VIDEO ========== */
.sf-video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(75,0,82,0.12);
    border: 2px solid rgba(75,0,82,0.12);
}

    .sf-video-wrap iframe {
        width: 100%;
        display: block;
        border: none;
    }

.sf-video-caption {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    padding: 14px 20px;
    font-size: 0.92rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sf-video-caption--dark {
    background: rgba(255,255,255,0.1);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sf-video-vimeo-wrapper {
    padding: 100% 0 0 0;
    position: relative;
}

    .sf-video-vimeo-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* ========== 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(75,0,82,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(75,0,82,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(75,0,82,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;
}

/* ========== HIGHLIGHT CARDS ========== */
.sf-highlight-card {
    background: linear-gradient(145deg, rgba(75,0,82,0.12), rgba(110,32,120,0.06));
    border: 1px solid rgba(75,0,82,0.15);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

    .sf-highlight-card:hover {
        transform: translateY(-3px);
        border-color: rgba(75,0,82,0.3);
    }

.sf-highlight-icon-lg {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(75,0,82,0.3);
}

.sf-highlight-card h5 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.sf-highlight-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}

/* ========== CALLOUT ========== */
.sf-callout {
    background: linear-gradient(135deg, rgba(75,0,82,0.06), rgba(110,32,120,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);
    }

    .sf-callout.sf-callout-dark {
        background: linear-gradient(135deg, rgba(75,0,82,0.15), rgba(110,32,120,0.08));
        border-left-color: var(--accent-bright);
    }

.sf-callout-dark p {
    color: rgba(255,255,255,0.7);
}

.sf-callout--mt20 {
    margin-top: 20px;
}

/* ========== 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(75,0,82,0.06), rgba(110,32,120,0.03));
    border: 1px solid rgba(75,0,82,0.1);
    border-radius: 14px;
    padding: 14px 20px;
    flex: 1;
    min-width: 160px;
}

.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;
}

/* ========== 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(75,0,82,0.3);
}

    .sf-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(75,0,82,0.4);
        color: #fff !important;
    }

.sf-btn-outline {
    background: transparent;
    color: var(--accent) !important;
    border: 2px solid rgba(75,0,82,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, #4b0052, #6e2078, #4b0052);
    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.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;
    }

/* ========== 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;
    }

/* ========== STEPS ========== */
.sf-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    counter-reset: sf-step;
    position: relative;
}

.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(75,0,82,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(75,0,82,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;
    }

/* ========== 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(75,0,82,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(75,0,82,0.1);
        border-color: rgba(75,0,82,0.2);
    }

.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(75,0,82,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;
}

/* ========== 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;
        }

/* ========== 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(75,0,82,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(75,0,82,0.18);
        box-shadow: 0 6px 28px rgba(75,0,82,0.08);
    }

        .sf-faq-item:hover::before {
            opacity: 1;
        }

    .sf-faq-item.sf-open {
        border-color: rgba(75,0,82,0.2);
        box-shadow: 0 8px 32px rgba(75,0,82,0.1);
    }

        .sf-faq-item.sf-open::before {
            opacity: 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(75,0,82,0.08), rgba(110,32,120,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(75,0,82,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(75,0,82,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(75,0,82,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: 400px;
    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-deco {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75,0,82,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.sf-faq-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(75,0,82,0.06), rgba(110,32,120,0.03));
    border: 1px dashed rgba(75,0,82,0.15);
    border-radius: 16px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s;
}

    .sf-faq-cta:hover {
        border-color: rgba(75,0,82,0.3);
        background: rgba(75,0,82,0.08);
    }

    .sf-faq-cta p {
        margin: 0;
        font-size: 0.92rem;
        color: var(--muted);
    }

/* ========== LINK CARDS ========== */
.sf-link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(75,0,82,0.08);
    text-decoration: none !important;
    color: var(--text);
    transition: all 0.3s;
    margin-bottom: 12px;
}

    .sf-link-card:hover {
        transform: translateX(6px);
        box-shadow: 0 6px 25px rgba(75,0,82,0.1);
        border-color: rgba(75,0,82,0.2);
        color: var(--text);
    }

.sf-link-icon {
    width: 42px;
    height: 42px;
    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(75,0,82,0.25);
}

.sf-link-card h5 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2px;
}

.sf-link-card span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* Guarantee variant */
.sf-link-card--guarantee {
    border-color: rgba(46,204,113,0.2);
    background: rgba(46,204,113,0.03);
}

.sf-link-icon--green {
    background: linear-gradient(135deg,#27ae60,#2ecc71);
    box-shadow: 0 3px 10px rgba(39,174,96,0.25);
}

.sf-link-card--guarantee h5 {
    color: #27ae60;
}

/* ========== UTILITY (ex inline) ========== */
.sf-icon-accent {
    color: var(--accent);
    margin-right: 8px;
}

.sf-icon-warning {
    color: #f0ad4e;
    margin-right: 8px;
}

.sf-icon-mr {
    margin-right: 10px;
}

.sf-faq-cta-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

.sf-link-accent-nodeco {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.sf-img-ar-1 {
    aspect-ratio: 1;
}

.sf-price-spacer {
    height: 16px !important;
    margin-top: 16px !important;
}

.sf-mt-neg32 {
    margin-top: -32px;
}

.sf-faq-section {
    position: relative;
    overflow: hidden;
}

/* Avantaje h4 headings */
.sf-avantaj-title {
    font-family: var(--font-display);
    color: var(--accent);
    font-size: 1.05rem;
    margin: 0 0 10px;
}

.sf-avantaj-title--mt {
    margin-top: 18px;
}

.sf-avantaj-title i {
    margin-right: 8px;
    font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .sf-hero-men 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-men {
        padding: 50px 0 40px;
    }

        .sf-hero-men h1 {
            font-size: 1.65rem;
        }

    .sf-btn-group {
        flex-direction: column;
    }

        .sf-btn-group .sf-btn {
            justify-content: center;
        }

    .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-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-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;
    }

    .sf-faq-num {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .sf-faq-toggle {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }
}
