/* =========================================================
   FBA Xperts CLONE — pages.css
   ========================================================= */

/* =====================================================
   INNER PAGE BANNER (About / Insights / Contact)
   ===================================================== */
.inner-banner {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-h);
    background: radial-gradient(ellipse 55% 90% at 82% 20%, rgba(132, 0, 247, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 80% at 5% 90%, rgba(0, 0, 0, 0.75), transparent 65%),
    linear-gradient(120deg, #050505 0%, #050505 45%, #050505 100%);
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.inner-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/images/inner-banner-globe.png') center 60% / 1100px no-repeat;
    opacity: 0.5;
    mix-blend-mode: screen;
}

.inner-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.55) 100%);
}

.inner-banner__inner {
    position: relative;
    z-index: 2;
    padding: 60px 24px 46px;
}

.inner-banner h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    letter-spacing: 0.02em;
}

/* =====================================================
   HOME HERO
   ===================================================== */

.home-hero {
    position: relative;
    width: 100%;
    min-height: 656px;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(
            circle at 91% 20%,
            rgba(132, 0, 247, 0.48) 0%,
            rgba(132, 0, 247, 0.35) 25%,
            transparent 52%
    ),
    radial-gradient(
            circle at 7% 75%,
            rgba(132, 0, 247, 0.62) 0%,
            rgba(0, 0, 0, 0.5) 34%,
            transparent 61%
    ),
    linear-gradient(
            90deg,
            #050505 0%,
            #050505 25%,
            #050707 52%,
            #050505 70%,
            #050505 100%
    );
}

/* Globe and technology background */
.home-hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;

    background-image: url("../assets/images/inner-banner-globe.png");
    background-repeat: no-repeat;
    background-position: 52% 47%;
    background-size: 1050px auto;

    opacity: 0.34;
    pointer-events: none;
}

/* Dark overlay for readable text */
.home-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;

    background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(2, 5, 6, 0.1) 50%,
            rgba(0, 0, 0, 0.05) 100%
    );

    pointer-events: none;
}

.home-hero__inner {
    position: relative;
    width: 100%;
    min-height: 656px;
    padding: 0 4.55%;
    display: grid;
    grid-template-columns: minmax(0, 61%) minmax(480px, 39%);
    align-items: center;
}

/* =====================================================
   LEFT CONTENT
   ===================================================== */

.home-hero__content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1050px;
    padding: 40px 0 42px;
}

.home-hero__heading {
    width: 100%;
    max-width: 1020px;
    margin: 0 0 20px;

    font-family: inherit;
    font-size: clamp(30px, 1.85vw, 35px);
    font-weight: 800;
    line-height: 1.17;
    letter-spacing: -1.25px;
    text-transform: uppercase;
    color: #ffffff;
}

.home-hero__heading span {
    color: #8400F7;
}

.home-hero__description {
    max-width: 970px;
    margin-bottom: 25px;
}

.home-hero__description p {
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}

.home-hero__description p + p {
    margin-top: 8px;
}

/* =====================================================
   SERVICE BADGES
   ===================================================== */

.hero-badges {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    justify-content: start;
    column-gap: 14px;
    row-gap: 14px;
}

.hero-badges .hero-badge:last-child {
    grid-column: 1;
}

.hero-badge {
    min-height: 40px;
    padding: 3px 16px 3px 4px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    border: 1.25px solid rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.025);

    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;

    transition: border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.hero-badge:hover {
    color: #ffffff;
    border-color: #8400F7;
    background: rgba(132, 0, 247, 0.13);
    transform: translateY(-2px);
}

.hero-badge__icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;

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

    overflow: hidden;
    border-radius: 50%;
    background: #ffffff;
}

.hero-badge__icon img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* =====================================================
   RIGHT PERSON VISUAL
   ===================================================== */

.home-hero__visual {
    position: absolute;
    z-index: 3;
    right: 6.8%;
    bottom: 0;

    width: min(36vw, 680px);
    height: 100%;

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

    pointer-events: none;
}

.home-hero__person {
    position: relative;
    z-index: 2;

    display: block;
    width: 100%;
    max-width: 640px;
    height: auto;
    max-height: 630px;
    object-fit: contain;
    object-position: bottom center;
}

/* Only Amazon floating icon visible in reference */
.hero-floating-amazon {
    position: absolute;
    z-index: 5;
    top: 37.5%;
    left: 1%;

    width: 55px;
    height: 55px;

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

    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

    animation: heroAmazonFloat 4.5s ease-in-out infinite;
}

.hero-floating-amazon img {
    display: block;
    width: 38px;
    height: 38px;
    object-fit: contain;
}

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

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

/* =====================================================
   LARGE DESKTOP
   ===================================================== */

