:root {
    --primary-color: #d631c6;
    --arrow: url(https://adultseohub.com/wp-content/themes/twentytwentyone-child/images/home-new/arrow.svg);
    --arrow-w: url(https://adultseohub.com/wp-content/themes/twentytwentyone-child/images/home-new/arrow-w.svg);
}

body {
    background-color: #000000;
    color: #FFF !important;
    overflow-x: hidden;
}

.header {
    position: sticky !important;
    background-color: #260B1B !important;
    top: 0;
}

.button {
    border-radius: 10px !important;
    padding: 16px 30px;
    corner-shape: squircle;
}

.button-primary {
    background-color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.pointers {
    margin-top: -50px;
}

.pointers .tick-list {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px !important;
    background: #131110;
    border-radius: 15px;
}

.tick-list li::before {
    content: '';
    height: 24px;
    width: 24px;
    background: url(https://adultseohub.com/wp-content/themes/twentytwentyone-child/images/home-new/tick.webp);
    background-position: center !important;
    background-repeat: no-repeat;
    display: block;
    background-size: contain;
    flex-shrink: 0;
}

.arrow-list li::before {
    background: var(--arrow);
}

.arrow-list.w li::before {
    background: var(--arrow-w);
}

.arrow-list li {
    align-items: start;
    margin-top: 2px;
}

.tick-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-card {
    padding: 30px;
    border: 1px solid #595959;
    border-radius: 20px;
    height: 100%;
    will-change: box-shadow;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 0px 14px 0px #D631C680;
}

.counter-wrap {
    padding: 30px;
    background: #000;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    height: 100%;
}

/* ===== Client Synced Sliders ===== */
.client-content-slider,
.client-img-slider {
    overflow: hidden;
}

/* Slide content transition — slight upward drift on enter */
.client-content-slider .swiper-slide {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.client-content-slider .swiper-slide-active {
    opacity: 1;
    transform: translateY(0);
}

.client-img-slider .swiper-slide img {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

/* Pagination dots */
.client-pagination {
    position: static;
    margin-top: 32px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.client-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
    cursor: pointer;
}

.client-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.25);
    width: 24px;
    border-radius: 6px;
}

/* ===== Special Slider ===== */
.specialize-sec {
    overflow: hidden;
}

.special-slider {
    overflow: visible;
    padding: 38px 5px;
    /* vertical room for the stagger offsets */
}

.special-slider .swiper-wrapper {
    align-items: center;
    /* baseline for stagger to offset from */
}

/* ── Odd / Even stagger ── */
.special-slider .swiper-slide:nth-child(odd) {
    transform: translateY(-30px);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.special-slider .swiper-slide:nth-child(even) {
    transform: translateY(30px);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.special-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    display: block;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    transition:
        transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.45s ease;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.special-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Permanent bottom gradient for title legibility */
.special-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.90) 0%,
            rgba(0, 0, 0, 0.45) 38%,
            rgba(0, 0, 0, 0.08) 60%,
            transparent 100%);
    z-index: 1;
    transition: background 0.5s ease;
}

/* Content block pinned to bottom of card */
.special-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
}

.special-content h3 {
    color: #fff;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    transition: margin-bottom 0.4s ease;
}

/* Description hidden by default — slides up on hover */
.special-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition:
        max-height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s ease 0.08s,
        transform 0.45s ease 0.08s;
}

/* ── Hover state ── */
.special-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow:
        0 0 0 1.5px rgba(214, 49, 198, 0.5),
        0 16px 48px rgba(214, 49, 198, 0.28),
        0 8px 24px rgba(0, 0, 0, 0.55);
}

.special-card:hover img {
    transform: scale(1.09);
}

.special-card:hover::before {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.97) 0%,
            rgba(0, 0, 0, 0.78) 45%,
            rgba(0, 0, 0, 0.35) 72%,
            rgba(0, 0, 0, 0.05) 100%);
}

.special-card:hover .special-content h3 {
    margin-bottom: 10px;
}

.special-card:hover .special-content p {
    max-height: 160px;
    opacity: 1;
    transform: translateY(0);
}

/* ── Active / press state ── */
.special-card:active {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 0 0 2px rgba(214, 49, 198, 0.7),
        0 8px 24px rgba(214, 49, 198, 0.22),
        0 4px 12px rgba(0, 0, 0, 0.5);
    transition-duration: 0.1s;
}

/* ── Swiper active slide ── */
.swiper-slide-active .special-card {
    box-shadow:
        0 0 0 1.5px rgba(214, 49, 198, 0.35),
        0 10px 36px rgba(214, 49, 198, 0.18),
        0 6px 20px rgba(0, 0, 0, 0.5);
}

/* ── Checklist Cards — Figma exact ── */
.checklist-sec {
    overflow: hidden;
}

.checklist-slider .swiper-wrapper {
    align-items: flex-start;
}

