/* =========================================================
   Hero Section
========================================================= */

.hero-section {
    min-height: 100vh;
    padding-top: 90px;
}

/* Hero Grid Background */

.hero-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Vertical Lines */

.hero-v-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;

    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(38, 162, 220, 0.08) 20%,
            rgba(38, 162, 220, 0.12) 50%,
            rgba(38, 162, 220, 0.08) 80%,
            transparent 100%);
}

/* Horizontal Lines */

.hero-h-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;

    background: linear-gradient(to right,
            transparent 0%,
            rgba(38, 162, 220, 0.07) 20%,
            rgba(38, 162, 220, 0.11) 50%,
            rgba(38, 162, 220, 0.07) 80%,
            transparent 100%);
}

/* Glow Effects */

.hero-glow {
    position: absolute;
    border-radius: 50%;
}

.hero-glow-top {
    top: -130px;
    right: 0;
    width: 700px;
    height: 700px;

    background: radial-gradient(circle,
            rgba(38, 162, 220, 0.07) 0%,
            transparent 70%);

    filter: blur(40px);
}

.hero-glow-bottom {
    bottom: 0;
    left: -130px;
    width: 500px;
    height: 500px;

    background: radial-gradient(circle,
            rgba(38, 162, 220, 0.05) 0%,
            transparent 70%);

    filter: blur(60px);
}

/* Hero Layout */


.hero-row {
    min-height: calc(100vh - 90px);
    padding: 26px 0 80px;
}

/* Left Content */

.hero-left-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Trust Strip */

.hero-trust-strip {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(38, 162, 220, 0.06);

    border: 1px solid rgba(38, 162, 220, 0.2);
}

.hero-trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;

    background: var(--primary-color);

    box-shadow: 0 0 8px 2px rgba(38, 162, 220, 0.5);

    flex-shrink: 0;
}

.hero-trust-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--primary-color);
}

@media (max-width: 1199.5px) {
    .hero-trust-text {
        font-size: 10px !important;
    }
}

/* Hero Heading */

.hero-title {
    /* font-size: clamp(2.2rem, 4vw, 3.2rem); */
    font-size: 46px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--secondary-color);
    margin: 0;
}

@media (max-width: 1399px) and (min-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
}

.hero-gradient-text {
    background: linear-gradient(135deg,
            #26a2dc 0%,
            #0e7db5 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */

.hero-description {
    max-width: 620px;

    font-size: 16px;
    line-height: 1.5;
    color: var(--secondary-dark);

    margin: 0;
}

/* CTA Buttons */

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Primary Button */

.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 28px;

    border-radius: 14px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
    color: #ffffff;

    background: linear-gradient(135deg,
            #26a2dc 0%,
            #0e7db5 100%);

    box-shadow: 0 8px 32px rgba(38, 162, 220, 0.3);

    transition: all 0.25s ease;
}

.hero-primary-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

/* Secondary Button */

.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 28px;

    border-radius: 13px;

    border: 1px solid rgba(38, 162, 220, 0.25);

    background: rgba(38, 162, 220, 0.04);

    color: #333333;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.25s ease;
}

.hero-secondary-btn:hover {
    background: rgba(38, 162, 220, 0.08);
}

/* Trust Badges */

.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.hero-badge-card {
    min-width: 105px;
    padding: 14px 10px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.8);

    border: 1px solid rgba(38, 162, 220, 0.12);

    box-shadow: 0 2px 12px rgba(38, 162, 220, 0.06);

    text-align: center;
}