@media (min-width: 1600px) {

    .home-hero__inner {
        padding-left: 4.55%;
        padding-right: 4.55%;
    }

    .home-hero__heading {
        font-size: 35px;
    }

    .home-hero__visual {
        right: 7.4%;
        width: 635px;
    }

    .home-hero__person {
        max-width: 635px;
    }
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1366px) {

    .home-hero {
        min-height: 610px;
    }

    .home-hero__inner {
        min-height: 610px;
        padding-inline: 5%;
        grid-template-columns: minmax(0, 62%) minmax(400px, 38%);
    }

    .home-hero__heading {
        max-width: 790px;
        font-size: 29px;
    }

    .home-hero__description {
        max-width: 750px;
    }

    .home-hero__visual {
        right: 3%;
        width: 480px;
    }

    .home-hero__person {
        max-width: 480px;
        max-height: 580px;
    }

    .hero-floating-amazon {
        width: 48px;
        height: 48px;
    }

    .hero-floating-amazon img {
        width: 32px;
        height: 32px;
    }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

    .home-hero {
        min-height: auto;
    }

    .home-hero::before {
        background-position: 60% 50%;
        background-size: 900px auto;
        opacity: 0.22;
    }

    .home-hero__inner {
        min-height: auto;
        padding: 80px 32px 0;
        display: block;
    }

    .home-hero__content {
        max-width: 100%;
        padding: 0;
    }

    .home-hero__heading {
        max-width: 760px;
        font-size: clamp(29px, 5vw, 42px);
    }

    .home-hero__description {
        max-width: 720px;
    }

    .home-hero__description p {
        font-size: 14px;
    }

    .home-hero__visual {
        position: relative;
        right: auto;
        bottom: auto;

        width: 100%;
        max-width: 590px;
        height: auto;
        margin: 25px 0 0 auto;
    }

    .home-hero__person {
        max-width: 590px;
        max-height: none;
    }

    .hero-floating-amazon {
        top: 30%;
        left: 2%;
    }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

    .home-hero__inner {
        padding: 65px 20px 0;
    }

    .home-hero__content {
        width: 100%;
        max-width: 100%;
    }

    .home-hero__heading {
        margin-bottom: 18px;
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.08;
        letter-spacing: -0.8px;
    }

    .home-hero__heading br {
        display: none;
    }

    .home-hero__description p {
        font-size: 13px;
        line-height: 1.6;
    }

    .hero-badges {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-badges .hero-badge:last-child {
        grid-column: auto;
    }

    .hero-badge {
        width: fit-content;
        max-width: 100%;
        min-height: 39px;
        font-size: 11.5px;
    }

    .home-hero__visual {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .hero-floating-amazon {
        width: 43px;
        height: 43px;
    }

    .hero-floating-amazon img {
        width: 29px;
        height: 29px;
    }
}

/* =====================================================
   REVIEW STRIP
   ===================================================== */
.review-strip {
    background: #0f0f0f;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 26px 0;
    overflow: hidden;
}

.review-strip__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 6px 20px;
    border-right: 1px solid var(--border-dark);
}

.review-strip__track .review-item:last-child {
    border-right: none;
}

.review-item img {
    height: 26px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.review-item__text {
    font-size: 0.74rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* =====================================================
   SERVICE ACCORDION
   ===================================================== */

.service-accordion-section {
    position: relative;
    width: 100%;
    min-height: 690px;
    padding: 70px 0 58px;
    overflow: hidden;

    background: radial-gradient(
            circle at 2% 35%,
            rgba(132, 0, 247, 0.72) 0%,
            rgba(0, 0, 0, 0.52) 27%,
            transparent 55%
    ),
    radial-gradient(
            circle at 98% 35%,
            rgba(132, 0, 247, 0.7) 0%,
            rgba(0, 0, 0, 0.52) 30%,
            transparent 58%
    ),
    linear-gradient(
            90deg,
            #050505 0%,
            #050505 23%,
            #030303 49%,
            #050505 76%,
            #050505 100%
    );
}

.service-accordion-section .container {
    width: min(100% - 70px, 1380px);
    max-width: 1380px;
    margin-inline: auto;

    display: grid;
    grid-template-columns: 46% 54%;
    gap: 85px;
    align-items: start;
}

/* =====================================================
   LEFT VISUAL
   ===================================================== */

.service-visual {
    position: relative;
    min-height: 540px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual img.main-visual {
    position: relative;
    z-index: 2;

    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0;

    object-fit: contain;
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.28));
}

.service-visual .blob {
    display: none !important;
}

/* =====================================================
   ACCORDION LIST
   ===================================================== */

.accordion-list {
    display: flex;
    flex-direction: column;
    padding-top: 4px;
}

.accordion-item {
    border: 0;
}

.accordion-item:first-child {
    border-top: 0;
}

/* Accordion heading row */

.accordion-trigger {
    width: 100%;
    min-height: 72px;
    padding: 11px 0;

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

    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.accordion-trigger .num {
    flex: 0 0 auto;

    font-family: var(--font-heading, inherit);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;

    color: #ffffff;
}

.accordion-trigger h3 {
    flex: 1;
    margin: 0;

    font-family: var(--font-heading, inherit);
    font-size: clamp(31px, 2.1vw, 40px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -1.3px;

    color: #ffffff;
    transition: color 0.25s ease;
}

/* First active title bold like screenshot */

.accordion-item.active .accordion-trigger h3 {
    color: #ffffff;
    font-weight: 700;
}

/* Orange word inside first heading */

.accordion-item:first-child .accordion-trigger h3 {
    font-weight: 700;
}

.accordion-item:first-child .accordion-trigger h3::first-line {
    color: inherit;
}

/* Hide plus/minus icon */

.accordion-trigger .acc-icon {
    display: none;
}

/* =====================================================
   ACCORDION PANEL
   ===================================================== */

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition: max-height 0.45s ease,
    opacity 0.3s ease;
}

.accordion-item.active .accordion-panel {
    max-height: 470px;
    opacity: 1;
}

.accordion-panel__inner {
    padding: 0 0 12px;
}

/* Tags */

.accordion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 15px;
}

.accordion-tags + .accordion-tags {
    margin-top: 0;
}

.accordion-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 22px;
    padding: 3px 11px;

    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    background: transparent;

    font-size: 11px;
    font-weight: 400;
    line-height: 1;

    color: #ffffff;
    white-space: nowrap;
}

/* Description */

.accordion-panel__inner p {
    max-width: 600px;
    margin: 0 0 22px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.58;

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

.accordion-panel__inner p + p {
    margin-top: 1px;
}

/* Screenshot mein learn more visible nahi hai */

.accordion-panel__inner .link-arrow {
    display: none;
}

/* =====================================================
   ORANGE WORD IN FIRST HEADING
   ===================================================== */

.accordion-item:first-child .accordion-trigger h3 {
    color: #ffffff;
}

/*
HTML mein first title ko is structure mein change karo:

<h3><span>Amazon</span> Store Creation</h3>
*/

.accordion-item:first-child .accordion-trigger h3 span {
    color: #8400F7;
}

/* =====================================================
   DESKTOP HEIGHT CONTROL
   ===================================================== */

@media (min-width: 1400px) {

    .service-accordion-section .container {
        grid-template-columns: 46% 54%;
        gap: 92px;
    }

    .service-visual img.main-visual {
        max-width: 620px;
    }

    .accordion-trigger h3 {
        font-size: 38px;
    }
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1366px) {

    .service-accordion-section {
        min-height: 650px;
        padding: 65px 0 52px;
    }

    .service-accordion-section .container {
        width: min(100% - 50px, 1240px);
        grid-template-columns: 44% 56%;
        gap: 55px;
    }

    .service-visual {
        min-height: 500px;
    }

    .service-visual img.main-visual {
        max-width: 530px;
    }

    .accordion-trigger {
        min-height: 65px;
    }

    .accordion-trigger .num {
        font-size: 18px;
    }

    .accordion-trigger h3 {
        font-size: 32px;
    }

    .accordion-panel__inner p {
        font-size: 13px;
    }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

    .service-accordion-section {
        min-height: auto;
        padding: 65px 0;
    }

    .service-accordion-section .container {
        width: min(100% - 24px, 760px);
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .service-visual img.main-visual {
        max-width: 580px;
        margin-inline: auto;
    }

    .accordion-list {
        width: 100%;
    }

    .accordion-trigger h3 {
        font-size: 31px;
    }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

    .service-accordion-section {
        padding: 45px 0;
    }

    .service-accordion-section .container {
        width: min(100% - 20px, 520px);
        gap: 25px;
    }

    .service-visual img.main-visual {
        width: 110%;
        max-width: none;
        margin-left: -5%;
    }

    .accordion-trigger {
        min-height: 58px;
        gap: 8px;
    }

    .accordion-trigger .num {
        font-size: 15px;
    }

    .accordion-trigger h3 {
        font-size: 25px;
        letter-spacing: -0.7px;
    }

    .accordion-tags {
        gap: 7px;
    }

    .accordion-tags span {
        padding: 4px 9px;
        font-size: 9px;
    }

    .accordion-panel__inner p {
        font-size: 12.5px;
        line-height: 1.6;
    }
}

/* =====================================================
   DIVERSE INDUSTRY EXPERTISE
   ===================================================== */

.industry-showcase,
.industry-showcase * {
    box-sizing: border-box;
}

.industry-showcase {
    position: relative;
    width: 100%;
    padding: 52px 0 62px;
    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);

    background: radial-gradient(
            circle at 0% 40%,
            rgba(132, 0, 247, 0.56) 0%,
            rgba(0, 0, 0, 0.4) 36%,
            transparent 63%
    ),
    radial-gradient(
            circle at 100% 35%,
            rgba(132, 0, 247, 0.56) 0%,
            rgba(0, 0, 0, 0.4) 38%,
            transparent 66%
    ),
    linear-gradient(
            90deg,
            #050505 0%,
            #050505 23%,
            #050505 50%,
            #050505 76%,
            #050505 100%
    );
}

.industry-showcase__container {
    width: min(calc(100% - 48px), 1450px);
    margin-inline: auto;
}

/* Heading */

.industry-showcase__heading {
    margin: 0 0 32px;

    color: #ffffff;
    font-family: inherit;
    font-size: clamp(29px, 2.1vw, 40px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.industry-showcase__heading span {
    color: #8400F7;
}

/* Layout */

.industry-showcase__layout {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 38px;
    align-items: start;
}

/* Left description */

.industry-showcase__intro {
    padding-top: 5px;
}

.industry-showcase__intro p {
    margin: 0 0 16px;

    color: rgba(255, 255, 255, 0.94);
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.58;
}

.industry-showcase__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 36px;
    margin-top: 2px;
    padding: 8px 17px;

    border: 1px solid #8400F7;
    border-radius: 50px;
    background: #050505;

    color: #ffffff;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;

    transition: background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.industry-showcase__button span {
    font-size: 13px;
    line-height: 1;
}

.industry-showcase__button:hover {
    color: #ffffff;
    border-color: #8400F7;
    background: #8400F7;
    transform: translateY(-2px);
}

/* =====================================================
   CUSTOM CAROUSEL
   ===================================================== */

.industry-carousel {
    width: 100%;
    min-width: 0;
}

.industry-carousel__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.industry-carousel__viewport.is-dragging {
    cursor: grabbing;
}

.industry-carousel__track {
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: stretch;
    gap: 15px;

    width: max-content;
    min-width: max-content;

    transform: translate3d(0, 0, 0);
    will-change: transform;
}

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

.industry-showcase__card {
    width: 330px;
    min-width: 330px;
    max-width: 330px;
    height: 335px;
    flex: 0 0 330px;

    display: flex;
    flex-direction: column;

    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;

    box-shadow: 0 9px 25px rgba(0, 0, 0, 0.28);

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

.industry-showcase__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 21px 40px rgba(0, 0, 0, 0.38);
}

/* Images */

.industry-showcase__image {
    width: 100%;
    height: 175px;
    flex: 0 0 175px;
    overflow: hidden;
    background: #eeeeee;
}

.industry-showcase__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;

    transition: transform 0.45s ease;
}

.industry-showcase__card:hover .industry-showcase__image img {
    transform: scale(1.06);
}

/* Card content */

.industry-showcase__body {
    min-height: 160px;
    padding: 16px 18px 18px;

    display: flex;
    flex-direction: column;
    flex: 1;
}

.industry-showcase__body h3 {
    margin: 0 0 8px;

    color: #171717;
    font-family: inherit;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.28;
    text-transform: none;
}

.industry-showcase__body p {
    margin: 0 0 13px;

    color: #686868;
    font-family: inherit;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.5;
}

.industry-showcase__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: auto;

    color: #8400F7;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.industry-showcase__link span {
    font-size: 12px;
    line-height: 1;
}

.industry-showcase__link:hover {
    color: #8400F7;
}

/* Stop old global arrows and pseudo-elements */

.industry-showcase__button::before,
.industry-showcase__button::after,
.industry-showcase__link::before,
.industry-showcase__link::after,
.industry-showcase__card::before,
.industry-showcase__card::after {
    display: none !important;
    content: none !important;
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1366px) {

    .industry-showcase__container {
        width: min(calc(100% - 42px), 1240px);
    }

    .industry-showcase__layout {
        grid-template-columns: 245px minmax(0, 1fr);
        gap: 28px;
    }

    .industry-showcase__heading {
        font-size: 31px;
    }

    .industry-showcase__card {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
        flex-basis: 300px;
        height: 325px;
    }

    .industry-showcase__image {
        height: 165px;
        flex-basis: 165px;
    }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

    .industry-showcase {
        padding: 48px 0 55px;
    }

    .industry-showcase__container {
        width: min(calc(100% - 40px), 760px);
    }

    .industry-showcase__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .industry-showcase__intro {
        max-width: 700px;
    }

    .industry-carousel {
        width: calc(100vw - 20px);
    }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

    .industry-showcase {
        padding: 40px 0 48px;
    }

    .industry-showcase__container {
        width: calc(100% - 30px);
    }

    .industry-showcase__heading {
        margin-bottom: 24px;
        font-size: 27px;
        line-height: 1.1;
    }

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

    .industry-showcase__card {
        width: 275px;
        min-width: 275px;
        max-width: 275px;
        flex-basis: 275px;
        height: 315px;
    }

    .industry-showcase__image {
        height: 150px;
        flex-basis: 150px;
    }

    .industry-showcase__body {
        padding: 15px;
    }
}

/* =====================================================
   HOW WE DO IT AT FBA Xperts AUTOMATION
   ===================================================== */

.ecom-process-section,
.ecom-process-section *,
.ecom-process-modal,
.ecom-process-modal * {
    box-sizing: border-box;
}

.ecom-process-section {
    position: relative;
    width: 100%;
    padding: 44px 0 20px;
    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.75);

    background: radial-gradient(
            circle at 0% 40%,
            rgba(132, 0, 247, 0.7) 0%,
            rgba(0, 0, 0, 0.46) 35%,
            transparent 62%
    ),
    radial-gradient(
            circle at 100% 8%,
            rgba(132, 0, 247, 0.76) 0%,
            rgba(0, 0, 0, 0.48) 34%,
            transparent 61%
    ),
    linear-gradient(
            90deg,
            #050505 0%,
            #050505 27%,
            #050505 51%,
            #050505 75%,
            #050505 100%
    );
}

.ecom-process-container {
    width: min(calc(100% - 64px), 1440px);
    margin-inline: auto;
}

/* =====================================================
   TOP HEADER
   ===================================================== */

.ecom-process-header {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
    gap: 65px;
    align-items: start;

    margin-bottom: 58px;
}

/* Heading */

.ecom-process-title {
    margin: 0;

    font-family: inherit;
    font-size: clamp(42px, 3.35vw, 54px);
    font-weight: 800;
    line-height: 1.27;
    letter-spacing: -1.9px;
    text-transform: uppercase;
}

.ecom-process-title span {
    display: block;
}

.ecom-process-title__white {
    color: #ffffff;
}

.ecom-process-title__orange {
    color: #8400F7;
}

/* Right paragraph */

.ecom-process-intro {
    max-width: 590px;
    padding-top: 6px;
}

.ecom-process-intro p {
    margin: 0 0 23px;

    color: rgba(255, 255, 255, 0.96);
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.72;
}

/* Discover More button */

.ecom-process-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 52px;
    padding: 12px 20px;

    border: 2px solid #8400F7;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4);

    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;

    transition: color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.ecom-process-button span {
    font-size: 25px;
    font-weight: 300;
    line-height: 0;
    transform: translateY(-1px);
}

.ecom-process-button:hover {
    color: #ffffff;
    border-color: #8400F7;
    background: #8400F7;
    transform: translateY(-2px);
}

/* Remove old global button effects */

.ecom-process-button::before,
.ecom-process-button::after {
    display: none !important;
    content: none !important;
}

/* =====================================================
   LARGE PROCESS IMAGE
   ===================================================== */

.ecom-process-visual {
    position: relative;

    width: min(100%, 1238px);
    margin-inline: auto;

    overflow: hidden;
    border-radius: 18px;
    background: #f8f7f8;
}

.ecom-process-visual img {
    display: block;
    width: 100%;
    height: auto;

    border: 0;
    border-radius: 18px;
    object-fit: contain;
}

/*
  Image ke andar jo play icon bana hua hai,
  us ke upar transparent clickable button hai.
*/

.ecom-process-play {
    position: absolute;
    z-index: 3;

    top: 51%;
    left: 50%;

    width: 95px;
    height: 95px;

    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;

    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Optional focus ring */

.ecom-process-play:focus-visible {
    outline: 3px solid #8400F7;
    outline-offset: 5px;
}

/* =====================================================
   VIDEO MODAL
   ===================================================== */

.ecom-process-modal {
    position: fixed;
    z-index: 9999;
    inset: 0;

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

    padding: 24px;
    background: rgba(0, 0, 0, 0.88);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease,
    visibility 0.3s ease;
}

.ecom-process-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ecom-process-modal__dialog {
    position: relative;

    width: min(100%, 960px);
    aspect-ratio: 16 / 9;

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

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: #070707;

    color: #ffffff;
}

.ecom-process-modal__content {
    width: 100%;
    height: 100%;

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

    text-align: center;
}

.ecom-process-modal__content iframe,
.ecom-process-modal__content video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}

.ecom-process-modal__close {
    position: absolute;
    z-index: 5;

    top: -48px;
    right: 0;

    width: 40px;
    height: 40px;

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

    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);

    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1366px) {

    .ecom-process-container {
        width: min(calc(100% - 52px), 1240px);
    }

    .ecom-process-header {
        grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
        gap: 48px;
        margin-bottom: 48px;
    }

    .ecom-process-title {
        font-size: 44px;
    }

    .ecom-process-intro p {
        font-size: 14.5px;
    }

    .ecom-process-visual {
        max-width: 1100px;
    }

    .ecom-process-play {
        width: 82px;
        height: 82px;
    }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

    .ecom-process-section {
        padding: 48px 0 35px;
    }

    .ecom-process-container {
        width: min(calc(100% - 40px), 760px);
    }

    .ecom-process-header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 38px;
    }

    .ecom-process-title {
        font-size: clamp(36px, 6vw, 48px);
        line-height: 1.15;
    }

    .ecom-process-intro {
        max-width: 700px;
        padding-top: 0;
    }

    .ecom-process-intro p {
        font-size: 14px;
    }

    .ecom-process-play {
        width: 70px;
        height: 70px;
    }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

    .ecom-process-section {
        padding: 40px 0 28px;
    }

    .ecom-process-container {
        width: calc(100% - 30px);
    }

    .ecom-process-header {
        gap: 20px;
        margin-bottom: 30px;
    }

    .ecom-process-title {
        font-size: 31px;
        line-height: 1.13;
        letter-spacing: -1px;
    }

    .ecom-process-intro p {
        font-size: 13px;
        line-height: 1.65;
    }

    .ecom-process-button {
        min-height: 44px;
        padding: 10px 17px;
        font-size: 13px;
    }

    .ecom-process-visual,
    .ecom-process-visual img {
        border-radius: 10px;
    }

    .ecom-process-play {
        width: 52px;
        height: 52px;
    }

    .ecom-process-modal {
        padding: 16px;
    }
}


/* =====================================================
   WHY CHOOSE FBA Xperts
   ===================================================== */

.ecom-why-section,
.ecom-why-section * {
    box-sizing: border-box;
}

.ecom-why-section {
    position: relative;
    width: 100%;
    padding: 62px 0 40px;
    overflow: hidden;

    background: radial-gradient(
            circle at 0% 46%,
            rgba(132, 0, 247, 0.74) 0%,
            rgba(0, 0, 0, 0.46) 34%,
            transparent 61%
    ),
    radial-gradient(
            circle at 100% 14%,
            rgba(132, 0, 247, 0.72) 0%,
            rgba(0, 0, 0, 0.44) 35%,
            transparent 62%
    ),
    linear-gradient(
            90deg,
            #050505 0%,
            #050505 27%,
            #050505 51%,
            #050505 75%,
            #050505 100%
    );
}

.ecom-why-container {
    width: min(calc(100% - 64px), 1600px);
    margin-inline: auto;
}

/* =====================================================
   TOP HEADER
   ===================================================== */

.ecom-why-header {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(500px, 0.9fr);
    gap: 75px;
    align-items: start;
}

