:root {
    --brand: #5e17eb;
    --brand-dark: #4a0fbf;
    --brand-light: #7c3aff;
    --brand-pale: #f0eaff;
    --ink: #0a0a14;
    --muted: #64718a;
    --surface: #ffffff;
    --bg: #faf9ff;
    --border: rgba(94, 23, 235, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* DO NOT set overflow-x here — it breaks position:sticky on why-axxpress cards */
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--ink);
    /* DO NOT set overflow-x here either — use overflow-x:clip on individual sections */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
}

/* ===== HORIZONTAL OVERFLOW FIX =====
   overflow-x: clip on individual sections clips bleed-out elements
   WITHOUT creating a new scroll container (unlike hidden).
   This means position:sticky in #why-axxpress still works perfectly. */
.hero-wrap,
#services,
#integrations,
#testimonials,
.bg-banner-2,
#promo,
#faq,
#about,
#stats {
    overflow-x: clip;
}


/* ===== UNIFIED SECTION TITLES =====
   Single consistent style for all h2 headings across the page. */

/* All section h2s */
#about h2,
#services .section-title h2,
#integrations h2,
#why-axxpress .why-heading,
#testimonials h2,
#faq h2,
#promo h2,
.section-title h2,
.bg-banner-2 h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
}

/* Brand colour span inside headings */
h2 span {
    color: var(--brand);
}

/* Subtitle text under section headings */
.section-title p,
#integrations .text-center>p,
#faq .col-lg-5>p,
#testimonials .section-title p,
#promo .section-title p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 10px;
}

/* Eyebrow pill labels */
#about .badge-pill,
.section-eyebrow {
    display: inline-block;
    background: var(--brand-pale);
    color: var(--brand);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 5px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 12px;
}


/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: slideOut 1s ease forwards;
    animation-delay: 2s;
}

#preloader img {
    width: 120px;
    margin-bottom: 20px;
    animation: dropIn 1s ease forwards;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

@keyframes dropIn {
    from {
        transform: translateY(-150px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    to {
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
    }
}


/* ===== NAVBAR ===== */
.axx-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.axx-nav.scrolled {
    box-shadow: 0 4px 24px rgba(94, 23, 235, 0.08);
}

.navbar-brand img {
    height: 48px;
}

.nav-link {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--ink) !important;
    padding: 8px 14px !important;
}

.nav-link:hover {
    color: var(--brand) !important;
}

.mega-parent {
    position: relative;
}

.mega-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: #fff;
    border-radius: 16px;
    padding: 5px;
    box-shadow: 0 20px 60px rgba(94, 23, 235, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    min-width: 580px;
}

.mega-parent:hover .mega-menu {
    display: block;
}

.small-menu {
    min-width: 400px;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mega-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.2s;
}

.mega-item:hover {
    background: var(--brand-pale);
    transform: translateY(-2px);
}

.mega-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 15px;
    background: var(--brand-pale);
    color: var(--brand);
    flex-shrink: 0;
}

.mega-item strong {
    font-size: 0.88rem;
}

.mega-item small {
    color: var(--muted);
    font-size: 0.77rem;
}

.axx-cta {
    padding: 10px 22px;
    background: var(--brand);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(94, 23, 235, 0.28);
}

.axx-cta:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(94, 23, 235, 0.36);
}

.mobile-item {
    border-bottom: 1px solid #f0eaff;
    padding: 6px 0;
}

.mobile-toggle {
    width: 100%;
    border: 0;
    background: none;
    font-weight: 600;
    padding: 10px 0;
    font-family: 'Sora', sans-serif;
    color: var(--ink);
}

.mobile-submenu {
    padding-left: 16px;
    padding-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-submenu a {
    color: var(--brand);
    padding: 6px 0;
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
}

.mobile-link {
    display: block;
    padding: 12px 0;
    font-weight: 600;
    color: var(--ink);
    font-family: 'Sora', sans-serif;
    text-align: center;
    text-decoration: none;
}


/* ===== HERO ===== */
.hero-wrap {
    padding-top: 0px;
}

.hero-swiper {
    overflow: hidden;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #dbdbdb;
    height: 30px;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--brand);
}