.hero-badge-icon {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.hero-badge-card h6 {
    margin: 0;
    font-size: 12px;
    font-weight: 900;
    color: #333333d8;
}

.hero-badge-card p {
    margin: 4px 0 0;
    font-weight: 500;
    font-size: 11px !important;
    color: #888888;
}

/* Dashboard Placeholder */

.hero-dashboard-placeholder {
    min-height: 650px;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991.98px) {

    .hero-section {
        padding-top: 85px;
    }

    .hero-row {
        min-height: auto;
        padding: 40px 0 70px;
    }

    .hero-left-content {
        gap: 24px;
    }

    .hero-trust-badges {
        grid-template-columns: repeat(5, 1fr);
    }

    .hero-dashboard-placeholder {
        min-height: 400px;
    }

}

@media (max-width: 767.98px) {

    .hero-row {
        min-height: auto;
        padding: 0px 0 70px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 15px !important;
        line-height: 1.7;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
    }

    .hero-trust-badges {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .hero-trust-strip {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

}

@media (max-width: 767.98px) {

    .hero-trust-badges {
        display: flex;
        gap: 15px;

        overflow-x: auto;
        overflow-y: hidden;

        padding-bottom: 8px;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .hero-trust-badges::-webkit-scrollbar {
        display: none;
    }

    .hero-badge-card {
        flex: 0 0 180px;
        /* card width */
    }
}

/* =========================================================
   Hero Dashboard
========================================================= */

.hero-dashboard-wrapper {
    position: relative;
}

/* Main Card */

.hero-dashboard-card {
    position: relative;

    border-radius: 24px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(38, 162, 220, 0.15);

    box-shadow:
        0 24px 80px rgba(38, 162, 220, 0.12),
        0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Dashboard Header */

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 20px;

    background: rgba(248, 252, 255, 0.9);

    border-bottom: 1px solid rgba(38, 162, 220, 0.1);
}

/* Window Controls */

.dashboard-window-controls {
    display: flex;
    gap: 6px;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dot.red {
    background: #ff5f57;
}

.window-dot.yellow {
    background: #febc2e;
}

.window-dot.green {
    background: #28c840;
}

/* Dashboard Title */

.dashboard-title {
    margin-left: 10px;

    font-size: 12px;
    font-weight: 600;

    /* color: #555555; */
}

/* Live Status */

.dashboard-live-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;

    background: #28c840;

    box-shadow: 0 0 8px #28c840;
}

.live-text {
    font-size: 12px;
    color: #26A2DC !important;
}

/* Dashboard Body */

.dashboard-body {
    padding: 20px;

    display: flex;
    flex-direction: column;
    /* gap: 18px; */
}

/* =========================================================
   KPI Cards
========================================================= */

.kpi-card {
    padding: 14px;

    border-radius: 16px;

    background: #e9f4fff0;

    border: 1px solid rgba(38, 162, 220, 0.1);

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.kpi-label {
    margin-bottom: 6px;

    font-size: 11px;
    color: #888888;
}

.kpi-value {
    margin: 0;

    font-size: 15px !important;
    font-weight: 700;

    color: #333333d8;
}

.kpi-change {
    display: inline-block;
    margin-top: 6px;

    font-size: 11px;
    font-weight: 600;
}

.kpi-change.positive {
    color: #10b981;
}

.kpi-change.purple {
    color: #8b5cf6;
}

@media (max-width: 575.98px) {


    .kpi-card {
        padding: 10px !important;
    }

    .kpi-scroll-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .kpi-scroll-row::-webkit-scrollbar {
        display: none;
    }

    .kpi-scroll-row>[class*="col-"] {
        flex: 0 0 250px;
        /* adjust width as needed */
        max-width: 250px;
    }
}

/* =========================================================
   Sales Chart
========================================================= */

.sales-chart-card {
    padding: 18px;

    border-radius: 18px;

    background: rgba(248, 252, 255, 0.8);

    border: 1px solid rgba(38, 162, 220, 0.1);
}

/* Chart Top */

.sales-chart-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.sales-chart-title {
    margin: 0;

    font-size: 13px;
    font-weight: 700;

    color: #333333;
}

.sales-chart-subtitle {
    margin: 4px 0 0;

    font-size: 11px;
    color: #888888;
}

/* Growth Badge */

.sales-growth-badge {
    padding: 6px 10px;

    border-radius: 999px;

    background: rgba(38, 162, 220, 0.1);

    color: #26a2dc;

    font-size: 11px;
    font-weight: 700;
}

/* Mini Chart */

.mini-chart-bars {
    display: flex;
    align-items: flex-end;

    gap: 6px;

    height: 70px;
}

.chart-bar {
    flex: 1;

    border-radius: 4px 4px 0 0;

    background: rgba(38, 162, 220, 0.35);

    transition: all 0.3s ease;
}

.chart-bar.active {
    background: linear-gradient(to top,
            #26a2dc,
            #5bc4f0);
}

/* Months */

.chart-months {
    display: flex;
    justify-content: space-between;

    margin-top: 10px;
}

.chart-months span {
    font-size: 9px;
    color: #aaaaaa;
}

/* =========================================================
   Outlet Card
========================================================= */

.outlet-card {
    height: 100%;

    padding: 16px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid rgba(38, 162, 220, 0.1);
}

.outlet-title {
    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 700;

    color: #333333d8;
}

.outlet-item {
    margin-bottom: 14px;
}

.outlet-item span {
    position: relative;
    padding-left: 14px;
    display: inline-block;
}

.outlet-item span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #26a2dc;
    /* blue */
    border-radius: 50%;
    transform: translateY(-50%);
}

.outlet-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 5px;
}

.outlet-top span {
    font-weight: 500;
    font-size: 10px !important;
    color: #333333;
}

.outlet-top strong {
    font-size: 10px;
}

/* Progress */

.outlet-progress {
    height: 6px;
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.06);

    overflow: hidden;
}

.outlet-progress-bar {
    height: 100%;
    border-radius: 999px;
}

.outlet-progress-bar.blue {
    background: #26a2dc;
}

.outlet-progress-bar.green {
    background: #10b981;
}

.outlet-progress-bar.purple {
    background: #8b5cf6;
}

.outlet-progress-bar.orange {
    background: #f59e0b;
}

.green {
    color: #10b981;
}

.purple {
    color: #8b5cf6;
}

.orange {
    color: #f59e0b;
}

/* =========================================================
   AI Insights
========================================================= */

.ai-insights-card {
    height: 100%;

    padding: 16px;

    border-radius: 18px;

    background: linear-gradient(135deg,
            rgba(38, 162, 220, 0.06) 0%,
            rgba(14, 125, 181, 0.03) 100%);

    border: 1px solid rgba(38, 162, 220, 0.15);

    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* AI Header */

.ai-insights-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-icon {
    color: #26a2dc;
    font-size: 14px;
}

.ai-insights-header h6 {
    margin: 0;

    font-size: 13px;
    font-weight: 700;

    color: #333333d6;
}

/* AI Insight Item */

.ai-insight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    padding: 12px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.7);

    border: 1px solid rgba(38, 162, 220, 0.1);
}

.ai-insight-item.danger {
    background: #e3f1fb;

    border-color: #c0e4f7;
}

.ai-insight-item span {
    font-size: 12px !important;
}

.ai-insight-item p {
    margin: 0;
    font-weight: 500;
    font-size: 10px !important;
    line-height: 1.5;

    color: #444444;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 767.98px) {

    .dashboard-title {
        display: none;
    }

    .sales-chart-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}

/* =========================================================
   Floating Cards
========================================================= */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(38, 162, 220, 0.14);

    box-shadow:
        0 18px 40px rgba(38, 162, 220, 0.12),
        0 3px 12px rgba(0, 0, 0, 0.06);

    z-index: 5;
}

/* Floating Positions */

.inventory-floating-card {
    top: 240px;
    left: -70px;

    animation: floatingAnimation 4s ease-in-out infinite;
}

.speed-floating-card {
    top: 300px;
    right: -70px;

    animation: floatingAnimation 4s ease-in-out 1s infinite;
}

.franchise-floating-card {
    top: -20px;
    right: 40px;

    animation: floatingAnimation 4s ease-in-out 2s infinite;
}


/* Floating Icon */

.floating-icon {
    width: 44px;
    height: 44px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    flex-shrink: 0;
}

.floating-icon.blue {
    background: rgba(38, 162, 220, 0.12);
}

.floating-icon.green {
    background: rgba(16, 185, 129, 0.12);
}

.floating-icon.purple {
    background: rgba(139, 92, 246, 0.12);
}

/* Floating Content */

.floating-card h6 {
    margin: 0;

    font-size: 12px;
    font-weight: 700;

    color: var(--secondary-color);
}

.floating-card p {
    margin: 4px 0 0;
    font-weight: 700;
    font-size: 10px;
    /* color: #777777; */
}

/* Floating Animation */

@keyframes floatingAnimation {

    0%,
    100% {
        transform: translateY(0px);
    }

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

}

/* =========================================================
   Hero Demo Form
========================================================= */

@media (min-width: 1200px) and (max-width: 1400px) {

    #contact-form input::placeholder,
    #contact-form textarea::placeholder {
        font-size: 12px;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {

    #contact-form input::placeholder,
    #contact-form textarea::placeholder {
        font-size: 10px;
        /* text-wrap: auto; */
        /* white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; */
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    #c_phone {
        height: 48px;
    }
}

.hero-demo-form-card {
    margin-top: 32px;

    padding: 24px;

    border-radius: 24px;

    border: 1px solid rgba(38, 162, 220, 0.15);

    background: linear-gradient(to bottom,
            #0b84ba 0%,
            #1986b5 35%,
            #2da0cf 70%,
            #42add8 100%);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 8px 40px rgba(38, 162, 220, 0.08);
}

/* Header */

.hero-demo-form-header {
    margin-bottom: 18px;
}

.hero-demo-form-header h2 {
    margin-bottom: 4px;

    font-size: 22px;
    font-weight: 900;

    /* color: #111111; */
}

.hero-demo-form-header p {
    margin: 0;

    font-size: 20px !important;
    line-height: 1.6;

    color: white;
}

/* Labels */

.hero-form-label {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #d3d8ff;
}

/* Inputs */

.hero-form-control {
    height: 48px;

    border-radius: 12px;

    padding-inline: 14px;

    font-size: 14px;

    border: 1px solid rgba(38, 162, 220, 0.2);

    background: #fafcff;

    color: #111111;

    box-shadow: none !important;

    transition: all 0.25s ease;
}

.hero-form-control:focus {
    border-color: #26a2dc;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(38, 162, 220, 0.08) !important;
}

/* Select Placeholder */

.hero-form-control:invalid {
    color: #999999;
}

/* Submit Button */

/* .hero-demo-submit-btn {
    width: 100%;

    border: none;
    border-radius: 16px;

    padding: 14px 20px;

    font-size: 14px;
    font-weight: 700;

    color: var(--primary-color);

    background: white;

    box-shadow:
        0 8px 24px rgba(38, 162, 220, 0.3);

    transition: all 0.25s ease;
}

.hero-demo-submit-btn:hover {
    transform: translateY(-2px);
} */

.hero-demo-submit-btn {
    position: relative;
    overflow: hidden;

    width: 100%;
    border: none;
    border-radius: 16px;

    padding: 14px 20px;

    font-size: 14px;
    font-weight: 700;

    color: var(--primary-color);
    background: white;

    box-shadow: 0 8px 24px rgba(38, 162, 220, 0.3);

    transition:
        transform 0.25s ease,
        color 0.35s ease;

    z-index: 1;
}

/* Fill layer */
.hero-demo-submit-btn::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 0;
    height: 100%;

    background: var(--primary-dark);

    transition: width 0.4s ease;

    z-index: -1;
}

.hero-demo-submit-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.hero-demo-submit-btn:hover::before {
    width: 100%;
}

/* Bottom Text */

.hero-demo-bottom-text {
    margin: 14px 0 0;

    text-align: center;

    font-size: 12px;

    color: white;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 767.98px) {

    .hero-demo-form-card {
        padding: 20px;
    }

    .hero-demo-form-header h2 {
        font-size: 20px;
    }

}

/* =========================================================
   Trusted Brands Section
========================================================= */

.trusted-brands-section {
    padding: 70px 0;

    background: #f8fafc;

    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);

    overflow: hidden;
}

/* Header */

.trusted-brands-header {
    margin-bottom: 42px;
}

.trusted-brands-subtitle {
    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #6b7280;
}

.trusted-brands-title {
    margin: 0;

    font-size: 38px;
    font-weight: 800;

    line-height: 1.2;

    color: var(--secondary-color);
}

/* =========================================================
   Marquee
========================================================= */

.trusted-marquee-wrapper {
    position: relative;

    overflow: hidden;

    mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);

    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
}

.trusted-marquee-track {
    display: flex;
    align-items: center;
    gap: 32px;

    width: max-content;

    animation: trustedMarquee 36s linear infinite;
}

/* Marquee Animation */

@keyframes trustedMarquee {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

#new-cta-btn {
    display: none;
}

/* =========================================================
   Brand Card
========================================================= */

.trusted-brand-card {
    flex-shrink: 0;

    min-width: 140px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 16px 20px;

    border-radius: 18px;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.06);

    transition:
        all 0.35s ease;
}

.trusted-brand-card:hover {
    border-color: rgba(38, 162, 220, 0.35);

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(38, 162, 220, 0.08);
}

/* Logo */

.trusted-brand-card img {
    height: 60px;
    width: auto;

    object-fit: contain;

    /* filter: grayscale(100%);

    opacity: 0.85;

    transition: all 0.4s ease; */
}

/* .trusted-brand-card:hover img {
    filter: grayscale(0%);

    opacity: 1;
} */

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991.98px) {

    .trusted-brands-section {
        padding: 60px 0;
    }

    .trusted-marquee-track {
        gap: 24px;
    }

}

