html,
body {
    overflow-x: hidden;
}

.header-part .header-links {
    gap: 64px
}

/* BANNER SECTION */
.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    height: 785px;
    background-image: url(./../images/home2/background-lines.svg);
    z-index: -1;
    background-position: center;
    background-size: cover;
}

.banner-section .banner-content {
    padding-top: 266px;
    max-width: 846px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 150px;
}

.banner-section .banner-content h1 {
    font-family: 'Helvetica Now Display';
    font-weight: 400;
    font-size: 67.51px;
    line-height: 100px;
    letter-spacing: -3%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner-section .banner-content h1 .highlight {
    padding: 12px 30px;
    background-color: #ECEEFD;
    border: 1.35px dashed #B1B8ED;
    margin-left: 24px;
    position: relative;
}

.banner-section .banner-content h1 .highlight::after,
.banner-section .banner-content h1 .highlight::before,
.banner-section .banner-content h1 span .gradient-text::after,
.banner-section .banner-content h1 span .gradient-text::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: -5px;
    left: -5px;
    background-color: #7583F2;
    border-radius: 50%;
}

.banner-section .banner-content h1 .highlight::before {
    position: absolute;
    bottom: -5px;
    right: -5px;
    top: unset;
    left: unset;
}

.banner-section .banner-content h1 span .gradient-text {
    background: linear-gradient(94.88deg, #7282F2 36.59%, #F8FAFF 139.4%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Helvetica Now Display';
    font-weight: 500;
    font-size: 67.51px;
    position: relative;
}

.banner-section .banner-content h1 span .gradient-text::after {
    top: -17px;
    right: -35px;
    left: unset;
}

.banner-section .banner-content h1 span .gradient-text::before {
    top: unset;
    right: unset;
    left: -35px;
    bottom: -17px;
}

.banner-section .banner-content p {
    font-family: 'Inter';
    font-size: 24.3px;
    letter-spacing: -5%;
    text-align: center;
    color: var(--blue-text);
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.banner-section .banner-content .button-part {
    margin-top: 28px;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.banner-section .floating-box {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 22px 24px;
}

.banner-section .floating-box .box-header {
    gap: 10px;
}

.banner-section .floating-box .box-header .title {
    min-width: 0;
    flex: 1 1 auto;
}

.banner-section .floating-box .box-header .badge-count,
.banner-section .floating-box .box-header .status-pill {
    flex-shrink: 0;
    white-space: nowrap;
}

.banner-section .floating-box .left-content {
    min-width: 0;
    flex: 1 1 auto;
    padding-right: 10px;
}

.banner-section .floating-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(180deg, #E3A8E7 0%, #7182F2 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.banner-section .left-top-box {
    max-width: 300px;
    position: absolute;
    top: 254px;
    left: -38%;
    width: 100%;
    z-index: 1;
}

.banner-section .floating-box .title-line {
    width: 2px;
    height: 18px;
    border-radius: 5px;
    background: linear-gradient(180deg, #b46eff, #5f7cff);
}

.banner-section .floating-box .title h4 {
    font-weight: 600;
    font-size: 12px;
    color: #6B7596;
    margin: 0;
    line-height: 12px;
}

/* Pills */

.banner-section .floating-box .badge-count {
    background: #ECEEFD;
    color: #5E72FF;
    padding: 2px 6px;
    border-radius: 20px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 10px;

}

.banner-section .floating-box .status-pill {
    background: #e9f8ef;
    color: #35a36b;
    padding: 2px 6px;
    border-radius: 20px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 10px;
}

/* Signal List */

.banner-section .floating-box .signal-item {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.banner-section .floating-box .signal-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 12px;
    line-height: 1.35;
    color: #000000;
}

.banner-section .floating-box .signal-sub {
    margin-left: 20px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 10px;
}

.banner-section .floating-box .critical {
    color: #e44b5f;
}

.banner-section .floating-box .warning {
    color: #d39a2f;
}

.banner-section .floating-box .success {
    color: #45b38d;
}

.banner-section .floating-box .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.banner-section .floating-box .red {
    background: #ef4668;
}

.banner-section .floating-box .yellow {
    background: #e3b33b;
}

.banner-section .floating-box .green {
    background: #44d18b;
}

.banner-section .floating-box .value-pill {
    min-width: 40px;
    text-align: center;
    border-radius: 25px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 10px;
    flex-shrink: 0;
    align-self: center;
}

.banner-section .floating-box .red-pill {
    background: #fde7ea;
    color: #e74c60;
}

.banner-section .floating-box .yellow-pill {
    background: #fdf2dc;
    color: #d89b28;
}

.banner-section .floating-box .green-pill {
    background: #e3f5ef;
    color: #42b48a;
}

/* KPI */

.banner-section .left-bottom-box {
    max-width: 290px;
    top: 575px;
    position: absolute;
    left: -34%;
    width: 100%;
    z-index: 1;
    background-color: #fff;
    overflow: visible;
    /* Important */
    isolation: isolate;
    /* Creates its own stacking context */
}

.banner-section .left-bottom-box>* {
    position: relative;
    z-index: 2;
}

.banner-section .banner-content::before {
    content: "";
    position: absolute;
    width: 373px;
    height: 217px;
    bottom: 10%;
    left: -214px;
    border-radius: 50%;
    background: #7282F299;
    filter: blur(100px);
    z-index: -1;
}

.banner-section .banner-content::after {
    content: "";
    position: absolute;
    width: 227px;
    height: 132px;
    bottom: 8%;
    right: -214px;
    border-radius: 50%;
    background: #7282F299;
    filter: blur(70px);
    z-index: -1;
}

.banner-section .left-bottom-box .score-circle {
    width: 74px;
    height: 74px;
    margin: auto;
    border-radius: 50%;
    background:
        conic-gradient(#6772f5 0deg 260deg, #ba7bf5 260deg 330deg, #ececff 330deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-section .left-bottom-box .score-inner {
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 58px;
    width: 58px;
}

.banner-section .left-bottom-box .score-inner h1 {
    margin: 0;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}

.banner-section .left-bottom-box .score-inner span {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 8px;
    color: #656463;
}

.banner-section .left-bottom-box .metric strong {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 12px;
}

.banner-section .left-bottom-box .metric span.green-text {
    color: #4DAA8D;
}

.banner-section .left-bottom-box .metric span {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 10px;
}

.banner-section .left-bottom-box .progress {
    margin-top: 4px;
    height: 4px;
    border-radius: 10px;
    background: #EAECFC;
}

.banner-section .left-bottom-box .progress-bar {
    border-radius: 10px;
}

.banner-section .left-bottom-box .purple-progress {
    background: #9b7cf3;
}

.banner-section .left-bottom-box .footer-note {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Inter;
    font-weight: 500;
    font-size: 10px;
    color: #8F8F8F;
}

.banner-section .left-bottom-box .footer-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(66.67% 66.67% at 66.67% 33.33%, #6FFCA5 0%, #4DAA8D 100%);
}

.banner-section .left-bottom-box hr {
    margin-bottom: 8px;
}


.banner-section .right-top-box {
    max-width: 340px;
    top: 208px;
    right: -46%;
    position: absolute;
    z-index: 1;
}

.banner-section .right-top-box .title {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 1px;
}

.banner-section .right-top-box .title img {
    width: 18px;
    margin-right: 8px;
}

.banner-section .right-top-box .title h4 {
    font-size: 12px;
    color: #14204B;
    font-weight: 700;
    line-height: 1.3;
}

.banner-section .right-top-box .ai-pill {
    background: #F8ECF8;
    color: #9857B3;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    line-height: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.banner-section .right-top-box .insight-text {
    margin: 12px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #69728E;
}

.banner-section .right-top-box .insight-value {
    font-size: 20px;
    font-weight: 700;
    color: #10214C;
}

.banner-section .right-top-box .insight-value span {
    font-size: 12px;
    color: #22A96B;
    font-weight: 600;
    margin-left: 8px;
}

.banner-section .right-bottom-box {
    width: 340px;
    position: absolute;
    top: 560px;
    right: -44%;
    z-index: 1;
}

.banner-section .right-bottom-box .risk-item .d-flex > div:first-child {
    min-width: 0;
    flex: 1 1 auto;
    padding-right: 10px;
}

.banner-section .right-bottom-box .badge-count {
    background-color: #C3364C26;
    color: #C3364C;
}

.banner-section .right-bottom-box .risk-item {
    padding: 10px 0;
    border-bottom: 1px solid #E5E5E5;
}

.banner-section .right-bottom-box .risk-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #151515;
    font-family: 'Inter';
}

.banner-section .right-bottom-box .risk-subtitle {
    margin-left: 18px;
    margin-top: 3px;
    color: #8B8B8B;
    font-size: 10px;
}

.banner-section .right-bottom-box .risk-status {
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 600;
    height: fit-content;
    line-height: 10px;
    font-family: 'Inter';
    flex-shrink: 0;
    white-space: nowrap;
    align-self: center;
}

.banner-section .danger-pill {
    background: #FCEAEC;
    color: #D63D54;
}

.banner-section .watch-pill {
    background: #FFF3E0;
    color: #D59A28;
}

.banner-section .risk-footer {
    margin-top: 14px;
    font-size: 13px;
}

.banner-section .risk-footer span {
    color: #8D8D8D;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
}

.banner-section .risk-footer a {
    color: #5E72FF;
    text-decoration: underline;
    font-size: 10px;
}

.banner-section .banner-content .bottom-btn {
    margin-top: 300px;
    background-color: var(--light-pink);
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: none;
    z-index: 5;
    position: relative;
}

.banner-section .banner-content .bottom-btn .gredient-part {
    height: 34px;
    width: 22px;
    border-radius: 15px;
    background: linear-gradient(96.55deg, #DB97ED -2.66%, #7984F1 61.74%);
    box-shadow: 0px 21px 46.1px 0px #7040C480;
}

.banner-section .banner-content .bottom-btn .gredient-part .dot {
    background: var(--white);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin-bottom: 6px;
}

.banner-section::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0px;
    right: 0px;
    top: 604px;
    height: 600px;
    background-image: url(./../images/home/hero-bottom-design.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    background-position: center center;
}

/* INTRODUCTION SECTION  */

.introduction-section .image-box {
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

introduction-section .intro-card {
    padding: 24px 20px 40px;
    gap: 28px;
    display: flex;
    flex-direction: column;
}

.introduction-section .intro-card h6 {
    min-height: 50px;
    text-align: left;
    margin-top: 0;
    font-size: 22px;
}

.introduction-section .intro-card p {
    text-align: left;
    max-width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.introduction-section .intro-card .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0;
}

.intro-mobile-slider {
    display: none;
    overflow: hidden;
}

.intro-mobile-slider .owl-stage-outer {
    overflow: hidden;
}

/* SOLUTION SECTION  */

.solution-section {
    overflow: hidden;
}

.solution-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
}

.solution-image img {
    width: 100%;
    max-width: 100%;
    display: block;
}

.help-content {
    max-width: 520px;
    padding: 70px 40px;
}

.help-content .badge {
    margin-bottom: 18px;
    width: fit-content;
}

.help-content .main-heading {
    margin-bottom: 42px;
}

.timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 18px;
    /* pehle 24px tha */
    position: relative;
    padding-bottom: 42px;
}

/* Mobile Solution Accordion */

.solution-accordion {
    display: none;
}



/* Vertical line */
.timeline-item::after {
    content: "";
    position: absolute;
    left: 19px;
    /* 40px circle ka center */
    top: 40px;
    /* circle ke niche se start */
    width: 2px;
    height: calc(100% - 40px);
    background: #6E7DF5;
}

/* Remove line after last item */
.timeline-item:last-child::after {
    content: none;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    z-index: 2;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, .12),
        0 0 25px rgba(110, 125, 245, .15);
}

.timeline-dot::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #6E7DF5;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.timeline-dot.purple::before {
    background: #C889FF;
}

.timeline-label {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .08em;
    color: #6E7DF5;
    font-family: 'Helvetica Now Display';
}

.purple-text {
    color: #C889FF;
}

.timeline-content {
    flex: 1;
    width: 100%;
}

.timeline-content h6 {
    font-size: 22px;
    font-weight: 500;
    max-width: 100%;
    letter-spacing: -3%;
    font-family: "Helvetica Now Display";
}

.timeline-content p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -5%;
    color: var(--blue-text);
    margin: 0;
    max-width: 100%;
}


/* TRANSFORMING SECTION  */

.transforming-section::before {
    background: radial-gradient(ellipse at center,
            rgba(114, 130, 242, 0.12),
            transparent);
    filter: blur(100px);
}

.transforming-section .Transforming-Workflows-Section-top {
    padding: 50px 0;
}

.transforming-section .Transforming-card {
    padding: 48px 32px 40px;
    height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    position: relative;
    z-index: 2;

    background: linear-gradient(180deg,
            transparent 50%,
            #7282F2 0%,
            #FFFFFF 100%);

    background-size: 100% 200%;
    background-position: top;
    transition: background-position .6s ease;
}

.transforming-section .Transforming-card:hover {
    background-position: bottom;
}

.transforming-section .Transforming-card .image-box {
    max-width: 100%;
    height: 226px;
    display: flex;
    transition: transform 0.35s ease;
}

.transforming-section .Transforming-card:hover .image-box {
    transform: translateY(-8px);
}

.transforming-section .Transforming-card .image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.transforming-section .Transforming-card:hover .image-box img {
    transform: scale(1.03);
}

.transforming-section .Transforming-card .Transforming-heading {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 12px;
    transition: color 0.55s ease;
    margin-top: 20px;
}

.transforming-section .Transforming-card .Transforming-secondary-text {
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: -0.02em;
    transition: color 0.35s ease;
}

.transforming-mobile-slider {
    display: none;
    overflow: hidden;
}

.transforming-mobile-slider .owl-stage-outer {
    overflow: visible;
}

/* FAIR PRICING SECTION  */


.pricing-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 28px;
    border-radius: 50px;
    background: #F1F0FF;
    font-size: 16px;
    font-weight: bold;
    color: #111;
    width: max-content;
    margin-bottom: 32px;
    font-family: 'Helvetica Now Display';
}

/* DESCRIPTION */

.pricing-description {
    font-family: 'Inter';
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: -1%;
}

/* PRICE ROW */

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #E7E7E7;
    border-bottom: 1px solid #E7E7E7;
    padding-top: 18px;
    padding-bottom: 18px;
    margin-bottom: 22px;
}