.hero-slide-outer {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 48px 0;
}

.slide-1-bg {
    background: linear-gradient(135deg, #f0eaff 0%, #e8f4ff 60%, #f5ffee 100%);
}

.slide-2-bg {
    background: linear-gradient(135deg, #fff0ea 0%, #ffeeff 60%, #eafff4 100%);
}

.slide-3-bg {
    background: linear-gradient(135deg, #eafffa 0%, #eaf0ff 60%, #fff8ea 100%);
}

.hero-text-col h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
}

.hero-text-col h1 span {
    color: var(--brand);
}

.hero-text-col p {
    font-size: 1.05rem;
    color: var(--muted);
    margin-top: 14px;
    max-width: 480px;
}

.hero-ctas {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-brand {
    background: var(--brand);
    color: #fff;
    border: 1px solid var(--brand);
    border-radius: 30px;
    padding: 10px 15px;
    font-weight: 500;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(94, 23, 235, 0.28);
    text-decoration: none;
}

.btn-brand:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.38);
}

.btn-outline-brand {
    background: transparent;
    border: 1px solid var(--brand);
    color: var(--brand);
    border-radius: 30px;
    padding: 10px 15px;
    font-weight: 500;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-outline-brand:hover {
    background: var(--brand-pale);
}


/* ===== FLOW / WAREHOUSE ANIMATION ===== */
.flow-canvas {
    width: 100%;
    max-width: 560px;
    min-height: 380px;
    position: relative;
}

.flow-nodes {
    position: relative;
    width: 100%;
    height: 380px;
}

.flow-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: nodeIn 0.6s cubic-bezier(.22, 1, .36, 1) both;
}

.node-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 26px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(94, 23, 235, 0.15);
    border: 2px solid rgba(94, 23, 235, 0.15);
    color: var(--brand);
    position: relative;
    transition: transform 0.3s;
}

.node-icon:hover {
    transform: scale(1.08);
}

.node-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    max-width: 80px;
}

.node-icon.active::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    border: 2px solid var(--brand);
    opacity: 0;
    animation: pulseRing 1.5s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

@keyframes nodeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.85);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.flow-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.travel-dot {
    width: 10px;
    height: 10px;
    background: var(--brand);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 0 4px rgba(94, 23, 235, 0.2);
    pointer-events: none;
    transition: none;
}

.profit-badge {
    position: absolute;
    bottom: 20px;
    right: 10px;
    background: #fff;
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 8px 30px rgba(94, 23, 235, 0.15);
    border: 1px solid var(--border);
    font-family: 'Sora', sans-serif;
    animation: badgeFloat 3s ease-in-out infinite alternate;
}

.profit-badge .amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #16a34a;
}

.profit-badge .label {
    font-size: 0.7rem;
    color: var(--muted);
}

@keyframes badgeFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-8px);
    }
}

.warehouse-anim {
    position: relative;
    width: 300px;
    height: 320px;
}

.wh-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: wh-float 4s ease-in-out infinite alternate;
}

.wh-card:nth-child(2) {
    animation-delay: 0.5s;
}

.wh-card:nth-child(3) {
    animation-delay: 1s;
}

.wh-card:nth-child(4) {
    animation-delay: 1.5s;
}

.wh-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 14px;
}

.wh-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--brand);
    border-radius: 20px;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.35);
}

.wh-center i {
    font-size: 36px;
    color: #fff;
}

.orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px dashed rgba(94, 23, 235, 0.2);
}

.ring-1 {
    width: 170px;
    height: 170px;
    animation: spin 12s linear infinite;
}

.ring-2 {
    width: 240px;
    height: 240px;
    animation: spin 18s linear infinite reverse;
}

@keyframes wh-float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-6px);
    }
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* ===== ABOUT ===== */
#about {
    padding: 40px 0;
    background: #fff;
}

#about .badge-pill {
    background: var(--brand-pale);
    color: var(--brand);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

#about h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 12px 0 16px;
}