.ecom-why-title {
    margin: 0;

    color: #ffffff;
    font-family: inherit;
    font-size: clamp(44px, 3.1vw, 55px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -1.7px;
    text-transform: uppercase;
}

.ecom-why-title span {
    color: #8400F7;
}

.ecom-why-header__text {
    max-width: 690px;
    padding-top: 3px;
}

.ecom-why-header__text p {
    margin: 0;

    color: rgba(255, 255, 255, 0.97);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
}

.ecom-why-header__text p + p {
    margin-top: 23px;
}

.ecom-why-divider {
    width: 100%;
    height: 1px;
    margin: 48px 0 47px;

    background: rgba(255, 255, 255, 0.87);
}

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

.ecom-why-layout {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 38px;
    align-items: start;
}

/* =====================================================
   FORM
   ===================================================== */

.ecom-why-form-wrap {
    width: 100%;
}

.ecom-why-form-intro {
    margin: 0 0 45px;

    color: rgba(255, 255, 255, 0.96);
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.72;
}

.ecom-why-form {
    width: 100%;
}

.ecom-why-field {
    position: relative;
    margin-bottom: 18px;
}

.ecom-why-field label {
    position: absolute;
    width: 1px;
    height: 1px;

    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.ecom-why-field input {
    display: block;
    width: 100%;
    height: 58px;

    padding: 0 20px;

    border: 1px solid transparent;
    border-radius: 50px;
    outline: 0;
    background: #414141;

    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;

    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18);

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

.ecom-why-field input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.ecom-why-field input:focus {
    border-color: #8400F7;
    background: #464646;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18),
    0 0 0 3px rgba(132, 0, 247, 0.13);
}

.ecom-why-field input.is-error {
    border-color: #8400F7;
}

.ecom-why-error {
    display: block;
    min-height: 0;
    margin: 6px 0 0 16px;

    color: #8400F7;
    font-size: 11px;
    line-height: 1.4;
}

.ecom-why-error:empty {
    display: none;
}

/* Consent */

.ecom-why-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    margin: 23px 0 18px;

    color: rgba(255, 255, 255, 0.94);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.65;
    cursor: pointer;
}

.ecom-why-consent input {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;

    margin: 4px 0 0;
    border-radius: 0;

    accent-color: #8400F7;
}

.ecom-why-consent a {
    color: #ffffff;
    text-decoration: none;
}

.ecom-why-consent a:hover {
    color: #8400F7;
}

.ecom-why-error--consent {
    margin: -10px 0 13px 22px;
}

/* Submit button */

.ecom-why-submit {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 59px;
    padding: 12px 20px;

    border: 0;
    border-radius: 50px;
    outline: 0;

    background: linear-gradient(
            90deg,
            #8400F7 0%,
            #8400F7 50%,
            #8400F7 100%
    );

    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    box-shadow: 0 10px 24px rgba(132, 0, 247, 0.25);
    cursor: pointer;

    transition: transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.ecom-why-submit:hover {
    filter: brightness(1.07);
    transform: translateY(-2px);
    box-shadow: 0 15px 29px rgba(132, 0, 247, 0.34);
}

.ecom-why-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.ecom-why-submit::before,
.ecom-why-submit::after {
    display: none !important;
    content: none !important;
}

.ecom-why-form-message {
    min-height: 18px;
    margin: 11px 0 0;

    color: #ffffff;
    font-size: 12px;
    text-align: center;
}

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

.ecom-why-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 19px;
}

.ecom-why-card {
    position: relative;
    min-height: 285px;

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

    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.025);
    border-radius: 18px;
    background: #1c1c1c;

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

.ecom-why-card:hover {
    border-color: rgba(132, 0, 247, 0.72);
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

/* Top orange check tab */

.ecom-why-card__tab {
    position: absolute;
    z-index: 2;

    top: -1px;
    left: 50%;

    width: 160px;
    height: 62px;

    transform: translateX(-50%);
}

.ecom-why-card__tab img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Card content */

.ecom-why-card__content {
    width: 100%;
    padding: 76px 26px 30px;

    color: #ffffff;
    text-align: center;
}

.ecom-why-card h3 {
    margin: 0 0 14px;

    color: #ffffff;
    font-family: inherit;
    font-size: clamp(23px, 1.55vw, 29px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.45px;
    text-transform: none;
}

.ecom-why-card p {
    max-width: 570px;
    margin: 0 auto 12px;

    color: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.58;
}

.ecom-why-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.ecom-why-card__link:hover {
    color: #8400F7;
}

/* Remove effects inherited from old styles */

.ecom-why-card::before,
.ecom-why-card::after,
.ecom-why-card__link::before,
.ecom-why-card__link::after {
    display: none !important;
    content: none !important;
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1440px) {

    .ecom-why-container {
        width: min(calc(100% - 54px), 1320px);
    }

    .ecom-why-header {
        grid-template-columns: minmax(0, 1fr) minmax(470px, 0.85fr);
        gap: 55px;
    }

    .ecom-why-title {
        font-size: 47px;
    }

    .ecom-why-layout {
        grid-template-columns: 340px minmax(0, 1fr);
        gap: 30px;
    }

    .ecom-why-form-intro {
        font-size: 14.5px;
    }

    .ecom-why-card {
        min-height: 270px;
    }

    .ecom-why-card h3 {
        font-size: 23px;
    }

    .ecom-why-card p {
        font-size: 12.5px;
    }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1050px) {

    .ecom-why-section {
        padding: 52px 0;
    }

    .ecom-why-container {
        width: min(calc(100% - 40px), 820px);
    }

    .ecom-why-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ecom-why-header__text {
        max-width: 760px;
    }

    .ecom-why-divider {
        margin: 35px 0;
    }

    .ecom-why-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .ecom-why-form-wrap {
        max-width: 600px;
    }

    .ecom-why-form-intro {
        margin-bottom: 28px;
    }
}

/* =====================================================
   SMALL TABLET
   ===================================================== */

@media (max-width: 760px) {

    .ecom-why-cards {
        grid-template-columns: 1fr;
    }

    .ecom-why-card {
        min-height: 260px;
    }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

    .ecom-why-section {
        padding: 42px 0;
    }

    .ecom-why-container {
        width: calc(100% - 30px);
    }

    .ecom-why-title {
        font-size: 33px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .ecom-why-header__text p {
        font-size: 13px;
        line-height: 1.65;
    }

    .ecom-why-header__text p + p {
        margin-top: 14px;
    }

    .ecom-why-divider {
        margin: 28px 0;
    }

    .ecom-why-form-intro {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .ecom-why-field input {
        height: 52px;
        padding-inline: 17px;
        font-size: 14px;
    }

    .ecom-why-consent {
        font-size: 11.5px;
    }

    .ecom-why-submit {
        min-height: 53px;
        font-size: 14px;
    }

    .ecom-why-card {
        min-height: 270px;
    }

    .ecom-why-card__tab {
        width: 135px;
        height: 55px;
    }

    .ecom-why-card__content {
        padding: 68px 18px 25px;
    }

    .ecom-why-card h3 {
        font-size: 22px;
    }

    .ecom-why-card p {
        font-size: 12px;
    }
}

/* =====================================================
   OUTCOME NOT JUST OUTPUT
   ===================================================== */
.outcome-section {
    padding: var(--section-padding) 0 44px;
    overflow: hidden;
    background: radial-gradient(ellipse 50% 60% at 0% 100%, rgba(132, 0, 247, 0.28), transparent 60%),
    linear-gradient(180deg, #050505 0%, #050505 100%);
}

.outcome-section .section-head {
    align-items: flex-start;
}

.outcome-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    cursor: grab;
    padding-bottom: 10px;
    scrollbar-width: none;
    user-select: none;
}

.outcome-gallery.dragging {
    cursor: grabbing;
}

.outcome-gallery::-webkit-scrollbar {
    display: none;
}

.outcome-gallery__track {
    display: flex;
    gap: 10px;
    animation: outcomeScroll 34s linear infinite;
}

.outcome-gallery:hover .outcome-gallery__track,
.outcome-gallery.dragging .outcome-gallery__track {
    animation-play-state: paused;
}

@keyframes outcomeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.outcome-card {
    flex: 0 0 auto;
    width: 150px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s var(--ease);
}

.outcome-card:hover {
    transform: translateY(-6px);
}

.outcome-card img {
    width: 100%;
    display: block;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 30px;
}

.lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.lightbox-close svg {
    width: 18px;
    height: 18px;
}

/* =====================================================
   CLIENT TESTIMONIALS
   ===================================================== */

.client-stories-section,
.client-stories-section * {
    box-sizing: border-box;
}

.client-stories-section {
    position: relative;
    width: 100%;
    padding: 48px 0 62px;
    overflow: hidden;

    background: radial-gradient(
            circle at 0% 48%,
            rgba(132, 0, 247, 0.66) 0%,
            rgba(0, 0, 0, 0.42) 32%,
            transparent 59%
    ),
    radial-gradient(
            circle at 100% 34%,
            rgba(132, 0, 247, 0.7) 0%,
            rgba(0, 0, 0, 0.42) 35%,
            transparent 63%
    ),
    linear-gradient(
            90deg,
            #050505 0%,
            #050505 27%,
            #050505 51%,
            #050505 75%,
            #050505 100%
    );
}

.client-stories-container {
    width: min(calc(100% - 64px), 1640px);
    margin-inline: auto;
}

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

.client-stories-title {
    margin: 0 0 30px;

    color: #ffffff;
    font-family: inherit;
    font-size: clamp(43px, 3.25vw, 58px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -1.8px;
    text-align: left;
    text-transform: uppercase;
}

.client-stories-title span {
    color: #8400F7;
}

.client-stories-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.85);
}

/* =====================================================
   GOODFIRMS REVIEW STRIP
   ===================================================== */

.client-stories-reviews {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    margin-bottom: 18px;
}

.client-review-item {
    min-height: 144px;
    padding: 28px 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border-right: 1px solid rgba(255, 255, 255, 0.78);
}

.client-review-item:last-child {
    border-right: 0;
}

.client-review-item img {
    display: block;
    width: 125px;
    max-height: 42px;
    object-fit: contain;
}

.client-review-item__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.client-review-item__content strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.client-review-item__content span {
    margin-top: 3px;

    color: rgba(255, 255, 255, 0.95);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.35;
}

/* =====================================================
   MOVING ROWS
   ===================================================== */

.client-stories-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 0 8px;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.client-stories-marquee + .client-stories-marquee {
    margin-top: 11px;
}

.client-stories-marquee.is-dragging {
    cursor: grabbing;
}

.client-stories-track {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    gap: 14px;

    width: max-content;
    min-width: max-content;

    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* =====================================================
   TESTIMONIAL CARD
   ===================================================== */

.client-story-card {
    position: relative;

    width: clamp(500px, 36.4vw, 665px);
    min-width: clamp(500px, 36.4vw, 665px);
    max-width: clamp(500px, 36.4vw, 665px);
    min-height: 238px;
    flex: 0 0 clamp(500px, 36.4vw, 665px);

    padding: 28px 29px 22px;

    display: flex;
    flex-direction: column;

    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.025);
    border-radius: 30px;
    background: #1c1c1c;

    color: #ffffff;

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

.client-story-card:hover {
    border-color: rgba(132, 0, 247, 0.6);
    box-shadow: 0 17px 35px rgba(0, 0, 0, 0.27);
}

.client-story-card__text {
    position: relative;
    min-height: 122px;
    padding-right: 34px;
}

.client-story-card__text p {
    margin: 0;

    color: rgba(255, 255, 255, 0.96);
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

/* Orange scrollbar decoration */

.client-story-card__scroll {
    position: absolute;
    top: 2px;
    right: 0;

    width: 14px;
    height: 92px;
}

.client-story-card__scroll::before,
.client-story-card__scroll::after {
    position: absolute;
    left: 50%;

    color: #8400F7;
    font-size: 9px;
    line-height: 1;

    transform: translateX(-50%);
}

.client-story-card__scroll::before {
    content: "▲";
    top: -4px;
}

.client-story-card__scroll::after {
    content: "▼";
    bottom: -4px;
}

.client-story-card__scroll i {
    position: absolute;
    top: 10px;
    left: 50%;

    width: 6px;
    height: 68px;

    border-radius: 20px;
    background: linear-gradient(
            180deg,
            #8400F7 0%,
            #8400F7 100%
    );

    transform: translateX(-50%);
}

/* Footer */

.client-story-card__footer {
    width: 100%;
    margin-top: auto;
    padding-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.75);
}

.client-story-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-story-person img {
    display: block;
    width: 45px;
    height: 45px;

    border-radius: 50%;
    object-fit: cover;
    pointer-events: none;
}

.client-story-person h3 {
    margin: 0;

    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-transform: none;
}

.client-story-brand {
    display: inline-flex;
    align-items: center;
    gap: 2px;

    color: #ffffff;
}

.client-story-brand img {
    display: block;
    /*width: 34px;*/
    height: 30px;
    object-fit: contain;
    pointer-events: none;
}

.client-story-brand span {
    font-family: inherit;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -1.4px;
}

/* Remove old global styles */

.client-story-card::before,
.client-story-card::after,
.client-story-card__footer::before,
.client-story-card__footer::after,
.client-story-brand::before,
.client-story-brand::after {
    display: none !important;
    content: none !important;
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1440px) {

    .client-stories-container {
        width: min(calc(100% - 54px), 1320px);
    }

    .client-stories-title {
        font-size: 47px;
    }

    .client-review-item {
        min-height: 130px;
        padding-inline: 20px;
    }

    .client-review-item img {
        width: 105px;
    }

    .client-story-card {
        width: 540px;
        min-width: 540px;
        max-width: 540px;
        flex-basis: 540px;
        min-height: 225px;
    }

    .client-story-card__text p {
        font-size: 14px;
    }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

    .client-stories-section {
        padding: 45px 0 52px;
    }

    .client-stories-container {
        width: calc(100% - 40px);
    }

    .client-stories-reviews {
        width: calc(100% - 40px);
        overflow-x: auto;
        grid-template-columns: repeat(3, 320px);
        margin-inline: auto;
    }

    .client-review-item {
        min-height: 115px;
    }

    .client-story-card {
        width: 480px;
        min-width: 480px;
        max-width: 480px;
        flex-basis: 480px;
    }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

    .client-stories-section {
        padding: 40px 0 46px;
    }

    .client-stories-container {
        width: calc(100% - 30px);
    }

    .client-stories-title {
        margin-bottom: 24px;
        font-size: 32px;
        line-height: 1.1;
    }

    .client-stories-reviews {
        width: calc(100% - 30px);
        grid-template-columns: repeat(3, 280px);
    }

    .client-review-item {
        min-height: 105px;
        padding: 20px 16px;
    }

    .client-review-item img {
        width: 92px;
    }

    .client-review-item__content strong {
        font-size: 14px;
    }

    .client-story-card {
        width: 330px;
        min-width: 330px;
        max-width: 330px;
        min-height: 250px;
        flex-basis: 330px;

        padding: 22px 20px 19px;
        border-radius: 22px;
    }

    .client-story-card__text {
        min-height: 145px;
        padding-right: 24px;
    }

    .client-story-card__text p {
        font-size: 12.5px;
        line-height: 1.55;
    }

    .client-story-card__scroll {
        height: 82px;
    }

    .client-story-card__scroll i {
        height: 58px;
    }

    .client-story-person img {
        width: 38px;
        height: 38px;
    }

    .client-story-person h3 {
        font-size: 13px;
    }

    .client-story-brand img {
        width: 28px;
        height: 25px;
    }

    .client-story-brand span {
        font-size: 22px;
    }
}

/* =====================================================
   INSIGHTS PREVIEW (home) & INSIGHTS GRID (insights page)
   ===================================================== */
.insights-preview,
.insights-page-section {
    padding: var(--section-padding) 0;
}

.insights-preview {
    background: radial-gradient(ellipse 55% 60% at 100% 0%, rgba(132, 0, 247, 0.3), transparent 60%),
    linear-gradient(180deg, #050505 0%, #050505 100%);
}

.insights-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-dark);
}

.insights-categories a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.25s;
}

.insights-categories a:hover,
.insights-categories a.active {
    color: var(--primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s var(--ease);
}

.blog-card:hover {
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.blog-card__img {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.08);
}

.blog-card__meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.blog-category {
    background: var(--primary);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-button);
    text-transform: uppercase;
}

.blog-date {
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    font-size: 0.68rem;
    padding: 5px 10px;
    border-radius: var(--radius-button);
}

.blog-card__body {
    padding: 16px 18px;
}

.blog-card__body h3 {
    font-size: 0.92rem;
    text-transform: none;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--white);
    min-height: 0;
}

.blog-card__body p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-button);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    transition: transform 0.3s var(--ease);
}