.pricing-row>span {
    font-family: 'Helvetica Now Display';
    font-weight: 500;
    font-style: Medium;
    font-size: 15.24px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: -1%;
    color: #1E1E1E;
}

.price-box {
    display: flex;
    align-items: flex-end;
    gap: 4px;

}

.price {
    color: #7282F2;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.month {
    color: #777;
    font-size: 16px;
}

/* ENTERPRISE */

.enterprise-row {
    align-items: center;
}

.enterprise-row span:last-child {
    color: #777;
    font-size: 15px;

}

/* FEATURE BOX */

.feature-box {
    background: #F2F3FF;
    border-radius: 18px;
    padding: 12px;
    margin-bottom: 28px;
    flex: 1;

}

.feature-box h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
}

.feature-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-box ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Inter';
}

.feature-box ul li:last-child {
    margin-bottom: 0;
}

.feature-box ul li img {
    width: 16px;
    height: 16px;
    min-width: 16px;
    max-width: 16px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.feature-box ul li span {
    flex: 1;
}

/* BUTTON */

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #7282F2;
    border-radius: 14px;
    padding: 8px 9px 8px 24px;
    color: #000000;
    text-decoration: none;
    transition: .35s ease;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -5%;
    text-transform: capitalize;
    transition: all 0.3s ease;
    height: 48px;
}