#about h2 span {
    color: var(--brand);
}

.soft-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.soft-card:hover {
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
    transition: all .25s;
}

.service-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}


/* ===== SERVICES ===== */
#services {
    padding: 40px 0;
    background: var(--bg);
}

#services .section-title h2 {
    font-size: 2rem;
    font-weight: 800;
}

.section-title {
    margin-bottom: 48px;
}

.service-card-wrap {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.svc-1 {
    background: linear-gradient(135deg, #f0eaff, #e5d5ff);
}

.svc-2 {
    background: linear-gradient(135deg, #eaffe8, #d0f5d0);
}

.svc-3 {
    background: linear-gradient(135deg, #eafbff, #cdeeff);
}

.svc-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.svc-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ink);
}

.svc-content p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.svc-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 99px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    margin: 3px;
}

.svc-icon-big {
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: 16px;
}


/* ===== CTA BANNER ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0eaff 0%, #e8f4ff 100%);
}

.cta-inner {
    background: var(--brand);
    border-radius: 28px;
    padding: 60px 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-inner h2 {
    font-size: 2rem;
    font-weight: 800;
}

.btn-white {
    background: #fff;
    color: var(--brand);
    border-radius: 30px;
    padding: 14px 32px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    border: none;
    transition: all 0.2s;
}

.btn-white:hover {
    background: #f0eaff;
    transform: translateY(-2px);
}


/* ===== CONTACT ===== */
#contact {
    padding: 40px 0;
    background: var(--bg);
    overflow-x: hidden;
}

#contact h2 {
    font-size: 2rem;
    font-weight: 800;
}

.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(94, 23, 235, 0.08);
    border: 1px solid var(--border);
}

.form-control {
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(94, 23, 235, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 6px;
}


/* ===== FOOTER ===== */
footer {
    background: #0a0a14;
    color: #94a3b8;
    padding: 60px 0 24px;
}

footer .logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
}

footer .logo-text span {
    color: var(--brand-light);
}

footer h6 {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    margin-bottom: 14px;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    display: block;
    margin-bottom: 8px;
}

footer a:hover {
    color: var(--brand-light);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 32px 0 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}


/* ===== BG BANNER ===== */
.bg-banner-2 {
    padding: 50px 0;
    background: linear-gradient(135deg, #fff0f0, #ffe4ff, #eef0ff);
}

.banner-form input {
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    padding: 12px 16px;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
}

.banner-form input:focus {
    border-color: var(--brand);
    outline: none;
}


/* ===== STATS ===== */
.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.stat-num {
    font-family: 'Sora', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    color: #fff;
    display: inline-block;
}

.stat-suffix {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.stat-block::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.col-lg-3:last-child .stat-block::after {
    display: none;
}


/* ===== INTEGRATIONS ===== */
.integ-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 48px;
}

.integ-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: all 0.25s;
    cursor: default;
    position: relative;
}

.integ-card:hover {
    border-color: var(--brand);
    box-shadow: 0 10px 32px rgba(94, 23, 235, 0.1);
    transform: translateY(-4px);
}

.integ-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
}

.integ-card strong {
    font-size: 0.83rem;
}

.integ-badge {
    font-size: 0.67rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 99px;
    letter-spacing: 0.4px;
}

.integ-badge.live {
    background: #dcfce7;
    color: #16a34a;
}

.integ-badge.soon {
    background: #fff3e0;
    color: #d97706;
}

.integ-badge.testing {
    background: #ffffe1;
    color: #9fa400;
}

.integ-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 20px 32px;
    overflow: hidden;
}

.integ-strip-label {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
    padding: 0 16px;
}

.integ-strip-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, rgba(94, 23, 235, 0.15), rgba(94, 23, 235, 0.4));
    position: relative;
    overflow: visible;
}

.integ-strip-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--brand);
    border-radius: 50%;
    animation: dotSlide 1.8s linear infinite;
}

.integ-hub {
    width: 56px;
    height: 56px;
    background: var(--brand);
    border-radius: 16px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(94, 23, 235, 0.3);
}