.blog-readmore:hover {
    transform: translateY(-2px);
}

/* Compact modifier — used only for the 3-card Home page preview */
.blog-card--compact .blog-card__img {
    height: 150px;
}

.blog-card--compact .blog-card__body {
    padding: 14px 16px;
}

.blog-card--compact .blog-card__body h3 {
    font-size: 0.86rem;
    margin-bottom: 10px;
}

/* Insights page specific background */
.insights-page-hero-spacer {
    background: linear-gradient(180deg, #050505 0%, #050505 40%, var(--black) 100%);
}

.insights-page-section {
    background: linear-gradient(180deg, #050505 0%, var(--black) 60%);
}

.insights-page-section .blog-grid {
    gap: 36px 28px;
}

.insights-page-section .blog-card__img {
    border: 1px solid var(--border-light);
    border-bottom: none;
}

/* =====================================================
   CONTACT SECTION (home / contact / tiktok)
   ===================================================== */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-section .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.contact-form-card {
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: clamp(20px, 3vw, 34px);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
}

.contact-form-grid .field--full {
    grid-column: 1 / -1;
}

.contact-form-grid label,
.field label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-info h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 24px;
    max-width: 400px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-info-item__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-info-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-info-item h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: none;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
}

/* Contact Page specific */
.contact-page-section {
    background: radial-gradient(ellipse 45% 60% at 0% 30%, rgba(132, 0, 247, 0.35), transparent 60%),
    radial-gradient(ellipse 45% 60% at 100% 70%, rgba(132, 0, 247, 0.3), transparent 60%),
    var(--black);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-service-section {
    padding-top: 70px;
    background: linear-gradient(180deg, #050505 0%, #050505 40%, var(--black) 100%);
}

.about-service-section .service-visual {
    min-height: 560px;
}

.about-why-section {
    background: var(--black);
}

/* =====================================================
   TIKTOK PAGE
   ===================================================== */
/* =====================================================
   TIKTOK SHOP ON AUTOPILOT HERO
   ===================================================== */

.tiktok-autopilot-hero,
.tiktok-autopilot-hero * {
    box-sizing: border-box;
}

.tiktok-autopilot-hero {
    position: relative;
    width: 100%;
    min-height: 665px;

    display: flex;
    align-items: center;

    overflow: hidden;
    isolation: isolate;

    background: #050505;
}

/* =====================================================
   BACKGROUND IMAGE
   ===================================================== */

.tiktok-autopilot-hero__media {
    position: absolute;
    z-index: -3;
    inset: 0;
}

.tiktok-autopilot-hero__media img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: 62% center;
}

/* =====================================================
   BACKGROUND OVERLAYS
   ===================================================== */

.tiktok-autopilot-hero__overlay {
    position: absolute;
    z-index: -2;
    inset: 0;

    background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.9) 25%,
            rgba(0, 0, 0, 0.72) 46%,
            rgba(0, 0, 0, 0.29) 68%,
            rgba(0, 0, 0, 0.2) 100%
    );
}

/* Warm red glow */

.tiktok-autopilot-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;

    background: radial-gradient(
            circle at 3% 75%,
            rgba(132, 0, 247, 0.42) 0%,
            transparent 46%
    ),
    linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.2) 0%,
            transparent 62%
    );

    pointer-events: none;
}

/* =====================================================
   CONTAINER
   ===================================================== */

.tiktok-autopilot-hero__container {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 100px), 1710px);
    margin-inline: auto;
    padding: 174px 0 70px;
}

/* =====================================================
   CONTENT
   ===================================================== */

.tiktok-autopilot-hero__content {
    width: 100%;
    max-width: 1050px;
}

/* Heading */

.tiktok-autopilot-hero__title {
    /*max-width: 720px;*/
    margin: 0 0 24px;

    color: #ffffff;
    font-family: inherit;
    font-size: clamp(39px, 3vw, 50px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.tiktok-autopilot-hero__line {
    display: block;
}

.tiktok-autopilot-hero__title strong {
    color: #8400F7;
    font-weight: 800;
}

/* Paragraphs */

.tiktok-autopilot-hero__copy {
    max-width: 1030px;
}

.tiktok-autopilot-hero__copy p {
    margin: 0;

    color: rgba(255, 255, 255, 0.97);
    font-family: inherit;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.66;
}

.tiktok-autopilot-hero__copy p + p {
    margin-top: 20px;
}

.tiktok-autopilot-hero__copy
.tiktok-autopilot-hero__highlight {
    max-width: 990px;
    font-weight: 700;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.tiktok-autopilot-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 19px;

    margin-top: 23px;
}

.tiktok-autopilot-hero__button {
    min-height: 52px;
    padding: 12px 22px;

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

    border-radius: 50px;

    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;

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

.tiktok-autopilot-hero__button--primary {
    min-width: 135px;

    border: 2px solid #8400F7;
    background: linear-gradient(
            135deg,
            #8400F7 0%,
            #8400F7 100%
    );

    box-shadow: 0 10px 24px rgba(132, 0, 247, 0.22);
}

.tiktok-autopilot-hero__button--outline {
    min-width: 165px;

    border: 2px solid #8400F7;
    background: rgba(0, 0, 0, 0.6);
}

.tiktok-autopilot-hero__button:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.tiktok-autopilot-hero__button--primary:hover {
    filter: brightness(1.08);
    box-shadow: 0 14px 29px rgba(132, 0, 247, 0.33);
}

.tiktok-autopilot-hero__button--outline:hover {
    background: #8400F7;
}

/* Remove global button effects */

.tiktok-autopilot-hero__button::before,
.tiktok-autopilot-hero__button::after {
    display: none !important;
    content: none !important;
}

/* =====================================================
   LARGE DESKTOP
   ===================================================== */

@media (min-width: 1700px) {
    .tiktok-autopilot-hero__container {
        width: min(calc(100% - 150px), 1720px);
    }

    .tiktok-autopilot-hero__media img {
        object-position: 64% center;
    }
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1440px) {
    .tiktok-autopilot-hero {
        min-height: 620px;
    }

    .tiktok-autopilot-hero__container {
        width: min(calc(100% - 70px), 1320px);
        padding: 155px 0 60px;
    }

    .tiktok-autopilot-hero__content {
        max-width: 900px;
    }

    .tiktok-autopilot-hero__title {
        max-width: 670px;
        font-size: 42px;
    }

    .tiktok-autopilot-hero__copy {
        max-width: 870px;
    }

    .tiktok-autopilot-hero__copy p {
        font-size: 15px;
    }

    .tiktok-autopilot-hero__media img {
        object-position: 65% center;
    }
}

/* =====================================================
   SMALL LAPTOP
   ===================================================== */

@media (max-width: 1199px) {
    .tiktok-autopilot-hero__overlay {
        background: linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.98) 0%,
                rgba(0, 0, 0, 0.9) 38%,
                rgba(0, 0, 0, 0.58) 70%,
                rgba(0, 0, 0, 0.3) 100%
        );
    }

    .tiktok-autopilot-hero__content {
        max-width: 720px;
    }

    .tiktok-autopilot-hero__copy {
        max-width: 700px;
    }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {
    .tiktok-autopilot-hero {
        min-height: 660px;
        align-items: flex-end;
    }

    .tiktok-autopilot-hero__media img {
        object-position: 68% center;
    }

    .tiktok-autopilot-hero__overlay {
        background: linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.96) 0%,
                rgba(0, 0, 0, 0.86) 54%,
                rgba(0, 0, 0, 0.48) 100%
        ),
        linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.94) 0%,
                rgba(0, 0, 0, 0.2) 75%
        );
    }

    .tiktok-autopilot-hero__container {
        width: min(calc(100% - 40px), 760px);
        padding: 145px 0 55px;
    }

    .tiktok-autopilot-hero__content {
        max-width: 680px;
    }

    .tiktok-autopilot-hero__title {
        max-width: 650px;
        font-size: clamp(35px, 5vw, 44px);
    }

    .tiktok-autopilot-hero__copy p {
        font-size: 14px;
    }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {
    .tiktok-autopilot-hero {
        min-height: 720px;
    }

    .tiktok-autopilot-hero__media img {
        object-position: 70% center;
    }

    .tiktok-autopilot-hero__overlay {
        background: linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.98) 0%,
                rgba(0, 0, 0, 0.87) 58%,
                rgba(0, 0, 0, 0.42) 100%
        );
    }

    .tiktok-autopilot-hero__container {
        width: calc(100% - 30px);
        padding: 125px 0 45px;
    }

    .tiktok-autopilot-hero__title {
        margin-bottom: 19px;
        font-size: 31px;
        line-height: 1.16;
        letter-spacing: -0.8px;
    }

    .tiktok-autopilot-hero__copy p {
        font-size: 13px;
        line-height: 1.6;
    }

    .tiktok-autopilot-hero__copy p + p {
        margin-top: 16px;
    }

    .tiktok-autopilot-hero__actions {
        gap: 12px;
        margin-top: 20px;
    }

    .tiktok-autopilot-hero__button {
        min-height: 46px;
        padding: 10px 17px;
        font-size: 13px;
    }

    .tiktok-autopilot-hero__button--primary {
        min-width: 120px;
    }

    .tiktok-autopilot-hero__button--outline {
        min-width: 145px;
    }
}

/* =====================================================
   TIKTOK SHOP AUTOMATION SERVICES
   ===================================================== */

.tt-auto-services,
.tt-auto-services * {
    box-sizing: border-box;
}

.tt-auto-services {
    position: relative;
    width: 100%;
    padding: 38px 0 55px;
    overflow: hidden;

    background: radial-gradient(
            circle at 0% 45%,
            rgba(132, 0, 247, 0.66) 0%,
            rgba(0, 0, 0, 0.4) 35%,
            transparent 62%
    ),
    radial-gradient(
            circle at 100% 35%,
            rgba(132, 0, 247, 0.66) 0%,
            rgba(0, 0, 0, 0.4) 38%,
            transparent 65%
    ),
    linear-gradient(
            90deg,
            #050505 0%,
            #050505 27%,
            #050505 51%,
            #050505 75%,
            #050505 100%
    );
}

.tt-auto-services__container {
    width: min(calc(100% - 64px), 1710px);
    margin-inline: auto;
}

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

.tt-auto-services__heading {
    /*max-width: 850px;*/
    margin: 0 auto 30px;

    color: #ffffff;
    font-family: inherit;
    font-size: clamp(38px, 3vw, 52px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1.5px;
    text-align: center;
    text-transform: uppercase;
}

.tt-auto-services__heading span {
    display: block;
}

.tt-auto-services__heading strong {
    color: #8400F7;
    font-weight: 800;
}

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

.tt-auto-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 19px 36px;
}

/* =====================================================
   SERVICE CARD
   ===================================================== */

.tt-auto-card {
    position: relative;
    min-width: 0;
    min-height: 340px;
    padding: 43px 38px 35px;

    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;

    background: linear-gradient(
            105deg,
            #8400F7 0%,
            #8400F7 47%,
            #8400F7 100%
    );

    color: #ffffff;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.13);

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

.tt-auto-card:hover {
    transform: translateY(-6px);
    filter: brightness(1.03);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

/* =====================================================
   CARD HEADER
   ===================================================== */

.tt-auto-card__top {
    min-height: 88px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 18px;
    align-items: start;
}

.tt-auto-card h3 {
    margin: 0;

    color: #ffffff;
    font-family: inherit;
    font-size: clamp(22px, 1.6vw, 28px);
    font-weight: 750;
    line-height: 1.3;
    letter-spacing: -0.6px;
    text-transform: none;
}

.tt-auto-card__icon {
    width: 66px;
    height: 66px;

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

    color: #ffffff;
}

.tt-auto-card__icon svg {
    display: block;
    width: 62px;
    height: 62px;
    overflow: visible;
}

/* =====================================================
   CARD CONTENT
   ===================================================== */

.tt-auto-card__content {
    max-width: calc(100% - 25px);
    padding-top: 13px;
}

.tt-auto-card__content p {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.97);
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.62;
}

.tt-auto-card__content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tt-auto-card__content li {
    position: relative;
    margin: 0 0 5px;
    padding-left: 13px;

    color: rgba(255, 255, 255, 0.98);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.tt-auto-card__content li::before {
    content: "";
    position: absolute;

    top: 8px;
    left: 0;

    width: 6px;
    height: 6px;

    border-radius: 1px;
    background: #ffffff;
}

/* =====================================================
   DECORATIVE SCROLLBAR
   ===================================================== */

.tt-auto-card__rail {
    position: absolute;
    right: 38px;
    bottom: 38px;

    width: 12px;
    height: 86px;
}

.tt-auto-card__rail::before,
.tt-auto-card__rail::after {
    position: absolute;
    left: 50%;

    color: #ffffff;
    font-size: 8px;
    line-height: 1;

    transform: translateX(-50%);
}

.tt-auto-card__rail::before {
    content: "▲";
    top: -8px;
}

.tt-auto-card__rail::after {
    content: "▼";
    bottom: -8px;
}

.tt-auto-card__rail i {
    position: absolute;
    top: 5px;
    left: 50%;

    width: 6px;
    height: 64px;

    border-radius: 20px;
    background: #ffffff;

    transform: translateX(-50%);
}

/* Remove inherited global effects */

.tt-auto-card::before,
.tt-auto-card::after,
.tt-auto-card__icon::before,
.tt-auto-card__icon::after {
    display: none !important;
    content: none !important;
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1440px) {

    .tt-auto-services__container {
        width: min(calc(100% - 54px), 1320px);
    }

    .tt-auto-services__heading {
        max-width: 760px;
        font-size: 43px;
    }

    .tt-auto-services__grid {
        gap: 18px 24px;
    }

    .tt-auto-card {
        min-height: 325px;
        padding: 35px 30px 31px;
        border-radius: 30px;
    }

    .tt-auto-card__top {
        grid-template-columns: minmax(0, 1fr) 61px;
    }

    .tt-auto-card h3 {
        font-size: 22px;
    }

    .tt-auto-card__icon,
    .tt-auto-card__icon svg {
        width: 57px;
        height: 57px;
    }

    .tt-auto-card__content p,
    .tt-auto-card__content li {
        font-size: 12.5px;
    }

    .tt-auto-card__rail {
        right: 28px;
        bottom: 34px;
    }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1050px) {

    .tt-auto-services {
        padding: 45px 0 55px;
    }

    .tt-auto-services__container {
        width: min(calc(100% - 40px), 820px);
    }

    .tt-auto-services__heading {
        font-size: 38px;
    }

    .tt-auto-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .tt-auto-card {
        min-height: 330px;
    }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 680px) {

    .tt-auto-services {
        padding: 40px 0 48px;
    }

    .tt-auto-services__container {
        width: calc(100% - 30px);
    }

    .tt-auto-services__heading {
        margin-bottom: 25px;
        font-size: 29px;
        line-height: 1.2;
        letter-spacing: -0.8px;
    }

    .tt-auto-services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tt-auto-card {
        min-height: 315px;
        padding: 29px 23px 28px;
        border-radius: 25px;
    }

    .tt-auto-card__top {
        min-height: 78px;
        grid-template-columns: minmax(0, 1fr) 55px;
        gap: 12px;
    }

    .tt-auto-card h3 {
        font-size: 20px;
    }

    .tt-auto-card__icon,
    .tt-auto-card__icon svg {
        width: 52px;
        height: 52px;
    }

    .tt-auto-card__content {
        max-width: calc(100% - 19px);
    }

    .tt-auto-card__content p {
        margin-bottom: 17px;
        font-size: 12.5px;
    }

    .tt-auto-card__content li {
        font-size: 12.5px;
    }

    .tt-auto-card__rail {
        right: 20px;
        bottom: 29px;
    }
}

/* Circular platform / process section */
.circular-platform-section {
    padding: 30px 0 var(--section-padding);
    background: linear-gradient(180deg, #050505 0%, #050505 100%);
}

.circular-platform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

.circular-platform-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--border-light) 0 8px, transparent 8px 16px);
    z-index: 0;
}

