html,
body {
    width: 100%;
    overflow-x: hidden !important;
}

* {
    box-sizing: border-box;
}

:root {
    --primary: #0060ff;
    --accent: #00bfff;
    --muted: #6c7886;
    --card-bg: #fff;
}

body {
    color: #12334a
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Body content */
body,
p,
span,
li,
input,
button {
    font-family: 'Montserrat', sans-serif;
}

.axx-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 28px rgba(2, 10, 40, 0.06);
    padding: 0px;
}

.axx-logo img {
    height: 50px
}

.nav-link {
    font-weight: 600;
    color: #12334a
}

.nav-link.active {
    color: var(--primary)
}

.hero {
    background: linear-gradient(to top, #FAFFD1, #baffdb);
    padding: 50px 0px;
}

.hero-grid {
    position: relative;
    height: 380px;
    margin-top: 20px;
}

.product-item {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0.4;
    filter: blur(1.5px);
}

.product-item.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.05);
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.product-item[data-index="0"] {
    top: 0;
    left: 0;
}

.product-item[data-index="1"] {
    top: 0;
    right: 0;
}

.product-item[data-index="2"] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-item[data-index="3"] {
    bottom: 0;
    left: 0;
}

.product-item[data-index="4"] {
    bottom: 0;
    right: 0;
}

#priceCardsContainer {
    position: absolute;
    pointer-events: none;
}

.price-card {
    position: absolute;
    padding: 6px 6px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: all .35s ease;
    background: #ffffffd8;
    /* light translucent */
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
}

.cost-icon {
    background: #f39c12;
}

.selling-icon {
    background: #3498db;
}

.profit-icon {
    background: #2ecc71;
}

.text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    white-space: nowrap !important;
}

.label {
    font-size: 10px;
    font-weight: 600;
    color: #555;
}

.price-text {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .product-item {
        width: 160px;
        height: 110px;
    }

    .product-item[data-index="2"] {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {

    .hero-grid {
        height: 260px !important;
        margin-top: 35px !important;
    }

    /* Fix product image size */
    .product-item {
        width: 90px !important;
        height: 90px !important;
        opacity: 0.8 !important;
        filter: blur(0px) !important;
        /* sharper on mobile */
    }

    .product-item img {
        border-radius: 12px !important;
    }

    /* Adjust hero text */
    .hero-left h1 {
        font-size: 22px !important;
        line-height: 30px !important;
    }

    .hero-left p {
        font-size: 14px !important;
    }

    /* CTA buttons spacing */
    .cta-row a {
        padding: 8px 14px !important;
        font-size: 14px !important;
    }

    /* Price cards fix */
    .price-card {
        transform: scale(0.8) !important;
    }
}

.process-step {
    border-radius: 15px;
    padding: 20px;
    background: #eef4ff;
    margin-bottom: 20px;
}

.process-step:nth-child(2) {
    background: #fff6e6;
}

.process-step:nth-child(3) {
    background: #e8fff1;
}

.process-step:nth-child(4) {
    background: #f9e8ff;
}

.process-img {
    width: 40%;
    max-height: 250px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .process-img {
        width: 100%;
        max-height: 250px;
        margin-bottom: 20px;
        object-fit: contain;
    }
}

.carousel-multi .carousel-item {
    display: flex;
    gap: 10px;
}

.carousel-multi .carousel-item img {
    width: 33%;
    border-radius: 12px;
}

.testimonial-card {
    padding: 18px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(3, 20, 60, 0.06)
}

.partner-logo {
    filter: grayscale(1);
    opacity: .8;
    transition: filter .25s, opacity .25s
}

.partner-logo:hover {
    filter: none;
    opacity: 1
}

footer {
    background: #0b1724;
    color: #cfe6ff;
    padding: 10px 0
}

@media(max-width:1199px) {
    .product-showcase {
        height: 320px
    }

    .product-img {
        width: 180px
    }
}

@media(max-width:767px) {
    .hero {
        padding: 30px 25px;
    }

    .product-showcase {
        height: 240px;
        display: none
    }
}

.stats-section {
    background-color: #f2f0fd;
}

.text-theme-color {
    color: #5e17eb !important;
}


.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.09);
}

