﻿/* ============================================================
           DISTRIBUTION SOFTWARE PAGE – CUSTOM STYLES
           Matches SyberEdge Porto theme with premium enhancements
        ============================================================ */

:root {
    --primary: #0088cc;
    --primary-dark: #006fa8;
    --primary-light: #e8f4fc;
    --secondary: #f7941d;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --light-bg: #f8fafc;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --border: #e9ecef;
    --gradient-primary: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0d2545 40%, #0088cc 100%);
    --shadow-sm: 0 2px 15px rgba(0,136,204,0.08);
    --shadow-md: 0 8px 30px rgba(0,136,204,0.15);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}



/* ── HERO SECTION ── */
.hero-section {
    background: var(--gradient-hero);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: 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='%23ffffff' fill-opacity='0.03'%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");
    }

    .hero-section::after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,136,204,0.2) 0%, transparent 70%);
        top: -200px;
        right: -100px;
        pointer-events: none;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,136,204,0.25);
    border: 1px solid rgba(0,136,204,0.4);
    color: #7dd3f8;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .hero-badge span.dot {
        width: 7px;
        height: 7px;
        background: #7dd3f8;
        border-radius: 50%;
        animation: pulse-dot 2s infinite;
    }

@keyframes pulse-dot {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3)
    }
}

.hero-section h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero-section h1 .highlight {
        color: var(--secondary);
    }

.hero-section .hero-desc {
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(247,148,29,0.4);
}

    .btn-primary-custom:hover {
        background: #e07800;
        transform: translateY(-2px);
        color: #fff;
        box-shadow: 0 8px 28px rgba(247,148,29,0.5);
    }

