/* ===== Service Banner ===== */
.serviceBanner {
    padding: 130px 0 57px;
    background: var(--banner-gradient);
    position: relative;
    overflow: hidden;
}

/* Dot texture background */
.serviceBanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(176, 190, 197, 0.4) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.12;
    z-index: 0;
}

 .experts {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 50px;
    max-width: 273px;
    width: 100%;
}
.experts-img {
    position: relative;
    width: 79px;
    height: 79px;
    border-radius: 50%;
    /* overflow: hidden; */
    display: inline-block;
    vertical-align: middle;
    /* border: 2px solid #FFFFFF; */

}
 .experts .experts-img:nth-of-type(2),  .experts .experts-img:nth-of-type(3){
    margin-left: -12px;
 }
 .experts .experts-img:nth-of-type(1){
    z-index: 3;
  }
  .experts .experts-img:nth-of-type(2){
    z-index: 2;
  }
  .experts .experts-img:nth-of-type(3){
    z-index: 1;
  }
.bannerCenter {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}
.experts-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}
.experts-img::after {
    content: '';
    background-image: url(../../../new-land/images/expert-badge.svg);
    position: absolute;
    width: 22px;
    height: 24px;
    top: 52px;
    left: 62px;
}
.writer-text {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #E9ECFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 0;
    margin-left: -12px;
}
.writer-text span {
    font-weight: 800;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #685ADB;
}

/* ===== Floating Emojis ===== */
.floating-emojis {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-emoji {
    position: absolute;
    font-size: 18px;
    opacity: 0.07;
    animation: float1 8s ease-in-out infinite;
}

.floating-emoji:nth-child(1) {
    top: 35%;
    left: 5%;
    animation-delay: 0s;
}

.floating-emoji:nth-child(2) {
    top: 78%;
    left: 8%;
    animation: float2 7s ease-in-out infinite;
    animation-delay: 1.5s;
    font-size: 16px;
    opacity: 0.06;
}

.floating-emoji:nth-child(3) {
    top: 85%;
    left: 55%;
    animation-delay: 3s;
    font-size: 14px;
    opacity: 0.05;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(5px, -10px) rotate(1.5deg);
    }
    66% {
        transform: translate(-3px, -5px) rotate(-1deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, -6px);
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trustBadge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #F4F0FF;
    border: 1px solid #D7D4E9;
    border-radius: 100px;
    padding: 9px 15px;
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    color: #231F20;
    margin: 0 auto 35px;
    position: relative;
    overflow: hidden;
    max-width: max-content;
    width: 100%;
}

.trustBadge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, .5), transparent);
    animation: eyebrowShimmer 2.5s infinite;
}
.trustBadge span {
    color: #685ADB;
}
@keyframes eyebrowShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.trustBadge-human {
    font-weight: var(--fw-medium);
    color: #5B50E8;
}

.trustBadge-sep {
    color: #B8B2E8;
    margin: 0 2px;
}

.trustBadge-ai {
    color: #3D3869;
}

.trustBadge-ai span {
    color: #5B50E8;
    font-weight: var(--fw-medium);
}

.serviceBanner h1 {
    font-family: var(--font-heading);
    font-size: var(--fs-6xl);
    font-weight: var(--fw-extrabold);
    line-height: var(--lh-heading);
    color: var(--color-heading);
    margin-bottom: 15px;
    max-width: 842px;
    width: 100%;
    margin: 0 auto 25px;
    text-align: center;
}

.serviceBanner h1 span {
    color: var(--color-primary);
font-weight: var(--fw-extrabold);
    position: relative;
    z-index: 1;
}
.serviceBanner h1 .gradient-text::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -6px;
    right: -6px;
    height: 13px;
    background: var(--color-span-highlight);
    border-radius: 3px;
    z-index: -1;
}
p.banner-text{
    text-align: center;
    max-width: 542px;
    width: 100%;
    margin: 0 auto 50px; 
}
/* ===== Typing Effect ===== */
.typed-wrap {
    display: inline;
    color: var(--color-primary);
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--color-primary);
    margin-left: 2px;
    vertical-align: middle;
    animation: cursorBlink 0.7s step-end infinite;
}

@keyframes cursorBlink {
    50% {
        opacity: 0;
    }
}