.circular-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.circular-item__circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border: 3px solid var(--primary);
}

.circular-item__circle svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.circular-item h4 {
    font-size: 0.74rem;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: 0.02em;
}

.circular-item p {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* =====================================================
   ECOMMERCE AUTOMATION STATISTICS
   ===================================================== */

.ecom-stats-section,
.ecom-stats-section * {
    box-sizing: border-box;
}

.ecom-stats-section {
    position: relative;
    width: 100%;
    min-height: 540px;
    padding: 74px 0 72px;
    overflow: hidden;

    color: #ffffff;

    background: linear-gradient(
            105deg,
            #8400F7 0%,
            #8400F7 46%,
            #8400F7 100%
    );
}

.ecom-stats-container {
    width: min(calc(100% - 70px), 1540px);
    margin-inline: auto;
}

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

.ecom-stats-heading {
    max-width: 920px;
    margin: 0 auto 78px;

    color: #ffffff;
    font-family: inherit;
    font-size: clamp(34px, 2.8vw, 34px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 1.1px;
    text-align: center;
    text-transform: uppercase;
}

.ecom-stats-heading span {
    display: block;
}

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

.ecom-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 75px;
    align-items: start;
}

/* =====================================================
   STAT CARD
   ===================================================== */

.ecom-stat-card {
    min-width: 0;
    text-align: center;
}

.ecom-stat-number {
    min-height: 64px;
    margin: 0 0 3px;

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

    color: #ffffff;
    font-family: inherit;
    font-size: clamp(37px, 3.5vw, 58px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
}

.ecom-stat-prefix {
    display: inline-block;
}

.ecom-stat-counter {
    display: inline-block;
}

.ecom-stat-card h3 {
    margin: 10px 0 20px;

    color: #ffffff;
    font-family: inherit;
    font-size: clamp(24px, 1.75vw, 30px);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.6px;
    text-transform: none;
}

.ecom-stat-card p {
    max-width: 470px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.98);
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.78;
    text-transform: capitalize;
}

/* Remove old global effects */

.ecom-stat-card::before,
.ecom-stat-card::after,
.ecom-stat-number::before,
.ecom-stat-number::after {
    display: none !important;
    content: none !important;
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1440px) {

    .ecom-stats-section {
        min-height: 500px;
        padding: 65px 0;
    }

    .ecom-stats-container {
        width: min(calc(100% - 54px), 1320px);
    }

    .ecom-stats-heading {
        max-width: 820px;
        margin-bottom: 62px;
        font-size: 30px;
    }

    .ecom-stats-grid {
        gap: 45px;
    }

    .ecom-stat-number {
        font-size: 48px;
    }

    .ecom-stat-card h3 {
        font-size: 25px;
    }

    .ecom-stat-card p {
        max-width: 390px;
        font-size: 15px;
        line-height: 1.7;
    }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

    .ecom-stats-section {
        min-height: auto;
        padding: 55px 0 60px;
    }

    .ecom-stats-container {
        width: min(calc(100% - 40px), 800px);
    }

    .ecom-stats-heading {
        max-width: 720px;
        margin-bottom: 50px;
        font-size: 30px;
    }

    .ecom-stats-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ecom-stat-card {
        max-width: 650px;
        margin-inline: auto;
    }

    .ecom-stat-card p {
        max-width: 580px;
    }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

    .ecom-stats-section {
        padding: 44px 0 50px;
    }

    .ecom-stats-container {
        width: calc(100% - 30px);
    }

    .ecom-stats-heading {
        margin-bottom: 42px;
        font-size: 27px;
        line-height: 1.25;
        letter-spacing: 0.3px;
    }

    .ecom-stats-grid {
        gap: 40px;
    }

    .ecom-stat-number {
        min-height: 50px;
        font-size: 42px;
    }

    .ecom-stat-card h3 {
        margin: 8px 0 15px;
        font-size: 22px;
    }

    .ecom-stat-card p {
        font-size: 13px;
        line-height: 1.65;
    }
}

/* Success / results bordered sections */
.bordered-feature {
    padding: 34px 0;
}

.bordered-feature__box {
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--primary);
    border-radius: 18px;
    padding: clamp(16px, 2.4vw, 28px);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, rgba(132, 0, 247, 0.06), transparent 60%);
}

.bordered-feature__box.reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.bordered-feature__box.reverse .bordered-feature__text {
    order: 2;
}

.bordered-feature__box.reverse .bordered-feature__img {
    order: 1;
}

.bordered-feature__img {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.bordered-feature__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bordered-feature__text h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin-bottom: 12px;
}

.bordered-feature__text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    /*line-height: 1.55;*/
}

/* Process flow */
.process-section {
    padding: 44px 0;
    text-align: center;
    background: linear-gradient(180deg, #050505 0%, #050505 100%);
}

.process-section h2 {
    margin-bottom: 34px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
}

.process-card {
    position: relative;
    text-align: left;
}

.process-card__marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--black);
    border: 2px solid var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    position: absolute;
    top: -16px;
    left: 18px;
    z-index: 2;
}

.process-card__inner {
    background: #050505;
    border-radius: 12px;
    padding: 22px 16px 18px;
    box-shadow: 0 14px 0 -6px rgba(0, 0, 0, 0.4);
}

.process-card__box {
    background: linear-gradient(150deg, var(--primary-light), var(--primary-dark));
    border-radius: 10px;
    padding: 18px 16px;
}

.process-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.process-card__icon svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.process-card h3 {
    color: var(--white);
    font-size: 0.86rem;
    text-transform: none;
    margin-bottom: 6px;
}

.process-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.76rem;
    line-height: 1.45;
}

.process-arrow {
    display: none;
}

@media (min-width: 993px) {
    .process-grid > .process-card:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        top: 38%;
        right: -22px;
        width: 16px;
        height: 2px;
        background: var(--primary);
    }

    .process-grid > .process-card:not(:nth-child(3n))::before {
        content: '';
        position: absolute;
        top: calc(38% - 5px);
        right: -28px;
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 7px solid var(--primary);
        z-index: 2;
    }
}

/* FAQ */
.faq-section {
    padding: 44px 0;
}

.faq-section h2 {
    text-align: left;
    margin-bottom: 28px;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.faq-list {
    max-width: 760px;
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(132, 0, 247, 0.35);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 4px;
    text-align: left;
}

.faq-trigger span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}

.faq-trigger .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.faq-trigger .faq-icon::before,
.faq-trigger .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--white);
    transition: transform 0.3s;
}

.faq-trigger .faq-icon::before {
    width: 10px;
    height: 1.6px;
}

.faq-trigger .faq-icon::after {
    width: 1.6px;
    height: 10px;
}

.faq-item.active .faq-icon::after {
    transform: scaleY(0);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-panel {
    max-height: 300px;
}

.faq-panel__inner {
    padding: 0 4px 18px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.tiktok-contact {
    padding: var(--section-padding) 0;
}

.tiktok-contact .contact-form-card {
    padding: clamp(20px, 3vw, 34px);
}

/* =====================================================
   IMAGE PLACEHOLDER (used only where a matching asset
   was not supplied in FBA Xperts.zip — see HTML comments)
   ===================================================== */
.img-placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 320px;
    height: 100%;
    width: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(132, 0, 247, 0.25), transparent 55%),
    linear-gradient(150deg, var(--brown-light), var(--dark-brown) 70%);
    color: var(--text-muted);
    text-align: center;
    padding: 30px;
}

.img-placeholder svg {
    width: 46px;
    height: 46px;
    color: rgba(255, 255, 255, 0.35);
}

.img-placeholder span {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.tiktok-hero__bg .img-placeholder {
    min-height: 100%;
    position: absolute;
    inset: 0;
}


/* =========================================================
   HOME PAGE FINAL REFERENCE MATCH
   These rules intentionally load after responsive.css.
   ========================================================= */

/* Shared width and section rhythm */
.home-page main > section {
    overflow: hidden;
}

.home-page .home-hero,
.home-page .service-accordion-section,
.home-page .industry-showcase,
.home-page .ecom-process-section,
.home-page .ecom-why-section,
.home-page .outcome-section,
.home-page .client-stories-section,
.home-page .insights-preview,
.home-page .contact-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

/* ---------------- HERO ---------------- */
.home-page .home-hero {
    min-height: 680px;
}

.home-page .home-hero__inner {
    width: min(100%, 1660px);
    min-height: 680px;
    margin-inline: auto;
    padding: var(--header-h) 4.4% 0;
    grid-template-columns: minmax(0, 61%) minmax(430px, 39%);
}

.home-page .home-hero__content {
    max-width: 900px;
    padding: 34px 0 44px;
}

.home-page .home-hero__heading {
    max-width: 830px;
    margin-bottom: 18px;
    font-size: clamp(30px, 2.15vw, 42px);
    line-height: 1.12;
}

.home-page .home-hero__description {
    max-width: 850px;
    margin-bottom: 23px;
}

.home-page .home-hero__description p {
    font-size: 14px;
    line-height: 1.55;
}

.home-page .hero-badges {
    gap: 10px 14px;
}

.home-page .hero-badge {
    min-height: 38px;
    padding-right: 15px;
    font-size: 11.5px;
}

.home-page .home-hero__visual {
    right: 4.8%;
    width: min(35.5vw, 630px);
}

.home-page .home-hero__person {
    max-width: 620px;
    max-height: 640px;
}

.home-page .hero-floating-amazon {
    top: 35%;
    left: -1%;
    width: 48px;
    height: 48px;
}

.home-page .hero-floating-amazon img {
    width: 31px;
    height: 31px;
}

/* ---------------- REVIEW STRIP ---------------- */
.home-page .review-strip {
    padding: 18px 0;
    background: #171717;
}

.home-page .review-strip .container {
    width: min(calc(100% - 46px), 1480px);
}

.home-page .review-strip__track {
    gap: 0;
}

.home-page .review-item {
    justify-content: center;
    min-height: 55px;
    padding: 5px 18px;
}

.home-page .review-item img {
    height: 24px;
}

.home-page .review-item__text {
    font-size: 0.62rem;
}

/* ---------------- SERVICE ACCORDION ---------------- */
.home-page .service-accordion-section {
    min-height: 720px;
    padding: 64px 0 52px;
}

.home-page .service-accordion-section .container {
    width: min(calc(100% - 72px), 1450px);
    grid-template-columns: 45% 55%;
    gap: 75px;
    align-items: center;
}

.home-page .service-visual {
    min-height: 570px;
}

.home-page .service-visual img.main-visual {
    max-width: 610px;
}

.home-page .accordion-list {
    padding-top: 0;
}

.home-page .accordion-trigger {
    min-height: 67px;
}

.home-page .accordion-trigger h3 {
    font-size: clamp(29px, 2vw, 39px);
}

.home-page .accordion-panel__inner p {
    font-size: 13px;
    line-height: 1.55;
}

/* ---------------- INDUSTRIES ---------------- */
.home-page .industry-showcase {
    padding: 50px 0 60px;
}

.home-page .industry-showcase__container {
    width: min(calc(100% - 62px), 1480px);
}

.home-page .industry-showcase__heading {
    margin-bottom: 28px;
    font-size: clamp(30px, 2.25vw, 41px);
}

.home-page .industry-showcase__layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
}

.home-page .industry-showcase__intro p {
    font-size: 12px;
    line-height: 1.55;
}

.home-page .industry-showcase__card {
    width: 315px;
    min-width: 315px;
    max-width: 315px;
    height: 330px;
    flex-basis: 315px;
}