.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 13px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

    .btn-outline-custom:hover {
        background: rgba(255,255,255,0.1);
        border-color: #fff;
        color: #fff;
    }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

    .hero-stat .num {
        font-size: 32px;
        font-weight: 800;
        color: var(--secondary);
        line-height: 1;
    }

    .hero-stat .label {
        font-size: 11px;
        color: rgba(255,255,255,0.65);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 4px;
    }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-main {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 30px;
    width: 100%;
    max-width: 400px;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .hero-card-header .ico {
        width: 40px;
        height: 40px;
        background: var(--secondary);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #fff;
    }

    .hero-card-header h5 {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        margin: 0;
    }

    .hero-card-header p {
        color: rgba(255,255,255,0.6);
        font-size: 11px;
        margin: 0;
    }

.mini-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.mini-stat {
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}

    .mini-stat .val {
        font-size: 20px;
        font-weight: 700;
        color: var(--secondary);
    }

    .mini-stat .lbl {
        font-size: 10px;
        color: rgba(255,255,255,0.6);
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

.progress-item {
    margin-bottom: 10px;
}

    .progress-item .pi-label {
        display: flex;
        justify-content: space-between;
        color: rgba(255,255,255,0.75);
        font-size: 11px;
        margin-bottom: 5px;
    }

.progress-bar-bg {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 6px;
}

.progress-bar-fill {
    height: 6px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

    .floating-badge.fb1 {
        top: 10%;
        left: -15%;
        animation-delay: 0s;
    }

    .floating-badge.fb2 {
        bottom: 15%;
        right: -12%;
        animation-delay: 1.5s;
    }

    .floating-badge .fb-ico {
        width: 28px;
        height: 28px;
        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;
}

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

/* ── BREADCRUMB ── */
.breadcrumb-section {
    background: var(--light-bg);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    margin: 0;
    background: transparent;
    padding: 0;
    font-size: 13px;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--text-muted);
}

/* ── SECTION BASICS ── */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 56px;
}

    .section-title .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 h2 {
        font-size: clamp(24px, 3vw, 36px);
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 16px;
    }

    .section-title p {
        font-size: 16px;
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ── OVERVIEW / INTRO ── */
.overview-section {
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.overview-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 28px 22px;
    border: 1.5px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

    .overview-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

    .overview-card .ov-icon {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .overview-card h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 6px;
    }

    .overview-card p {
        font-size: 12px;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.6;
    }

/* ── FEATURES GRID ── */
.features-section {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .feature-card:hover {
        border-color: rgba(0,136,204,0.3);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

    .feature-icon.blue {
        background: #e3f2fd;
        color: #1565c0;
    }

    .feature-icon.orange {
        background: #fff3e0;
        color: #e65100;
    }

    .feature-icon.green {
        background: #e8f5e9;
        color: #2e7d32;
    }

    .feature-icon.purple {
        background: #f3e5f5;
        color: #6a1b9a;
    }

    .feature-icon.teal {
        background: #e0f2f1;
        color: #00695c;
    }

    .feature-icon.red {
        background: #ffebee;
        color: #c62828;
    }

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

    .feature-list li {
        font-size: 13px;
        color: var(--text-muted);
        padding: 5px 0;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

        .feature-list li::before {
            content: '✓';
            color: var(--primary);
            font-weight: 700;
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 1px;
        }

/* ── VAN SALES SECTION ── */
.van-sales-section {
    background: #fff;
}

.van-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.van-card {
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .van-card.blue-card {
        background: linear-gradient(135deg, #e3f2fd, #bbdefb);
        border: 1.5px solid #90caf9;
    }

    .van-card.orange-card {
        background: linear-gradient(135deg, #fff3e0, #ffe0b2);
        border: 1.5px solid #ffcc80;
    }

    .van-card.green-card {
        background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
        border: 1.5px solid #a5d6a7;
    }

    .van-card.teal-card {
        background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
        border: 1.5px solid #80cbc4;
    }

    .van-card .vc-icon {
        font-size: 42px;
        margin-bottom: 16px;
        display: block;
    }

    .van-card h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 14px;
        color: var(--text-dark);
    }

    .van-card ul {
        list-style: none;
        padding: 0;
        text-align: left;
    }

        .van-card ul li {
            font-size: 13px;
            color: var(--text-dark);
            padding: 5px 0;
            display: flex;
            gap: 8px;
            align-items: flex-start;
        }

            .van-card ul li i {
                color: var(--primary);
                font-size: 11px;
                margin-top: 3px;
            }

/* ── PJP SECTION ── */
.pjp-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

    .pjp-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    }

    .pjp-section::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(0,136,204,0.15) 0%, transparent 70%);
        top: -100px;
        right: -100px;
    }

.pjp-content {
    position: relative;
    z-index: 1;
}

.pjp-section h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
}

.pjp-section .subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 40px;
}

.pjp-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pjp-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pjp-step-num {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.pjp-step-text h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pjp-step-text p {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.pjp-visual {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(8px);
}

.pjp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,136,204,0.3);
    border: 1px solid rgba(0,136,204,0.5);
    color: #7dd3f8;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.route-map {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.route-stop {
    display: flex;
    align-items: center;
    gap: 14px;
}

.route-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

    .route-dot.visited {
        background: #4caf50;
    }

    .route-dot.current {
        background: var(--secondary);
        box-shadow: 0 0 0 4px rgba(247,148,29,0.3);
        animation: pulse-dot 1.5s infinite;
    }

    .route-dot.pending {
        background: rgba(255,255,255,0.3);
    }

.route-line {
    position: relative;
}

    .route-line::before {
        content: '';
        position: absolute;
        left: 5px;
        top: -8px;
        width: 2px;
        height: 16px;
        background: rgba(255,255,255,0.15);
    }

.route-stop-info {
    flex: 1;
}

    .route-stop-info .shop {
        color: #fff;
        font-size: 13px;
        font-weight: 600;
    }

    .route-stop-info .time {
        color: rgba(255,255,255,0.5);
        font-size: 11px;
    }

.route-stop-status {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 30px;
}

.status-done {
    background: rgba(76,175,80,0.2);
    color: #81c784;
}

.status-active {
    background: rgba(247,148,29,0.2);
    color: #ffa726;
}

.status-pending {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
}

/* ── PROMOTIONS ── */
.promotions-section {
    background: var(--light-bg);
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.promo-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

    .promo-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
        border-color: rgba(0,136,204,0.3);
    }

    .promo-card .pc-icon {
        font-size: 44px;
        margin-bottom: 16px;
    }

    .promo-card h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--text-dark);
    }

    .promo-card p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.7;
        margin: 0;
    }

/* ── MOBILE APP ── */
.mobile-app-section {
    background: #fff;
}

.app-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.app-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    transition: all 0.3s;
}

    .app-feat:hover {
        border-color: var(--primary);
        background: var(--primary-light);
    }

    .app-feat .af-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        background: var(--primary-light);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--primary);
    }

    .app-feat h4 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 4px;
        color: var(--text-dark);
    }

    .app-feat p {
        font-size: 12px;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.5;
    }

.app-store-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark);
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1.5px solid rgba(255,255,255,0.1);
}

    .store-btn:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

    .store-btn .store-text em {
        font-size: 9px;
        font-style: normal;
        opacity: 0.7;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .store-btn .store-text strong {
        font-size: 15px;
        display: block;
    }

    .store-btn .si {
        font-size: 28px;
    }

/* ── FBR SECTION ── */
.fbr-section {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #0088cc 100%);
    position: relative;
    overflow: hidden;
}

    .fbr-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: 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='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.fbr-inner {
    position: relative;
    z-index: 1;
}

.fbr-section h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 10px;
}

.fbr-section p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 36px;
}

.fbr-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fbr-point {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fbr-check {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 14px;
}

.fbr-point-text {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}

.fbr-visual {
    display: flex;
    justify-content: center;
}

.fbr-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 320px;
    width: 100%;
}