@media (max-width: 767.98px) {

    .trusted-brands-title {
        font-size: 24px;
    }

    .trusted-brand-card {
        min-width: 120px;

        padding: 14px 16px;
    }

    .trusted-brand-card img {
        height: 34px;
    }

}

/* =========================================================
   Challenges Section
========================================================= */

.challenges-section {
    padding: 100px 0;

    background: #ffffff;
}

/* =========================================================
   Header
========================================================= */

.challenges-header {
    margin-bottom: 60px;
}

.challenges-subtitle {
    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #26a2dc;
}

.challenges-title {
    margin-bottom: 18px;

    font-size: 36px;
    font-weight: 800;

    line-height: 1.2;

    color: var(--secondary-color);
}

.challenges-description {
    max-width: 680px;

    margin-inline: auto;

    font-size: 16px !important;
    line-height: 1.8;

    color: var(--secondary-dark);
}

/* =========================================================
   Challenge Card
========================================================= */

.challenge-card {
    position: relative;

    min-height: 250px;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, 0.06);

    background: #ffffff;

    cursor: default;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 40px rgba(38, 162, 220, 0.12);
}

/* =========================================================
   Front & Back
========================================================= */

.challenge-front,
.challenge-back {
    position: absolute;

    inset: 0;

    padding: 32px;

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

/* Front */

.challenge-front {
    background: #ffffff;

    z-index: 2;
}

/* .challenge-card:hover .challenge-front {
    opacity: 0;

    transform: translateY(-12px);
} */

/* Back */

.challenge-back {
    background: linear-gradient(135deg,
            #26a2dc 0%,
            #0e7db5 100%);

    display: flex;
    flex-direction: column;
    justify-content: center;

    opacity: 0;

    transform: translateY(20px);
}

/* .challenge-card:hover .challenge-back {
    opacity: 1;

    transform: translateY(0);
} */

@media (min-width: 768px) {
    .challenge-card:hover .challenge-front {
        opacity: 0;
        transform: translateY(-12px);
    }

    .challenge-card:hover .challenge-back {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 767.98px) {

    .challenge-card.active .challenge-front {
        opacity: 0;
        transform: translateY(-12px);
    }

    .challenge-card.active .challenge-back {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   Icon
========================================================= */

.challenge-icon-box {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    margin-bottom: 20px;

    font-size: 22px;
}

.challenge-icon-box.danger {
    background: #fef2f2;
}

.challenge-icon-box.white {
    background: rgba(255, 255, 255, 0.18);

    color: #ffffff;
}

/* =========================================================
   Labels
========================================================= */

.challenge-label {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #ef4444;
}

.challenge-label.solution {
    color: rgba(255, 255, 255, 0.7);
}

.solution-heading {
    font-size: 38px !important;
}

@media (max-width: 576.98px) {
    .solution-heading {
        font-size: 24px !important;
    }
}

/* =========================================================
   Typography
========================================================= */

.challenge-front h3,
.challenge-back h3 {
    margin-bottom: 14px;

    font-size: 20px !important;
    font-weight: 700;

    line-height: 1.4;
}

/* Front */

.challenge-front h3 {
    color: var(--secondary-color);
}

.challenge-front p {
    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: var(--secondary-dark);
}

/* Back */

.challenge-back h3 {
    color: #ffffff;
}

.challenge-back p {
    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991.98px) {

    .challenges-section {
        padding: 80px 0;
    }

    .challenge-card {
        min-height: 300px;
    }

}

@media (max-width: 767.98px) {

    .challenges-section {
        padding: 70px 0;
    }

    .challenges-title {

        font-size: 24px;

    }

    .challenges-header {
        margin-bottom: 45px;
    }

    .challenge-front,
    .challenge-back {
        padding: 26px;
    }

    .challenge-front h3,
    .challenge-back h3 {
        font-size: 18px;
    }

}

.challenge-back img {
    width: 48px;
    height: 48px;

    padding: 10px;

    border-radius: 14px;

    margin-bottom: 20px;

    object-fit: contain;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* =========================================================
   AI INTELLIGENCE SECTION
========================================================= */

.ai-intelligence-section {
    background: #f8fbff;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* =========================================================
   BACKGROUND GRID
========================================================= */

.ai-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ai-bg-elements .vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background:
        linear-gradient(180deg,
            transparent,
            rgba(38, 162, 220, 0.08) 20%,
            rgba(38, 162, 220, 0.08) 80%,
            transparent);
}

.ai-bg-elements .horizontal-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(38, 162, 220, 0.07) 20%,
            rgba(38, 162, 220, 0.07) 80%,
            transparent);
}

/* =========================================================
   GLOW EFFECTS
========================================================= */

.ai-bg-elements .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(45px);
}

.ai-bg-elements .glow-1 {
    top: 5%;
    left: 5%;
    width: 180px;
    height: 180px;
    background: rgba(38, 162, 220, 0.05);
}

.ai-bg-elements .glow-2 {
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    border-radius: 999px;
    background: radial-gradient(ellipse,
            rgba(38, 162, 220, 0.08) 0%,
            transparent 70%);
}

.ai-bg-elements .glow-3 {
    right: 6%;
    bottom: 10%;
    width: 220px;
    height: 220px;
    background: rgba(38, 162, 220, 0.06);
}

/* =========================================================
   HEADING
========================================================= */

.ai-heading {
    position: relative;
    z-index: 2;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(38, 162, 220, 0.08);
    border: 1px solid rgba(38, 162, 220, 0.2);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #26A2DC;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #26A2DC;
    animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

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

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.ai-intelligence-section .section-title {
    font-size: 38px !important;
    line-height: 1.15;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

#solutions .section-title {
    font-size: 38px !important;
}

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

.ai-intelligence-section .section-subtitle {
    max-width: 720px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--secondary-dark);
}

@media (max-width: 576px) {
    .ai-intelligence-section .section-title {
        font-size: 24px !important;
    }

    .ai-intelligence-section .section-subtitle {
        font-size: 12px !important;
    }

    #solutions .section-title {
        margin-top: 7px !important;
        font-size: 24px !important;
        color: var(--secondary-color) !important;
    }
}

/* =========================================================
   MAIN LAYOUT
========================================================= */

.ai-layout {
    position: relative;
    z-index: 2;
}

/* =========================================================
   CONNECTOR SVG
========================================================= */

/* .ai-connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 1;
    pointer-events: none;
}

.connector-path {
    fill: none;
    stroke: rgba(38, 162, 220, 0.22);
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-dasharray: 4 8;
}

.particle {
    fill: #26A2DC;
    opacity: 0.85;
    filter: drop-shadow(0 0 6px rgba(38, 162, 220, 0.45));
} */

/* =========================================================
   FEATURE CARDS
========================================================= */

.ai-feature-card {
    position: relative;
    z-index: 2;

    padding: 24px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(16px);

    border: 1.5px solid rgba(38, 162, 220, 0.14);

    box-shadow:
        0 2px 16px rgba(38, 162, 220, 0.07),
        0 1px 4px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.ai-feature-card:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.96);

    border-color: rgba(38, 162, 220, 0.35);

    box-shadow:
        0 12px 40px rgba(38, 162, 220, 0.14),
        0 2px 10px rgba(0, 0, 0, 0.05);
}

.ai-feature-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
}

.ai-feature-card p {
    margin: 18px 0;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* =========================================================
   ICON BOX
========================================================= */

.ai-icon-box {
    width: 52px;
    height: 52px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(38, 162, 220, 0.08);
    border: 1px solid rgba(38, 162, 220, 0.18);

    font-size: 24px;

    transition: all 0.3s ease;
}

.ai-feature-card:hover .ai-icon-box {
    background: rgba(38, 162, 220, 0.14);
}

/* =========================================================
   MINI VISUAL BOX
========================================================= */

.mini-visual {
    position: relative;

    min-height: 80px;

    padding: 14px 12px;
    margin-bottom: 18px;

    border-radius: 18px;

    background: rgba(248, 251, 255, 0.9);

    border: 1px solid rgba(38, 162, 220, 0.08);

    overflow: hidden;
}

/* =========================================================
   SALES CHART
========================================================= */

.sales-chart .bars,
.dashboard-chart .chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
}

.sales-chart .bars span,
.dashboard-chart .chart-bars span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(38, 162, 220, 0.2);
    transition: all 0.4s ease;
}

.sales-chart .bars span:last-child,
.dashboard-chart .chart-bars span:last-child {
    background: linear-gradient(180deg,
            #26A2DC,
            #60c8f0);
}

.ai-feature-card:hover .sales-chart .bars span {
    filter: brightness(1.08);
}

/* =========================================================
   OUTLET GRID
========================================================= */

.outlet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.outlet-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 12px;

    background: #fff;
    border-radius: 12px;

    font-size: 12px;
    color: #666;
}

.outlet-item strong {
    color: #26A2DC;
    font-size: 12px;
}

