﻿
:root {
    --primary: #0088cc;
    --primary-dark: #006699;
    --primary-light: #e6f4fb;
    --secondary: #f5a623;
    --secondary-dark: #d4891a;
    --text-dark: #1a1f36;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e5e7eb;
    --success: #10b981;
    --danger: #ef4444;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── Utility ──────────────────────────────────────────── */
.tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

    .section-title h2 {
        font-size: clamp(24px, 3.5vw, 38px);
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 14px;
        line-height: 1.25;
    }

        .section-title h2 span {
            color: var(--primary);
        }

    .section-title p {
        font-size: 15px;
        color: var(--text-muted);
        max-width: 620px;
        margin: 0 auto;
        line-height: 1.8;
    }

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 20px auto 0;
}

.highlight {
    color: var(--primary);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

.animate-up {
    animation: fadeUp .7s ease both;
}

.delay-2 {
    animation-delay: .2s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes pulse-dot {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.4);
    }
}

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

    50% {
        transform: translateY(-10px);
    }
}

/* ── Hero Section ─────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 50%, #fffbf0 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(0,136,204,0.08) 0%, transparent 65%);
        border-radius: 50%;
        pointer-events: none;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--primary-light), #fff8e6);
    border: 1px solid rgba(0,136,204,0.25);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 22px;
}

    .hero-badge .dot {
        width: 8px;
        height: 8px;
        background: var(--success);
        border-radius: 50%;
        animation: pulse-dot 2s infinite;
    }

.hero-section h1 {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 34px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0,136,204,0.35);
    transition: all .25s;
}

    .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(0,136,204,0.45);
        color: #fff;
    }

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
}

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

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat .num {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.hero-stat .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Hero Visual Card */
.hero-card-main {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 28px;
    animation: float 5s ease-in-out infinite;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

    .hero-card-header .ico {
        width: 46px;
        height: 46px;
        background: var(--primary-light);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .hero-card-header h5 {
        font-size: 14px;
        font-weight: 700;
        margin: 0;
        color: var(--text-dark);
    }

    .hero-card-header p {
        font-size: 11px;
        color: var(--text-muted);
        margin: 0;
    }

.mini-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.mini-stat {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

    .mini-stat .val {
        font-size: 16px;
        font-weight: 800;
        color: var(--text-dark);
    }

    .mini-stat .lbl {
        font-size: 10px;
        color: var(--text-muted);
        margin-top: 2px;
    }

.progress-item {
    margin-bottom: 10px;
}

.pi-label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-weight: 500;
}

.progress-bar-bg {
    background: #e9ecef;
    border-radius: 6px;
    height: 6px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 6px;
}

.floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    z-index: 10;
}

.fb1 {
    top: 10px;
    left: -20px;
}

.fb2 {
    bottom: 30px;
    right: -20px;
}

.fb-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

    .fb-ico.green {
        background: #e8f5e9;
        color: #2e7d32;
    }

    .fb-ico.blue {
        background: #e3f2fd;
        color: #1565c0;
    }

    .fb-ico.orange {
        background: #fff3e0;
        color: #e65100;
    }

/* ── Trust Bar ────────────────────────────────────────── */
.trust-bar {
    background: var(--text-dark);
    padding: 18px 0;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.trust-item {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .trust-item i {
        color: var(--secondary);
        font-size: 14px;
    }

/* ── Overview Section ─────────────────────────────────── */
.overview-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
}

.overview-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all .25s;
}

    .overview-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary);
        background: var(--bg-white);
    }

.ov-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