.fbr-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .fbr-status .dot {
        width: 10px;
        height: 10px;
        background: #4caf50;
        border-radius: 50%;
        animation: pulse-dot 2s infinite;
    }

    .fbr-status span {
        color: #fff;
        font-size: 13px;
        font-weight: 600;
    }

.fbr-invoice-item {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .fbr-invoice-item .inv-label {
        color: rgba(255,255,255,0.7);
        font-size: 12px;
    }

    .fbr-invoice-item .inv-val {
        color: #fff;
        font-size: 13px;
        font-weight: 600;
    }

.fbr-submitted {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(76,175,80,0.25);
    color: #a5d6a7;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    margin-top: 14px;
}

/* ── WHY CHOOSE ── */
.why-section {
    background: var(--light-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

    .why-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-md);
    }

    .why-card .why-num {
        font-size: 52px;
        font-weight: 900;
        color: rgba(0,136,204,0.07);
        position: absolute;
        top: 10px;
        right: 20px;
        line-height: 1;
    }

    .why-card .why-icon {
        width: 52px;
        height: 52px;
        background: var(--primary-light);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--primary);
        margin-bottom: 18px;
    }

    .why-card h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--text-dark);
    }

    .why-card p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.7;
        margin: 0;
    }

/* ── INDUSTRIES ── */
.industries-section {
    background: #fff;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.industry-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    transition: all 0.3s;
    cursor: default;
}

    .industry-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-sm);
        background: var(--primary-light);
    }

    .industry-card .ind-icon {
        font-size: 48px;
        margin-bottom: 14px;
        display: block;
    }

    .industry-card h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0;
    }

/* ── BENEFITS ── */
.benefits-section {
    background: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
}

    .benefit-item:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-sm);
        transform: translateX(4px);
    }

    .benefit-item .bi-icon {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
        background: var(--gradient-primary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #fff;
    }

    .benefit-item h4 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 4px;
        color: var(--text-dark);
    }

    .benefit-item p {
        font-size: 12px;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.6;
    }

/* ── FAQ ── */
.faq-section {
    background: #fff;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s;
}

    .faq-item:hover {
        border-color: rgba(0,136,204,0.3);
    }

    .faq-item.open {
        border-color: var(--primary);
    }

.faq-q {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.2s;
}

    .faq-q:hover {
        background: var(--primary-light);
        color: var(--primary);
    }

.faq-item.open .faq-q {
    background: var(--primary-light);
    color: var(--primary);
}

.faq-q .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.open .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 16px 24px 20px;
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #e07800 100%);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: 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='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
    }

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .cta-inner h2 {
        color: #fff;
        font-size: clamp(24px, 3vw, 40px);
        font-weight: 800;
        margin-bottom: 14px;
    }

    .cta-inner p {
        color: rgba(255,255,255,0.9);
        font-size: 17px;
        margin-bottom: 36px;
    }

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: #fff;
    color: var(--secondary);
    padding: 15px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

    .btn-cta-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        color: var(--secondary);
    }

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

    .btn-cta-outline:hover {
        background: rgba(255,255,255,0.15);
        border-color: #fff;
        color: #fff;
    }

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}

    .cta-contact-item i {
        font-size: 18px;
        color: rgba(255,255,255,0.8);
    }

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

    .footer-logo img {
        height: 44px;
        filter: brightness(0) invert(1);
        opacity: 0.9;
    }

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.7);
        font-size: 14px;
        text-decoration: none;
        transition: all 0.2s;
    }

        .footer-social a:hover {
            background: var(--primary);
            color: #fff;
        }

.footer-col h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        font-size: 13px;
        transition: color 0.2s;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .footer-links a::before {
            content: '›';
            color: var(--primary);
        }

        .footer-links a:hover {
            color: #fff;
        }

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}

    .footer-contact-item i {
        color: var(--primary);
        font-size: 14px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .footer-contact-item span {
        font-size: 13px;
        color: rgba(255,255,255,0.7);
        line-height: 1.5;
    }

    .footer-contact-item a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
    }

        .footer-contact-item a:hover {
            color: #fff;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: gap;
    gap: 10px;
}

    .footer-bottom p {
        margin: 0;
        font-size: 12px;
        color: rgba(255,255,255,0.5);
    }

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .footer-bottom-links a {
        font-size: 12px;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-bottom-links a:hover {
            color: #fff;
        }

/* ── CONTAINER ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    padding: 0 20px;
}

/* ── SCHEMA / TRUST BAR ── */
.trust-bar {
    background: var(--primary);
    padding: 14px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

    .trust-item i {
        font-size: 16px;
        color: var(--secondary);
    }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .header-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section {
        padding: 60px 0 50px;
    }

    .hero-stats {
        gap: 20px;
    }

    .pjp-section .row > div:last-child {
        margin-top: 40px;
    }

    .floating-badge {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .cta-contacts {
        gap: 20px;
    }
}

/* ── ANIMATIONS ── */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: slideInUp 0.7s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
