:root {
    --primary-purple: #8259E8;
    --light-purple: #f5f2ff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.flex {display: flex}
.items-center {align-items: center}
.justify-center {justify-content: center}
.text-center {text-align: center}
.space-x-1{gap: 0.25rem}
.space-x-2{gap: 0.5rem}
.flex-col {flex-direction: column}
.w-full {width: 100%}

/* header section */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background-color: #0F1023;
    padding: 1rem 2rem;
}

.navbar-brand img {
    height: 32px;
    transition: transform 0.15s ease;
}

.navbar-brand:active img {
    transform: scale(0.94);
}

/* Mobile navbar scrollable fix */
@media (max-width: 991px) {
    .navbar-collapse.show {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        background-color: #0F1023;
        margin-top: 0.5rem;
        padding-bottom: 0;
        /* Hide scrollbar */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* Internet Explorer 10+ */
        padding-bottom: 0.5rem;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .navbar-collapse.show::-webkit-scrollbar {
        display: none;
    }

    .navbar-nav {
        padding-bottom: 0.5rem;
        width: 100%;
        margin-bottom: 0;
    }

    .navbar .d-flex {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .navbar .d-flex .btn {
        width: 100%;
        margin: 0;
    }
}

.nav-link {
    color: white !important;
    margin: 0 0.25rem;
    padding: 0.35rem 0.85rem !important;
    font-weight: 500;
    border-radius: 999px;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
    user-select: none;
}

.nav-link:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.12);
}

.nav-link:active {
    transform: scale(0.93);
    background-color: rgba(255, 255, 255, 0.18);
}

.dropdown-title:hover .nav-link,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.12);
}

@keyframes dropdownShake {
    0%   { transform: scale(1) translateX(0); }
    35%  { transform: scale(1) translateX(-1.5px); }
    70%  { transform: scale(1) translateX(1.5px); }
    100% { transform: scale(1) translateX(0); }
}

.dropdown-content--shake {
    animation: dropdownShake 0.3s ease;
}

.btn-outline-light-custom {
    border: 1px solid #7B61FF;
    color: white;
    background-color: transparent;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

@media (max-width: 576px) {
    .btn-outline-light-custom {
        font-size: 12px;
    }
}

.btn-outline-light-custom:hover {
    background-color: white;
}

.dropdown-content {
    position: absolute;
    top: 48px;
    left: 0;
    right: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-2px) scale(0.995);
    transform-origin: top left;
    background-color: white;
    padding: 0.5rem;
    border-radius: 14px;
    overflow: visible;
    box-shadow: 0 12px 48px rgba(15, 16, 35, 0.14), 0 2px 10px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    width: 360px;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0s linear 0.18s;
    will-change: opacity, transform;
}

.dropdown-title {
    position: relative;
}

.dropdown-title::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.dropdown-title:hover .dropdown-content,
.dropdown-title.active .dropdown-content {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0s linear 0s;
}

@media (max-width: 992px) {
    .dropdown-content {
        position: static;
        width: 100%;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition: none;
        box-shadow: none;
        border-radius: 8px;
        padding: 0.35rem;
    }
}

a.menu-item {
    text-decoration: none;
    color: #1A1A1A;
}

.menu-item:hover .menu-icon {
    background: radial-gradient(317.01% 118.18% at 123.86% -0.9%, #7E3FD4 0%, #242346 100%);
    border-radius: 10px;
}

.menu-item:hover {
    .icon-item {
        display: none;
    }

    .icon-item-hover {
        display: inline;
    }
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 12px 14px;
    border-radius: 8px;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1),
                background-color 0.15s ease;
    position: relative;
    z-index: 0;
    will-change: transform;
}

.arrow-menu {
    display: none;
}

.menu-item:hover {
    background-color: #ffffff;
    transform: scale(1.01);
    z-index: 1;
    cursor: pointer;

    .arrow-menu {
        display: inline;
    }
}

.menu-item.active {
    background-color: #f3f4f6;
    border-radius: 8px;
}

.menu-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 12px;
    background: #faf7ff;
    box-shadow: 0px 0px 0px 1px rgba(130,89,232,0.1);

    .icon-item,
    .icon-item-hover {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        margin: 12px;
    }
}

.menu-text h3 {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1a2e;
}

.menu-text p {
    margin: 0.25rem 0 0 0;
    font-size: 0.8rem;
    color: #7a7f9a;
    line-height: 1.5;
}


#openMenuBtn {
    padding: 0.5rem 1rem;
    margin: 1rem;
    font-size: 1rem;
    cursor: pointer;
}

.btn-purple {
    background-color: var(--primary-purple);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-left: 1rem;
}

.btn-purple:hover {
    background-color: #FFFFFF;
    /* color: #6A50FF; */
}


/* For small screens (below 576px or any specific breakpoint you prefer) */
@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0.7rem !important;
    }
}

.hero-section {
    padding: 4rem 2rem;
}

.tagline {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.09);
    color: #6B6B6B;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .tagline {
        font-size: 12px;
    }
}

.tagline i {
    background-color: #7B61FF;
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #6C6C6C;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background-color: #7B61FF;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 2rem;
    background: linear-gradient(to right, #151533, #7B61FF);
    position: relative;
    /* overflow: hidden; */
}

.data-hygiene {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 90%;
    object-fit: cover;
    border-top-left-radius: 20px;
}

.data-img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 90%;
    object-fit: cover;
}

.data-img.data-img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 106%;
    object-fit: cover;
}

@media (max-width: 768px) {
    h1.hero-title {
        text-align: center;
    }

    .hero-image-placeholder {
        height: 300px;
        margin-top: 2rem;
    }
}

@media (max-width: 412px) {
    h1.hero-title {
        font-size: 2em;
    }
}


/* second section */
.section-title {
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
}

.content-card {
    height: 100%;
    padding: 1.5rem 0;
    /* width: 320px; */
}