.overview-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.overview-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── Features Section ─────────────────────────────────── */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border);
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--primary), var(--secondary));
        border-radius: 4px 0 0 4px;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

    .feature-icon.blue {
        background: #e3f2fd;
        color: #1565c0;
    }

    .feature-icon.green {
        background: #e8f5e9;
        color: #2e7d32;
    }

    .feature-icon.orange {
        background: #fff3e0;
        color: #e65100;
    }

    .feature-icon.purple {
        background: #f3e5f5;
        color: #6a1b9a;
    }

    .feature-icon.teal {
        background: #e0f2f1;
        color: #00695c;
    }

    .feature-icon.red {
        background: #fce4ec;
        color: #c62828;
    }

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card > p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

    .feature-list li {
        font-size: 13px;
        color: var(--text-muted);
        padding: 5px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .feature-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--success);
            font-size: 11px;
            flex-shrink: 0;
        }

/* ── Pipeline Section (dark) ──────────────────────────── */
.pipeline-section {
    background: linear-gradient(135deg, #0a1628 0%, #0d2545 60%, #0a1628 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .pipeline-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(0,136,204,0.15) 0%, transparent 65%);
        border-radius: 50%;
    }

    .pipeline-section .section-title h2 {
        color: #fff;
    }

    .pipeline-section .section-title p {
        color: rgba(255,255,255,0.65);
    }

    .pipeline-section .tag {
        background: rgba(0,136,204,0.25);
        border: 1px solid rgba(0,136,204,0.4);
        color: #7dd3f8;
    }

.pipeline-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-bottom: 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pipe-stage {
    text-align: center;
    padding: 22px 10px;
    position: relative;
    cursor: default;
    transition: background .2s;
}

    .pipe-stage:not(:last-child)::after {
        content: '›';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255,255,255,0.3);
        font-size: 22px;
        z-index: 2;
    }

    .pipe-stage:hover {
        background: rgba(255,255,255,0.05);
    }

.pipe-count {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.pipe-name {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-top: 4px;
}

.pipe-bar {
    height: 3px;
    border-radius: 2px;
    margin: 10px auto 0;
    width: 60%;
}

/* Pipeline CRM Preview */
.crm-preview {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.crm-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .crm-preview-header h5 {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        margin: 0;
    }

.live-dot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #4caf50;
}

    .live-dot span {
        width: 7px;
        height: 7px;
        background: #4caf50;
        border-radius: 50%;
        animation: pulse-dot 2s infinite;
    }

.crm-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background .15s;
    margin-bottom: 4px;
}

    .crm-row:hover {
        background: rgba(255,255,255,0.05);
    }

.crm-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.av-a {
    background: rgba(245,166,35,0.2);
    color: var(--secondary);
}

.av-b {
    background: rgba(0,136,204,0.2);
    color: #60c8ff;
}

.av-c {
    background: rgba(16,185,129,0.2);
    color: #34d399;
}

.av-d {
    background: rgba(139,92,246,0.2);
    color: #a78bfa;
}

.av-e {
    background: rgba(239,68,68,0.2);
    color: #f87171;
}

.crm-info {
    flex: 1;
}

.crm-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.crm-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.crm-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.badge-hot {
    background: rgba(239,68,68,0.2);
    color: #f87171;
}

.badge-warm {
    background: rgba(245,166,35,0.2);
    color: var(--secondary);
}

.badge-active {
    background: rgba(0,136,204,0.2);
    color: #60c8ff;
}

.badge-closed {
    background: rgba(16,185,129,0.2);
    color: #34d399;
}

.badge-cold {
    background: rgba(156,163,175,0.2);
    color: #9ca3af;
}

/* ── WhatsApp Automation Section ──────────────────────── */
.whatsapp-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.wa-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.wa-feat {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all .25s;
}

    .wa-feat:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-sm);
        border-color: var(--primary);
    }

.wf-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

    .wf-icon.wa {
        background: #e8f5e9;
    }

    .wf-icon.bl {
        background: var(--primary-light);
    }

    .wf-icon.or {
        background: #fff3e0;
    }

    .wf-icon.pu {
        background: #f3e5f5;
    }

.wa-feat h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.wa-feat p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* WhatsApp Chat Mock */
.wa-chat-mock {
    background: #e5ddd5 url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b2a89a' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    padding: 16px;
}