.pricing-card:hover .pricing-btn,
.fair-pricing-slider .owl-item.active .pricing-card .pricing-btn {
    border: 1px solid #fff;
    background: linear-gradient(90deg, #0D1847, #7D5DAE);
    color: #fff;
}

.pricing-card .pricing-btn .btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: linear-gradient(96.04deg, #051336 26.04%, #E5A9E7 139.46%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .35s;
}

.pricing-card:hover .pricing-btn .btn-icon,
.fair-pricing-slider .owl-item.active .pricing-card .pricing-btn .btn-icon {
    background: #fff;
}

.pricing-card .pricing-btn .btn-icon img {
    width: 10px;
    height: auto;
    object-fit: contain;
    display: block;
}

.pricing-card:hover .pricing-btn .btn-icon img,
.fair-pricing-slider .owl-item.active .pricing-card .pricing-btn .btn-icon img {
    filter: invert(1)
}

/* SCHEDULE BUTTON */

.schedule-btn-wrapper {
    display: flex;
    justify-content: center;
    padding: 48px 0 70px;
}

.schedule-btn {
    min-width: 175px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px 0 24px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #0D1847, #7D5DAE);
    box-shadow:
        0 20px 40px rgba(114, 130, 242, .28);
}

.schedule-btn .btn-icon {
    background: #fff;
    color: #111;
}

/*FAIR PRICING MOBILE SLIDER */

.fair-pricing-slider {
    display: none;
}

.fair-pricing-slider .owl-stage-outer {
    overflow: visible;
}

.fair-pricing-slider .owl-stage {
    display: flex;
}

.fair-pricing-slider .owl-item {
    padding: 0 6px;
}

.fair-pricing-slider .pricing-card {
    transition: .4s;
}

.fair-pricing-slider .pricing-card.active {
    transform: translateY(-4px);
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .35s ease;
    box-shadow: 2 10px 35px rgba(114, 130, 242, .08);
    margin-top: 20px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.pricing-card-part,
.fair-pricing-slider {
    position: relative;
    background-color: transparent;
}

.pricing-card-part::before,
.fair-pricing-slider::before {
    content: "";
    width: 50%;
    height: 100px;
    background: #7282F2;
    filter: blur(200px);
    position: absolute;
    left: 25%;
    top: 50%;
}

/* AI BUSINESS SECTION  */
.ai-bussiness-section {
    padding-bottom: 64px;
    overflow: hidden;
}

.ai-bussiness-section .content-wrapper {
    padding: 84px 0px 0px 0px
}

.ai-bussiness-section .top-part {
    max-width: 925px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    margin: 0 auto;
}

.ai-bussiness-section .custom-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    padding: 6px;
    background: #F1F2FE;
    border-radius: 18px;
    margin: 46px auto 64px auto;
}

.ai-bussiness-section .custom-tabs .nav-link {
    border: none;
    border-radius: 18px;
    background: transparent;
    color: var(--blue-text);
    font-family: 'Inter';
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    padding: 14px 16px;
    letter-spacing: -5%;
    white-space: nowrap;
    transition: .3s ease;
}

.ai-bussiness-section .custom-tabs .nav-link:hover {
    background: rgba(94, 114, 255, .08);
    color: #5E72FF;
}

.ai-bussiness-section .custom-tabs .nav-link.active {
    background: #5E72FF;
    color: #fff;
    box-shadow: 0 4px 12px rgba(94, 114, 255, .35);
}

.ai-bussiness-section .custom-tab-content .gredient-bg {
    background: linear-gradient(180deg, #BFC5FB 0%, #FFFFFF 100%);
    padding-top: 120px;
    padding-right: 55px;
    padding-bottom: 100px;
    padding-left: calc(max(5vw, (100vw - 1280px) / 2) - 40px);
}

.ai-bussiness-section .custom-tab-content .tab-content-right .content {
    margin-right: max(5vw, calc((100vw - 1280px) / 2));
    padding-left: clamp(48px, 5.5vw, 96px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.ai-bussiness-section .custom-tab-content .tab-content-right .tab-heading {
    font-family: "Helvetica Now Display";
    font-weight: 500;
    font-size: 35px;
    color: #051336;
    margin: 0;
}

.ai-bussiness-section .custom-tab-content .tab-content-right ul {
    padding-left: 20px;
    gap: 8px
}

.ai-bussiness-section .custom-tab-content .tab-content-right ul li {
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    color: var(--blue-text);
    margin-bottom: 10px;
    position: relative;
}

.ai-bussiness-section .custom-tab-content .tab-content-right ul li::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #8893DE;
    left: -18px;
    top: 8px;
}

.ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item {
    padding: 6px 30px;
}

.ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item .bottom-data-value {
    font-family: "Helvetica Now Display";
    font-weight: 500;
    font-size: 35px;
    letter-spacing: -3%;
    color: #051336;
}

.ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item .bottom-data-label {
    font-family: "Inter";
    font-weight: 500;
    font-size: 18px;
    color: var(--blue-text);
}

.ai-bussiness-section .custom-tab-content .tab-content-right .left-border {
    border-left: 1px solid #c9c9c9;
}

/* TR: keep "Gerçek zamanlı" on one line; give third stat a bit more left space */
html[lang="tr"] .ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item .bottom-data-value {
    white-space: nowrap;
    font-size: 28px;
}

html[lang="tr"] .ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item {
    padding: 6px 22px;
}

html[lang="tr"] .ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item.left-border:last-child {
    padding-left: 36px;
}

.ai-bussiness-section .custom-tab-content .tab-content-left img {
    width: 100%;
    height: auto;
}

/* sync ai section  */

.sink-ai-section .top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 86px 20px 50px 20px;
}

.sink-ai-section .top-content .secondary-text {
    max-width: 884px;
}

.sink-ai-section .image-part .image-wrapper {
    padding: 120px 0 96px 0;
    position: relative;
}

.sink-ai-section .image-part img {
    width: 90%;
    height: auto;
}

.sink-ai-section .image-part .primary-button img {
    width: auto;
}

.sink-ai-section .image-part .image-wrapper .number-item {
    background: linear-gradient(180deg, #334982 4.39%, #FFFFFF 87.7%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Standard property (supported in some browsers) */
    background-clip: text;
    color: transparent;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 50px;
    letter-spacing: -5%;
    position: absolute;
}

.sink-ai-section .image-part .image-wrapper .numbers .number-item:nth-child(1) {
    top: 21px;
    left: 52px;
}

.sink-ai-section .image-part .image-wrapper .numbers .number-item:nth-child(2) {
    top: 225px;
    right: 40px;
}

.sink-ai-section .image-part .image-wrapper .numbers .number-item:nth-child(3) {
    top: 427px;
    left: 52px;
}

.sink-ai-section .image-part .image-wrapper .numbers .number-item:nth-child(4) {
    top: 563px;
    right: 120px;
}

.sink-ai-section .image-part .image-wrapper .description-text {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -5%;
    color: #334982;
    position: absolute;
    max-width: 200px;
}

.sink-ai-section .image-part .image-wrapper .number-description .description-text:nth-child(1) {
    top: 152px;
    left: 60px;
}

.sink-ai-section .image-part .image-wrapper .number-description .description-text:nth-child(2) {
    top: 354px;
    right: 54px;
}

.sink-ai-section .image-part .image-wrapper .number-description .description-text:nth-child(3) {
    top: 558px;
    left: 60px;
}

.sink-ai-section .image-part .image-wrapper .number-description .description-text:nth-child(4) {
    top: 694px;
    right: 108px;
}

/* TESTIMONIAL SECTION  */

.testimonial-section {
    padding: 100px 0;
    position: relative;
}

.testimonial-carousel {
    margin-top: 70px;
    position: relative;
}

.testimonial-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonial-carousel::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 217px;
    bottom: 10%;
    left: 35%;
    border-radius: 50%;
    background: #7282F299;
    filter: blur(150px);
    z-index: -1;
}

.testimonial-carousel .owl-stage-outer {
    padding-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 70px 30px 30px;
    position: relative;
    transition: .35s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-carousel .avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2px solid #6677ff;
    background: #fff;
    position: absolute;
    right: 5%;
    transform: translateX(-50%);
    top: -27px;
}

.testimonial-card h5 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 22.41px;
    letter-spacing: -3%;
    color: #000000;
    margin-bottom: 18px;
}

.testimonial-card p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #434343;
    margin-bottom: 22px;
}