@keyframes dotSlide {
    0% {
        left: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}


/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.active {
    border-color: var(--brand);
    box-shadow: 0 6px 24px rgba(94, 23, 235, 0.08);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--brand);
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.active .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 0 20px 18px;
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}


/* ===== BLOG ===== */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    border-color: var(--brand);
    box-shadow: 0 14px 40px rgba(94, 23, 235, 0.1);
    transform: translateY(-4px);
}

.blog-thumb {
    height: 160px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(94, 23, 235, 0.12);
    color: var(--brand);
    border-radius: 99px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
}

.blog-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.blog-meta {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0;
}

.blog-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    color: var(--ink);
}

.blog-excerpt {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.blog-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-link:hover {
    color: var(--brand-dark);
}


/* ===== VIDEO PROMO ===== */
#promo {
    padding: 40px 0;
    background: linear-gradient(135deg, #f9f5ff, #f5fff9);
}

.video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(94, 23, 235, 0.12);
}


/* ===== FLOAT / BADGE KEYFRAMES ===== */
@keyframes floatA {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-7px);
    }
}

@keyframes floatB {
    from {
        transform: translateY(-4px);
    }

    to {
        transform: translateY(6px);
    }
}


/* ===== MARQUEE TESTIMONIALS ===== */
#testimonials {
    padding: 40px 0 40px;
    background: #fff;
    overflow: hidden;
}

#testimonials h2 {
    font-size: 2rem;
    font-weight: 800;
}

@keyframes marqueeLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.marquee-left {
    animation: marqueeLeft 38s linear infinite;
}

.marquee-right {
    animation: marqueeRight 42s linear infinite;
}

.marquee-outer:hover .marquee-track {
    animation-play-state: paused;
}

.t-card-pill {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px 24px;
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.t-card-alt {
    background: linear-gradient(135deg, #f5f0ff, #eef8ff);
    border-color: rgba(94, 23, 235, 0.1);
}

.t-card-pill p {
    font-style: italic;
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.65;
    flex: 1;
}

.t-pill-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.t-pill-author strong {
    display: block;
    font-size: 0.85rem;
}

.t-pill-author small {
    color: var(--muted);
    font-size: 0.75rem;
}

.t-avatar {
    width: 38px;
    height: 38px;
    background: var(--brand-pale);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 15px;
    flex-shrink: 0;
}

.t-avatar-alt {
    background: linear-gradient(135deg, #f0eaff, #e0f0ff);
}

.stars {
    color: #f59e0b;
    font-size: 0.82rem;
}


/* ===== WHY AXXPRESS =====
   CRITICAL: Do NOT add overflow-x:clip or overflow:hidden to #why-axxpress
   or .why-stack-wrap — it will break position:sticky on the cards. */
#why-axxpress {
    background: #fff;
    position: relative;
}

.why-sticky-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    padding: 28px 0 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.why-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.why-eyebrow {
    display: inline-block;
    background: rgba(94, 23, 235, 0.18);
    color: #a78bfa;
    border: 1px solid rgba(94, 23, 235, 0.4);
    border-radius: 99px;
    padding: 4px 14px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Unified with all other section h2s */
.why-heading {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    margin: 0;
}

.why-cta-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.why-stack-wrap {
    padding: 48px 0 160px;
}

/* ── Sticky stacking cards ── */
.why-card {
    position: sticky;
    border-radius: 26px;
    overflow: hidden;
    transform-origin: top center;
    transition: transform 0.1s linear;
    will-change: transform;
}

.why-card-1 {
    box-shadow: 0 60px 50px rgb(226 210 255), 0 60px 50px rgb(220 220 220 / 30%);
}

.why-card-2 {
    box-shadow: 0 60px 50px rgb(211 255 229), 0 60px 50px rgb(225 255 237);
}

.why-card-3 {
    box-shadow: 0 60px 50px rgb(255 248 232), 0 60px 50px rgb(255 240 211 / 42%);
}

.why-card-4 {
    box-shadow: 0 60px 50px rgb(204 236 255), 0 60px 50px rgb(213 239 255);
}

#wc1 {
    top: 154px;
    z-index: 10;
}

#wc2 {
    top: 168px;
    z-index: 11;
}

#wc3 {
    top: 182px;
    z-index: 12;
}