.wa-header {
    background: #075e54;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: -16px -16px 12px;
}

.wa-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.wa-header h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.wa-header span {
    font-size: 10px;
    opacity: .8;
}

.wa-msg {
    margin-bottom: 10px;
    max-width: 80%;
}

    .wa-msg.out {
        margin-left: auto;
    }

.wa-bubble {
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.5;
    position: relative;
}

    .wa-bubble.in {
        background: #fff;
        color: var(--text-dark);
        border-radius: 0 10px 10px 10px;
    }

    .wa-bubble.out {
        background: #dcf8c6;
        color: var(--text-dark);
        border-radius: 10px 0 10px 10px;
    }

.wa-time {
    font-size: 9px;
    color: var(--text-light);
    margin-top: 3px;
    text-align: right;
}

.wa-tick {
    color: #53bdeb;
}

/* ── Why SyberEdge Section ────────────────────────────── */
.why-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border);
    position: relative;
    transition: all .25s;
}

    .why-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary);
    }

.why-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 12px;
    font-style: italic;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.why-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── Benefits Section ─────────────────────────────────── */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all .25s;
}

    .benefit-item:hover {
        border-color: var(--primary);
        background: var(--bg-white);
        box-shadow: var(--shadow-sm);
    }

.bi-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.benefit-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* ── Inventory Linking Section ────────────────────────── */
.inventory-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #fffbf0 100%);
}

.inv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.inv-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 26px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all .25s;
}

    .inv-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.inv-ico {
    font-size: 36px;
    margin-bottom: 14px;
}

.inv-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.inv-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.inv-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 12px;
    text-transform: uppercase;
}

    .inv-tag.blue {
        background: var(--primary-light);
        color: var(--primary);
    }

    .inv-tag.green {
        background: #e8f5e9;
        color: #2e7d32;
    }

    .inv-tag.orange {
        background: #fff3e0;
        color: #e65100;
    }

/* ── FAQ Section ──────────────────────────────────────── */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-accordion {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color .2s;
}

    .faq-item.open {
        border-color: var(--primary);
    }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: background .2s;
}

    .faq-q:hover {
        background: var(--bg-light);
    }

.faq-item.open .faq-q {
    background: var(--primary-light);
    color: var(--primary);
}

.faq-icon {
    font-size: 13px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    color: var(--primary);
}

    .faq-item.open .faq-icon .fa-plus::before {
        content: '\f068';
    }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a > div {
    padding: 0 22px 18px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ── CTA Section ──────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #004e7c 60%, #002a47 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
        border-radius: 50%;
    }

    .cta-section h2 {
        font-size: clamp(24px,3.5vw,40px);
        font-weight: 800;
        color: #fff;
        margin-bottom: 16px;
        line-height: 1.25;
    }

    .cta-section p {
        font-size: 15px;
        color: rgba(255,255,255,0.75);
        max-width: 600px;
        margin: 0 auto 34px;
        line-height: 1.8;
    }

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-cta-white {
    background: #fff;
    color: var(--primary);
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all .25s;
}

    .btn-cta-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        color: var(--primary-dark);
    }

.btn-cta-outline {
    border: 2px solid rgba(255,255,255,0.65);
    color: #fff;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
}

    .btn-cta-outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: #fff;
        color: #fff;
    }

.cta-contacts {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
}

    .cta-contact-item i {
        font-size: 16px;
        color: var(--secondary);
    }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width:991px) {
    .hero-section .row > div:last-child {
        margin-top: 40px;
    }

    .pipeline-strip {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:767px) {
    .pipeline-strip {
        grid-template-columns: repeat(2,1fr);
    }

    .pipe-stage::after {
        display: none;
    }

    .hero-stats {
        gap: 20px;
    }

    .fb1, .fb2 {
        display: none;
    }
}

@media (max-width:480px) {
    .pipeline-strip {
        grid-template-columns: 1fr;
    }
}