.testimonial-carousel .stars {
    color: #FFB400;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.testimonial-carousel .testimonial-card hr {
    margin: 18px 0;
    border-color: #ddd;
}

.testimonial-card .bottom-text {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -3%;
    color: var(--blue-text);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.testimonial-section .owl-nav button {
    position: absolute;
    height: 38px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-section .owl-carousel .owl-nav.disabled {
    display: block;
}

.testimonial-section .owl-nav .owl-next {
    right: -6%;
    background: #D3D3D3 !important;
}

.testimonial-section .owl-nav .owl-prev {
    left: -6%;
    background: linear-gradient(var(--black), #E5A9E7) !important;
}

.testimonial-section .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%
}

.testimonial-card .quotes {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-purple);
    height: 70px;
    width: 70px;
    margin: 0px auto 20px auto;
}

.testimonial-card .quotes img {
    height: 28px;
    width: 28px;
}

.testimonial-carousel .avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 12px;
}


@media screen and (max-width: 1600px) {

    .banner-section .banner-content .left-top-box,
    .banner-section .banner-content .left-bottom-box,
    .banner-section .banner-content .right-top-box,
    .banner-section .banner-content .right-bottom-box {
        scale: 0.8;
    }
}

@media screen and (max-width: 1440px) {
    .sink-ai-section .image-part .image-wrapper .numbers .number-item:nth-child(3) {
        top: 412px;
    }

    .sink-ai-section .image-part .image-wrapper .numbers .number-item:nth-child(4) {
        top: 544px;
    }

    .sink-ai-section .image-part .image-wrapper .number-description .description-text:nth-child(3) {
        top: 538px;
    }

    .sink-ai-section .image-part .image-wrapper .number-description .description-text:nth-child(4) {
        top: 668px;
    }
}