.t-blob {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(45px);
    opacity: 0.4;
    animation: floatBlob 12s infinite linear;
}

.blob1 {
    background: #cbdcff;
    top: -60px;
    right: -40px;
}

.blob2 {
    background: #ffd4e8;
    bottom: -80px;
    left: -40px;
}

@keyframes floatBlob {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}

.t-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
    margin-bottom: 12px;
    animation: popIn 1.2s ease;
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.t-stars i {
    color: #ffb400;
    margin: 0 2px;
    font-size: 18px;
}

.t-text {
    color: #4b5563;
    font-size: 1rem;
    margin: 18px 0;
    line-height: 1.6;
}

.t-name {
    color: #062244;
    font-weight: 700;
    margin-bottom: 4px;
}

.t-role {
    color: #6b7280;
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    background: #062244 !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

.app-screens img {
    border-radius: 10px;
    border: 1px solid rgba(3, 7, 18, 0.05)
}

.testimonial-card {
    border-radius: 12px;
    padding: 20px;
    background: linear-gradient(180deg, #fff, #fbfbff);
    border: 1px solid rgba(3, 7, 18, 0.04)
}

.clients img {
    max-height: 52px;
    opacity: 0.85;
    transition: transform .25s, opacity .25s
}

.clients img:hover {
    transform: translateY(-6px);
    opacity: 1
}

.faq-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(3, 7, 18, 0.03);
}

.btn-axx {
    background: linear-gradient(90deg, var(--primary), #2563eb);
    color: #fff;
    border-radius: 40px;
    padding: 12px 26px;
    border: none
}

.btn-axx1 {
    background: linear-gradient(90deg, #b71f06, #d34000);
    color: #fff;
    border-radius: 40px;
    padding: 12px 26px;
    border: none
}

.single_price_plan {
    position: relative;
    z-index: 1;
    border-radius: 0.5rem 0.5rem 0 0;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    margin-bottom: 50px;
    background-color: #ffffff;
    padding: 1rem 1rem;
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single_price_plan {
        padding: 3rem;
    }
}

@media only screen and (max-width: 575px) {
    .single_price_plan {
        padding: 3rem;
    }
}

.single_price_plan::after {
    position: absolute;
    content: "";
    background-image: url("https://bootdey.com/img/half-circle-pricing.png");
    background-repeat: repeat;
    width: 100%;
    height: 17px;
    bottom: -17px;
    z-index: 1;
    left: 0;
}

.single_price_plan .title {
    text-transform: capitalize;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    margin-bottom: 2rem;
    padding: 10px;
}

.single_price_plan .title span {
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    font-size: 12px;
    text-transform: uppercase;
    background-color: #2ecc71;
    display: inline-block;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.single_price_plan .title h3 {
    font-size: 1.25rem;
}

.single_price_plan .title p {
    font-weight: 300;
    line-height: 1;
    font-size: 12px;
    color: #090b0c;
}

.single_price_plan .title .line {
    width: 80px;
    height: 4px;
    border-radius: 10px;
    background-color: #3f43fd;
}

.single_price_plan .price {
    margin-bottom: 1.5rem;
}

.single_price_plan .price h4 {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1;
    color: #3f43fd;
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, right top, from(#e24997), to(#2d2ed4));
    background-image: linear-gradient(90deg, #e24997, #2d2ed4);
}

.single_price_plan .description {
    position: relative;
    margin-bottom: 1.5rem;
}

.single_price_plan .description p {

    margin: 0;
    padding: 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    color: #090b0c;
    font-size: 12px;
}

.single_price_plan .description p i {
    color: #2ecc71;
    margin-right: 0.5rem;
}

.single_price_plan .description p .lni-close {
    color: #e74c3c;
}

.single_price_plan.active,
.single_price_plan:hover,
.single_price_plan:focus {
    -webkit-box-shadow: 0 6px 50px 8px rgba(21, 131, 233, 0.15);
    box-shadow: 0 6px 50px 8px rgba(21, 131, 233, 0.15);
}

.single_price_plan .side-shape img {
    position: absolute;
    width: auto;
    top: 0;
    right: 0;
    z-index: -2;
}

.discount-circle {
    width: 75px;
    height: 75px;
    background-color: #ff6347;
    /* Tomato color */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: linear-gradient(45deg, #2b4bf3, #f33aff);
    padding: 10px;
    text-align: center;
    margin-top: -18px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-top: 2px solid #5848f6;
    right: 20%;
}

.discount-text {
    font-size: 14px;
    color: white;
    font-weight: bold;
}

.star {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: gold;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star-1 {
    top: -15px;
    left: -15px;
}

.star-2 {
    bottom: 30px;
    right: 65px;
}

.star-3 {
    bottom: 50px;
    left: 50px;
    transform: scale(0.8);
    /* Smaller star */
}

.custom-right-border-without-curve {
    border-top: 2px solid #5d10ec !important;
}

.price-option {
    border: 1px solid #5d46f6;
    color: #000;
    padding: 5px;
    border-radius: 10px;
    width: 48%;
    text-align: center;
    margin-right: 10px;
}

.price-box-list {
    display: flex;
}

.price-name {
    color: #5e17eb;
    font-size: 12px;
    font-weight: 500;
}

.price-amount {
    font-size: 14px;
    font-weight: 700;
}

.price-period {
    font-size: 12px;
    font-weight: 500;
}

.savings-tag {
    font-size: 12px;
    font-weight: 700;
    color: #3b9724;
    display: block;
}

.subscription-button {
    width: 100%;
    background: #5e17eb;
    color: #fff;
    border: 1px solid #4855e9;
    border-radius: 5px;
    font-size: 14px;
    padding: 5px;
}

.bg-pricing {
    background: #dcfffc;
}

.axxpress-btn {
    background: #5e17eb;
    border: 1px solid #5e17eb;
    color: #fff;
}


:root {
    --brand: #0060ff;
    --brand-dark: #0044cc;
    --brand-light: #e8f0ff;
    --accent: #00bfff;
    --green: #16a34a;
    --green-light: #dcfce7;
    --amber: #d97706;
    --amber-light: #fef3c7;
    --purple: #7c3aed;
    --purple-light: #f3e8ff;
    --ink: #0d1b2a;
    --muted: #5a6a7e;
    --surface: #ffffff;
    --bg: #f7f9fc;
    --border: rgba(0, 96, 255, 0.1);
    --radius: 18px;
    --nav-h: 68px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════
           HERO SECTION
        ═══════════════════════════════════════════════════ */
#home {
    background: linear-gradient(135deg, #eef5ff 0%, #f0fff7 60%, #fffbeb 100%);
    padding: calc(var(--nav-h) + 40px) 0 60px;
    overflow: hidden;
    position: relative;
}

#home::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 96, 255, 0.07) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

/* Left: text + stats */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 96, 255, 0.08);
    border: 1px solid rgba(0, 96, 255, 0.2);
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 18px;
}

.hero-badge span {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.85rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-title .hl {
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 28px;
}

/* Mini stat pills */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hstat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.hstat:hover {
    transform: translateY(-3px);
}

.hstat-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hstat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1;
}

.hstat-lbl {
    display: block;
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 2px;
}

/* CTA row */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn-hero-primary {
    background: linear-gradient(90deg, var(--brand), #1a80ff);
    color: #fff;
    border: none;
    border-radius: 99px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 28px rgba(0, 96, 255, 0.3);
    transition: box-shadow 0.2s, transform 0.2s;
}

.btn-hero-primary:hover {
    box-shadow: 0 12px 36px rgba(0, 96, 255, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-hero-ghost {
    background: #fff;
    color: var(--brand);
    border: 2px solid var(--brand);
    border-radius: 99px;
    padding: 12px 26px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s;
}

.btn-hero-ghost:hover {
    background: var(--brand);
    color: #fff;
}

/* Trust pill */
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.2);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 99px;
    margin-top: 16px;
}

/* ── Right: product grid (keeps your existing markup) ── */
.hero-grid-wrap {
    position: relative;
}

/* Avg profit floating card */
.profit-float {
    position: absolute;
    bottom: 10px;
    left: -20px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: floatCard 4s ease-in-out infinite alternate;
}

.profit-float-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.1rem;
}

.profit-float strong {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--ink);
}

.profit-float small {
    color: var(--muted);
    font-size: 0.72rem;
}

.orders-float {
    position: absolute;
    top: 10px;
    right: -10px;
    background: #fff;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: floatCard 3.5s 1s ease-in-out infinite alternate;
}

.orders-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0060ff, #00bfff);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.9rem;
}

.orders-float strong {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    color: var(--ink);
}

.orders-float small {
    color: var(--muted);
    font-size: 0.7rem;
}

@keyframes floatCard {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-10px);
    }
}


/* ═══════════════════════════════════════════════════
           WHY SECTION — animated feature cards (no images)
        ═══════════════════════════════════════════════════ */
#why {
    background: var(--bg);
    padding: 30px 0;
}

.section-eyebrow {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 99px;
    padding: 5px 16px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 14px;
}

.section-sub {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 50px;
}

/* Grid: 4 cards top row, 3 cards bottom row but we'll do 4+3 layout */
.why-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 1199px) {
    .why-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .why-modern-grid {
        grid-template-columns: 1fr;
    }
}

.wcard {
    border-radius: 20px;
    padding: 30px 28px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.wcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Card color themes */
.wcard-blue {
    background: linear-gradient(145deg, #e8f2ff, #f0f7ff);
    border: 1px solid rgba(0, 96, 255, 0.1);
}

.wcard-green {
    background: linear-gradient(145deg, #dcfce7, #f0fff7);
    border: 1px solid rgba(22, 163, 74, 0.12);
}

.wcard-amber {
    background: linear-gradient(145deg, #fef3c7, #fffbeb);
    border: 1px solid rgba(217, 119, 6, 0.12);
}

.wcard-purple {
    background: linear-gradient(145deg, #f3e8ff, #faf5ff);
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.wcard-teal {
    background: linear-gradient(145deg, #e0f7fa, #f0fffe);
    border: 1px solid rgba(0, 150, 136, 0.1);
}

.wcard-red {
    background: linear-gradient(145deg, #ffe4e6, #fff1f2);
    border: 1px solid rgba(225, 29, 72, 0.1);
}

.wcard-indigo {
    background: linear-gradient(145deg, #e0e7ff, #eef2ff);
    border: 1px solid rgba(99, 102, 241, 0.12);
}

/* Big card (spans 2 cols) */
.wcard-big {
    grid-column: span 2;
}

@media (max-width: 575px) {
    .wcard-big {
        grid-column: span 1;
    }
}

.wcard-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.icon-blue {
    background: rgba(0, 96, 255, 0.12);
    color: var(--brand);
}

.icon-green {
    background: rgba(22, 163, 74, 0.12);
    color: var(--green);
}

.icon-amber {
    background: rgba(217, 119, 6, 0.12);
    color: var(--amber);
}

.icon-purple {
    background: rgba(124, 58, 237, 0.12);
    color: var(--purple);
}

.icon-teal {
    background: rgba(0, 150, 136, 0.12);
    color: #00796b;
}

.icon-red {
    background: rgba(225, 29, 72, 0.12);
    color: #e11d48;
}

.icon-indigo {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}

.wcard h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.wcard p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.65;
    margin: 0;
}

/* Animated decorative blob inside cards */
.wcard-blob {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.25;
    bottom: -40px;
    right: -30px;
    pointer-events: none;
    animation: blobPulse 6s ease-in-out infinite alternate;
}

@keyframes blobPulse {
    from {
        transform: scale(1);
        opacity: 0.2;
    }

    to {
        transform: scale(1.3);
        opacity: 0.35;
    }
}

/* Big card metric display */
.wcard-metrics {
    display: flex;
    gap: 16px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.wcard-metric {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 12px 16px;
    flex: 1;
    min-width: 90px;
    backdrop-filter: blur(4px);
}

.wcard-metric-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--ink);
    display: block;
    line-height: 1;
}

.wcard-metric-lbl {
    font-size: 0.68rem;
    color: var(--muted);
    display: block;
    margin-top: 3px;
}

/* Integration logos row inside a card */
.wcard-logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.wcard-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    display: grid;
    place-items: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Animated counter tag */
.wcard-live-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(22, 163, 74, 0.12);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 99px;
    margin-bottom: 10px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}


/* ═══════════════════════════════════════════════════
           HOW IT WORKS — TRUE STACKED CARDS
           ─────────────────────────────────────────────────
           CORRECT ARCHITECTURE:
           • Each .step-item is itself position:sticky
           • It stacks on top of the previous card as you scroll
           • The TAB (title strip) is the TOP of the sticky card
             so it always shows as a "peek" when buried underneath
           • Card 1 sticks at navH (68px)
           • Card 2 sticks at navH + tabH (68+54=122px)
           • Card 3 sticks at navH + 2×tabH (68+108=176px) etc.
           • .steps-wrap needs enough bottom padding for all cards
             to travel through their full scroll range
        ═══════════════════════════════════════════════════ */
#how {
    background: #f7f9fc;
    padding: 30px 0 0;
}

#how .steps-outro {
    background: #fff;
    padding: 60px 0;
}

/* Container — must be tall enough for all cards to scroll through */
.steps-wrap {
    position: relative;
}

/* Give each card a bottom margin = its own content height
           so the next card has room to scroll before pinning.
           We also add a large padding-bottom on the last card. */
.step-item+.step-item {
    /* Each successive card needs space to show its content before
               the card after it arrives. This is achieved by the card's
               natural height — no extra margin needed because overflow:hidden
               is NOT on steps-wrap, so cards naturally extend page height. */
}

/* ── THE KEY: each card IS sticky ──
           Cards stack on top of each other.
           Tab height = 54px.
           navH = 68px.
           Card N sticks at: 68 + (N-1)×54
        ── */
.step-item {
    position: sticky;
    /* default — overridden per card below */
    top: 68px;
    /* Each card must sit ABOVE the previous in z-order */
    z-index: 10;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.08);
    /* Enough bottom margin so the card scrolls fully before next one arrives */
    margin-bottom: 0;
    background: var(--tab-bg, #f0f7ff);
    /* subtle scale for depth illusion — JS will adjust */
    transform-origin: top center;
    will-change: transform;
}

/* Per-card top offsets — each 54px deeper than previous */
.step-item:nth-child(1) {
    top: 68px;
    z-index: 11;
}

.step-item:nth-child(2) {
    top: 122px;
    z-index: 12;
}

.step-item:nth-child(3) {
    top: 176px;
    z-index: 13;
}

.step-item:nth-child(4) {
    top: 230px;
    z-index: 14;
}

.step-item:nth-child(5) {
    top: 284px;
    z-index: 15;
}

.step-item:nth-child(6) {
    top: 338px;
    z-index: 16;
}

.step-item:nth-child(7) {
    top: 392px;
    z-index: 17;
}

/* ── Tab = the always-visible header strip of each card ── */
.step-tab {
    height: 54px;
    display: flex;
    align-items: center;
    background: var(--tab-bg, #f0f7ff);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    /* NOT sticky — it's just the top of the sticky card */
}

.step-tab-inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.step-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--tab-accent, var(--brand));
    opacity: 0.55;
    flex-shrink: 0;
}

.step-tab-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--tab-accent, var(--brand));
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.step-tab-icon i {
    color: #fff;
    font-size: 0.8rem;
}

.step-tab-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink);
    flex: 1;
}

.step-tab-pill {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--tab-accent, var(--brand));
    background: rgba(0, 0, 0, 0.05);
    border-radius: 99px;
    padding: 3px 10px;
    display: none;
    /* shows on larger screens */
}