/* =========================================================
   ALERTS BOX
========================================================= */

.alerts-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert-item,
.dashboard-alert {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 12px;

    background: #fff;
    border-radius: 12px;

    font-size: 12px;
    color: #555;
}

.alert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.alert-dot.danger {
    background: #ef4444;
}

.alert-dot.warning {
    background: #f59e0b;
}

.alert-dot.success {
    background: #10b981;
}

/* =========================================================
   INVENTORY BARS
========================================================= */

.inventory-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inventory-row {
    display: grid;
    grid-template-columns: 50px 1fr 42px;
    align-items: center;
    gap: 10px;
}

.inventory-row label {
    font-size: 12px;
    color: #666;
}

.inventory-row strong {
    font-size: 12px;
    color: #26A2DC;
}

.inventory-row .progress {
    height: 8px;
    border-radius: 999px;
    background: #eaf5fb;
    overflow: hidden;
}

.inventory-row .progress-bar {
    border-radius: 999px;
    background: #26A2DC;
}

.inventory-row .progress-bar.warning {
    background: #f59e0b;
}

.inventory-row .progress-bar.danger {
    background: #ef4444;
}

/* =========================================================
   CUSTOMER SEGMENTS
========================================================= */

.customer-segments {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.segment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 12px;

    padding: 8px 10px;

    border-radius: 10px;

    background: #fff;
}

.segment-item strong {
    color: #26A2DC;
}

.donut-chart {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: conic-gradient(#198754 0% 38%,
            #0d6efd 38% 67%,
            #ffc107 67% 88%,
            #dc3545 88% 100%);
    position: relative;
}

.donut-chart::after {
    content: "";
    position: absolute;
    inset: 16px;
    background: #fff;
    border-radius: 50%;
}

/* =========================================================
   EXECUTIVE GRID
========================================================= */

.executive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.exec-box {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
}

.exec-box small {
    display: block;
    color: #888;
    font-size: 11px;
    margin-bottom: 4px;
}

.exec-box strong {
    font-size: 14px;
    color: #111;
}

/* =========================================================
   STAT PILL
========================================================= */

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;

    border-radius: 999px;

    background: rgba(38, 162, 220, 0.08);

    border: 1px solid rgba(38, 162, 220, 0.18);

    font-size: 12px;
    font-weight: 700;
    color: #26A2DC;
}

.stat-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #26A2DC;
}

/* =========================================================
   CENTRAL DASHBOARD
========================================================= */

.central-dashboard {
    position: relative;
    z-index: 3;

    border-radius: 28px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(20px);

    border: 1.5px solid rgba(38, 162, 220, 0.16);

    box-shadow:
        0 8px 40px rgba(38, 162, 220, 0.12),
        0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Header */

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;

    background: rgba(38, 162, 220, 0.04);

    border-bottom: 1px solid rgba(38, 162, 220, 0.08);
}

.dashboard-title {
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

.live-text {
    font-size: 11px;
    font-weight: 700;
    color: #26A2DC;
}

/* KPI */

.dashboard-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;

    padding: 18px;
}

.kpi-card {
    padding: 14px;

    border-radius: 16px;

    background: rgba(38, 162, 220, 0.05);

    border: 1px solid rgba(38, 162, 220, 0.08);
}

.kpi-card small {
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 6px;
}

.kpi-card h4 {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    hyphens: auto !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
}

.kpi-card span {
    font-size: 11px !important;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .kpi-card span {
        font-size: 8px !important;
        font-weight: 700;
    }
}

.kpi-card .up {
    color: #10b981;
}

.kpi-card .down {
    color: #ef4444;
}

/* Chart */

.dashboard-chart {
    padding: 0 18px 18px;
}

.dashboard-chart small,
.dashboard-alerts small {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    color: #888;
}

.chart-days {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.chart-days span {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: #888;
}

/* Alerts */

.dashboard-alerts {
    padding: 0 18px 20px;
}

/* =========================================================
   BOTTOM STATS
========================================================= */


.bottom-stats-row {
    display: flex;
    gap: 14px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
    -ms-overflow-style: none;

    padding-bottom: 8px;
}

.bottom-stats-row::-webkit-scrollbar {
    display: none;
}

.bottom-stat-card {
    /* 4 cards per row when space allows */
    flex: 1 0 260px;

    /* Never become tiny */
    min-width: 220px;
    min-height: 220px;

    /* Always square */
    aspect-ratio: 2 / 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 20px;

    border-radius: 22px;
    background: #fff;

    border: 1px solid rgba(38, 162, 220, 0.14);

    box-shadow: 0 2px 14px rgba(38, 162, 220, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.bottom-stat-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(38, 162, 220, 0.12);
}

.bottom-stat-card img {
    max-width: 56px;
    margin-bottom: 12px;
}

.bottom-stat-card h3 {
    margin-bottom: 8px;

    font-size: 30px;
    font-weight: 800;

    color: var(--primary-color);
}

.bottom-stat-card p {
    margin: 0;

    font-size: 14px;
    color: var(--secondary-dark);
}



/* =========================================================
   REVEAL ANIMATION
========================================================= */

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .ai-intelligence-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .central-dashboard {
        margin: 10px 0;
    }

    .ai-feature-card {
        padding: 22px;
    }

    .dashboard-kpis {
        gap: 10px;
    }

    .kpi-card h4 {
        font-size: 18px !important;
    }
}

@media (max-width: 767.98px) {

    .ai-intelligence-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .ai-badge {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .ai-feature-card {
        padding: 20px;
        border-radius: 20px;
    }

    .mini-visual {
        min-height: auto;
    }

    .bottom-stat-card {
        padding: 20px;
    }

    .bottom-stat-card h3 {
        font-size: 24px;
    }

    .inventory-row {
        grid-template-columns: 45px 1fr 38px;
    }
}

/* =========================
   OPERATIONS PLATFORM
========================= */

.operations-platform {
    background: #f8fafc;
}

/* Section Header */

.section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #26A2DC;
}

.section-title {
    font-size: 38px !important;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
}

.section-desc {
    max-width: 700px;
    font-size: 16px !important;
    color: #667085 !important;
}

/* Tabs */

.feature-tabs {
    position: relative;
    z-index: 2;
}

.feature-tab {
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #667085;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.feature-tab:hover {
    background: #fff;
    color: #111;
    border-color: #d0d5dd;
}

.feature-tab.active {
    background: #26A2DC;
    border-color: #26A2DC;
    color: #fff;
    box-shadow: 0 12px 28px rgba(38, 162, 220, 0.28);
}

.feature-tab img[data-theme="white"] {
    display: none;
}

.feature-tab img[data-theme="grey"] {
    display: block;
}

.feature-tab.active img[data-theme="white"] {
    display: block;
}

.feature-tab.active img[data-theme="grey"] {
    display: none;
}

@media (max-width: 575.98px) {

    .feature-tabs {
        flex-wrap: nowrap !important;

        justify-content: flex-start !important;

        overflow-x: auto;
        overflow-y: hidden;

        padding-bottom: 8px;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .feature-tabs::-webkit-scrollbar {
        display: none;
    }

    .feature-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

/* Main Card */

.feature-card-wrapper {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.04),
        0 2px 12px rgba(38, 162, 220, 0.06);
}

/* Left */

.feature-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-mini-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #26A2DC;
}

.feature-headline {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--secondary-color) !important;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 15px;
    line-height: 1.8;
    color: #667085;
    margin-bottom: 28px;
}

/* KPI */

.kpi-card {
    background: #e3f1fb;
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    height: 100%;
}

.kpi-card h4 {
    font-size: 20px !important;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.kpi-card p {
    font-size: 12px !important;
    color: #667085;
    margin-bottom: 0;
}

/* Features */

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #111;
    margin-bottom: 14px;
}

.check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: rgba(38, 162, 220, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 12px;
    height: 12px;
    color: #26A2DC;
}

/* Right Image */

.feature-image-wrapper {
    min-height: 100%;
    height: 100%;
    background: #eef6fb;
}

.feature-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.feature-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.2),
            transparent);
    pointer-events: none;
}

/* Reveal Animation */

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 991.98px) {

    .feature-content {
        padding: 36px 28px;
    }

    .feature-headline {
        font-size: 28px;
    }

    .feature-image {
        min-height: 320px;
    }
}

@media (max-width: 767.98px) {

    .feature-tab {
        /* width: 100%; */
        justify-content: center;
    }

    .feature-content {
        padding: 28px 20px;
    }

    .feature-headline {
        font-size: 24px;
    }

    .kpi-card h4 {
        font-size: 12px !important;
    }

    .feature-image {
        min-height: 260px;
    }
}

/* ==========================================
   Supermarket ERP Section
========================================== */

.supermarket-erp-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 100px 0;
}