.bannerCenter .banner-text {
    font-family: var(--font-primary);
    font-size: var(--fs-md);
    font-weight: var(--fw-regular);
    line-height: var(--lh-relaxed);
    color: var(--color-text);
    max-width: 580px;
    margin: 0 auto;
}

/* ===== Trust Divider ===== */
.trust-divider {
    display: none;
}

/* ===== Trust Pills ===== */
.trust-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: linear-gradient(90deg, #EFE8FF 0%, #FBF9FF 50%, #F3EEFF 100%);
    border: 1px solid #E4DFFE;
    border-radius: 100px;
    padding: 20px 25px;
    margin: 50px auto 0;
    max-width: max-content;
    width: 100%;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    border-right: 1px solid #E4DFFE;
    white-space: nowrap;
}

.trust-pill:first-child {
    padding-left: 0;
}

.trust-pill:last-child {
    padding-right: 0;
    border-right: none;
}

.trust-pill .pill-icon {
    font-size: 14px;
    line-height: 1;
}

.trust-pill .pill-text {
    font-family: var(--font-primary);
    font-size: var(--fs-xs);
    font-weight: var(--fw-regular);
    color: var(--color-heading);
}

/* ===== Banner Trust Row ===== */
.banner-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    background: var(--color-white);
    border: 1px solid #E8E4FF;
    border-radius: 50px;
    padding: 11px 24px;
    margin-top: 24px;
    box-shadow: 0 2px 12px rgba(108, 99, 255, 0.06);
}

.btr-item {
    font-family: var(--font-primary);
    font-size: var(--fs-xs);
    font-weight: var(--fw-regular);
    color: var(--color-heading);
    white-space: nowrap;
}

.btr-sep {
    color: #D0CAFF;
    font-size: 14px;
}



/* ===== Trust Bar ===== */
.bannerTrustbar {
    background: linear-gradient(135deg, #F8F6FF 0%, #FFFFFF 50%, #F3F0FF 100%);
    padding: 20px 0;
    border-top: 1px solid #EBE8F4;
    border-bottom: 1px solid #EBE8F4;
}

.trustbarInner {
    display: flex;
    align-items: stretch;
    max-width: 985px;
    justify-content: space-between;
    margin: 0 auto;
    gap: 12px;
}

.trustbarItem {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    padding: 14px 20px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #EBE8F4;
    box-shadow: 0 2px 10px rgba(104, 90, 219, 0.06);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.3s;
    flex: 1;
}

.trustbarItem:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(104, 90, 219, 0.14);
    border-color: #C7BFFF;
}

.trustbarItem::after {
    display: none;
}

.trustbarItem:last-child {
    padding-right: 20px;
}

.trustbarIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #685ADB 0%, #8578E6 100%);
    border-radius: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(104, 90, 219, 0.28);
}

.trustbarText {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trustbarText strong {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: var(--fw-bold);
    color: #1F2A2E;
    line-height: 1.2;
}

.trustbarText span {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: var(--fw-regular);
    color: #7B7A8D;
    line-height: 1.2;
}

/* ===== Responsive ===== */
@media (max-width: 575px) {
    .serviceBanner {
        padding: 130px 0 50px;
    }

    .serviceBanner h1 {
        font-size: var(--fs-3xl);
    }

    .banner-trust-row {
        border-radius: 16px;
        padding: 12px 16px;
    }

    .btr-sep {
        display: none;
    }

    .trust-pills {
        border-radius: 16px;
        padding: 10px 12px;
        gap: 4px;
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-pill {
        padding: 4px 8px;
        border-right: none;
        border-bottom: 1px solid #E0DBF5;
        width: 100%;
    }

    .trust-pill:last-child {
        border-bottom: none;
    }

    /* ===== Trust Bar Scroll ===== */
    .bannerTrustbar {
        padding: 16px 0;
    }

    .trustbarInner {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 10px;
        padding: 4px 20px 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .trustbarInner::-webkit-scrollbar {
        display: none;
    }

    .trustbarItem {
        flex: 0 0 170px;
        scroll-snap-align: start;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .trustbarItem:last-child {
        padding-right: 14px;
    }

    .trustbarIcon {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .trustbarText strong {
        font-size: 14px;
    }

    .trustbarText span {
        font-size: 12px;
    }
}