@media (min-width: 768px) {
    .step-tab-pill {
        display: block;
    }
}

/* ── Step body: the full content card ── */
.step-body {
    background: var(--tab-bg, #f0f7ff);
    padding: 56px 0 64px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.04);
}

.step-body-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Step layout: icon+number+title left, then content */
.step-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
}

.step-big-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    line-height: 1;
    color: var(--tab-accent, var(--brand));
    opacity: 0.1;
    flex-shrink: 0;
    margin-top: -8px;
}

.step-big-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--tab-accent, var(--brand));
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.step-big-icon i {
    color: #fff;
    font-size: 1.8rem;
}

.step-title-group {}

.step-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--tab-accent, var(--brand));
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 8px;
}

.step-subtitle {
    color: var(--muted);
    font-size: 0.88rem;
}

.step-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 28px;
}

/* Feature points row */
.step-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 32px;
    margin-bottom: 28px;
}

.step-point {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--ink);
}

.step-point i {
    color: var(--tab-accent, var(--brand));
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Mini feature cards inside step */
.step-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 10px;
}

.step-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    padding: 18px 18px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.step-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--tab-accent, var(--brand));
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    opacity: 0.9;
}

.step-card-icon i {
    color: #fff;
    font-size: 0.9rem;
}

.step-card strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.step-card span {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Stat chips inside a step */
.step-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.step-stat {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--tab-accent, var(--brand));
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.step-stat-icon i {
    color: #fff;
    font-size: 0.8rem;
}

.step-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--ink);
    display: block;
    line-height: 1;
}