@media (max-width: 1199.98px) {

    .supermarket-features-row {
        flex-wrap: nowrap;

        overflow-x: auto;
        overflow-y: hidden;

        padding-bottom: 8px;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .supermarket-features-row::-webkit-scrollbar {
        display: none;
    }

    .supermarket-features-row>[class*="col-"] {
        flex: 0 0 320px;
        width: 320px;
        max-width: 320px;
    }
}

@media (max-width: 991.98px) {

    .ms-workflow-row {
        flex-wrap: nowrap;

        overflow-x: auto;
        overflow-y: hidden;

        padding-bottom: 8px;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .ms-workflow-row::-webkit-scrollbar {
        display: none;
    }

    .ms-workflow-row>[class*="col-"] {
        flex: 0 0 320px;
        width: 320px;
        max-width: 320px;
    }
}

/* ==========================================
   Section Header
========================================== */

.supermarket-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.supermarket-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    font-weight: 800;
    color: #111111;
    margin-bottom: 20px;
}

.supermarket-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 40px;
}

/* ==========================================
   Feature Cards
========================================== */

.super-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    height: 100%;

    padding: 18px;

    border-radius: 18px;

    background: rgba(248, 251, 255, 0.75);

    border: 1px solid rgba(38, 162, 220, 0.12);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.super-feature-card:hover {
    background: rgba(38, 162, 220, 0.04);

    border-color: rgba(38, 162, 220, 0.35);

    box-shadow:
        0 10px 30px rgba(38, 162, 220, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.03);
}

/* ==========================================
   Feature Icon
========================================== */

.feature-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;

    border-radius: 12px;
    background: rgba(38, 162, 220, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* ==========================================
   Feature Content
========================================== */

.super-feature-card h6 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;

    color: #111111;

    margin-bottom: 6px;
}

.super-feature-card p {
    margin-bottom: 0;

    font-size: 13px;
    line-height: 1.7;

    color: #666666;
}

/* ==========================================
   Dashboard Area
========================================== */

.supermarket-dashboard {
    position: relative;
}

/* Main Image */
.dashboard-image-wrapper {
    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background: #ffffff;

    border: 1px solid rgba(38, 162, 220, 0.12);

    box-shadow:
        0 20px 60px rgba(38, 162, 220, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.05);
}

.dashboard-main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   Floating Cards
========================================== */


/* ==========================================
   Floating Card Content
========================================== */

.small-label {
    font-size: 12px;
    color: #777777;
}



/* ==========================================
   Status
========================================== */

.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;
}

.status-dot.warning {
    background: #f59e0b;
}

.status-dot.success {
    background: #22c55e;
}

.status-text {
    font-size: 12px;
    font-weight: 600;
}

.warning-text {
    color: #f59e0b;
}

.success-text {
    color: #16a34a;
}

/* ==========================================
   Floating Animation
========================================== */

@keyframes supermarketFloatingCard {

    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================
   Reveal Animations
========================================== */

.supermarket-reveal-left,
.supermarket-reveal-right {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.supermarket-reveal-left {
    transform: translateX(-40px);
}

.supermarket-reveal-right {
    transform: translateX(40px);
}

.supermarket-reveal-left.active,
.supermarket-reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   Responsive
========================================== */


@media (max-width: 991.98px) {

    .supermarket-erp-section {
        padding: 80px 0;
    }

    .supermarket-dashboard {
        margin-top: 20px;
    }

}

@media (max-width: 767.98px) {

    .supermarket-title {
        font-size: 2rem;
    }

    .supermarket-desc {
        font-size: 15px;
    }

    .small-label,
    .status-text {
        font-size: 11px;
    }
}

@media (max-width: 575.98px) {

    .supermarket-erp-section {
        padding: 70px 0;
    }

    .super-feature-card {
        padding: 16px;
    }

    .supermarket-title br {
        display: none;
    }
}

/* =========================
   Multi Store Section CSS
========================= */

#multi_store_section {
    background: linear-gradient(160deg, #f3f4f6 0%, #ececec 50%, #e5e7eb 100%);
    overflow: hidden;
    position: relative;
}

/* Background */

.ms-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ms-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .3;
}

.ms-radial-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(38, 162, 220, .15) 0%, transparent 70%);
}

/* Headings */

.ms-small-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #26A2DC;
}

.ms-mini-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #26A2DC;
}

.ms-main-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

.ms-main-heading span {
    color: #26A2DC;
}

.ms-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.ms-sub-desc {
    font-size: 14px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;
}

/* Stats */

.ms-stat-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #111;
}

.ms-stat-card p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Command Card */

.ms-command-card {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(38, 162, 220, .15);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .06);
}

.ms-command-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #26A2DC;
    margin-bottom: 4px;
}

.ms-command-subtitle {
    font-size: 12px;
    color: #777;
    margin: 0;
}

.ms-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    animation: msPulse 2s infinite;
}

.ms-live-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

@keyframes msPulse {
    0% {
        transform: scale(1);
        opacity: .5;
    }

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

    100% {
        transform: scale(1);
        opacity: .5;
    }
}

/* Network */

.ms-network-area {
    position: relative;
    height: 230px;
    margin-bottom: 20px;
}

.ms-line {
    stroke: #26A2DC;
    stroke-width: 1;
    stroke-dasharray: 5 4;
    stroke-opacity: .5;
    stroke-linecap: round;
    animation: msDash 1.5s linear infinite;
}

@keyframes msDash {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -18px;
    }
}

.ms-node-circle {
    fill: white;
    stroke: #26A2DC;
    stroke-width: 1;
    stroke-opacity: .4;
}

.ms-node-dot {
    fill: #26A2DC;
}

.ms-node-text {
    font-size: 8px;
    fill: #555;
}

.ms-center-circle-1 {
    fill: rgba(38, 162, 220, .1);
    stroke: #26A2DC;
}

.ms-center-circle-2 {
    fill: rgba(38, 162, 220, .15);
    stroke: #26A2DC;
}

.ms-center-dot {
    fill: #26A2DC;
}

.ms-center-text {
    font-size: 9px;
    font-weight: bold;
    fill: #26A2DC;
}

/* KPI Cards */

.ms-kpi-card {
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(38, 162, 220, .12);
    border-radius: 14px;
    padding: 14px;
}

.ms-kpi-card p {
    font-size: 12px !important;
    color: #888;
    margin-bottom: 6px;
}

.ms-kpi-card h5 {
    font-size: 18px !important;
    font-weight: 800;
    margin-bottom: 4px;
    color: #111;
}

.ms-kpi-card span {
    font-size: 12px !important;
    color: #26A2DC;
    font-weight: 600;
}

/* Workflow Cards */

.ms-workflow-card {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(38, 162, 220, .12);
    border-radius: 22px;
    padding: 28px;
    transition: .35s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .05);
}

.ms-workflow-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(38, 162, 220, .12);
}

.ms-card-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #26A2DC;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
}

.ms-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(38, 162, 220, .08);
    border: 1px solid rgba(38, 162, 220, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.ms-workflow-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111;
}

.ms-workflow-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.ms-workflow-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.ms-workflow-card ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #444;
    font-weight: 500;
}

.ms-workflow-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #26A2DC;
}

/* Trust Card */

.ms-trust-card {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(38, 162, 220, .15);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .06);
}

.ms-trophy-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(38, 162, 220, .1);
    border: 1px solid rgba(38, 162, 220, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.ms-trust-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.ms-trust-card p {
    font-size: 13px;
    margin: 0;
    color: #26A2DC;
    font-weight: 600;
}

.ms-trust-content {
    font-size: 16px;
    line-height: 1.5;
    color: var(--secondary-dark);
}

.badge-container {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 8px;
}

.ms-badge {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(38, 162, 220, .08);
    border: 1px solid rgba(38, 162, 220, .2);
    color: #26A2DC;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

/* Animation */

.ms-reveal-left,
.ms-reveal-right {
    opacity: 0;
    transform: translateY(40px);
    transition: .7s ease;
}

.ms-reveal-left.active,
.ms-reveal-right.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 991px) {

    .ms-command-card,
    .ms-trust-card,
    .ms-workflow-card {
        padding: 22px;
    }

    .ms-main-heading {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {

    .ms-network-area {
        height: 200px;
    }

    .ms-main-heading {
        font-size: 1.8rem;
    }

    .ms-stat-card h3 {
        font-size: 22px;
    }

    .ms-trust-card {
        padding: 24px;
    }
}

/* =========================
INDUSTRY SECTION CSS
========================= */

.industry-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Heading */

.industry-heading {
    max-width: 760px;
    margin: auto;
}

.industry-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #26A2DC;
}

.industry-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 18px;
}

.industry-subtitle {
    max-width: 680px;
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
}

/* Card */

.industry-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(38, 162, 220, 0.35);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08),
        0 6px 18px rgba(38, 162, 220, 0.10);
}