#wc4 {
    top: 196px;
    z-index: 13;
}

/* ── Peek strip ── */
.why-card-peek {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

.why-card-peek::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s ease;
}

.why-card:hover .why-card-peek::after {
    left: 150%;
}

.why-peek-1 {
    background: linear-gradient(105deg, #d4b8ff 0%, #e8d5ff 40%, #c9a8ff 70%, #d4b8ff 100%);
    border-bottom: 1px solid rgba(94, 23, 235, 0.18);
}

.why-peek-2 {
    background: linear-gradient(105deg, #a8e8c0 0%, #c8f5d8 40%, #96e0b0 70%, #a8e8c0 100%);
    border-bottom: 1px solid rgba(22, 163, 74, 0.18);
}

.why-peek-3 {
    background: linear-gradient(105deg, #f8d080 0%, #fde8aa 40%, #f5c860 70%, #f8d080 100%);
    border-bottom: 1px solid rgba(217, 119, 6, 0.18);
}

.why-peek-4 {
    background: linear-gradient(105deg, #7eceff 0%, #b8e6ff 40%, #68c4ff 70%, #7eceff 100%);
    border-bottom: 1px solid rgba(14, 165, 233, 0.18);
}

.why-card-peek-num {
    font-family: 'Sora', sans-serif;
    font-weight: 900;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: var(--card-accent, #5e17eb);
    opacity: 0.65;
}

.why-card-peek-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #363636;
}

/* ── Two-col card body ── */
.why-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
}

.why-card-left {
    padding: 44px 44px 48px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--card-color, #f0eaff);
}

.why-card-num {
    font-family: 'Sora', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--card-accent, #5e17eb);
    line-height: 1;
    opacity: 0.15;
    margin-bottom: -8px;
}

.why-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    margin: 0;
}

.why-card-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.78;
    margin: 0;
    max-width: 400px;
}

.why-card-points {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 4px;
}

.why-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}

.why-point i {
    color: var(--card-accent, #5e17eb);
    font-size: 1rem;
    flex-shrink: 0;
}

.why-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--card-accent, #5e17eb);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    margin-top: auto;
    padding-top: 4px;
    transition: gap 0.2s;
}

.why-card-link:hover {
    gap: 14px;
}

/* ── Right visual panel ── */
.why-card-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
    background-color: #fff;
}

.why-card-visual {
    width: 100%;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 36px 28px;
    min-height: 260px;
}

.why-visual-icon {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    animation: badgeFloat 3s ease-in-out infinite alternate;
}

.why-stat-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.why-stat {
    background: rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    padding: 13px 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    flex: 1;
}

.why-stat-num {
    display: block;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1;
}

.why-stat-lbl {
    display: block;
    font-size: 0.67rem;
    color: var(--muted);
    margin-top: 5px;
    font-weight: 500;
}

.why-integ-logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.wil {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Scroll reveal */
.svc-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(.22, 1, .36, 1);
}

.svc-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* =============================================================
   TABLET (≤991px)
   ============================================================= */