@media screen and (max-width: 1280px) {
    .desktop-hidden {
        display: flex;
    }

    .mobile-hidden {
        display: none;
    }

    .banner-section .left-top-box,
    .banner-section .left-bottom-box,
    .banner-section .right-top-box,
    .banner-section .right-bottom-box {
        position: static;
        max-width: unset;
        height: 306px;
        width: 100%;
    }

    .banner-section .banner-content::after {
        content: none;
    }

    .banner-section .banner-content::before {
        left: 33%;
        bottom: -35%;
    }

    .banner-section .banner-content .bottom-btn {
        margin-top: 60px;
    }

    .banner-section .banner-content {
        padding-bottom: 60px;
        padding-top: 180px;
    }

    .mobile-cards .owl-item {
        transition: all 0.4s ease;
        transform: scale(0.85);
        opacity: 0.7;
    }

    .mobile-cards .owl-item.center {
        transform: scale(1);
        opacity: 1;
        z-index: 2;
    }

    .ai-bussiness-section .custom-tabs .nav-link {
        font-size: 16px;
    }

    .ai-bussiness-section .custom-tab-content .gredient-bg {
        padding: 100px 20px;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item .bottom-data-value {
        font-size: 24px;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item .bottom-data-label {
        font-size: 16px;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right ul li {
        font-size: 16px;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .tab-heading {
        font-size: 30px;
    }

    .sink-ai-section .image-part .image-wrapper .number-item {
        font-size: 34px;
    }

    .sink-ai-section .image-part .image-wrapper .description-text {
        font-size: 16px;
        max-width: 160px;
    }

    .sink-ai-section .image-part .image-wrapper .numbers .number-item:nth-child(1) {
        top: 57px;
        left: 64px;
    }

    .sink-ai-section .image-part .image-wrapper .number-description .description-text:nth-child(2) {
        top: 332px;
    }

    .sink-ai-section .image-part .image-wrapper .number-description .description-text:nth-child(3) {
        top: 498px;
    }

    .sink-ai-section .image-part .image-wrapper .number-description .description-text:nth-child(4) {
        top: 618px;
    }

    .sink-ai-section .image-part .image-wrapper .numbers .number-item:nth-child(4) {
        top: 528px;
        right: 132px;
    }

    .sink-ai-section .image-part .image-wrapper .numbers .number-item:nth-child(2) {
        right: 58px;
    }

    .banner-section .banner-content .bottom-btn {
        height: 50px;
        width: 50px;
        margin-top: 30px;
    }

    .banner-section .banner-content .bottom-btn .gredient-part {
        height: 28px;
        width: 18px;
    }

    .banner-section .banner-content .bottom-btn .gredient-part .dot {
        height: 6px;
        width: 6px;
    }

    .banner-section {
        padding-bottom: 60px;
    }

}

@media screen and (max-width: 1025px) {

    .banner-section .banner-content h1 {
        font-size: 52.51px;
        line-height: 78px;
    }

    .banner-section .banner-content h1 span .gradient-text::after {
        top: -4px;
    }

    .ai-bussiness-section .custom-tabs {
        justify-content: center;
        gap: 8px;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item {
        padding: 20px;
        flex: 1;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item .bottom-data-value {
        font-size: 20px;
    }

    .testimonial-section .owl-nav {
        top: unset;
        bottom: -30px;
        justify-content: center;
        display: flex !important;
        gap: 2px;
        position: relative;
        width: 80px;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel {
        padding-bottom: 80px;
    }

}

@media screen and (max-width: 992px) {
    .sink-ai-section .image-part .image-wrapper .number-item {
        position: static;
    }

    .sink-ai-section .image-part .image-wrapper .description-text {
        position: static;
        max-width: none;
    }

    .sink-ai-section .image-part .image-wrapper .sink-ai-item .title {
        font-family: 'Helvetica Now Display';
        font-weight: 500;
        font-size: 20px;
    }

    .sink-ai-section .image-part .image-wrapper .text-part {
        margin-top: 44px;
        padding: 0px 22px;
    }

    .sink-ai-section .image-part .image-wrapper .text-part hr {
        border-top: 1px solid #66666600
    }

    .testimonial-carousel .avatar {
        position: static;
        transform: none;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .content {
        margin-left: 5%;
        margin-right: 5%;
        padding: 20px;
        border-left: 1px solid #dee2e6;
        border-right: 1px solid #dee2e6
    }

    .ai-bussiness-section .custom-tab-content .gredient-bg {
        margin-left: 5%;
        margin-right: 5%;
        border-left: 1px solid #dee2e6;
        border-right: 1px solid #dee2e6
    }

    .ai-bussiness-section {
        padding-bottom: 0;
    }

    .transforming-section .Transforming-card {
        background-color: #ffffff;
        margin: 20px 0px;
    }

    .transforming-section .Transforming-card {
        background: linear-gradient(180deg, #7282F2 -65.86%, #F4F5FE 100%);
        padding: 20px;
    }

    .transforming-section .Transforming-card .Transforming-heading {
        padding: 0;
        margin: 0;
    }

    .ai-bussiness-section .custom-tabs .nav-link {
        padding: 10px 16px;
    }

    .pricing-btn {
        padding: 4px 5px 4px 12px;
        height: auto;
        border-radius: 10px;
        font-size: 14px;
    }

    .pricing-card .pricing-btn .btn-icon {
        width: 22px;
        height: 22px;
    }

    .solution-image {
        padding: 40px 20px;
    }

    .help-content {
        max-width: 100%;
        padding: 50px 20px;
    }

    .timeline-item {
        gap: 18px;
    }

    .timeline-content h6 {
        font-size: 22px;
    }

    .intro-mobile-slider .image-box {
        height: 200px;
    }

    .intro-mobile-slider .image-box img {
        width: 140px;
        height: auto;
        object-fit: contain;
    }

    /* Card */
    .intro-mobile-slider .intro-card {
        padding: 24px 20px;
        gap: 32px;
        background: #fff;
        transition: background .3s ease;
    }

    .intro-mobile-slider .owl-item.active .intro-card {
        background: linear-gradient(180deg,
                #7282F2 0%,
                #FFFFFF 100%);
    }



    /* Number */
    .intro-mobile-slider .number {
        margin-bottom: 12px;
    }

    /* Image */
    .intro-mobile-slider .image-box {
        height: 170px;
        margin: 0 0 24px;
    }

    .intro-mobile-slider .image-box img {
        max-width: 140px;
        max-height: 140px;
        width: auto;
        height: auto;
    }

    /* Content */
    .intro-mobile-slider .content {
        gap: 18px;
    }

    .intro-mobile-slider .intro-card h6 {
        min-height: 56px;
        margin: 0;
        line-height: 1.2;
    }

    .intro-mobile-slider .intro-card p {
        margin: 0;
        line-height: 1.7;
    }

    /* Transforming Mobile Slider */

    .transforming-mobile-slider {
        display: block;
        overflow: visible;
        padding: 0 16px 40px;
    }

    .transforming-mobile-slider .owl-stage-outer {
        overflow: visible !important;
    }

    .transforming-mobile-slider .owl-stage {
        display: flex;
    }


    .transforming-mobile-slider .Transforming-card {
        min-height: 400px;
        padding: 24px 20px 30px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .transforming-mobile-slider .transforming-inner-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .transforming-mobile-slider .image-box {
        width: 240px;
        height: 220px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin: 0;
        overflow: hidden;
    }

    .transforming-mobile-slider .image-box img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .transforming-mobile-slider .Transforming-heading {
        margin: 0;
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }

    .transforming-mobile-slider .Transforming-secondary-text {
        margin: 0;
        text-align: center;
        max-width: 280px;
        line-height: 1.6;
    }

    .fair-pricing-slider {
        display: block;
    }

    .fair-pricing-slider .owl-stage-outer {
        overflow: hidden;
    }

    .fair-pricing-slider .owl-stage {
        display: flex;
    }

    /* remove CSS padding — spacing now comes ONLY from JS margin/stagePadding */
    .fair-pricing-slider .owl-item {
        padding: 0;
        box-sizing: border-box;
    }

    .fair-pricing-slider .owl-item .pricing-card {
        width: 100%;
        margin-top: 20px;
    }

    /* prevent the row/container from clipping the peek */
    .fair-pricing-section .custom-container,
    .fair-pricing-section .row {
        overflow: visible;
    }

    /* Carousel */
    .intro-mobile-slider {
        display: block;
        padding: 0 20px;
        overflow: hidden;
    }

    .intro-mobile-slider .intro-card {
        height: auto;
        border-radius: 0;
        width: 100%;
    }

    .intro-mobile-slider .owl-stage {
        display: flex;
        margin-top: 40px;
    }

    .intro-mobile-slider .owl-item {
        display: flex;
    }

    .intro-mobile-slider .item {
        padding: 0 6px;
    }

    .intro-mobile-slider .owl-dots {
        margin-top: 20px;
        text-align: center;
    }

    .intro-mobile-slider .owl-dot span {
        width: 10px;
        height: 10px;
        background: #D9D9D9;
        display: block;
        border-radius: 50%;
        margin: 0 5px;
    }

    .intro-mobile-slider .owl-dot.active span {
        background: #7282F2;
    }

    /* Mobile Solution Accordion */

    /* Hide Desktop Timeline */
    .timeline {
        display: none;
    }

    /* Show Accordion */
    .solution-accordion {
        display: block;
        margin-top: 24px;
    }

    .solution-accordion .accordion-item {
        border: 0;
        border-bottom: 1px solid #E6EAF2;
        border-radius: 0;
        background: transparent;
    }

    .solution-accordion .accordion-item:first-child {
        border-top: 1px solid #E6EAF2;
    }

    .solution-accordion .accordion-button {
        padding: 24px 0;
        background: transparent;
        box-shadow: none;
        display: flex;
        align-items: flex-start;
    }

    .solution-accordion .accordion-button:not(.collapsed) {
        background: transparent;
        box-shadow: none;
        color: inherit;
    }

    .solution-accordion .accordion-button:focus {
        box-shadow: none;
        border: none;
    }

    .solution-accordion .accordion-button h6 {
        margin: 8px 0 0;
        font-family: 'Helvetica Now Display';
        font-weight: 500;
        font-style: Medium;
        font-size: 18px;
        leading-trim: CAP_HEIGHT;
        line-height: 24px;
        letter-spacing: -3%;

    }

    .solution-accordion .accordion-button .timeline-label {
        display: block;
        margin-bottom: 0;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .08em;
        color: #6E7DF5;
    }

    .solution-accordion .accordion-item.active .accordion-button .timeline-label {
        color: #C889FF;
    }

    .solution-accordion .accordion-body {
        padding: 0 0 24px;
        font-family: 'Inter';
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -5%;
        color: var(--blue-text);
    }

    /* Arrow */

    .solution-accordion .accordion-button::after {

        width: 18px;
        height: 18px;
        background-size: 18px;
        margin-top: 18px;

    }

    .solution-image {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px 20px 10px;
    }

    .solution-image img {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        display: block;
    }

    .fair-pricing-slider .pricing-card {
        min-height: 536px;
    }

}

@media screen and (max-width: 768px) {
    .banner-section .banner-content h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .banner-section .banner-content h1 span .gradient-text {
        font-size: 32px;
        line-height: 42px;
    }

    .banner-section .banner-content h1 .highlight {
        padding: 4px 12px;
        margin-left: 8px;
    }

    .banner-section .banner-content h1 span .gradient-text::after {
        top: -10px;
        right: -18px;
    }

    .banner-section .banner-content h1 span .gradient-text::before {
        left: -17px;
        bottom: -10px;
    }

    .banner-section .banner-content p {
        font-size: 18px;
    }


}

@media screen and (max-width: 520px) {
    .banner-section .banner-content {
        padding-top: 128px;
    }

    .banner-section .banner-content h1 {
        font-size: 28px;
    }

    .banner-section .banner-content p {
        font-size: 14px;
    }

    .banner-section .banner-content p {
        margin-top: 16px;
    }

    .banner-section .banner-content .button-part {
        margin-top: 20px;
    }

    .banner-section .banner-content .bottom-btn .gredient-part {
        height: 24px;
        width: 15px;
    }

    .ai-bussiness-section .content-wrapper {
        padding: 30px 0px;
        border-left: 1px solid #eee !important;
        border-right: 1px solid #eee !important;
    }

    .ai-bussiness-section .custom-tabs .nav-link {
        padding: 7px 6px;
        border-radius: 8px;
        font-size: 12px;
    }

    .ai-bussiness-section .custom-tabs {
        border-radius: 8px;
        gap: 4px;
        justify-content: space-evenly;
        margin-top: 0;
        background-color: transparent;
        padding: 0;
        border-left: 1px solid #eee;
        border-right: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 0px;
    }

    .ai-bussiness-section .custom-tabs .nav-link {
        width: 124px;
        justify-content: center;
        display: flex;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .content {
        gap: 10px
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .tab-heading {
        font-size: 25px;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right ul li {
        font-size: 12px;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right ul li::before {
        width: 7px;
        height: 7px;
        top: 6px;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item {
        padding: 8px;
    }

    .ai-bussiness-section .custom-tab-content .gredient-bg {
        padding: 43px 20px;
        margin-right: 30px;
    }

    .ai-bussiness-section {
        padding-bottom: 0;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .content {
        padding: 12px;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item .bottom-data-label {
        font-size: 12px;
    }

    .sink-ai-section .top-content {
        padding-top: 50px;
    }

    .sink-ai-section .image-part .image-wrapper {
        padding: 34px 0;
    }

    .sink-ai-section .image-part .image-wrapper .number-item {
        font-size: 30px;
    }

    .sink-ai-section .image-part .image-wrapper .description-text {
        font-size: 12px;
    }

    .fair-pricing-top {
        padding: 0;
    }

    .banner-section .banner-content h1 .highlight::after,
    .banner-section .banner-content h1 .highlight::before,
    .banner-section .banner-content h1 span .gradient-text::after,
    .banner-section .banner-content h1 span .gradient-text::before {
        height: 4px;
        width: 4px;
    }

    .banner-section .banner-content h1 .highlight::before {
        bottom: -3px;
        right: -3px;
    }

    .banner-section .banner-content h1 span .gradient-text::before {
        left: -15px;
        bottom: -6px;
    }

    .banner-section .banner-content h1 .highlight::after {
        top: -3px;
        left: -3px;
    }

    .banner-section .banner-content h1 span .gradient-text::after {
        top: -4px;
        right: -15px;
    }

    .banner-section::after {
        top: 400px
    }

    .banner-section .banner-content .bottom-btn {
        margin-top: 44px;
    }

    .banner-section .banner-content {
        padding-bottom: 44px;
    }

    .testimonial-card p {
        text-align: center;
    }

    .testimonial-card {
        background-color: transparent;
        padding-top: 30px;
        padding-bottom: 0;
    }

    .testimonial-carousel::before {
        width: 300px;
        left: 15%;
    }

    .testimonial-carousel .avatar {
        background: transparent;
        height: 56px;
        width: 56px;
    }

    .testimonial-carousel .owl-stage-outer {
        padding-top: 0;
    }

    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-card span {
        text-align: center;
    }

    .feature-box ul li {
        font-size: 12px;
        margin-top: 10px;
    }

    .pricing-description {
        font-size: 12px;
    }

    .pricing-tag {
        font-size: 12px;
        padding: 6px 20px;
    }

    .banner-section::before {
        background-image: url(./../images/home/background-lines-mobile.svg);
        top: 0px;
        left: -4px;
        height: 686px;
    }

    .help-content {
        max-width: 100%;
        padding: 20px;
    }
}

@media screen and (max-width: 370px) {
    .banner-section .banner-content h1 {
        font-size: 24px;
    }

    .banner-section .banner-content h1 span .gradient-text {
        font-size: 26px;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item .bottom-data-label {
        font-size: 10px;
    }

    .ai-bussiness-section .custom-tab-content .tab-content-right .bottom-data-item .bottom-data-value {
        font-size: 16px;
    }
}

/* Dynamic Orbit Ecosystem */
@keyframes ds-orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ds-orbit-rev {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes ds-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.035); }
}

@keyframes ds-halo {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.06); }
}

.designed-simplify .orbit-wrapper .ds-orbit {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    --ds-orbit-dur: 54s;
    --ds-orbit-dur-inner: 38s;
}

.designed-simplify .orbit-wrapper .ds-orbit-root {
    position: relative;
    width: 1602px;
    height: 1686px;
    flex: 0 0 auto;
    transform-origin: center center;
    background: transparent;
}

.designed-simplify .orbit-wrapper .ds-orbit-rings {
    position: absolute;
    left: 0;
    top: 0;
    overflow: visible;
}

.designed-simplify .orbit-wrapper .ds-orbit-ring-outer {
    transform-origin: 852px 762px;
    animation: ds-orbit 220s linear infinite;
}

.designed-simplify .orbit-wrapper .ds-orbit-ring-inner {
    transform-origin: 852px 762px;
    animation: ds-orbit-rev 170s linear infinite;
}

.designed-simplify .orbit-wrapper .ds-orbit-core {
    position: absolute;
    left: 852px;
    top: 762px;
    width: 0;
    height: 0;
}

.designed-simplify .orbit-wrapper .ds-orbit-halo {
    position: absolute;
    left: -330px;
    top: -330px;
    width: 660px;
    height: 660px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(219, 151, 237, 0.16) 0%, rgba(114, 130, 242, 0.10) 38%, rgba(255, 255, 255, 0) 70%);
    animation: ds-halo 9s ease-in-out infinite;
}

.designed-simplify .orbit-wrapper .ds-orbit-core-disk {
    position: absolute;
    left: -195px;
    top: -195px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 46%, #FFFFFF 0%, #FFFFFF 47%, rgba(255, 255, 255, 0.82) 60%, rgba(255, 255, 255, 0.32) 74%, rgba(255, 255, 255, 0) 88%);
    box-shadow: 0 40px 90px rgba(5, 19, 54, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ds-breathe 9s ease-in-out infinite;
}

.designed-simplify .orbit-wrapper .ds-orbit-core-disk img {
    width: 215px;
    display: block;
}

.designed-simplify .orbit-wrapper .ds-orbit-layer {
    position: absolute;
    inset: 0;
    transform-origin: 852px 762px;
}

.designed-simplify .orbit-wrapper .ds-orbit-layer-outer {
    animation: ds-orbit var(--ds-orbit-dur) linear infinite;
}

.designed-simplify .orbit-wrapper .ds-orbit-layer-inner {
    animation: ds-orbit-rev var(--ds-orbit-dur-inner) linear infinite;
}

.designed-simplify .orbit-wrapper .ds-orbit-slot {
    position: absolute;
    left: 852px;
    top: 762px;
    width: 0;
    height: 0;
    transform: rotate(var(--a)) translateX(var(--r));
}

.designed-simplify .orbit-wrapper .ds-orbit-counter {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    animation: ds-orbit-rev var(--ds-orbit-dur) linear infinite;
}

.designed-simplify .orbit-wrapper .ds-orbit-counter-inner {
    animation: ds-orbit var(--ds-orbit-dur-inner) linear infinite;
}

.designed-simplify .orbit-wrapper .ds-orbit-node {
    position: absolute;
    left: calc(var(--s) / -2);
    top: calc(var(--s) / -2);
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    transform: rotate(var(--ra));
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 46%, #FFFFFF 0%, #FFFFFF 46%, rgba(255, 255, 255, 0.78) 60%, rgba(255, 255, 255, 0.28) 76%, rgba(255, 255, 255, 0) 90%);
}

.designed-simplify .orbit-wrapper .ds-orbit-node img {
    width: var(--img);
    display: block;
}

.designed-simplify .orbit-wrapper .clarity,
.designed-simplify .orbit-wrapper .ai-powered {
    z-index: 2;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .designed-simplify .orbit-wrapper * {
        animation: none !important;
    }
}