/* Image */

.industry-image-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card:hover .industry-image {
    transform: scale(1.08);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.70),
            rgba(0, 0, 0, 0.18),
            transparent);
}

.industry-image-content {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* .industry-icon {
    font-size: 22px;
} */

.industry-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

/* Content */

.industry-content {
    padding: 20px;
}

.industry-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 16px;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #26A2DC;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.industry-link span {
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-link span {
    transform: translateX(4px);
}

/* Reveal Animation */

.industry-section .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.industry-section .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 991.98px) {

    .industry-image-wrapper {
        height: 210px;
    }
}

@media (max-width: 767.98px) {

    .industry-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .industry-title {
        font-size: 2rem;
    }

    .industry-image-wrapper {
        height: 180px;
    }

    .industry-content {
        padding: 16px;
    }

    .industry-name {
        text-align: left;
        font-size: 14px;
    }

    .industry-image-content {
        left: 7px;
    }

    .industry-content p {
        font-size: 12px;
    }
}

.business-sliders-main {
    & #business-sliders-lp2 {
        .slick-next {
            position: absolute;
            right: -3%;
            top: 50%;
            width: auto;
            display: table;
            cursor: pointer;
            margin-left: 5px;
            transform: translateY(-50%);
        }
    }
}

.business-sliders-main {
    & #business-sliders-lp2 {
        .slick-prev {
            position: absolute;
            left: -3%;
            top: 50%;
            width: auto;
            display: table;
            cursor: pointer;
            transform: translateY(-50%);
        }
    }
}

/* =========================
INTEGRATIONS SECTION CSS
========================= */

.integrations-section {
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}

/* Heading */

.integrations-heading {
    /* max-width: 760px; */
    margin: auto;
}

.integrations-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #26A2DC;
}

.integrations-title {
    font-size: 38px !important;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 18px;
}

.integrations-subtitle {
    max-width: 680px;
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
}

/* Hub */

.integration-hub-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.integration-hub {
    width: 95px;
    height: 95px;
    border-radius: 26px;
    /* background: #26A2DC; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 15px 35px rgba(38, 162, 220, 0.30);
}

.integration-hub-logo {
    width: 60px;
    /* filter: brightness(0) invert(1); */
    position: relative;
    z-index: 2;
}

.hub-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgb(38, 162, 220);
}

.ring-one,
.ring-two {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(38, 162, 220, 0.8);
    animation: pulseRing 3.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.ring-one {
    width: 150px;
    height: 150px;
}

.ring-two {
    width: 220px;
    height: 220px;
    border: 3px solid rgba(38, 162, 220, 0.378);
    /* animation-delay: 1.75s; */
    /* Half of 3.5s */
}

@keyframes pulseRing {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    15% {
        opacity: 0.35;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Group Cards */

.integration-group {
    border-radius: 24px;
    padding: 24px;
    border: 1px solid transparent;
    transition: all 0.35s ease;
    height: 100%;
}

.integration-group:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Colors */

.integration-green {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.integration-blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.integration-orange {
    background: #fff7ed;
    border-color: #fed7aa;
}

.integration-purple {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.integration-yellow {
    background: #fefce8;
    border-color: #fde68a;
}

.integration-cyan {
    background: #ecfeff;
    border-color: #a5f3fc;
}

/* Title */

.integration-group-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 18px;
}

/* Items */

.integration-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.integration-item {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.90);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.integration-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.integration-item img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.integration-item span {
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    white-space: nowrap;
}

/* Bottom */

.integration-bottom-text {
    color: #666666;
    font-size: 14px;
}

.integration-bottom-text a {
    color: #26A2DC;
    font-weight: 700;
    text-decoration: none;
}

.integration-bottom-text a:hover {
    text-decoration: underline;
}

/* Reveal */

.integrations-section .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.integrations-section .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 767.98px) {

    /* .integrations-section {
        padding-top: 30px !important;
        padding-bottom: 70px !important;
    } */

    .integrations-title {
        font-size: 2rem;
    }

    .integration-group {
        padding: 20px;
    }

    .integration-item {
        width: 100%;
        justify-content: flex-start;
    }

    .integration-item span {
        font-size: 12px;
    }
}


/* =========================================
   TESTIMONIALS SECTION
========================================= */

.testimonials-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Heading */

.ts-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-light, #26A2DC);
}

.ts-heading {
    font-size: 38px !important;
    font-weight: 800;
    line-height: 1.15;
    color: var(--secondary-color) !important;
    letter-spacing: -0.03em;
}

/* Nav Buttons */

.ts-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.ts-nav-btn:hover {
    border-color: var(--primary-light, #26A2DC);
    color: var(--primary-light, #26A2DC);
    transform: translateY(-2px);
}

/* Card */

.testimonial-card {
    background: #f7f8fa;
    border: 1px solid #e9ecef;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

/* Image */

.testimonial-image-wrapper {
    position: relative;
    min-height: 320px;
    height: 100%;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.05),
            rgba(255, 255, 255, 0.05));
}

/* Metric Badge */

.testimonial-metric-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: var(--primary-light, #26A2DC);
    padding: 14px 18px;
    border-radius: 18px;
    color: white;
    box-shadow: 0 12px 30px rgba(38, 162, 220, 0.25);
}

.metric-value {
    font-size: 17px;
    font-weight: 700;
}

.metric-outlets {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.testimonial-image-wrapper .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

/* Content */

.testimonial-content {
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-size: 80px;
    line-height: 1;
    color: rgba(38, 162, 220, 0.18);
    font-family: Georgia, serif;
    margin-bottom: 12px;
}

.testimonial-quote {
    height: 160px;
    font-size: 1.18rem;
    line-height: 1.8;
    color: #111111;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Author */

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(38, 162, 220, 0.12);
    color: var(--primary-light, #26A2DC);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
}

.testimonial-role,
.testimonial-location {
    font-size: 13px;
    color: #777777;
}

/* Dots */

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50px;
    background: #d0d5dd;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    width: 34px;
    background: var(--primary-light, #26A2DC);
}

/* Reveal Animation */

.testimonials-section .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.testimonials-section .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 991.98px) {

    .testimonial-content {
        padding: 35px 28px;
    }

    .testimonial-image-wrapper {
        min-height: 280px;
    }

    .testimonial-quote {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}

@media (max-width: 575.98px) {

    .ts-heading {
        font-size: 1.8rem;
    }

    .testimonial-content {
        padding: 28px 22px;
    }

    .quote-icon {
        font-size: 60px;
    }

    .testimonial-quote {
        font-size: 14px !important;
    }

    .testimonial-metric-badge {
        left: 14px;
        bottom: 14px;
        padding: 12px 14px;
    }
}

/* =========================================================
   WHY VASYERP SECTION
========================================================= */

#why_vasyerp_section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        linear-gradient(180deg,
            #f8fbff 0%,
            #f3f7fb 45%,
            #eef4f8 100%);
}

/* Background Glow */
#why_vasyerp_section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    top: -220px;
    right: -160px;
    background: radial-gradient(circle,
            rgba(1, 200, 255, 0.14) 0%,
            rgba(1, 200, 255, 0) 72%);
    pointer-events: none;
}

#why_vasyerp_section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    bottom: -180px;
    left: -120px;
    background: radial-gradient(circle,
            rgba(0, 102, 255, 0.10) 0%,
            rgba(0, 102, 255, 0) 75%);
    pointer-events: none;
}

/* =========================================================
   SECTION TITLE
========================================================= */

#why_vasyerp_section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #01c8ff;
    margin-bottom: 16px;
}

#why_vasyerp_section .section-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #01c8ff;
}

#why_vasyerp_section .section-title h2 {
    font-size: 38px !important;
    line-height: 1.18;
    font-weight: 800 !important;
    color: var(--secondary-color) !important;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    text-transform: none !important;
}

#why_vasyerp_section .section-title p {
    max-width: 720px !important;
    margin: 0 auto !important;
    font-size: 16px !important;
    line-height: 1.8;
    color: #64748b !important;
}

/* =========================================================
   TABLE WRAPPER
========================================================= */

#why_vasyerp_section .why-table-wrapper {
    /* margin-top: 60px; */
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(1, 200, 255, 0.10);
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.06),
        0 3px 12px rgba(1, 200, 255, 0.05);
}

/* =========================================================
   TABLE HEADER
========================================================= */

#why_vasyerp_section .why-table-header {
    background:
        linear-gradient(90deg,
            rgba(1, 200, 255, 0.08),
            rgba(1, 200, 255, 0.02));
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

#why_vasyerp_section .why-table-header .row {
    min-height: 72px;
}

#why_vasyerp_section .why-table-header p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #64748b;
}

#why_vasyerp_section .why-table-header .vasy-col {
    background: rgba(1, 200, 255, 0.06);
}