@media (max-width: 991px) {
    .mega-menu {
        display: none !important;
    }

    .hero-slide-outer {
        padding: 40px 0;
        min-height: auto;
    }

    .flow-canvas {
        margin: 0 auto;
    }

    .ds-flow,
    .warehouse-anim,
    .aff-anim {
        transform: scale(0.85);
        transform-origin: center;
    }

    .why-card-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .why-card-right {
        padding: 0 28px 32px;
    }

    .why-card-visual {
        min-height: 160px;
        padding: 24px 16px;
    }

    #wc1 {
        top: 140px;
    }

    #wc2 {
        top: 150px;
    }

    #wc3 {
        top: 160px;
    }

    #wc4 {
        top: 170px;
    }

    .why-stack-wrap {
        padding: 32px 0 120px;
    }

    .stat-block::after {
        display: none;
    }

    .stat-num {
        font-size: 2.2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .integ-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* =============================================================
   MOBILE (≤767px) — ALL PADDING & FONT REDUCTIONS HERE ONLY
   ============================================================= */
@media (max-width: 767px) {

    /* Section headings */
    #about h2,
    #services .section-title h2,
    #integrations h2,
    .why-heading,
    #testimonials h2,
    #faq h2,
    #promo h2,
    .section-title h2,
    .bg-banner-2 h2 {
        font-size: 1rem !important;
    }

    .section-title p,
    #integrations .text-center>p,
    #faq .col-lg-5>p {
        font-size: 0.88rem;
    }

    .section-title {
        margin-bottom: 28px;
    }

    /* Hero */
    .hero-text-col h1 {
        font-size: 1.7rem;
    }

    .hero-text-col p {
        font-size: 0.9rem;
    }

    .hero-slide-outer {
        padding: 32px 0;
    }

    /* Scale hero animations so they don't overflow viewport */
    .hero-slide-outer .col-lg-6.d-flex>div[style] {
        transform: scale(0.68);
        transform-origin: top center;
        margin-bottom: -100px;
    }

    .warehouse-anim {
        transform: scale(0.75);
        transform-origin: top center;
        margin-bottom: -70px;
    }

    /* Services */
    .svc-content {
        padding: 22px 18px;
    }

    .svc-content h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .svc-content p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .svc-icon-big {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .svc-tag {
        font-size: 0.72rem;
        padding: 4px 10px;
    }

    /* Stats */
    .stat-num {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1.2rem;
    }

    /* Integrations */
    .integ-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .integ-card {
        padding: 14px 10px;
    }

    .integ-strip {
        padding: 14px 16px;
    }

    .integ-strip-label {
        font-size: 0.75rem;
        padding: 0 8px;
    }

    /* Why Axxpress */
    .why-sticky-header {
        padding: 14px 0 10px;
    }

    .why-heading {
        font-size: 1.15rem;
    }

    .why-card-peek {
        padding: 9px 16px;
    }

    .why-card-left {
        padding: 22px 20px 26px;
        gap: 12px;
    }

    .why-card-num {
        font-size: 2rem;
        margin-bottom: -4px;
    }

    .why-card-title {
        font-size: 1.15rem;
    }

    .why-card-desc {
        font-size: 0.82rem;
        line-height: 1.65;
    }

    .why-point {
        font-size: 0.78rem;
    }

    .why-card-link {
        font-size: 0.82rem;
    }

    .why-card-right {
        padding: 0 16px 20px;
    }

    .why-card-visual {
        min-height: 120px;
        padding: 16px 12px;
        gap: 12px;
    }

    .why-visual-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .why-visual-icon i {
        font-size: 1.4rem !important;
    }

    .why-stat {
        padding: 8px 8px;
    }

    .why-stat-num {
        font-size: 0.85rem;
    }

    .why-stat-lbl {
        font-size: 0.62rem;
    }

    .wil {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .why-stack-wrap {
        padding: 20px 0 90px;
    }

    #wc1 {
        top: 108px;
    }

    #wc2 {
        top: 118px;
    }

    #wc3 {
        top: 128px;
    }

    #wc4 {
        top: 138px;
    }

    /* FAQ */
    .faq-q {
        font-size: 0.83rem;
        padding: 14px 16px;
    }

    /* Contact */
    .contact-card {
        padding: 24px 18px;
    }

    /* CTA */
    .cta-inner {
        padding: 32px 24px;
    }

    .bg-banner-2 h2 {
        font-size: 1.35rem;
    }

    .axx-nav {
        padding: 4px !important;
    }
}


/* =============================================================
   SMALL MOBILE (≤576px)
   ============================================================= */
@media (max-width: 576px) {
    .hero-text-col h1 {
        font-size: 1.45rem;
    }

    #about h2,
    .section-title h2 {
        font-size: 1rem;
    }

    .why-card-left {
        padding: 18px 14px 20px;
    }

    .why-card-title {
        font-size: 1.05rem;
    }
}