﻿/* =====================================================
   SURVEYS PRODUCT PAGE
   Follows the same design system as ERM and other product pages
   ===================================================== */

/* ── Hero ─────────────────────────────────────────── */
.srv-hero {
    min-height: 75vh;
    background: linear-gradient(160deg, #0F2B5B 0%, var(--b2e-primary) 40%, #1340A5 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}

.srv-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -15%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.srv-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -10%;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.srv-hero-content {
    position: relative;
    z-index: 2;
}

.srv-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--b2e-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.srv-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.9;
}

.srv-hero-visual {
    position: relative;
    z-index: 2;
}

.srv-hero-mockup {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--b2e-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.srv-mockup-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.srv-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

    .srv-mockup-dot:nth-child(1) { background: #FF6B6B; }
    .srv-mockup-dot:nth-child(2) { background: #FFD93D; }
    .srv-mockup-dot:nth-child(3) { background: #6BCB77; }

.srv-mockup-body {
    padding: 24px;
}

.ml-hero-dashboard {
    width: 100%;
    height: auto;
    display: block;
}

.srv-mockup-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: var(--b2e-radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    gap: 10px;
}

    .srv-mockup-placeholder i {
        font-size: 2.5rem;
    }

    .srv-mockup-placeholder span {
        font-size: 0.85rem;
        font-weight: 500;
    }

/* ── Overview ────────────────────────────────────── */
.srv-overview-bg {
    background: var(--b2e-white);
}

.srv-overview-text {
    font-size: 1.1rem;
    color: var(--b2e-gray-700);
    line-height: 2;
    max-width: 820px;
    margin: 0 auto 0;
}

/* ── Offer section ───────────────────────────────── */
.srv-offer-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.srv-offer-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 360px;
}

.srv-offer-icon-item {
    background: var(--b2e-white);
    border: 1px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--b2e-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

    .srv-offer-icon-item:hover {
        border-color: transparent;
        box-shadow: var(--b2e-shadow-lg);
        transform: translateY(-4px);
    }

    .srv-offer-icon-item i {
        font-size: 2rem;
        color: var(--b2e-primary);
    }

    .srv-offer-icon-item span {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--b2e-gray-700);
    }

.srv-offer-text {
    font-size: 1.05rem;
    color: var(--b2e-gray-700);
    line-height: 1.9;
    margin-bottom: 24px;
}

.srv-offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .srv-offer-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        font-size: 0.95rem;
        color: var(--b2e-gray-700);
        font-weight: 500;
    }

    .srv-offer-list li i {
        color: var(--b2e-success);
        font-size: 1rem;
        flex-shrink: 0;
    }

/* ── Steps section (dark) ────────────────────────── */
.srv-steps-bg {
    background: var(--b2e-gray-900);
    color: var(--b2e-white);
}

    .srv-steps-bg .b2e-section-title {
        color: var(--b2e-white);
    }

    .srv-steps-bg .b2e-section-subtitle {
        color: var(--b2e-gray-400);
    }

.srv-step-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--b2e-radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--b2e-transition);
    height: 100%;
    position: relative;
}

    .srv-step-card:hover {
        background: rgba(255,255,255,0.08);
        transform: translateY(-4px);
    }

.srv-step-number {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--b2e-accent), #0891B2);
    color: var(--b2e-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.srv-step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(6,182,212,0.15);
    color: var(--b2e-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.srv-step-card h4 {
    color: var(--b2e-white);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.srv-step-card p {
    color: var(--b2e-gray-400);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ── Features grid ───────────────────────────────── */
.srv-feature-card {
    background: var(--b2e-white);
    border: 1px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-md);
    padding: 32px 28px;
    height: 100%;
    transition: var(--b2e-transition);
    position: relative;
    overflow: hidden;
}

    .srv-feature-card::before {
        content: '';
        position: absolute;
        top: 0; right: 0; left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--b2e-primary), var(--b2e-accent));
        opacity: 0;
        transition: var(--b2e-transition);
    }

    .srv-feature-card:hover {
        border-color: transparent;
        box-shadow: var(--b2e-shadow-lg);
        transform: translateY(-4px);
    }

        .srv-feature-card:hover::before { opacity: 1; }

.srv-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--b2e-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.srv-feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.srv-feature-card p {
    font-size: 0.95rem;
    color: var(--b2e-gray-500);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 991px) {
    .srv-hero h1 { font-size: 2.4rem; }
    .srv-hero-visual { margin-top: 48px; }

    .srv-offer-visual { margin-bottom: 32px; }
}

@media (max-width: 767px) {
    .srv-hero { min-height: auto; padding: 120px 0 70px; }
    .srv-hero h1 { font-size: 2rem; }

    .srv-offer-icon-grid { max-width: 280px; }
}