/* ---------------- PROCESS ---------------- */
.home-page .ecom-process-section {
    padding: 48px 0 38px;
}

.home-page .ecom-process-container {
    width: min(calc(100% - 70px), 1430px);
}

.home-page .ecom-process-header {
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
    gap: 70px;
    margin-bottom: 44px;
}

.home-page .ecom-process-title {
    font-size: clamp(38px, 3vw, 52px);
    line-height: 1.15;
}

.home-page .ecom-process-intro {
    max-width: 540px;
}

.home-page .ecom-process-intro p {
    font-size: 14px;
    line-height: 1.65;
}

.home-page .ecom-process-button {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 13px;
}

.home-page .ecom-process-visual {
    width: min(100%, 1120px);
}

/* ---------------- WHY CHOOSE ---------------- */
.home-page .ecom-why-section {
    padding: 56px 0 48px;
}

.home-page .ecom-why-container {
    width: min(calc(100% - 68px), 1530px);
}

.home-page .ecom-why-header {
    grid-template-columns: minmax(0, 1.08fr) minmax(470px, 0.92fr);
    gap: 70px;
}

.home-page .ecom-why-title {
    font-size: clamp(39px, 3vw, 52px);
}

.home-page .ecom-why-header__text p {
    font-size: 13px;
    line-height: 1.6;
}

.home-page .ecom-why-header__text p + p {
    margin-top: 16px;
}

.home-page .ecom-why-divider {
    margin: 35px 0 38px;
}

.home-page .ecom-why-layout {
    grid-template-columns: 355px minmax(0, 1fr);
    gap: 34px;
}

.home-page .ecom-why-form-intro {
    margin-bottom: 28px;
    font-size: 13px;
    line-height: 1.65;
}

.home-page .ecom-why-field {
    margin-bottom: 12px;
}

.home-page .ecom-why-field input {
    height: 48px;
    font-size: 13px;
}

.home-page .ecom-why-consent {
    margin: 15px 0 14px;
    font-size: 10.5px;
    line-height: 1.55;
}

.home-page .ecom-why-submit {
    min-height: 48px;
    font-size: 13px;
}

.home-page .ecom-why-cards {
    gap: 14px 16px;
}

.home-page .ecom-why-card {
    min-height: 210px;
}

.home-page .ecom-why-card__tab {
    width: 125px;
    height: 48px;
}

.home-page .ecom-why-card__content {
    padding: 58px 20px 21px;
}

.home-page .ecom-why-card h3 {
    margin-bottom: 9px;
    font-size: clamp(17px, 1.35vw, 22px);
}

.home-page .ecom-why-card p {
    font-size: 10.5px;
    line-height: 1.5;
}

.home-page .ecom-why-card__link {
    font-size: 10px;
}

/* ---------------- OUTCOME ---------------- */
.home-page .outcome-section {
    padding: 50px 0 44px;
    background: radial-gradient(circle at 0% 100%, rgba(132, 0, 247, 0.34), transparent 44%),
    radial-gradient(circle at 100% 0%, rgba(132, 0, 247, 0.3), transparent 42%),
    #050505;
}

.home-page .outcome-section .container {
    width: min(calc(100% - 62px), 1500px);
}

.home-page .outcome-section .section-head {
    align-items: flex-start;
    margin-bottom: 34px;
}

.home-page .outcome-section .section-head h2 {
    font-size: clamp(31px, 2.35vw, 43px);
}

.home-page .outcome-section .section-head__text {
    max-width: 540px;
    font-size: 12px;
    line-height: 1.55;
}

.home-page .outcome-gallery {
    padding: 4px 0 12px;
}

.home-page .outcome-gallery__track {
    gap: 14px;
}

.home-page .outcome-card {
    width: 165px;
    border-radius: 8px;
}

/* ---------------- TESTIMONIALS ---------------- */
.home-page .client-stories-section {
    padding: 46px 0 52px;
}

.home-page .client-stories-container {
    width: min(calc(100% - 62px), 1560px);
}

.home-page .client-stories-title {
    margin-bottom: 24px;
    font-size: clamp(36px, 2.8vw, 50px);
}

.home-page .client-review-item {
    min-height: 112px;
    padding: 22px;
}

.home-page .client-review-item img {
    width: 108px;
}

.home-page .client-story-card {
    width: clamp(455px, 34vw, 610px);
    min-width: clamp(455px, 34vw, 610px);
    max-width: clamp(455px, 34vw, 610px);
    min-height: 205px;
    flex-basis: clamp(455px, 34vw, 610px);
    padding: 22px 24px 18px;
    border-radius: 22px;
}

.home-page .client-story-card__text {
    min-height: 103px;
}

.home-page .client-story-card__text p {
    font-size: 13px;
    line-height: 1.5;
}

.home-page .client-story-card__footer {
    padding-top: 14px;
}

.home-page .client-story-person img {
    width: 38px;
    height: 38px;
}

.home-page .client-story-person h3 {
    font-size: 13px;
}

.home-page .client-story-brand span {
    font-size: 22px;
}

/* ---------------- INSIGHTS ---------------- */
.home-page .insights-preview {
    padding: 56px 0 58px;
    background: radial-gradient(circle at 0% 30%, rgba(132, 0, 247, 0.56), transparent 42%),
    radial-gradient(circle at 100% 20%, rgba(132, 0, 247, 0.46), transparent 42%),
    linear-gradient(90deg, #050505 0%, #050505 31%, #050505 58%, #050505 100%);
}

.home-page .insights-preview .container {
    width: min(calc(100% - 64px), 1440px);
}

.home-page .insights-preview .section-head {
    margin-bottom: 8px;
}

.home-page .insights-preview .section-head h2 {
    font-size: clamp(32px, 2.35vw, 43px);
}

.home-page .insights-categories {
    gap: 7px 18px;
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom-color: rgba(255, 255, 255, 0.55);
}

.home-page .insights-categories a {
    font-size: 0.68rem;
    color: #fff;
}

.home-page .blog-grid {
    gap: 22px;
}

.home-page .blog-card {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.3);
}

.home-page .blog-card--compact .blog-card__img {
    height: 190px;
}

.home-page .blog-card--compact .blog-card__body {
    /*padding: 14px 0 0;*/
}

.home-page .blog-card--compact .blog-card__body h3 {
    min-height: 44px;
    font-size: 0.78rem;
    line-height: 1.35;
}

.home-page .blog-readmore {
    padding: 7px 16px;
    font-size: 0.66rem;
}

/* ---------------- CONTACT ---------------- */
.home-page .contact-section {
    padding: 54px 0 58px;
    background: radial-gradient(circle at 0% 75%, rgba(132, 0, 247, 0.6), transparent 42%),
    radial-gradient(circle at 100% 25%, rgba(132, 0, 247, 0.52), transparent 40%),
    linear-gradient(90deg, #050505 0%, #050505 33%, #050505 57%, #050505 100%);
}

.home-page .contact-section .container {
    width: min(calc(100% - 64px), 1360px);
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 48px;
}

.home-page .contact-form-card {
    padding: 28px;
    border-radius: 17px;
    border-color: rgba(255, 255, 255, 0.06);
    background: #252525;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
}

.home-page .contact-form-grid {
    gap: 10px 12px;
}

.home-page .contact-form-grid label,
.home-page .contact-form-card .field label {
    font-size: 0.67rem;
}

.home-page .contact-form-card .field input,
.home-page .contact-form-card .field textarea {
    padding: 10px 13px;
    border-radius: 30px;
    background: #333;
    font-size: 0.7rem;
}

.home-page .contact-form-card .field textarea {
    min-height: 105px;
    border-radius: 9px;
}

.home-page .contact-form-card .btn {
    padding: 10px 20px;
    font-size: 0.7rem;
}

.home-page .contact-info h2 {
    max-width: 440px;
    margin-bottom: 22px;
    font-size: clamp(28px, 2.2vw, 39px);
    line-height: 1.05;
}

.home-page .contact-info-item {
    gap: 10px;
    margin-bottom: 14px;
}

.home-page .contact-info-item__icon {
    width: 30px;
    height: 30px;
}

.home-page .contact-info-item h4 {
    margin-bottom: 1px;
    font-size: 0.67rem;
}

.home-page .contact-info-item p,
.home-page .contact-info-item a {
    font-size: 0.76rem;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1180px) {
    .home-page .home-hero__inner {
        grid-template-columns: minmax(0, 58%) minmax(380px, 42%);
    }

    .home-page .service-accordion-section .container,
    .home-page .industry-showcase__container,
    .home-page .ecom-process-container,
    .home-page .ecom-why-container,
    .home-page .outcome-section .container,
    .home-page .client-stories-container,
    .home-page .insights-preview .container,
    .home-page .contact-section .container {
        width: min(calc(100% - 44px), 1080px);
    }

    .home-page .ecom-why-layout {
        grid-template-columns: 310px minmax(0, 1fr);
    }
}

@media (max-width: 991px) {
    .home-page .home-hero {
        min-height: auto;
    }

    .home-page .home-hero__inner {
        display: block;
        min-height: auto;
        padding: 105px 28px 0;
    }

    .home-page .home-hero__visual {
        position: relative;
        right: auto;
        width: min(100%, 580px);
        height: auto;
        margin: 24px 0 0 auto;
    }

    .home-page .review-strip__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .review-item:nth-child(2) {
        border-right: 0;
    }

    .home-page .service-accordion-section .container,
    .home-page .industry-showcase__layout,
    .home-page .ecom-process-header,
    .home-page .ecom-why-header,
    .home-page .ecom-why-layout,
    .home-page .contact-section .container {
        grid-template-columns: 1fr;
    }

    .home-page .ecom-why-form-wrap {
        max-width: 580px;
    }

    .home-page .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .blog-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
    }
}

@media (max-width: 680px) {
    .home-page .home-hero__inner {
        padding: 90px 16px 0;
    }

    .home-page .home-hero__heading {
        font-size: 27px;
    }

    .home-page .review-strip__track,
    .home-page .ecom-why-cards,
    .home-page .blog-grid {
        grid-template-columns: 1fr;
    }

    .home-page .review-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .home-page .service-accordion-section .container,
    .home-page .industry-showcase__container,
    .home-page .ecom-process-container,
    .home-page .ecom-why-container,
    .home-page .outcome-section .container,
    .home-page .client-stories-container,
    .home-page .insights-preview .container,
    .home-page .contact-section .container {
        width: calc(100% - 28px);
    }

    .home-page .industry-showcase__card {
        width: 275px;
        min-width: 275px;
        max-width: 275px;
        flex-basis: 275px;
    }

    .home-page .ecom-process-title,
    .home-page .ecom-why-title,
    .home-page .client-stories-title {
        font-size: 30px;
    }

    .home-page .client-story-card {
        width: 320px;
        min-width: 320px;
        max-width: 320px;
        flex-basis: 320px;
    }

    .home-page .blog-card:last-child {
        grid-column: auto;
        max-width: none;
    }
}

/* =========================================================
   FBA Xperts TIKTOK SHOP PAGE — FINAL REFERENCE OVERRIDES
   Load this file after responsive.css.
   ========================================================= */

body.service-final-page {
    background: #050505;
}

body.service-final-page main {
    overflow: hidden;
}

body.service-final-page .container {
    width: min(100% - 42px, 1710px);
}

/* ---------- Header ---------- */
body.service-final-page .site-header {
    padding: 13px 0;
}

body.service-final-page .site-header .container {
    width: min(100% - 46px, 1770px);
}

body.service-final-page .header-logo img {
    height: 60px;
}

body.service-final-page .main-nav a {
    font-size: 0.82rem;
    padding: 7px 10px;
}

body.service-final-page .header-actions {
    gap: 14px;
}

body.service-final-page .header-phone,
body.service-final-page .header-quote-btn {
    font-size: 0.78rem;
}

/* =========================================================
   HERO
   ========================================================= */
body.service-final-page .tiktok-autopilot-hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background: #050505;
}

body.service-final-page .tiktok-autopilot-hero__media img {
    object-position: 64% center;
}

body.service-final-page .tiktok-autopilot-hero__overlay {
    background: linear-gradient(90deg,
    rgba(0, 0, 0, .98) 0%,
    rgba(0, 0, 0, .92) 23%,
    rgba(0, 0, 0, .72) 47%,
    rgba(0, 0, 0, .24) 73%,
    rgba(0, 0, 0, .16) 100%);
}

body.service-final-page .tiktok-autopilot-hero__container {
    width: min(100% - 100px, 1730px);
    padding: 158px 0 68px;
}

body.service-final-page .tiktok-autopilot-hero__content {
    max-width: 1020px;
}

body.service-final-page .tiktok-autopilot-hero__title {
    /*max-width: 730px;*/
    margin-bottom: 22px;
    font-size: clamp(40px, 3vw, 45px);
    line-height: 1.18;
}

body.service-final-page .tiktok-autopilot-hero__copy {
    max-width: 1000px;
}

body.service-final-page .tiktok-autopilot-hero__copy p {
    font-size: 16px;
    line-height: 1.66;
    color: rgba(255, 255, 255, .97);
}

body.service-final-page .tiktok-autopilot-hero__highlight {
    max-width: 980px;
}

body.service-final-page .tiktok-autopilot-hero__actions {
    margin-top: 22px;
}

body.service-final-page .tiktok-autopilot-hero__button {
    min-height: 50px;
    font-size: 15px;
}

/* =========================================================
   SIX SERVICE CARDS
   ========================================================= */