.icon-wrapper {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

@media(max-width: 576px) {
    .icon-wrapper {
        margin-bottom: 0.5rem;
    }
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-wrapper {
    padding: 5rem 1rem;
}

.card-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

@media (max-width: 767px) {
    .content-row:last-child .card-divider {
        display: none;
    }
}

.data-section {
    padding: 5rem 0;
}

.data-heading-wrap {
    margin-bottom: 3rem;
}

.data-main-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
}

@media (max-width: 576px) {
    .data-main-title {
        margin-top: -6rem;
    }
}

.data-feature-box {
    background-color: var(--light-purple);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    height: auto;
}

.data-image-block {
    background: linear-gradient(135deg, #6c54e4, #362985);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 360px;
}

.data-icon-circle {
    background-color: var(--primary-purple);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.data-feature-label {
    color: var(--primary-purple);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.data-feature-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.data-feature-desc {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.data-btn-primary {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s, border-color 0.3s;
}

@media (max-width: 330px) {
    .data-btn-primary {
        font-size: 12px;
    }
}


.data-btn-primary:hover {
    background-color: var(--primary-purple-dark);
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.data-btn-learn {
    color: black;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    transition: color 0.2s;
}

.data-btn-learn:hover {
    color: var(--primary-purple);
}

.data-btn-learn svg {
    margin-left: 3px;
    transition: transform 0.2s;
}

.data-btn-learn:hover svg {
    transform: translateX(3px);
}


.data-btn-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media (max-width: 576px) {
    #dataFeaturesContainer {
        margin-top: 10px;
    }
}

@media (max-width: 991px) {
    .data-image-block {
        min-height: 250px;
        margin-bottom: 2rem;
    }

    #dataFeaturesContainer .data-feature-box:nth-child(1),
    #dataFeaturesContainer .data-feature-box:nth-child(2),
    #dataFeaturesContainer .data-feature-box:nth-child(3) {
        min-height: auto;
    }
}

/*  faq section */
.faq-wrapper {
    background: #F5F2FF;
    padding: 5rem 0 4rem;
}

.faq-heading {
    text-align: center;
    margin: 0 auto 2.25rem;
    max-width: 840px;
}

.faq-title {
    font-weight: 700;
    font-size: 2.25rem;
    margin: 0.35rem 0 0.5rem;
    color: #111325;
}

.faq-copy {
    color: #4a4d63;
    font-size: 1.02rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-pills {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

.faq-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(130, 89, 232, 0.12);
    border: 1px solid rgba(130, 89, 232, 0.25);
    color: #3c2ca3;
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.faq-accordion {
    display: grid;
    gap: 0.35rem;
    position: relative;
    padding-left: 0;
}

.faq-item {
    background: transparent;
    border-radius: 0;
    padding: 0.75rem 0 0.4rem;
    transition: border-color 0.2s ease;
}

.faq-item.is-open {
    border-color: rgba(60, 44, 163, 0.28);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 600;
    color: #111325;
    margin: 0;
    padding: 0.9rem 0.5rem 0.75rem 0;
    background: transparent;
    border: none;
    text-align: left;
}

.faq-question:focus-visible {
    outline: 2px solid rgba(130, 89, 232, 0.4);
    outline-offset: 3px;
}

.faq-question-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: center;
}

.faq-bullet {
    position: relative;
    display: inline-flex;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid var(--primary-purple);
    background: transparent;
    box-shadow: 0 0 0 4px rgba(130, 89, 232, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-bullet::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    background: var(--primary-purple);
    opacity: 0;
    transform: scale(0.4);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq-question-text {
    font-size: 1.06rem;
    line-height: 1.35;
    transition: color 0.18s ease;
}

.faq-item:hover .faq-bullet {
    transform: scale(1.05);
    box-shadow: 0 0 0 6px rgba(130, 89, 232, 0.08);
    border-color: rgba(130, 89, 232, 0.85);
}

.faq-item.is-open .faq-bullet {
    transform: scale(1.08);
    box-shadow: 0 0 0 7px rgba(130, 89, 232, 0.1);
    border-color: var(--primary-purple);
}

.faq-item.is-open .faq-bullet::after {
    opacity: 1;
    transform: scale(1);
}

.faq-toggle {
    position: relative;
    width: 14px;
    height: 14px;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.faq-toggle::before {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid #111325;
    border-bottom: 2px solid #111325;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-item.is-open .faq-toggle::before {
    transform: rotate(-135deg);
}

.faq-item:hover .faq-toggle {
    transform: translateY(-1px);
}

.faq-item:hover .faq-question-text {
    color: #2a276b;
}

.faq-answer {
    color: #3f4154;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0 0 0 1.8rem;
}

.faq-answer.active {
    opacity: 1;
    max-height: 900px;
    padding: 0 0 0.85rem 1.8rem;
}

.faq-answer ul {
    margin-top: 0.75rem;
}

@media (max-width: 768px) {
    .faq-wrapper {
        padding: 3.5rem 1rem 3rem;
    }

    .faq-title {
        font-size: 1.95rem;
    }

    .faq-question {
        padding: 1rem 1rem;
    }

    .faq-answer,
    .faq-answer.active {
        padding-left: 3.25rem;
    }
}
.nachonacho-section {
    background: #ffffff;
    padding: 2.5rem 0 3rem;
    border-top: 1px solid #eef0f6;
    border-bottom: 1px solid #eef0f6;
}

.nachonacho-badge {
    max-width: 360px;
    width: 100%;
    height: auto;
}
.compliance-img {
    height: 170px;
    width: 120px;
    margin: 1px;
    object-fit: contain;
}

.compliance-img--soc {
    height: 220px;
    width: 160px;
}

@media (max-width: 375px) {
    .compliance-img {
        height: 130px;
        width: 70px;
    }

    .compliance-img--soc {
        height: 170px;
        width: 100px;
    }
}


/* integraton section */

.int-section {
    padding: 6rem 0;
    /* overflow: hidden; */
    position: relative;
    background-color: #ffffff;
}

.outer-img,
.inner-img {
    position: absolute;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.outer-img.deg-45 {
    width: 60px;
    height: 60px;
}

.outer-img.deg-225 {
    width: 60px;
    height: 60px;
}

.outer-img.deg-315 {
    width: 50px;
    height: 50px;
}

.inner-img.deg-120 {
    width: 50px;
    height: 50px;
}


/* === Outer Circle Positions === */
.deg-45 {
    top: 8%;
    left: 82%;
}

.deg-225 {
    top: 89%;
    left: 18%;
}

@media (max-width:425px) {
    .deg-225 {
        top: 93%;
        left: 18%;
    }
}

.deg-315 {
    top: 89%;
    left: 82%;
}

.deg-120 {
    top: 3%;
    left: 25%;
}

@media (max-width:425px) {
    .deg-120 {
        top: 6%;
        left: 25%;
    }
}

.int-circle-inner img {
    width: 60%;
    height: auto;
    object-fit: contain;
}


.int-badge {
    display: inline-flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
}

.int-badge-icon {
    width: 24px;
    height: 24px;
    background-color: #7950f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.int-badge-icon svg {
    width: 14px;
    height: 14px;
}

.int-badge-text {
    font-weight: 500;
    color: #333;
}

.int-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 1.5rem;
}

.int-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.int-btn {
    background-color: #7950f2;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.int-btn:hover {
    background-color: #6741d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(121, 80, 242, 0.2);
}

.int-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.int-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
}

.int-circle-outer {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    position: absolute;
}

.int-circle-middle {
    width: 75%;
    height: 75%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    position: absolute;
    top: 12.5%;
    left: 12.5%;
}

.int-circle-inner {
    width: 30%;
    height: 30%;
    background: linear-gradient(135deg, #7950f2, #5930c5);
    border-radius: 50%;
    position: absolute;
    top: 35%;
    left: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

@media (max-width: 991px) {
    .int-heading {
        font-size: 2.25rem;
    }

    .int-visual {
        margin-top: 3rem;
        height: 300px;
    }

    .int-circles {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 767px) {
    .int-section {
        padding: 2rem 0rem 4rem 0;
    }

    .int-heading {
        font-size: 2rem;
    }

    .int-visual {
        height: 240px;
    }

    .int-circles {
        width: 220px;
        height: 220px;
    }
}




/*understand data section */

.data-hero-section {
    background-color: #161625;
    color: white;
    padding: 80px 0;
    /* min-height: 100vh; */
}

.data-action-button {
    background-color: #7266ef;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-bottom: 30px;
}

.data-action-button:hover {
    background-color: #5c52d6;
}

.data-heading {
    color: var(--White, #FFF);
    font-family: Inter;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3rem;
}

.data-analysis-type {
    font-weight: bold;
    margin-bottom: 10px;
}

.data-process-step {
    margin-bottom: 20px;
}

.data-form-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.data-form-title {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.data-submit-btn {
    background-color: #7266ef;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    margin-top: 20px;
}

.data-submit-btn:hover {
    background-color: #5c52d6;
}

.data-privacy-text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 15px;
    color: #555;
}

.data-privacy-text a:hover {
    color: #6a40c6;
}

.contact-us-hero {
    background-color: #ececf7;
    padding: 68px 0 54px;
    text-align: center;
}

.contact-us-hero h1 {
    color: #202329;
    font-size: clamp(2.4rem, 4vw, 3.45rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px;
}

.contact-us-hero p {
    color: #585b61;
    /* font-size: 1.35rem; */
    margin: 0;
}

.contact-us-page {
    background-color: #f2f2f4;
    padding: 84px 0 96px;
}

.contact-us-shell {
    max-width: 1080px;
    margin: 0 auto;
}

.contact-us-info {
    padding: 8px 0;
}

.contact-us-info-item {
    margin-bottom: 38px;
}

.contact-us-info-item:last-child {
    margin-bottom: 0;
}

.contact-us-info-item h3 {
    margin: 0 0 10px;
    color: #2f3136;
    /* font-size: 2.65rem; */
    font-weight: 600;
    line-height: 1.14;
}

.contact-us-info-item p {
    margin: 0;
    color: #54565a;
    /* font-size: 1.95rem; */
    line-height: 1.45;
}

.contact-us-info-item a {
    color: #1e63d6;
    text-decoration: none;
}

.contact-us-info-item a:hover {
    text-decoration: underline;
}

.contact-us-form-wrap h2 {
    margin: 0 0 8px;
    color: #2f3136;
    /* font-size: 2.75rem; */
    font-weight: 600;
    line-height: 1.18;
}

.contact-us-subtitle {
    margin: 0 0 20px;
    color: #54565a;
    /* font-size: 1.7rem; */
    line-height: 1.45;
}

.contact-us-subtitle a {
    color: #1e63d6;
    text-decoration: none;
}

.contact-us-subtitle a:hover {
    text-decoration: underline;
}

.contact-us-form-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 34px 32px 28px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.contact-us-label {
    color: #253140;
    /* font-size: 1.6rem; */
    font-weight: 500;
    margin-bottom: 7px;
}

.contact-required {
    color: #dc3545;
}

.contact-us-input {
    border-color: #d2d5db;
    border-radius: 8px;
    color: #253140;
    /* font-size: 1.55rem; */
    min-height: 46px;
    padding: 9px 13px;
}

.contact-us-input::placeholder {
    color: #8997ac;
}

.contact-us-input:focus {
    border-color: #8259e8;
    box-shadow: 0 0 0 0.2rem rgba(130, 89, 232, 0.15);
}

.contact-us-textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-us-privacy-text {
    margin: 8px 0 20px;
    color: #666b73;
    /* font-size: 1.2rem; */
    line-height: 1.5;
    text-align: center;
}

.contact-us-privacy-text a {
    color: #6f4dd9;
    text-decoration: none;
}

.contact-us-privacy-text a:hover {
    text-decoration: underline;
}

.contact-us-submit-btn {
    background: linear-gradient(90deg, #564ad6 0%, #6053da 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    display: block;
    /* font-size: 1.7rem; */
    font-weight: 600;
    line-height: 1.3;
    padding: 12px 18px;
    width: 100%;
}

.contact-us-submit-btn:hover {
    background: linear-gradient(90deg, #4f43ca 0%, #584bd0 100%);
}

.contact-us-submit-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(130, 89, 232, 0.25);
    outline: none;
}

#contactUsForm .error-message {
    color: #dc3545;
    display: none;
    /* font-size: 1.1rem; */
    margin-top: 5px;
}

@media (max-width: 991px) {
    .contact-us-hero {
        padding: 52px 0 44px;
    }

    .contact-us-form-wrap {
        margin-top: 8px;
    }

    .contact-us-info-item h3,
    .contact-us-form-wrap h2 {
        font-size: 2.1rem;
    }

    .contact-us-info-item p,
    .contact-us-subtitle,
    .contact-us-label,
    .contact-us-input,
    .contact-us-submit-btn {
        font-size: 1.35rem;
    }

    .contact-us-page {
        padding: 58px 0 72px;
    }
}

@media (max-width: 576px) {
    .contact-us-page {
        padding-top: 42px !important;
        padding-bottom: 56px !important;
    }

    .contact-us-hero {
        padding: 44px 0 36px;
    }

    .contact-us-hero h1 {
        font-size: 2.2rem;
    }

    .contact-us-hero p {
        font-size: 1.1rem;
    }

    .contact-us-form-card {
        border-radius: 12px;
        padding: 22px 16px;
    }

    .contact-us-info-item {
        margin-bottom: 24px;
    }

    .contact-us-info-item h3 {
        font-size: 1.8rem;
    }

    .contact-us-info-item p,
    .contact-us-subtitle {
        font-size: 1.2rem;
    }
}

.data-bolt-icon {
    background-color: #5c52d6;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile optimization for contact form section */
@media (max-width: 991px) {
    .data-hero-section .row {
        align-items: flex-start !important;
    }

    .data-hero-section .col-lg-7 {
        max-height: 60vh;
        overflow: hidden;
        position: relative;
    }

    .data-hero-section .col-lg-7::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        background: linear-gradient(transparent, #161625);
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .data-hero-section .col-lg-7.expanded {
        max-height: none;
    }

    .data-hero-section .col-lg-7.expanded::after {
        opacity: 0;
    }

    .data-hero-section .col-lg-5 {
        margin-top: -10px;
    }
}

@media (max-width: 768px) {
    .data-hero-section .col-lg-7 {
        max-height: 45vh;
        margin-bottom: 20px;
    }

    .data-hero-section .data-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .data-hero-section .data-process-step {
        margin-bottom: 15px;
    }

    .data-hero-section .data-service-options {
        margin-bottom: 15px !important;
    }

    .data-form-card {
        margin-top: 0;
        box-shadow: 0 8px 25px rgba(130, 89, 232, 0.15);
        border: 2px solid rgba(130, 89, 232, 0.1);
    }
}

@media (max-width: 576px) {
    .data-hero-section .col-lg-7 {
        max-height: 40vh;
    }

    .data-heading {
        font-size: 1.8rem !important;
    }
}

/* View More Button Styles */
.view-more-btn {
    background: linear-gradient(135deg, #8259E8, #6A40C6);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(130, 89, 232, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.view-more-btn:hover {
    background: linear-gradient(135deg, #6A40C6, #5A32B8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(130, 89, 232, 0.4);
}

.view-more-btn:active {
    transform: translateY(0);
}

/* Mobile specific adjustments for expanded state */
@media (max-width: 991px) {
    .data-hero-section .col-lg-7.expanded {
        max-height: none !important;
        overflow: visible !important;
    }

    .data-hero-section .col-lg-7.expanded::after {
        display: none !important;
        opacity: 0 !important;
    }
}



/* footer section */

.custom-footer {
    padding: 2rem 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.brand-tagline {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

.divider-line {
    border-top: 1px dotted #ccc;
    margin: 1.5rem 0;
}

.copyright-text {
    color: #666;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* border: 1px solid #8855ff; */
    color: #8855ff;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #c7bbe2;
    color: white;
}

@media (max-width: 767.98px) {
    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright-text {
        text-align: center;
    }

    .footer-column {
        margin-bottom: 1.5rem;
    }
}



.compliance-section {
    background-color: #151729;
    color: #ffffff;
    padding: 80px 0px !important;
    letter-spacing: 1px;
}

.compliance-heading {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 48px;
    color: #ebecf5;
}

.compliance-text {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 650px;
}

@media (max-width: 768px) {
    .compliance-heading {
        font-size: 2rem;
    }

    .compliance-text {
        font-size: 1rem;
    }

    .compliance-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 576px) {
    .compliance-heading {
        font-size: 1.75rem;
    }

    .compliance-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
}


/* products page */

.text-bold {
    font-weight: bold;
}

.product-page {
    h1 {
        font-size: 48px;
        line-height: 58px;
    }

    h2 {
        font-size: 40px;
        line-height: 48px;
    }
}

.product-header-section {
    background-color: var(--light-purple, #f5f2ff);
    text-align: center;

    .container {
        display: flex;
        max-width: 62.5rem;
        padding: 4rem 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        align-self: stretch;
    }

    h1 {
        color: #1A1A1A;
        text-align: center;
        font-family: Inter;
        font-size: 3rem;
        font-style: normal;
        font-weight: 700;
        line-height: 3.625rem;
        margin: 0;
        padding: 0;
    }

    .container-description {
        display: flex;
        max-width: 37.5rem;
        flex-direction: column;
        align-items: center;
    }

    .lead {
        color: #555;
        text-align: center;
        font-family: Inter;
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.625rem;
        margin: 0;
        padding: 0;
    }

    .direct-answer {
        color: #555;
        text-align: center;
        font-family: Inter;
        font-style: normal;
        font-weight: 500;
        line-height: 1.75rem;
        margin: 0;
        padding: 0;
    }

    .container-actions {
        display: flex;
        padding-top: 1rem;
        flex-direction: column;
        align-items: center;
        align-self: stretch;
    }
}

.cards-container {
    display: flex;
    min-height: 13.00875rem;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    flex-wrap: wrap;

    .container-card {
        display: flex;
        max-width: 62.5rem;
        padding: 0 0.75rem;
        flex-direction: column;
        align-items: center;
        align-self: stretch;

        .container-card-logo {
            display: flex;
            width: 4rem;
            height: 4rem;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            border-radius: 2rem;
            background: linear-gradient(120deg, #7B61FF 0%, #8259E8 40%, #5C4D91 100%);
            box-shadow: 0 4px 18px 0 rgba(130, 89, 232, 0.18), 0 1.5px 6px 0 rgba(0, 0, 0, 0.08);
            margin-bottom: 1.25rem;

            .card-logo-img {
                width: 2.3125rem;
                height: 2.25rem;
                flex-shrink: 0;
            }

            &:hover {
                box-shadow: 0 8px 32px 0 rgba(130, 89, 232, 0.18), 0 4px 16px rgba(0, 0, 0, 0.10);
                transform: scale(1.06);
                transition: background-color 0.3s cubic-bezier(0.23, 1, 0.32, 1), color 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);

                &::after {
                    content: "";
                    position: absolute;
                    inset: -8px;
                    border-radius: 50%;
                    border: 2px solid rgba(130, 89, 232, 0.12);
                    opacity: 1;
                    box-shadow: 0 0 24px 8px rgba(130, 89, 232, 0.10);
                    border-color: #7B61FF;
                    pointer-events: none;
                    transition: opacity 0.3s, box-shadow 0.3s, border-color 0.3s;
                }
            }


        }

        .container-card-header {
            display: flex;
            width: 19.1875rem;
            flex-direction: column;
            align-items: center;
            color: #333;
            text-align: center;
            font-family: Inter;
            font-size: 1.25rem;
            font-style: normal;
            font-weight: 700;
            line-height: 1.5rem;
            margin-bottom: 0.88rem;
        }

        .container-card-body {
            display: flex;
            width: 19.1875rem;
            flex-direction: column;
            align-items: center;
            color: #333;
            text-align: center;
            font-family: Inter;
            font-size: 0.875rem;
            font-style: normal;
            font-weight: 400;
            line-height: 1.4375rem;
        }
    }
}

.section-block {
    padding-top: 5rem !important;
}


.prospect-section {
    text-align: center;
    padding: 4rem 1rem;
}

.prospect-heading {
    font-weight: 700;
    font-size: 2rem;
}

.prospect-description {
    max-width: 600px;
    margin: 1rem auto 2rem;
    font-size: 0.95rem;
    color: #555;
}

.prospect-cta .btn-custom {
    margin: 0 0.5rem;
}

.prospect-image-full {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin-top: 0.5rem;
}

.prospect-image-full img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .prospect-heading {
        font-size: 3rem;
    }

    .prospect-description {
        font-size: 1rem;
    }
}



/* products third section */

.section-intro {
    text-align: center;
    padding: 1rem 1rem 3rem;
}

.section-intro h6 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.section-intro h2 {
    font-weight: 700;
    font-size: 2rem;
    margin: 1rem 0 0.5rem;
}

.section-intro p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
}

.feature-img {

    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.feature-text h6 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000;
}

.feature-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.95rem;
    color: #555;
}

.feature-text strong {
    font-weight: 600;
    color: #000;
}

@media (min-width: 768px) {
    .section-intro h2 {
        font-size: 2.5rem;
    }

    .feature-text p {
        font-size: 1rem;
    }
}



/* testimonails */

.testimonial-card {
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: left;
    height: 100%;
}

.testimonial-logo {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-position {
    font-size: 0.85rem;
    color: #666;
}


.challenge-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(120deg, #7B61FF 0%, #8259E8 40%, #5C4D91 100%);
    color: #fff;
    box-shadow: 0 4px 18px 0 rgba(130, 89, 232, 0.18), 0 1.5px 6px rgba(0, 0, 0, 0.08);
    font-size: 2rem;
    transition:
        box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
        background-color 0.3s;
    position: relative;
    overflow: visible;
}

.challenge-icon:hover {
    box-shadow: 0 8px 32px 0 rgba(130, 89, 232, 0.18), 0 4px 16px rgba(0, 0, 0, 0.10);
    transform: scale(1.06);
    transition:
        background-color 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        color 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.challenge-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(130, 89, 232, 0.12);
    opacity: 0;
    transition: opacity 0.3s, box-shadow 0.3s, border-color 0.3s;
    pointer-events: none;
}

.challenge-icon:hover::after {
    opacity: 1;
    box-shadow: 0 0 24px 8px rgba(130, 89, 232, 0.10);
    border-color: #7B61FF;
}

.main-heading {
    margin-bottom: 60px;
    color: #212529;
    text-align: center;
    font-family: Inter;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3rem;
}

.challenge-title {
    font-weight: bold;
    margin-bottom: 15px;
}

.challenge-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.section-padding {
    padding: 0px 0 80px 0;
}

.text-center {
    text-align: center;
}

.logo {
    margin-top: 50px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* faq section */


.faq-section {
    padding: 60px 0;
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-title {
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 15px;
    max-width: 32rem;
}

.faq-intro {
    color: #6c757d;
    max-width: 500px;
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
    background-color: white;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: #212529;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-item {
    /* border-radius: 10px !important; */
    /* overflow: hidden; */
    margin-bottom: 15px;
    border: 2px solid #dee2e6;
}

.accordion-body {
    padding: 0 20px 20px 20px;
    color: #6c757d;
}

.accordion-button::after {
    background-image: none !important;
    content: "\f067" !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    color: #212529;
    width: auto;
    height: auto;
    margin-right: 10px;
}

.accordion-button:not(.collapsed)::after {
    content: "\f068" !important;
    transform: rotate(0deg);
}

.card {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    height: 540px;
    width: 495px;
}

.card img {
    width: 80px;
    margin-bottom: 20px;
    padding-top: 100px;
}

.card h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #000;
}

.card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 6rem;
    align-items: flex-start;
    align-self: stretch;
}

@media (max-width: 1024px) {
    .article-grid {
        gap: 3rem;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .article-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-grid {
        gap: 1rem;
        grid-template-columns: 1fr;
    }
}

.article-item .content-body {
    flex-grow: 1;
}

.article-item {
    overflow: hidden;
    display: flex;
    padding-bottom: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 40px;
    background: #FAF5FF;
    height: 400px;
}

.article-content-preview {
    display: flex;
    padding: 0 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.article-preview-title {
    color: #212529;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.8px;
    display: flex;
    align-self: stretch;
    flex: 1 0 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.h2-small-text {
    font-size: 0.9rem !important;
}

.article-item .content-body {
    flex-grow: 1;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    color: #212529;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 57.6px;
    /* 144% */
}

.article-item p.date {
    color: #6B6B6B;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 0px;
    /* 162.857% */
    align-self: stretch;
}

.article-preview-content {
    overflow: hidden;
    color: #212529;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    height: 72px;
    align-self: stretch;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.article-preview-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.article-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.article-item-link:hover .article-item {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #8259E8;
}

.article-content-preview .markdown-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    text-decoration: none;
    color: #8259E8;
}

.back-link:hover {
    text-decoration: underline;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    background-color: #f5f2ff;
    padding: 2rem;
    border-radius: 8px;
}

/*
.articles-container {
    display: flex;
    width: 1480px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    align-self: center;
    padding-top: 70px;
    padding-bottom: 70px;
}
*/

.article-container {
    max-width: 1440px;
    margin: 0px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-top: 80px;
}

.hero-image {
    max-width: 1480px;
    height: 480px;
    opacity: 1;
    border-radius: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    width: 100%;
    display: block;
    /* If using as a background image, set background-image: url('...'); */
    /* If using <img>, object-fit: cover will crop/trim to fit */
}

.hero-title {
    min-height: 96px;
    opacity: 1;
    font-family: Inter;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0px;
    text-align: left;
    vertical-align: middle;
}

.hero-date {
    display: box;
    box-orient: vertical;
    line-clamp: 1;
    align-self: stretch;
    overflow: hidden;
    color: #6B6B6B;
    text-align: center;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.8px;
    /* 142.5% */
}

.hero-grid-item {
    display: flex;
    max-width: 600px;
    flex-direction: column;
    align-items: center;
}

.hero-grid-title {
    color: #212529;
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 120% */
    align-self: stretch;
}

.hero-article-item {
    max-width: 1480px;
}

/*
.hero-article-item {
    justify-self: center;
    align-self: center;
    width: 1480px;
    height: 880px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 40px;
}
*/

.article-content {
    max-width: 914px;
    margin: 0 auto;
    color: #212529;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0px;
}

.article-content img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ol,
.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-image-container {
    width: 100%;
    display: flex;
    height: 180px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    overflow: hidden;
    border-radius: 10px;
    background: #eee;
    position: relative;
}

.article-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
    border-radius: 10px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .article-image-container {
        height: 120px;
    }

    .article-image-container img {
        aspect-ratio: 3/2;
    }
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio (height / width = 9/16 = 0.5625) */
  overflow: hidden;
  border-radius: 1rem; /* optional */
  background: #000; /* fallback background */
}

.video-container video,
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* or "contain" if you don’t want cropping */
}

@media (max-width: 480px) {
    .article-image-container {
        height: 80px;
    }

    .article-image-container img {
        aspect-ratio: 3/2;
    }
}

.article-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #8259E8;
}

.article-item a {
    text-decoration: none;
    color: #1a1a1a;
}

.article-item a:hover {
    color: #8259E8;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

h2 {
    scroll-margin-top: 5rem;
}

code {
    background-color: #f0f0f0;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
}

strong {
    font-weight: bold;
}

.toc-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
}

.toc-sidebar {
    position: sticky;
    top: 6rem;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    border-radius: 16px;
    background: #FAF5FF;
    height: fit-content;
}

.toc-sidebar h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.toc-sidebar ul {
    list-style-type: none;
    padding: 0;
    border-left: 2px solid #ddd;
}

.toc-sidebar a {
    display: block;
    padding: 0.5rem;
    margin: 0.2rem 0;
    text-decoration: none;
    color: #000000;
    transition: all 0.2s;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    border-left: 2px solid transparent;
    padding-left: 1rem;
    border-left: 2px solid transparent;
    transform: translateX(-2px);
}

.toc-sidebar li>a:hover {
    border-left-color: #8259E8;
    transform: translateX(0);
}


.toc-container.no-toc {
    grid-template-columns: 1fr;
}

@media (max-width: 960px) {
    .hero-article-item {
        width: 92%;
    }

    .hero-image {
        height: auto;

    }

    .toc-container {
        grid-template-columns: 1fr;
    }

    .article-content-main {
        max-width: 92%;
        margin: 0 auto;
    }

    .toc-sidebar {
        display: none;
    }
}

.share-social {
    width: 386px;
    height: 38px;
    display: flex;
}

.social-box {
    height: 50px;
    max-width: fit-content;
    display: flex;
}

.sta {
    max-width: fit-content;
    margin-right: 15px;
    margin-top: 10px;
}

.no-articles {
    min-height: 450px;
}


/* Media Solutions Page */
.media-solutions-page {
    background-color: #f8f9fa;
}

.media-hero-section {
    background-color: var(--light-purple, #f5f2ff);
    padding: 4rem 0;
    text-align: center;
}

.media-hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1A1A1A;
}

.media-hero-section .lead {
    font-size: 1.25rem;
    color: #6C6C6C;
    max-width: 700px;
    margin: 1rem auto 0;
}

.media-intro-section {
    padding: 4rem 0;
}

.media-intro-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #343a40;
}

.differentiators-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.differentiators-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.differentiators-section .subtitle {
    color: #6c757d;
    margin-bottom: 3rem;
}

.differentiator-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.differentiator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.differentiator-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-purple, #8259E8);
    margin-bottom: 1rem;
}

.offerings-section {
    padding: 5rem 0;
}

.offerings-section h2 {
    font-weight: 700;
    margin-bottom: 3rem;
    color: #212529;
}

.offering-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #E9EAEB;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offering-card-divider {
    height: 1px;
    background-color: #E9EAEB;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

/* Make row use flexbox for equal height cards */
.offerings-section .row {
    display: flex;
    flex-wrap: wrap;
}

.offerings-section .col-lg-4 {
    display: flex;
    margin-bottom: 2rem;
}

/* .offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
} */

.offering-card h3 {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.offering-card p {
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    min-height: 180px;
}

.offering-card-heading {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

@media (max-width: 992px) {
    .offering-card p {
        min-height: auto;
    }
}

.outcomes-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.outcomes-list li {
    position: relative;
    color: #666;
    font-size: 14.012px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.8px;
    padding-left: 24px;
}

.outcomes-list li::before {
    content: '\f00c';
    /* Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #28A745;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 16px;
}

.media-faq-section {
    padding: 5rem 0;
}

.media-faq-section h2 {
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Resources page */
#page-resources {
    padding-top: 5rem;
    padding-bottom: 4rem;

    .resources__heading {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .resources__heading .tagline {
        display: inline-flex;
        align-self: flex-start;
        margin-bottom: 0.25rem;
    }

    .resources__title {
        font-size: 2.25rem;
        font-weight: 700;
        margin: 0;
        color: #0f1023;
    }

    .resources__grid {
        row-gap: 1.75rem;
    }

    .article-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #FAF5FF;
        border-radius: 40px;
        transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background-color 0.2s;
        overflow: hidden;
        box-shadow: 0 8px 22px rgba(15, 16, 35, 0.04);
    }

    .article-card:hover {
        border-color: #d6d9e6;
        box-shadow: 0 14px 30px rgba(15, 16, 35, 0.06);
        transform: none;
        background-color: #ffffff;
    }

    .article-card__link {
        color: inherit;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .article-card__image-wrap {
        position: relative;
        height: 210px;
        overflow: hidden;
    }

    .article-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease, filter 0.35s ease;
    }

    .article-card__image-accent {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 16, 35, 0) 40%, rgba(15, 16, 35, 0.2) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .article-card:hover .article-card__image {
        filter: brightness(0.99) saturate(1.02);
        transform: none;
    }

    .article-card:hover .article-card__image-accent {
        opacity: 0.55;
    }

    .article-card__content {
        padding: 1.25rem 1.35rem 1.4rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        gap: 0.65rem;
    }

    .article-card__meta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 14px;
        color: #6B6B6B;
        letter-spacing: 0.01em;
        font-style: normal;
        font-weight: 400;
        line-height: 22.8px; /* 162.857% */
        margin-bottom: 0px;
    }

    .article-card__meta-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #d0d4e2;
        display: inline-flex;
    }

    .article-card__title {
        margin: 0;
        flex-grow: 1;
        transition: color 0.2s;
        color: #212529;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 26px;
    }

    .article-card__preview {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #212529;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 150% */
    }

    .article-card:hover .article-card__title {
        color: #8259E8;
    }

    @media (max-width: 767px) {
        .resources__title {
            font-size: 1.9rem;
        }

        .article-card__image-wrap {
            height: 180px;
        }
    }
}


.btn-cta-main {
    background-color: #8259E8;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-cta-main:hover {
    background-color: #6A40C6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 64, 198, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-cta-main:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(106, 64, 198, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
}



/* Whitepaper Landing Page Styles */
.whitepaper-page {
    background-color: #fbf7ff;

    .whitepaper-hero-section {
        background-color: var(--light-purple, #f5f2ff);
        padding: 4rem 0;
        text-align: center;

        h1 {
            font-size: 3rem;
            font-weight: 700;
            color: #1A1A1A;
        }

        .lead {
            font-size: 1.25rem;
            color: #6C6C6C;
            max-width: 700px;
            margin: 1rem auto 0;
        }
    }

    .whitepaper-intro-section {
        padding: 4rem 0;

        p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #343a40;
        }
    }


    .whitepaper-download-section {

        .whitepaper-content {
            padding-right: 2rem;
        }

        .report-description {
            background-color: #f8f9ff;
            padding: 2rem;
            border-radius: 12px;
        }

        .download-form-container {
            position: sticky;
            top: 100px;

            .whitepaper-img {
                width: 75%;
                height: auto;
            }

            .whitepaper-card {
                background: white;
                border-radius: 16px;
                padding: 2rem;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
                border: 1px solid #e9ecef;

                .whitepaper-card-header {
                    text-align: center;
                    margin-bottom: 2rem;

                    h3 {
                        color: #2c3e50;
                        margin-bottom: 0.5rem;
                        font-weight: 600;
                    }

                    p {
                        color: #6c757d;
                        margin-bottom: 0;
                    }
                }

                .whitepaper-card-footer {
                    text-align: center;

                    a {
                        color: var(--primary-purple);
                        text-decoration: none;
                    }

                    a:hover {
                        text-decoration: underline;
                    }
                }
            }
        }
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .whitepaper-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .download-form-container {
        position: static;
    }
}

@media (max-width: 768px) {
    .whitepaper-card {
        padding: 1.5rem;
    }

    .report-description {
        padding: 1.5rem;
    }
}

/* from footer */
html,
body {
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    background: #f2f2f2;
    padding: 20px;
}

.you-own-data {
    background-color: #f9f9f9;
}

.you-own-data__inner {
    padding: 96px 0;
}
.you-own-data .you-own-data__image {
    text-align: center;
}
.you-own-data .you-own-data__title {
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.you-own-data .you-own-data__description {
    margin-top:16px;
    color: #555;
    font-size: 16.875px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.8px; /* 170.667% */
}

/*===========================
   TESTIMONIALS SLIDER STYLES
*/
.testimonial-carousel {
    background-color: #151729;
    padding-top: 80px;
    padding-bottom: 52px;
}

.testimonial-carousel-white {
    background-color: #ffffff;
}

.testimonial-carousel__heading {
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 0;
    padding-bottom: 40px;
}

.testimonial-carousel__slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial-carousel__slide-content {
    gap: 40px;
}

.testimonial-carousel__stats-wrapper {
    width: 460px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-carousel__stats {
    border: solid 1px #8259E8;
    border-radius: 24px;
    padding: 24px 40px;
    margin-bottom: 32px;
}

.testimonial-carousel__stat {
    width: 50%;
}

.testimonial-carousel__stat--full {
    width: 100%;
}

.testimonial-carousel__stat-value {
    color: #fff;
    text-align: center;
    font-size: 26.483px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -1.324px;
}

.testimonial-carousel__stat-value span {
    color: #fff;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
}

.testimonial-carousel__stat-label {
    color: #fff;
    text-align: center;
    font-size: 14.75px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.testimonial-carousel__stat-baseline {
    font-size: 12px;
    opacity: 0.75;
    letter-spacing: 0.2px;
}

.testimonial-carousel__divider {
    height: 2px;
    margin: 24px 0;
    width: 100%;
    background-color: #8259E8;
    opacity: 1;
    border: none;
}

.testimonial-carousel__logo {
    max-width: 100%;
    height: auto;
}

.testimonial-carousel__cta {
    border: solid 1px #fff;
    border-radius: 8px;
    padding: 12px 24px;
}

.testimonial-carousel__cta-link {
    color: #fff;
    text-align: center;
    font-size: 15.25px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.testimonial-carousel__cta-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8259E8 0%, #fff 100%);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
    pointer-events: none;
}

.testimonial-carousel__cta-link:hover::after {
    width: 100%;
    left: 0;
}

.testimonial-carousel__cta-link:hover {
    border-bottom: none;
}

.testimonial-carousel__quote {
    max-width: 350px;
}

.testimonial-carousel__quote-text p {
    color: #FFF;
    font-size: 16.734px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.8px;
    letter-spacing: 1px;
}

.testimonial-carousel__quote-author {
    color: #fff;
    font-size: 19.688px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-top: 16px;
    padding: 0;
    background-color: transparent;
}

.testimonial-carousel__viewport {
    flex: 1;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.testimonial-carousel__track {
    display: flex;
    will-change: transform;
}

.testimonial-carousel__slide {
    min-width: 100%;
}

.testimonial-carousel__nav {
    background: #151729;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
}

.testimonial-carousel__nav-white {
    background-color: transparent;
}

.testimonial-carousel__nav:hover {
    transform: scale(1.1);
}

.testimonial-carousel__nav:active {
    transform: scale(0.95);
}

.testimonial-carousel__pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 1.5rem;
}

.testimonial-carousel__pagination-dot-testimonials {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #8259E8;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
}

.testimonial-carousel__pagination-dot-integrations {
    background: #D5D7DA;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
}

.testimonial-carousel__pagination-dot-testimonials--active {
    background: #fff;
    transform: scale(1.3);
}

.testimonial-carousel__pagination-dot-integrations--active {
    background: #8259E8;
    transform: scale(1.3);
}

.testimonial-carousel__pagination-dot-testimonials:hover {
    background: #fff;
    transform: scale(1.2);
}

.testimonial-carousel__pagination-dot-integrations:hover {
    background: #8259E8;
    transform: scale(1.2);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .testimonial-carousel__heading {
        font-size: 32px;
        line-height: 40px;
    }

    .testimonial-carousel__slider {
        gap: 1rem;
    }

    .testimonial-carousel__slide-content {
        gap: 24px;
    }

    .testimonial-carousel__stats-wrapper {
        width: 380px;
    }

    .testimonial-carousel__quote {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .testimonial-carousel {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .testimonial-carousel__heading {
        font-size: 28px;
        line-height: 36px;
        padding: 0 20px;
    }

    .testimonial-carousel__slider {
        gap: 0.5rem;
    }
    .testimonial-carousel__nav {
        width: 36px;
        height: 36px;
        position: sticky;
        top: 50vh;
    }

    .testimonial-carousel__nav svg {
        width: 32px;
        height: 32px;
    }

    .testimonial-carousel__slide-content {
        flex-direction: column;
        gap: 32px;
        padding: 0 10px;
    }

    .testimonial-carousel__stats-wrapper {
        width: 100%;
    }

    .testimonial-carousel__quote {
        max-width: 100%;
    }

    .testimonial-carousel__stats {
        padding: 20px 24px;
    }

    .testimonial-carousel__stat-value {
        font-size: 22px;
        line-height: 28px;
    }

    .testimonial-carousel__stat-value span {
        font-size: 40px;
        line-height: 48px;
    }

    .testimonial-carousel__viewport {
        cursor: grab;
    }

    .testimonial-carousel__viewport:active {
        cursor: grabbing;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel {
        padding-top: 40px;
        padding-bottom: 32px;
    }

    .testimonial-carousel__heading {
        font-size: 24px;
        line-height: 32px;
    }

    .testimonial-carousel__nav {
        width: 32px;
        height: 32px;
    }

    .testimonial-carousel__nav svg {
        width: 28px;
        height: 28px;
    }

    .testimonial-carousel__stats {
        padding: 16px 20px;
        border-radius: 16px;
    }

    .testimonial-carousel__stat-value {
        font-size: 18px;
        line-height: 24px;
    }

    .testimonial-carousel__stat-value span {
        font-size: 32px;
        line-height: 40px;
    }

    .testimonial-carousel__stat-label {
        font-size: 13px;
        line-height: 18px;
    }

    .testimonial-carousel__cta {
        margin-top: 24px;
        padding: 10px 20px;
    }

    .testimonial-carousel__quote-text p {
        font-size: 15px;
        line-height: 26px;
    }

    .testimonial-carousel__quote-author {
        font-size: 17px;
        line-height: 22px;
    }

    .testimonial-carousel__pagination-dot {
        width: 10px;
        height: 10px;
    }
}
/* Testimonials Slider Section End */

/* About page */
/* 404 page */
.not-found-section {
    padding: 100px 0 120px;
    background: linear-gradient(160deg, #faf7ff 0%, #f5f0ff 100%);
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
}

.not-found-code {
    font-size: clamp(6rem, 16vw, 10rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #8259e8 0%, #5c3dba 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.not-found-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.not-found-description {
    font-size: 1.05rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.not-found-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-purple {
    border: 1px solid #8259e8;
    color: #8259e8;
    background-color: transparent;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-outline-purple:hover {
    background-color: #8259e8;
    color: white;
}

.about-page-hero {
    background: #efedf7;
    padding: 62px 0 54px;
    text-align: center;
}

.about-page-hero h1 {
    color: #1f2228;
    font-size: clamp(2.2rem, 2.5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
}

.about-page-hero p {
    color: #5a5d63;
    line-height: 1.5;
    margin: 0;
}

.about-page-source-fix {
    background: #d8cff1;
    padding: 74px 0;
}

.about-page-source-fix h2,
.about-page-why-built h2,
.about-page-leadership h2 {
    color: #1f2228;
    font-size: clamp(2.4rem, 2.1vw, 4.8rem);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 60px;
}

.about-page-source-fix p,
.about-page-why-built p {
    color: #30343b;
    line-height: 1.7;
    margin: 0 0 16px;
    max-width: 620px;
}

.about-page-icon-orb {
    align-items: center;
    background: rgb(213, 200, 247);
    border-radius: 50%;
    display: flex;
    height: 280px;
    justify-content: center;
    width: 280px;
}

.about-page-icon-orb-chart {
    align-items: center;
    background: rgb(240, 235, 252);
    border-radius: 50%;
    display: flex;
    height: 280px;
    justify-content: center;
    width: 280px;
}

.about-page-icon-orb svg {
    width: 220px;
    height: 220px;
}

.about-page-mission-band {
    background: #0f1330;
    padding: 56px 0;
    text-align: center;
}

.about-page-mission-band h3 {
    color: #ffffff;
    font-size: clamp(2.4rem, 2.4vw, 4.2rem);
    font-weight: 700;
    margin: 0 0 12px;
}

.about-page-mission-band p {
    color: #d0d6ee;
    margin: 0;
}

.about-page-why-built {
    background: #f2f2f4;
    padding: 72px 0 64px;
}

.about-page-feature-cards {
    border-top: 1px solid #dedfe5;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
    padding-top: 46px;
}

.about-page-feature-card {
    background: #ffffff;
    border: 1px solid #e2e4ea;
    border-radius: 14px;
    padding: 24px 22px;
}

.about-page-feature-icon {
    color: #5d6280;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.about-page-feature-card h4 {
    color: #23262d;
    font-weight: 700;
    margin: 20px 0 20px;
}

.about-page-feature-card p,
.about-page-feature-card li {
    color: #3a3f47;
    line-height: 1.65;
    margin: 0 0 10px;
}

.about-page-feature-card ul {
    margin: 4px 0 0;
    padding-left: 18px;
}

.about-page-leadership {
    padding: 74px 0 52px;
}

.about-page-vertical-separator {
    height: 10px;
}

.about-leadership-carousel {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    margin-top: 26px;
}

.about-leadership-nav {
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
}

.about-leadership-nav:hover {
    transform: scale(1.1);
}

.about-leadership-viewport {
    overflow: hidden;
}

.about-leadership-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.about-leadership-slide {
    align-items: stretch;
    display: grid;
    flex: 0 0 100%;
    gap: 28px;
    grid-template-columns: 240px minmax(0, 1fr);
}

.about-leader-photo-col {
    position: relative;
    text-align: center;
}

.about-leader-photo-col::before {
    display: none;
}

.about-leader-photo {
    display: block;
    height: auto;
    margin: 0 auto 50px;
    position: relative;
    width: 184px;
    max-width: 100%;
    z-index: 1;
}

.about-leader-photo-col h4 {
    color: #1f2329;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 3px;
}

.about-leader-photo-col p {
    color: #4f5560;
    font-size: 1.1rem;
    margin: 0 0 8px;
}

.about-leader-linkedin {
    border: 1px solid #7a61e9;
    border-radius: 2px;
    color: #7a61e9;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    padding: 3px 4px;
    text-decoration: none;
}

.about-leader-content-col p {
    color: #2e3239;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 14px;
}

.about-leader-content-col {
    display: flex;
    flex-direction: column;
}

.about-leader-cta {
    background: linear-gradient(90deg, #6c55df 0%, #5b4cd7 100%);
    border-radius: 6px;
    color: #ffffff;
    display: block;
    font-size: 1.1em;
    font-weight: 600;
    margin-top: auto;
    padding: 12px 18px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.about-leader-cta:hover {
    color: #ffffff;
}

.about-leadership-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 65px;
}

.about-leadership-dot {
    background: #c9c9d2;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    height: 15px;
    padding: 0;
    width: 15px;
}

.about-leadership-dot.is-active {
    background: #7a61e9;
}

@media (max-width: 991px) {
    .about-page-hero,
    .about-page-source-fix,
    .about-page-why-built,
    .about-page-leadership {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .about-page-mission-band {
        padding: 46px 0;
    }

    .about-page-feature-cards {
        grid-template-columns: 1fr;
    }

    .about-leadership-carousel {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .about-leadership-slide {
        gap: 22px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-leader-cta {
        width: 100%;
    }

    .about-leadership-nav {
        display: none;
    }

    .about-page-source-fix p,
    .about-page-why-built p {
        max-width: none;
    }
}

@media (max-width: 576px) {
    .about-page-hero h1 {
        font-size: 2.2rem;
    }

    .about-page-hero p {
        font-size: 1.1rem;
    }

    .about-page-source-fix h2,
    .about-page-why-built h2,
    .about-page-leadership h2 {
        font-size: 2rem;
    }

    .about-page-source-fix p,
    .about-page-why-built p,
    .about-leader-content-col p {
        font-size: 1.1rem;
    }

    .about-page-icon-orb {
        height: 210px;
        width: 210px;
    }

    .about-page-icon-orb svg {
        height: 170px;
        width: 170px;
    }

    .about-page-feature-card h4 {
        font-size: 1.45rem;
    }
}

/* ── Billing Callout ───────────────────────────────────────────── */
.billing-callout {
    background: #0F1023;
    padding: 5rem 0;
}

.billing-callout__inner {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.billing-callout__copy {
    flex: 1;
    min-width: 0;
}

.billing-callout .tagline {
    background: rgba(130, 89, 232, 0.2);
    color: #ac90f0;
    box-shadow: none;
}

.billing-callout .tagline i {
    background-color: #8259e8;
}

.billing-callout__heading {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.billing-callout__body {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* quote sits between body and CTA */
.billing-callout__quote {
    margin-bottom: 2rem;
    padding-left: 1.1rem;
    border-left: 2px solid rgba(130, 89, 232, 0.6);
}

.billing-callout__quote p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

.billing-callout__quote-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(130, 89, 232, 0.15);
    border-radius: 6px;
    padding: 0.3rem 0.65rem;
}

.billing-callout__quote-dash {
    display: inline-block;
    width: 16px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.billing-callout__quote-author {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.billing-callout__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: #8259e8;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.billing-callout__cta:hover {
    background: #6b44d4;
    color: #fff;
}

/* pills */
.billing-callout__pills {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-shrink: 0;
    width: 260px;
}

.billing-callout__pill {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s;
}

.billing-callout__pill:hover {
    border-color: rgba(130, 89, 232, 0.5);
}

.billing-callout__pill-price {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.75px;
    flex-shrink: 0;
    min-width: 3.5rem;
}

.billing-callout__pill-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.billing-callout__pill-name {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

.billing-callout__pill-unit {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .billing-callout__inner {
        gap: 3rem;
    }
    .billing-callout__pills {
        width: 230px;
    }
    .billing-callout__heading {
        font-size: 1.85rem;
    }
}

@media (max-width: 768px) {
    .billing-callout {
        padding: 3.5rem 0;
    }
    .billing-callout__inner {
        flex-direction: column;
        gap: 2.5rem;
    }
    .billing-callout__pills {
        width: 100%;
    }
}

/* ── Competitor Comparison Pages ──── */

/* Intro */
.compare-intro-section {
  padding: 3rem 0 2rem;
  background: #fff;
}
.compare-intro-section p {
  font-size: 1.05rem;
  color: #5a5f7a;
  line-height: 1.8;
}

/* Quote (Apollo page) */
.compare-quote-section {
  background: linear-gradient(135deg, #f7f4ff 0%, #f0f4ff 100%);
  padding: 3.5rem 0;
}
.compare-quote {
  border-left: 4px solid #8259e8;
  padding: 1.75rem 2rem 1.75rem 2.25rem;
  margin: 0;
  background: #fff;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 24px rgba(130, 89, 232, 0.08);
}
.compare-quote__text {
  font-size: 1.15rem;
  font-style: italic;
  color: #1a1a2e;
  margin-bottom: 1.1rem;
  line-height: 1.7;
}
.compare-quote__footer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(130, 89, 232, 0.08);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
}
.compare-quote__source {
  font-size: 0.8rem;
  color: #8259e8;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Table section */
.compare-table-section {
  padding: 4rem 0 5rem;
  background: #f9f8fd;
}
.compare-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(15, 16, 35, 0.1);
  overflow: hidden;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

/* Header */
.compare-table thead th {
  padding: 1.4rem 1.75rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-bottom: none;
}
.compare-table th.compare-table__feature {
  width: 24%;
  background: #0f1023;
}
.compare-table th.compare-table__youricp {
  background: #8259e8;
  color: #fff;
  width: 38%;
}
.compare-table th.compare-table__competitor {
  background: #1a1c35;
  color: rgba(255, 255, 255, 0.85);
  width: 38%;
}

/* Body rows */
.compare-table tbody tr {
  border-bottom: 1px solid #eeecf8;
}
.compare-table tbody tr:last-child {
  border-bottom: none;
}
.compare-table tbody tr:hover td {
  background-color: rgba(130, 89, 232, 0.025);
}
.compare-table td {
  padding: 1.2rem 1.75rem;
  font-size: 0.9rem;
  color: #1f2937;
  vertical-align: top;
  line-height: 1.6;
}

/* Feature label */
.compare-table td.compare-table__label {
  font-weight: 600;
  font-size: 0.82rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #fafafa;
  border-right: 1px solid #eeecf8;
  vertical-align: middle;
}

/* YourICP column */
.compare-table tbody td.compare-table__youricp {
  background: #faf7ff;
  border-left: 2px solid rgba(130, 89, 232, 0.2);
  border-right: 1px solid #ede8fa;
}

/* Competitor column */
.compare-table tbody td.compare-table__competitor {
  background: #fff;
}

/* Badges */
.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.compare-badge i {
  font-size: 0.75rem;
  flex-shrink: 0;
}
.compare-badge--win {
  background: #dcfce7;
  color: #15803d;
}
.compare-badge--lose {
  background: #fee2e2;
  color: #b91c1c;
}
.compare-badge--neutral {
  background: #f1f5f9;
  color: #64748b;
}
.compare-detail {
  font-size: 0.83rem;
  color: #7a7f9a;
  margin: 0;
  line-height: 1.55;
}

/* Differentiators */
.compare-differentiators-section {
  background: #fff;
  padding: 5rem 0;
}
.compare-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #8259e8;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap 0.15s ease;
}
.compare-link:hover {
  color: #6b3ed6;
  gap: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .compare-table th.compare-table__feature,
  .compare-table td.compare-table__label {
    display: none;
  }
  .compare-table th.compare-table__youricp,
  .compare-table th.compare-table__competitor,
  .compare-table tbody td.compare-table__youricp,
  .compare-table tbody td.compare-table__competitor {
    width: 50%;
  }
}