#why_vasyerp_section .why-table-header .vasy-col p {
    color: #01c8ff;
}

/* =========================================================
   FEATURE ROWS
========================================================= */

#why_vasyerp_section .why-feature-row {
    position: relative;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

#why_vasyerp_section .why-feature-row:last-child {
    border-bottom: 0;
}

#why_vasyerp_section .why-feature-row:hover {
    background: rgba(248, 250, 252, 0.9);
}

#why_vasyerp_section .why-feature-row .row {
    min-height: 78px;
}

#why_vasyerp_section .feature-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    color: #111827;
}

#why_vasyerp_section .vasy-col {
    background: rgba(1, 200, 255, 0.04);
    border-left: 1px solid rgba(148, 163, 184, 0.12);
    border-right: 1px solid rgba(148, 163, 184, 0.12);
}

#why_vasyerp_section .others-col {
    border-left: 1px solid rgba(148, 163, 184, 0.12);
}

/* =========================================================
   STATUS ICONS
========================================================= */

#why_vasyerp_section .status-check,
#why_vasyerp_section .status-cross {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#why_vasyerp_section .status-check {
    background: linear-gradient(135deg, #26a2dc, #008cff);
    color: #fff;
    box-shadow:
        0 8px 18px rgba(1, 200, 255, 0.22);
}

#why_vasyerp_section .status-cross {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

#why_vasyerp_section .status-check svg,
#why_vasyerp_section .status-cross svg {
    width: 15px;
    height: 15px;
}

/* =========================================================
   PARTIAL BADGE
========================================================= */

#why_vasyerp_section .partial-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(251, 146, 60, 0.12);
    border: 1px solid rgba(251, 146, 60, 0.18);
    color: #ea580c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* =========================================================
   CTA BUTTON
========================================================= */

#why_vasyerp_section .why-cta {
    margin-top: 44px;
}

#why_vasyerp_section .why-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border-radius: 16px;
    background: linear-gradient(135deg, #26a2dc, #008cff);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow:
        0 14px 32px rgba(1, 200, 255, 0.22);
}

#why_vasyerp_section .why-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 38px rgba(1, 200, 255, 0.28);
    color: #fff;
}

#why_vasyerp_section .why-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            transparent 20%,
            rgba(255, 255, 255, 0.25) 50%,
            transparent 80%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
}

#why_vasyerp_section .why-btn:hover::before {
    transform: translateX(120%);
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

#why_vasyerp_section .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s cubic-bezier(.22, 1, .36, 1),
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

#why_vasyerp_section .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    #why_vasyerp_section {
        padding: 40px 0;
    }

    #why_vasyerp_section .why-table-wrapper {
        overflow-x: auto;
    }

    #why_vasyerp_section .why-table-inner {
        min-width: 760px;
    }
}

@media (max-width: 767.98px) {

    #why_vasyerp_section {
        padding: 30px 0;
    }

    #why_vasyerp_section .section-title h2 {
        font-size: 24px !important;
    }

    #why_vasyerp_section .section-title p {
        font-size: 14px;
        line-height: 1.75;
    }

    #why_vasyerp_section .why-table-header .row,
    #why_vasyerp_section .why-feature-row .row {
        min-height: 72px;
    }

    #why_vasyerp_section .feature-title {
        font-size: 14px;
    }

    #why_vasyerp_section .why-btn {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================================
   PRICING SECTION
========================================================= */

#pricing_section {
    position: relative;
    overflow: hidden;
    /* padding: 100px 0; */
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f8fbff 100%);
}

/* =========================================================
   SECTION HEADING
========================================================= */

#pricing_section .section-heading {
    margin-bottom: 60px;
}

#pricing_section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #01c8ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

#pricing_section .section-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #01c8ff;
}

#pricing_section .section-heading h2 {
    font-size: 38px !important;
    line-height: 1.15;
    font-weight: 800 !important;
    color: var(--secondary-color) !important;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

#pricing_section .section-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   CUSTOM 5 COLUMN
========================================================= */

@media (min-width: 992px) {
    #pricing_section .col-lg-custom {
        width: 20%;
    }
}

/* =========================================================
   PRICING CARD
========================================================= */

#pricing_section .pricing-card {
    position: relative;
    height: 100%;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    overflow: hidden;
    backdrop-filter: blur(14px);
}

#pricing_section .pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(1, 200, 255, 0.25);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.08),
        0 10px 24px rgba(1, 200, 255, 0.08);
}

#pricing_section .pricing-card-inner {
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991.98px) {

    .pricing-cards-row {
        flex-wrap: nowrap;

        overflow-x: auto;
        overflow-y: hidden;

        padding-bottom: 10px;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pricing-cards-row::-webkit-scrollbar {
        display: none;
    }

    .pricing-cards-row>[class*="col-"] {
        flex: 0 0 320px;
        width: 320px;
        max-width: 320px;
    }
}

/* =========================================================
   HIGHLIGHT CARD
========================================================= */

#pricing_section .pricing-highlight {
    background:
        linear-gradient(180deg,
            #1c94cd 0%,
            #008cff 100%);
    border-color: transparent;
    transform: scale(1.04);
    box-shadow:
        0 24px 60px rgba(1, 200, 255, 0.22);
}

#pricing_section .pricing-highlight:hover {
    transform: translateY(-8px) scale(1.04);
}

#pricing_section .pricing-badge {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    text-align: center;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* =========================================================
   TOP
========================================================= */

#pricing_section .pricing-top h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

#pricing_section .pricing-highlight .pricing-top h3 {
    color: #fff;
}

#pricing_section .pricing-tagline {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
    min-height: 42px;
    margin-bottom: 24px;
}

#pricing_section .pricing-highlight .pricing-tagline {
    color: rgba(255, 255, 255, 0.75);
}

#pricing_section .pricing-price {
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 28px;
}

#pricing_section .pricing-highlight .pricing-price {
    color: #fff;
}

#pricing_section .pricing-price span {
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
}

#pricing_section .pricing-highlight .pricing-price span {
    color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
   FEATURES
========================================================= */

#pricing_section .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

#pricing_section .pricing-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

#pricing_section .pricing-features li::before {
    content: none;
}

#pricing_section .pricing-features li::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 7px;
    width: 8px;
    height: 4px;
    border-left: 2px solid #01c8ff;
    border-bottom: 2px solid #01c8ff;
    transform: rotate(-45deg);
}

#pricing_section .pricing-features-white li::after {
    border-left-color: #fff;
    border-bottom-color: #fff;
}

#pricing_section .pricing-highlight .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

#pricing_section .pricing-highlight .pricing-features li::before {
    background: rgba(255, 255, 255, 0.22);
}

/* =========================================================
   BUTTON
========================================================= */

#pricing_section .pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    background:
        linear-gradient(135deg,
            #26a2dc,
            #008cff);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow:
        0 10px 24px rgba(1, 200, 255, 0.20);
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #pricing_section .pricing-btn {
        font-size: 12px;
    }
}

#pricing_section .pricing-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

#pricing_section .pricing-btn-white {
    background: #fff;
    color: #26a2dc;
    box-shadow:
        0 10px 24px rgba(255, 255, 255, 0.18);
}

#pricing_section .pricing-btn-white:hover {
    color: var(--primary-dark);
}

/* =========================================================
   ENTERPRISE NOTE
========================================================= */

#pricing_section .enterprise-note {
    margin-top: 40px;
    padding: 24px 28px;
    border-radius: 24px;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.14);
    text-align: center;
}

#pricing_section .enterprise-note p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    line-height: 1.8;
}

#pricing_section .enterprise-note a {
    color: #01c8ff;
    text-decoration: none;
    font-weight: 700;
}

#pricing_section .enterprise-note a:hover {
    text-decoration: underline;
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

#pricing_section .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s cubic-bezier(.22, 1, .36, 1),
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

#pricing_section .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    #pricing_section .pricing-highlight {
        transform: none;
    }

    #pricing_section .pricing-highlight:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 991.98px) {

    #pricing_section {
        padding: 40px 0;
    }

    #pricing_section .section-heading {
        margin-bottom: 50px;
    }
}

@media (max-width: 767.98px) {

    #pricing_section {
        padding: 30px 0;
    }

    #pricing_section .section-heading h2 {
        font-size: 24px !important;
    }

    #pricing_section .pricing-card-inner {
        padding: 24px 20px;
    }

    #pricing_section .pricing-price {
        font-size: 34px;
    }

    #pricing_section .enterprise-note {
        padding: 20px;
    }

    #pricing_section .enterprise-note p {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .justify-content-center-pricing-cstm {
        justify-content: center;
    }
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
    /* padding: 110px 0; */
    background:
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(1, 200, 255, 0.08) 0%, transparent 70%);
    top: -180px;
    right: -140px;
    pointer-events: none;
}