body.service-final-page .tt-auto-services {
    padding: 38px 0 50px;
    background: radial-gradient(circle at 0% 48%, rgba(132, 0, 247, .63), transparent 62%),
    radial-gradient(circle at 100% 36%, rgba(132, 0, 247, .64), transparent 66%),
    linear-gradient(90deg, #050505 0%, #050505 26%, #050505 51%, #050505 76%, #050505 100%);
}

body.service-final-page .tt-auto-services__container {
    width: min(100% - 64px, 1735px);
}

body.service-final-page .tt-auto-services__heading {
    /*max-width: 830px;*/
    margin-bottom: 28px;
    font-size: clamp(38px, 2.8vw, 50px);
    line-height: 1.18;
}

body.service-final-page .tt-auto-services__grid {
    gap: 18px 34px;
}

body.service-final-page .tt-auto-card {
    min-height: 335px;
    padding: 38px 36px 32px;
    border-radius: 36px;
    background: linear-gradient(105deg, #000 0%, #333 48%, #000 100%);
}

body.service-final-page .tt-auto-card__top {
    min-height: 83px;
    grid-template-columns: minmax(0, 1fr) 68px;
}

body.service-final-page .tt-auto-card h3 {
    font-size: clamp(21px, 1.45vw, 27px);
    line-height: 1.28;
}

body.service-final-page .tt-auto-card__icon,
body.service-final-page .tt-auto-card__icon svg {
    width: 62px;
    height: 62px;
}

body.service-final-page .tt-auto-card__content {
    padding-top: 10px;
}

body.service-final-page .tt-auto-card__content p,
body.service-final-page .tt-auto-card__content li {
    font-size: 13.5px;
}

/* =========================================================
   CLIENT TESTIMONIALS
   ========================================================= */
body.service-final-page .client-stories-section {
    padding: 42px 0 54px;
    background: radial-gradient(circle at 0% 48%, rgba(132, 0, 247, .68), transparent 59%),
    radial-gradient(circle at 100% 35%, rgba(132, 0, 247, .69), transparent 63%),
    linear-gradient(90deg, #050505 0%, #050505 27%, #050505 51%, #050505 75%, #050505 100%);
}

body.service-final-page .client-stories-container {
    width: min(100% - 54px, 1710px);
}

body.service-final-page .client-stories-title {
    margin-bottom: 24px;
    font-size: clamp(38px, 2.7vw, 49px);
}

body.service-final-page .client-stories-reviews {
    margin-bottom: 14px;
}

body.service-final-page .client-review-item {
    min-height: 118px;
    padding: 22px 28px;
}

body.service-final-page .client-review-item img {
    width: 112px;
}

body.service-final-page .client-story-card {
    width: 430px;
    min-width: 430px;
    max-width: 430px;
    min-height: 188px;
    flex-basis: 430px;
    padding: 22px 24px 18px;
    border-radius: 20px;
}

body.service-final-page .client-story-card__text {
    min-height: 92px;
}

body.service-final-page .client-story-card__text p {
    font-size: 12.5px;
    line-height: 1.52;
}

body.service-final-page .client-story-card__scroll {
    height: 70px;
}

body.service-final-page .client-story-card__scroll i {
    height: 50px;
}

body.service-final-page .client-story-card__footer {
    padding-top: 13px;
}

body.service-final-page .client-story-person img {
    width: 36px;
    height: 36px;
}

body.service-final-page .client-story-person h3 {
    font-size: 13px;
}

body.service-final-page .client-story-brand img {
    /*width: 28px;*/
    height: 25px;
}

body.service-final-page .client-story-brand span {
    font-size: 22px;
}

/* =========================================================
   FIVE CIRCLES
   ========================================================= */
body.service-final-page .circular-platform-section {
    padding: 38px 0 66px;
    border-bottom: 1px solid rgba(255, 255, 255, .48);
    background: radial-gradient(circle at 15% 50%, rgba(0, 0, 0, .48), transparent 46%),
    linear-gradient(90deg, #050505 0%, #050505 46%, #050505 100%);
}

body.service-final-page .circular-platform-grid {
    max-width: 980px;
    margin: 0 auto;
    gap: 28px;
}

body.service-final-page .circular-platform-grid::before {
    top: 38px;
    left: 8%;
    right: 8%;
}

body.service-final-page .circular-item__circle {
    width: 78px;
    height: 78px;
    border: 0;
}

body.service-final-page .circular-item h4 {
    font-size: .68rem;
}

body.service-final-page .circular-item p {
    font-size: .61rem;
    line-height: 1.35;
}

/* =========================================================
   WHY CHOOSE
   ========================================================= */
body.service-final-page .ecom-why-section {
    padding: 52px 0 38px;
    background: radial-gradient(circle at 0% 50%, rgba(132, 0, 247, .72), transparent 61%),
    radial-gradient(circle at 100% 18%, rgba(132, 0, 247, .66), transparent 62%),
    linear-gradient(90deg, #050505 0%, #050505 28%, #050505 52%, #050505 75%, #050505 100%);
}

body.service-final-page .ecom-why-container {
    width: min(100% - 54px, 1710px);
}

body.service-final-page .ecom-why-header {
    grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
    gap: 64px;
}

body.service-final-page .ecom-why-title {
    font-size: clamp(37px, 2.55vw, 47px);
}

body.service-final-page .ecom-why-header__text p {
    font-size: 12.5px;
    line-height: 1.65;
}

body.service-final-page .ecom-why-header__text p + p {
    margin-top: 15px;
}

body.service-final-page .ecom-why-divider {
    margin: 30px 0 34px;
}

body.service-final-page .ecom-why-layout {
    grid-template-columns: 335px minmax(0, 1fr);
    gap: 30px;
}

body.service-final-page .ecom-why-form-intro {
    margin-bottom: 26px;
    font-size: 12.5px;
    line-height: 1.62;
}

body.service-final-page .ecom-why-field {
    margin-bottom: 11px;
}

body.service-final-page .ecom-why-field input {
    height: 45px;
    font-size: 12.5px;
}

body.service-final-page .ecom-why-consent {
    margin: 15px 0 13px;
    font-size: 10px;
    line-height: 1.45;
}

body.service-final-page .ecom-why-submit {
    min-height: 47px;
    font-size: 13px;
}

body.service-final-page .ecom-why-cards {
    gap: 12px 15px;
}

body.service-final-page .ecom-why-card {
    min-height: 190px;
    border-radius: 5px;
}

body.service-final-page .ecom-why-card__tab {
    width: 115px;
    height: 45px;
}

body.service-final-page .ecom-why-card__content {
    padding: 54px 20px 20px;
}

body.service-final-page .ecom-why-card h3 {
    margin-bottom: 8px;
    font-size: 17px;
}

body.service-final-page .ecom-why-card p {
    margin-bottom: 7px;
    font-size: 9.5px;
    line-height: 1.46;
}

body.service-final-page .ecom-why-card__link {
    font-size: 9px;
}

/* =========================================================
   ORANGE STATS
   ========================================================= */
body.service-final-page .ecom-stats-section {
    min-height: 270px;
    padding: 42px 0 46px;
}

body.service-final-page .ecom-stats-container {
    width: min(100% - 60px, 1500px);
}

body.service-final-page .ecom-stats-heading {
    max-width: 760px;
    margin-bottom: 34px;
    font-size: clamp(28px, 2vw, 34px);
    line-height: 1.18;
}

body.service-final-page .ecom-stats-grid {
    gap: 55px;
}

body.service-final-page .ecom-stat-number {
    min-height: 42px;
    font-size: clamp(35px, 2.7vw, 45px);
}

body.service-final-page .ecom-stat-card h3 {
    margin: 6px 0 12px;
    font-size: 17px;
}

body.service-final-page .ecom-stat-card p {
    max-width: 390px;
    font-size: 10px;
    line-height: 1.55;
}

/* =========================================================
   TWO SUCCESS FEATURES
   ========================================================= */
body.service-final-page .bordered-feature {
    padding: 26px 0;
    background: #020202;
}

body.service-final-page .bordered-feature__box {
    max-width: 1705px;
    min-height: 265px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    border: 2px solid #8400F7;
    border-radius: 14px;
    background: #040404;
}

body.service-final-page .bordered-feature__box,
body.service-final-page .bordered-feature__box.reverse {
    grid-template-columns: 1.15fr .85fr;
}

body.service-final-page .bordered-feature__box.reverse {
    grid-template-columns: .85fr 1.15fr;
}

body.service-final-page .bordered-feature__text {
    padding: 28px 34px;
}

body.service-final-page .bordered-feature__text .section-eyebrow {
    display: none;
}

body.service-final-page .bordered-feature__text h2 {
    margin-bottom: 10px;
    font-size: clamp(22px, 1.55vw, 29px);
}

body.service-final-page .bordered-feature__text p {
    margin-bottom: 13px;
    /*font-size: 11px;*/
    /*line-height: 1.48;*/
}

body.service-final-page .bordered-feature__text .btn {
    padding: 8px 16px;
    font-size: 10px;
}

body.service-final-page .bordered-feature__img {
    height: 100%;
    min-height: 265px;
    aspect-ratio: auto;
    border-radius: 0;
}

body.service-final-page .bordered-feature__img img {
    object-fit: cover;
}

/* =========================================================
   SIX-STEP PROCESS
   ========================================================= */
body.service-final-page .process-section {
    padding: 50px 0 62px;
    background: #020202;
}

body.service-final-page .process-section > .container > .section-eyebrow,
body.service-final-page .process-section > .container > h2 {
    display: none;
}

body.service-final-page .process-grid {
    max-width: 1500px;
    margin: 20px auto 0 !important;
    gap: 70px 88px;
}

body.service-final-page .process-card__marker {
    top: -28px;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translateX(-50%);
    background: #050505;
    font-size: 0;
}

body.service-final-page .process-card__marker::after {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #8400F7;
}

body.service-final-page .process-card__inner {
    max-width: 330px;
    margin: 0 auto;
    padding: 9px;
    border: 5px solid #8400F7;
    border-radius: 13px;
    background: #292929;
    box-shadow: 9px 9px 0 #4a4a4a;
}

body.service-final-page .process-card__box {
    min-height: 190px;
    padding: 18px 17px;
    border-radius: 6px;
}

body.service-final-page .process-card__icon {
    margin-top: -31px;
    width: 54px;
    height: 54px;
    border: 5px solid #8400F7;
    background: #1c1c1c;
}

body.service-final-page .process-card__icon svg {
    width: 23px;
    height: 23px;
}

body.service-final-page .process-card h3 {
    font-size: 12px;
}

body.service-final-page .process-card p {
    font-size: 9.5px;
    line-height: 1.45;
}

@media (min-width: 993px) {
    body.service-final-page .process-grid > .process-card:not(:nth-child(3n))::after {
        top: 47%;
        right: -70px;
        width: 55px;
        height: 14px;
        background: #8400F7;
    }

    body.service-final-page .process-grid > .process-card:not(:nth-child(3n))::before {
        top: calc(47% - 11px);
        right: -86px;
        border-top-width: 18px;
        border-bottom-width: 18px;
        border-left-width: 22px;
    }
}

/* =========================================================
   FAQ
   ========================================================= */
body.service-final-page .faq-section {
    padding: 48px 0 56px;
    background: #020202;
}

body.service-final-page .faq-section h2 {
    margin-bottom: 24px;
    font-size: clamp(28px, 2vw, 37px);
}

body.service-final-page .faq-list {
    max-width: none;
}

body.service-final-page .faq-item {
    border-bottom-color: rgba(132, 0, 247, .76);
}

body.service-final-page .faq-trigger {
    padding: 12px 8px;
}

body.service-final-page .faq-trigger span {
    font-size: 12px;
}

body.service-final-page .faq-panel__inner {
    font-size: 11px;
}

/* =========================================================
   CONTACT
   ========================================================= */
body.service-final-page .tiktok-contact {
    padding: 48px 0;
    background: radial-gradient(circle at 0% 50%, rgba(132, 0, 247, .74), transparent 56%),
    radial-gradient(circle at 100% 30%, rgba(132, 0, 247, .66), transparent 61%),
    linear-gradient(90deg, #050505 0%, #050505 47%, #050505 100%);
}

body.service-final-page .tiktok-contact .container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    gap: 55px;
    align-items: center;
}

body.service-final-page .tiktok-contact .contact-form-card {
    padding: 26px;
    border-radius: 12px;
}

body.service-final-page .tiktok-contact .contact-info h2 {
    font-size: clamp(28px, 2.2vw, 39px);
}

/* =========================================================
   FOOTER COMPACT REFERENCE SIZE
   ========================================================= */
body.service-final-page .site-footer {
    padding-top: 48px;
}

body.service-final-page .footer-newsletter {
    padding-bottom: 34px;
}

body.service-final-page .footer-newsletter__brand img {
    height: 42px;
}

body.service-final-page .footer-newsletter__brand h3 {
    font-size: 1.15rem;
}

body.service-final-page .newsletter-form {
    min-width: 320px;
    max-width: 410px;
}

body.service-final-page .footer-columns {
    gap: 32px;
    padding: 36px 0 28px;
}

body.service-final-page .footer-col h4 {
    font-size: .88rem;
    margin-bottom: 14px;
}

body.service-final-page .footer-col ul li {
    margin-bottom: 8px;
}

body.service-final-page .footer-col ul li a,
body.service-final-page .footer-col--find li {
    font-size: .74rem;
}

body.service-final-page .footer-payment-logo {
    max-width: 200px;
}

body.service-final-page .footer-bottom {
    padding: 14px 0;
    font-size: .72rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1440px) {
    body.service-final-page .tiktok-autopilot-hero {
        min-height: 610px;
    }

    body.service-final-page .tiktok-autopilot-hero__container {
        width: min(100% - 64px, 1320px);
        padding-top: 145px;
    }

    body.service-final-page .tiktok-autopilot-hero__title {
        font-size: 41px;
    }

    body.service-final-page .tiktok-autopilot-hero__copy p {
        font-size: 14px;
    }

    body.service-final-page .tt-auto-services__container,
    body.service-final-page .client-stories-container,
    body.service-final-page .ecom-why-container {
        width: min(100% - 48px, 1320px);
    }

    body.service-final-page .tt-auto-services__grid {
        gap: 17px 22px;
    }

    body.service-final-page .tt-auto-card {
        min-height: 315px;
        padding: 31px 28px 28px;
    }

    body.service-final-page .tt-auto-card h3 {
        font-size: 20px;
    }

    body.service-final-page .tt-auto-card__content p,
    body.service-final-page .tt-auto-card__content li {
        font-size: 11.5px;
    }

    body.service-final-page .client-story-card {
        width: 390px;
        min-width: 390px;
        max-width: 390px;
        flex-basis: 390px;
    }

    body.service-final-page .ecom-why-layout {
        grid-template-columns: 300px minmax(0, 1fr);
    }

    body.service-final-page .process-grid {
        gap: 65px 70px;
    }
}

@media (max-width: 1050px) {
    body.service-final-page .tt-auto-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.service-final-page .client-stories-reviews {
        overflow-x: auto;
        grid-template-columns: repeat(3, 300px);
    }

    body.service-final-page .circular-platform-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 30px;
    }

    body.service-final-page .circular-platform-grid::before {
        display: none;
    }

    body.service-final-page .ecom-why-header,
    body.service-final-page .ecom-why-layout {
        grid-template-columns: 1fr;
    }

    body.service-final-page .ecom-why-form-wrap {
        max-width: 580px;
    }

    body.service-final-page .bordered-feature__box,
    body.service-final-page .bordered-feature__box.reverse {
        grid-template-columns: 1fr;
    }

    body.service-final-page .bordered-feature__box.reverse .bordered-feature__text,
    body.service-final-page .bordered-feature__box.reverse .bordered-feature__img {
        order: initial;
    }

    body.service-final-page .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 62px 28px;
    }

    body.service-final-page .tiktok-contact .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    body.service-final-page .container,
    body.service-final-page .tt-auto-services__container,
    body.service-final-page .client-stories-container,
    body.service-final-page .ecom-why-container,
    body.service-final-page .ecom-stats-container {
        width: calc(100% - 30px);
    }

    body.service-final-page .tiktok-autopilot-hero {
        min-height: 720px;
    }

    body.service-final-page .tiktok-autopilot-hero__container {
        width: calc(100% - 30px);
        padding: 118px 0 42px;
    }

    body.service-final-page .tiktok-autopilot-hero__media img {
        object-position: 70% center;
    }

    body.service-final-page .tiktok-autopilot-hero__overlay {
        background: linear-gradient(0deg, rgba(0, 0, 0, .99) 0%, rgba(0, 0, 0, .9) 58%, rgba(0, 0, 0, .42) 100%);
    }

    body.service-final-page .tiktok-autopilot-hero__title {
        font-size: 30px;
    }

    body.service-final-page .tiktok-autopilot-hero__copy p {
        font-size: 12.5px;
    }

    body.service-final-page .tt-auto-services__heading,
    body.service-final-page .client-stories-title,
    body.service-final-page .ecom-why-title,
    body.service-final-page .ecom-stats-heading,
    body.service-final-page .faq-section h2 {
        font-size: 28px;
    }

    body.service-final-page .tt-auto-services__grid,
    body.service-final-page .ecom-why-cards,
    body.service-final-page .ecom-stats-grid,
    body.service-final-page .process-grid {
        grid-template-columns: 1fr;
    }

    body.service-final-page .tt-auto-card {
        min-height: 305px;
        padding: 27px 22px;
        border-radius: 24px;
    }

    body.service-final-page .client-story-card {
        width: 330px;
        min-width: 330px;
        max-width: 330px;
        flex-basis: 330px;
    }

    body.service-final-page .circular-platform-grid {
        grid-template-columns: 1fr;
    }

    body.service-final-page .ecom-stats-grid {
        gap: 36px;
    }

    body.service-final-page .bordered-feature__text {
        padding: 24px 20px;
    }

    body.service-final-page .process-grid {
        gap: 55px;
    }

    body.service-final-page .process-card__inner {
        max-width: 310px;
    }

    body.service-final-page .newsletter-form {
        min-width: 0;
    }
}

/* =========================================================
   SHARED SITE CONSISTENCY / OVERFLOW FIXES
   ========================================================= */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

main,
section,
footer,
.site-header,
.mobile-drawer {
    max-width: 100%;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

/* One reusable contact block on every page. */
.contact-section {
    overflow: hidden;
    background: radial-gradient(circle at 0% 45%, rgba(132, 0, 247, 0.52), transparent 58%),
    radial-gradient(circle at 100% 45%, rgba(132, 0, 247, 0.48), transparent 60%),
    linear-gradient(90deg, #050505 0%, #050505 50%, #050505 100%);
}

.contact-section .container {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    width: min(100% - 40px, var(--container));
}

.contact-form-card,
.contact-info,
.contact-form-grid,
.contact-form-grid .field,
.contact-form-grid .field--full {
    min-width: 0;
}

.contact-form-grid input,
.contact-form-grid textarea {
    width: 100%;
    min-width: 0;
}

.contact-form-card .btn {
    width: auto;
    min-width: 145px;
    max-width: 100%;
}

/* Shared testimonials always remain a horizontal moving marquee. */
.client-stories-section {
    contain: layout paint;
}

.client-stories-marquee {
    max-width: 100vw;
    overscroll-behavior-x: contain;
}

.client-stories-track {
    flex-wrap: nowrap !important;
}

/* Shared footer is identical on every page and cannot stretch the viewport. */
.site-footer,
.site-footer .container,
.footer-newsletter,
.footer-columns {
    min-width: 0;
}

.newsletter-form {
    min-width: 0;
}

.newsletter-form input {
    min-width: 0;
}

@media (max-width: 1024px) {
    .contact-section .container {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 768px) {
    .contact-section .container {
        width: min(100% - 30px, var(--container));
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card .btn {
        width: 100%;
    }

    .client-stories-container {
        width: calc(100% - 30px);
    }
}

/* =========================================================
   FINAL SHARED CONTACT SECTION
   Exact home-page contact design on every page.
   Keep this block at the very end of pages.css.
   ========================================================= */
body .contact-section {
    padding: 54px 0 58px;
    overflow: hidden;
    background: radial-gradient(circle at 0% 75%, rgba(132, 0, 247, 0.60), transparent 42%),
    radial-gradient(circle at 100% 25%, rgba(132, 0, 247, 0.52), transparent 40%),
    linear-gradient(90deg, #050505 0%, #050505 33%, #050505 57%, #050505 100%);
}

body .contact-section .container {
    width: min(calc(100% - 64px), 1360px);
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 48px;
    align-items: center;
}

body .contact-section .contact-form-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 17px;
    background: #252525;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.20);
}

body .contact-section .contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

body .contact-section .contact-form-grid .field,
body .contact-section .contact-form-grid .field--full {
    min-width: 0;
}

body .contact-section .contact-form-grid .field--full {
    grid-column: 1 / -1;
}

body .contact-section .contact-form-grid label,
body .contact-section .contact-form-card .field label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-muted);
    font-size: 0.67rem;
}

body .contact-section .contact-form-card .field input,
body .contact-section .contact-form-card .field textarea {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 10px 13px;
    border: 1px solid transparent;
    border-radius: 30px;
    background: #333333;
    color: #ffffff;
    font-size: 0.70rem;
    line-height: 1.45;
}

body .contact-section .contact-form-card .field input:focus,
body .contact-section .contact-form-card .field textarea:focus {
    border-color: rgba(132, 0, 247, 0.72);
}

body .contact-section .contact-form-card .field input::placeholder,
body .contact-section .contact-form-card .field textarea::placeholder {
    color: #a3a3a3;
    opacity: 1;
}

body .contact-section .contact-form-card .field textarea {
    min-height: 105px;
    resize: vertical;
    border-radius: 9px;
}

body .contact-section .contact-form-card .btn {
    width: auto;
    min-width: 145px;
    max-width: 100%;
    padding: 10px 20px;
    font-size: 0.70rem;
}

body .contact-section .contact-info {
    min-width: 0;
}

body .contact-section .contact-info h2 {
    max-width: 440px;
    margin-bottom: 22px;
    font-size: clamp(28px, 2.2vw, 36px);
    line-height: 1.05;
}

body .contact-section .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

body .contact-section .contact-info-item__icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
}

body .contact-section .contact-info-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body .contact-section .contact-info-item h4 {
    margin-bottom: 1px;
    color: var(--text-muted);
    font-size: 0.67rem;
    font-weight: 500;
    text-transform: none;
}

body .contact-section .contact-info-item p,
body .contact-section .contact-info-item a {
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
    body .contact-section .container {
        width: min(calc(100% - 44px), 1080px);
    }
}

@media (max-width: 991px) {
    body .contact-section .container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    body .contact-section .contact-info {
        max-width: 620px;
    }
}

@media (max-width: 680px) {
    body .contact-section {
        padding: 42px 0 46px;
    }

    body .contact-section .container {
        width: calc(100% - 28px);
    }

    body .contact-section .contact-form-card {
        padding: 20px 18px;
    }

    body .contact-section .contact-form-grid {
        grid-template-columns: 1fr;
    }

    body .contact-section .contact-form-grid .field--full {
        grid-column: auto;
    }

    body .contact-section .contact-form-card .btn {
        width: 100%;
    }

    body .contact-section .contact-info h2 {
        font-size: 29px;
    }
}

/* Form message styles */
.form-msg {
    margin-top: 12px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.form-msg.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-msg.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Field error styles */
.field-error {
    display: none;
    color: #d32f2f;
    font-size: 13px;
    margin-top: 4px;
}

.field.is-invalid .field-error {
    display: block;
}

.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select {
    border-color: #d32f2f;
}


/* =========================================
   Refund Policy Page
========================================= */

.refund-policy-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.refund-policy-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 80px;
}

/* Image */
.refund-policy-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.refund-policy-image {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
}

/* Content */
.refund-policy-content {
    min-width: 0;
}

.refund-policy-content .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 18px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #ff3366;
    background: rgba(255, 51, 102, 0.08);
}

.refund-policy-content h2 {
    margin: 0 0 20px;

    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.refund-policy-content h2 span {
    color: #ff3366;
}

.refund-policy-intro {
    max-width: 760px;
    margin: 0 0 30px;

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

    color: #667085;
}

/* Notice box */
.refund-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    margin-bottom: 28px;
    padding: 20px 22px;

    border: 1px solid rgba(255, 51, 102, 0.14);
    border-radius: 16px;

    background: #ffffff;
}

.refund-notice-icon {
    flex: 0 0 45px;

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

    width: 45px;
    height: 45px;

    border-radius: 12px;

    color: #fff;
    background: linear-gradient(135deg, #ff2f7d, #ff693e);
}

.refund-notice-icon svg {
    width: 22px;
    height: 22px;
}

.refund-notice strong {
    display: block;
    margin-bottom: 4px;

    font-size: 16px;
    color: #111827;
}

.refund-notice p {
    margin: 0;

    font-size: 14px;
    line-height: 1.6;

    color: #667085;
}

/* Policy points */
.refund-policy-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.refund-policy-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 16px 18px;

    border: 1px solid #eaecf0;
    border-radius: 14px;

    background: #fff;

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

.refund-policy-item:hover {
    transform: translateX(5px);

    border-color: rgba(255, 51, 102, 0.25);

    box-shadow: 0 12px 35px rgba(17, 24, 39, 0.06);
}

.refund-check {
    flex: 0 0 30px;

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

    width: 30px;
    height: 30px;

    margin-top: 1px;

    border-radius: 50%;

    color: #fff;
    background: linear-gradient(135deg, #ff2f7d, #ff693e);
}

.refund-check svg {
    width: 16px;
    height: 16px;
}

.refund-policy-item p {
    margin: 0;

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

    color: #5f6673;
}

.refund-policy-item p strong {
    font-weight: 700;
    color: #242936;
}

/* Last important policy */
.refund-policy-item-highlight {
    border-color: rgba(255, 51, 102, 0.2);

    /*background:*/
    /*        linear-gradient(*/
    /*                135deg,*/
    /*                rgba(255, 47, 125, 0.045),*/
    /*                rgba(255, 105, 62, 0.045)*/
    /*        );*/
}

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

@media (max-width: 1199px) {
    .refund-policy-wrapper {
        gap: 50px;
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    }

    .refund-policy-image {
        max-width: 520px;
    }
}

@media (max-width: 991px) {
    .refund-policy-section {
        padding: 75px 0;
    }

    .refund-policy-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .refund-policy-visual {
        order: 1;
    }

    .refund-policy-content {
        order: 2;
    }

    .refund-policy-image {
        max-width: 570px;
    }

    .refund-policy-content h2,
    .refund-policy-intro {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .refund-policy-section {
        padding: 55px 0;
    }

    .refund-policy-wrapper {
        gap: 30px;
    }

    .refund-policy-content h2 {
        margin-bottom: 15px;

        font-size: 36px;
        letter-spacing: -0.7px;
    }

    .refund-policy-intro {
        margin-bottom: 24px;

        font-size: 15px;
        line-height: 1.7;
    }

    .refund-notice {
        padding: 16px;
    }

    .refund-policy-item {
        gap: 12px;
        padding: 14px;
    }

    .refund-policy-item p {
        font-size: 14px;
        line-height: 1.7;
    }

    .refund-check {
        flex-basis: 27px;

        width: 27px;
        height: 27px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 28px;
}

.blog-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;

    /* important */
    display: flex;
    flex-direction: column;
    height: auto;
}

.blog-card__img {
    position: relative;
    display: block;

    /* fixed image area */
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card__meta {
    position: absolute;
    left: 20px;
    bottom: 15px;

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

    z-index: 2;
}

.blog-category,
.blog-date {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    line-height: 1;
}

.blog-category {
    background: #8b00ff;
    color: #fff;
}

.blog-date {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
}

.blog-card__body {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    position: relative !important;
    height: auto !important;
    min-height: 150px;

    padding: 22px 22px 24px;
    background: #111;
}

.blog-card__body h3 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 18px;
}

.blog-readmore {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.blog-readmore:hover {
    color: #c45cff;
    background: white;
    border: 2px solid;
}

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

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card__img {
        height: 240px;
    }
}

.ecom-why-layout--full {
    display: block;
    width: 100%;
}

.ecom-why-layout--full .ecom-why-cards {
    width: 100%;
    max-width: 100%;
}

.ecom-why-layout--full .ecom-why-cards {
    width: 100%;
    max-width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ecom-why-layout--full .ecom-why-card {
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .ecom-why-layout--full .ecom-why-cards {
        grid-template-columns: 1fr;
    }
}