/* Even slides shift down to create the up/down stagger */
.checklist-slider .swiper-slide:nth-child(even) .chk-card {
    margin-top: 60px;
}

.chk-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 360px;
}

/* Full-card background image */
.chk-card__img {
    position: absolute;
    inset: 0;
}

.chk-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark gradient over entire image — heavier at bottom where text sits */
.chk-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.88) 100%);
}

/* Text block — always visible, pinned to bottom */
.chk-card__body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 22px 20px;
    z-index: 1;
}

.indus-wrap {
    background-color: #0C0C0C;
    border-radius: 20px;
}

/* ===== Industries Section Navigation & Count ===== */
.swiper-navigation {
    gap: 10px;
}

.indus-prev,
.indus-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e044d0 0%, #9010c8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 4px 16px rgba(214, 49, 198, 0.4);
    user-select: none;
}

.indus-prev:hover,
.indus-next:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 26px rgba(214, 49, 198, 0.65);
}

.indus-prev:active,
.indus-next:active {
    transform: scale(0.92);
    transition-duration: 0.08s;
}

.indus-prev.swiper-button-disabled,
.indus-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.slider-count {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1;
    letter-spacing: 0.01em;
}

.slider-count .current {
    color: var(--primary-color);
    font-size: 24px;
}

/* ===== Process Section ===== */
.process-sec {
    overflow: hidden;
}

/* Mobile-first: simple stacked flow */
.process-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.process-wrap>img {
    width: min(280px, 70%);
    flex-shrink: 0;
}

.process-card-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
}

.process-card {
    position: relative;
}

.process-card .arrow {
    display: none;
}

.process-card .content {
    height: 100%;
}

/* Faq */

.new-faq {
    border-top: 1px solid #bedbe040 !important;
}

.new-faq .accordion-button,
.new-faq .accordion-item {
    background: transparent !important;
    color: var(--white-color) !important;
}

.new-faq .accordion-button {
    gap: 15px;
}

.new-faq .accordion-button::after {
    filter: brightness(0) invert(1);
}

.new-faq .accordion-item {
    padding: 36px 0px !important;
    border-bottom: 1px solid #bedbe040 !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

/* Tablet: 2-column card grid, circle above */
@media (min-width: 768px) {
    .process-wrap>img {
        width: min(340px, 55%);
    }

    .process-card-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* Desktop: full radial layout with arrows */
@media (min-width: 1200px) {
    .process-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: start;
        min-height: 800px;
        gap: 0;
    }

    .process-wrap>img {
        width: 45%;
        position: relative;
        z-index: 4;
        flex-shrink: 0;
    }

    .process-card-wrap {
        position: absolute;
        inset: 0;
        display: block;
    }

    .process-card {
        position: absolute;
        width: 20%;
    }

    /* Audit — top left, aligned with upper petal area */
    .process-card:nth-child(1) {
        top: 10%;
        left: 0;
    }

    /* Develop — lower left, clear of Audit */
    .process-card:nth-child(2) {
    bottom: 0%;
    left: 10%;
}

    /* Upgrade — bottom center, below circle */
    .process-card:nth-child(3) {
        bottom: -18%;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Link — lower right, mirror of Develop */
    .process-card:nth-child(4) {
        bottom: 6%;
        right: 6%;
    }

    /* Track — top right, mirror of Audit */
    .process-card:nth-child(5) {
        top: 10%;
        right: 0;
    }

    .process-card .arrow {
        display: block;
        position: absolute;
        pointer-events: none;
        z-index: 3;
    }

    /* Audit: extends right-down toward top-left petal */
    .process-card:nth-child(1) .arrow {
        right: -40%;
        bottom: 0;
    }

    /* Develop: extends up-right toward bottom-left petal */
    .process-card:nth-child(2) .arrow {
        right: -60px;
        top: -75px;
    }

    /* Upgrade: extends straight up toward bottom petal */
    .process-card:nth-child(3) .arrow {
        top: -85px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Link: extends up-left toward bottom-right petal */
    .process-card:nth-child(4) .arrow {
        left: -47%;
        top: -8%;
    }

    /* Track: extends left-down toward top-right petal */
    .process-card:nth-child(5) .arrow {
        left: -115px;
        bottom: 0;
    }
}

/* Responsive stagger */
@media (min-width: 1200px) {
    .spacer-y {
        padding-block: 150px;
    }
}
@media (max-width: 1199px) {
    .checklist-slider .swiper-slide:nth-child(even) .chk-card {
        margin-top: 44px;
    }

    .chk-card {
        height: 320px;
    }
}

@media (max-width: 991px) {
    .checklist-slider .swiper-slide:nth-child(even) .chk-card {
        margin-top: 32px;
    }

    .chk-card {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .checklist-slider .swiper-slide:nth-child(even) .chk-card {
        margin-top: 0;
    }

    .chk-card {
        height: 260px;
    }
}