.faq-heading {
    margin-bottom: 55px;
}

.faq-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(1, 200, 255, 0.08);
    color: #01c8ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.faq-heading h2 {
    font-size: 38px !important;
    line-height: 1.15;
    font-weight: 800;
    color: var(--secondary-color) !important;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.faq-heading p {
    font-size: 16px;
    color: #666666;
    max-width: 640px;
    margin: auto;
    line-height: 1.8;
}

/* Tabs */

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 45px;
}

@media (max-width: 1199.98px) {

    .faq-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 12px;

        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
        /* Firefox */
    }

    .faq-tabs::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .faq-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

.faq-tab {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #555;
    padding: 13px 22px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(1, 200, 255, 0.22);
}

.faq-tab:hover {
    transform: translateY(-2px);
}

/* Accordion */

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    /* margin-bottom: 10px; */
}

.faq-item:hover {
    border-color: rgba(1, 200, 255, 0.25);
    box-shadow:
        0 12px 40px rgba(1, 200, 255, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04);
}


.faq-item {
    break-inside: avoid;
    margin-bottom: 0;
    display: inline-block;
    width: 100%;
}

.faq-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.faq-grid-col {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
    /* replaces margin-bottom on faq-item */
}


@media (max-width: 991.98px) {
    .faq-grid {
        flex-direction: column;
    }
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 10px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
}

.faq-question span {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--secondary-color);
}

.faq-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon svg {
    width: 15px;
    height: 15px;
    color: #666;
    transition: all 0.3s ease;
}

.faq-question.active .faq-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: transparent;
    transform: rotate(45deg);
}

.faq-question.active .faq-icon svg {
    color: #fff;
}

/* Answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
    padding: 0 26px;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 26px 24px;
}

.faq-answer p {
    color: #666666;
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
}

/* Bottom */

.faq-bottom {
    text-align: center;
    margin-top: 42px;
}

.faq-bottom p {
    color: #666;
    font-size: 15px;
}

.faq-bottom a {
    color: #01c8ff;
    font-weight: 700;
    text-decoration: none;
}

.faq-bottom a:hover {
    text-decoration: underline;
}

/* Reveal */

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 991.98px) {

    .faq-section {
        padding: 30px 0;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer.open {
        padding: 0 20px 20px;
    }
}

@media (max-width: 767.98px) {

    .faq-tabs {
        gap: 10px;
    }

    .faq-tab {
        text-wrap: auto;
        width: calc(50% - 5px);
        text-align: center;
        padding: 12px 10px;
        font-size: 13px;
    }

    .faq-heading h2 br {
        display: none;
    }

    .faq-heading h2 {
        font-size: 24px !important;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

/* =========================
   FINAL CTA SECTION
========================= */

.final-cta-section {
    padding: 100px 0;
    background:
        linear-gradient(135deg, #06141f 0%, #0d2434 50%, #06141f 100%);
    position: relative;
    overflow: hidden;
}

/* Glow blob */
.cta-glow {
    position: absolute;
    width: 700px;
    height: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse,
            rgba(38, 162, 220, 0.5) 0%,
            transparent 70%);
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 600;
}

.glow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e;
}

/* Heading */
.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-gradient-blue {
    background: linear-gradient(90deg, #26a2dc, #7fd9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.cta-description {
    max-width: 760px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.8;
}

/* Buttons */
.cta-btn-primary,
.cta-btn-whatsapp,
.cta-btn-glass {
    padding: 16px 34px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

/* Primary */
.cta-btn-primary {
    background: #26a2dc;
    color: #fff;
    box-shadow: 0 10px 30px rgba(38, 162, 220, 0.35);
}

.cta-btn-primary:hover {
    background: #1b8cc3;
    color: #fff;
}

/* WhatsApp */
.cta-btn-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border: 2px solid rgba(37, 211, 102, 0.45);
    color: #fff;
}

.cta-btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
    color: #fff;
}

/* Glass */
.cta-btn-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #fff;
}

.cta-btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Trust strip */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.trust-strip span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    font-weight: 500;
}

/* =========================
   REVEAL ANIMATION
========================= */

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767.98px) {

    .final-cta-section {
        padding: 80px 0;
    }

    .cta-description {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .trust-strip {
        gap: 14px;
    }

    .trust-strip span {
        width: 100%;
        text-align: center;
    }

    .cta-btn-primary,
    .cta-btn-whatsapp,
    .cta-btn-glass {
        width: 100%;
    }
}


/* product tour cta  */

.demo-cta-section {
    width: 100vw;
    overflow: hidden;
}

.demo-cta-card {
    background: linear-gradient(90deg,
            #021b3d 0%,
            #062850 35%,
            #0b3a6d 70%,
            #144d85 100%);
}

.demo-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;

}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    padding: 10px 18px;
    margin-bottom: 24px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);

    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.demo-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;

    background: #38d973;
}

.demo-title {
    color: #fff;

    font-size: 32px !important;
    line-height: 1.05;
    font-weight: 700;

    margin-bottom: 24px;
}

@media (min-width: 992px) and (max-width: 1072px) {
    .demo-title {
        font-size: 24px !important;
    }
}

.demo-title span {
    color: #26A2DC;
}

.demo-subtitle {
    color: rgba(255, 255, 255, 0.7);

    font-size: clamp(16px, 1.2vw, 22px);

    margin-bottom: 25px;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    min-width: 260px;
    height: 64px;

    border-radius: 18px;

    background: var(--primary-color);
    color: #fff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: 0.3s ease;
}

.demo-btn:hover {
    background-color: var(--primary-dark) !important;
    color: white !important;
}

.demo-image-wrapper {
    position: relative;
    height: 100%;
}

.demo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    display: block;
}

.demo-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to right, rgb(9, 53, 95) 0%, rgb(20 77 133 / 30%) 15%, rgb(20 77 133 / 13%) 35%, rgb(20 77 133 / 0%) 60%, transparent 100%);

    pointer-events: none;
}

/* =========================
   Tablet (768px - 991px)
========================= */
@media (max-width: 991.98px) {

    .demo-cta-card {
        padding: 50px 0;
    }

    .demo-content {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }

    .demo-title {
        font-size: 2.5rem;
    }

    .demo-subtitle {
        font-size: 1rem;
    }

    .demo-image-wrapper {
        margin-top: 40px;
        max-width: 550px;
        margin-inline: auto;
    }

    .demo-image {
        height: auto;
    }
}

/* =========================
   Mobile (<768px)
========================= */
@media (max-width: 767.98px) {

    .demo-cta-card {
        padding: 40px 0;
    }

    .demo-content {
        text-align: center;
        align-items: center;
    }

    .demo-badge {
        font-size: 12px;
        padding: 8px 14px;
        margin-bottom: 18px;
    }

    .demo-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .demo-subtitle {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .demo-btn {
        min-width: 220px;
        height: 54px;
        font-size: 15px;
    }

    .demo-image-wrapper {
        margin-top: 30px;
        max-width: 420px;
        margin-inline: auto;
    }


}

@media (max-width: 991.98px) {
    .demo-image-wrapper::before {
        display: none;
    }
}

/* =========================
   Small Mobile (<576px)
========================= */
@media (max-width: 575.98px) {

    .demo-cta-card {
        padding: 35px 0;
    }

    .demo-title {
        font-size: 1.75rem;
    }

    .demo-subtitle {
        font-size: 14px;
    }

    .demo-btn {
        width: 100%;
        max-width: 280px;
        min-width: unset;
    }

    .demo-badge {
        max-width: 100%;
        text-align: center;
    }

    .demo-image-wrapper {
        margin-top: 24px;
        max-width: 320px;
    }
}

@media (max-width: 991.98px) {

    /* Stack columns vertically, image on top */
    .feature-card-wrapper .row {
        display: flex;
        /* flex-direction: column; */
    }

    #solutions .col-lg-7 {
        order: 1;
    }

    #solutions .col-lg-5 {
        order: 2;
    }

    /* Make the content area a flex column so we can reorder inner elements */
    #solutions .feature-content {
        display: flex;
        flex-direction: column;
    }

    /* label + headline + description stay at top (natural order 1–3) */
    #solutions .feature-content .mb-2 {
        order: 1;
    }

    /* mini label */
    #solutions .feature-content .feature-headline {
        order: 2;
    }

    #solutions .feature-content .feature-description {
        order: 3;
    }

    /* KPIs and feature list come AFTER the image (which is now above the content block) */
    /* They stay in natural flow — no reordering needed within the content block */
    #solutions .feature-content #featureKpis {
        order: 4;
    }

    #solutions .feature-content .feature-list {
        order: 5;
    }
}

@media (min-width: 992px) {
    .supermarket-cstm-margin {
        margin-top: 400px;
    }
}