.step-stat-lbl {
    font-size: 0.67rem;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    #home {
        padding: calc(var(--nav-h) + 20px) 0 40px;
    }

    .hero-stats {
        gap: 10px;
    }

    .hstat {
        padding: 12px 14px;
    }

    .hstat-num {
        font-size: 0.95rem;
    }

    .profit-float {
        left: 0;
        bottom: -10px;
    }

    .orders-float {
        right: 0;
        top: 0;
    }

    .why-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcard-big {
        grid-column: span 2;
    }

    /* Stack cards: tighter tab height on mobile (48px) */
    .step-tab {
        height: 48px;
    }

    .step-item:nth-child(1) {
        top: 60px;
    }

    .step-item:nth-child(2) {
        top: 108px;
    }

    .step-item:nth-child(3) {
        top: 156px;
    }

    .step-item:nth-child(4) {
        top: 204px;
    }

    .step-item:nth-child(5) {
        top: 252px;
    }

    .step-item:nth-child(6) {
        top: 300px;
    }

    .step-item:nth-child(7) {
        top: 348px;
    }

    .step-body {
        padding: 28px 0 36px;
    }

    .step-header {
        gap: 16px;
        margin-bottom: 20px;
    }

    .step-big-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .step-big-icon i {
        font-size: 1.4rem;
    }

    .step-big-num {
        font-size: 3.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-desc {
        font-size: 0.88rem;
    }

    .step-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .why-modern-grid {
        grid-template-columns: 1fr;
    }

    .wcard-big {
        grid-column: span 1;
    }

    .step-cards {
        grid-template-columns: 1fr;
    }
}