/* Animation initial states */
.hero__heading,
.hero__copy,
.hero__art,
.product-card,
.benefit-card,
.process-step,
.wa-card,
.discover,
.wa-pill {
    opacity: 0;
}

.page {
    display: flex;
    flex-direction: column;
}

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 0.0625rem solid #f5f5f7;
}

.header__inner {
    height: 4.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--wa-space-4);
}

.header__logo {
    inline-size: 9rem;
    display: flex;
}

.header__logo img {
    width: 9rem;
    height: 1.955rem;
}

.footer__brand-logo img {
    width: 8rem;
    height: 1.738rem;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 5vw, 4.6875rem);
    padding: 0 4rem;
}

.header__menu-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header__menu-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 0.8rem;
}

.header__menu-item {
    display: flex;
    align-items: center;
}

.header__menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 0;
    background: transparent;
    font-size: var(--wa-font-16);
    color: #353535;
    cursor: pointer;
    padding: 0;
}

.header__menu-chevron {
    inline-size: 0.9rem;
    block-size: 0.9rem;
    transition: transform 0.2s ease;
}

.header__menu-wrapper:hover .header__menu-chevron,
.header__menu-wrapper.is-open .header__menu-chevron {
    transform: rotate(180deg);
}

.header__popover {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--wa-color-white);
    border-radius: 0.875rem;
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
    padding: 0.625rem;
    display: none;
    flex-direction: column;
    gap: 0.625rem;
    z-index: 40;

}

.header__popover--products,
.header__popover--resources {
    inline-size: 17rem;
}

.header__popover--company {
    inline-size: 17rem;
}

.header__menu-wrapper:hover .header__popover,
.header__menu-wrapper.is-open .header__popover {
    display: flex;
}

.header__popover-item {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    border-radius: 0.625rem;
    padding: 0.5rem;
}

.header__popover-item:hover {
    background: rgba(236, 243, 245, 0.8);
}

.header__popover-icon {
    inline-size: 2rem;
    block-size: 2rem;
}

.header__popover-label {
    flex: 1 1 auto;
    min-inline-size: 0;
    font-size: 0.875rem;
    color: #353535;
    letter-spacing: -0.01em;
}

.header__popover-arrow {
    inline-size: 0.95rem;
    block-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header__popover-arrow img {
    inline-size: 100%;
    block-size: 100%;
}

.header__toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    background-color: #f4f9fd;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding-block: 3.5rem;
}

.hero__heading {
    margin: 0;
    font-size: clamp(2rem, 6vw, 3.75rem);
    line-height: 1.2;
    max-inline-size: 53rem;
    letter-spacing: -0.02em;
    font-family: var(--inter-sbold);
}

.hero__copy {
    margin: 0;
    font-size: 1.1rem;
    color: #103253;
    font-family: var(--inter-regular);
    max-inline-size: 63rem;
    line-height: 1.8;
}

.products {
    padding-block: var(--wa-space-20);
}

.products__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--wa-space-10);
}

.products__list {
    inline-size: min(100%, 48rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.875rem;
}

.product-card {
    flex: 1 1 20rem;
    border: 0.05rem solid var(--wa-color-card-border);
    box-shadow: 0 0.05rem 0.2rem rgba(0, 0, 0, 0.05);
    padding: 1.625rem;
    gap: 1rem;
}

.product-card__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-card__icon {
    inline-size: 2.4rem;
    block-size: 2.4rem;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__icon--red {
    background: #fee2e2;
}

.product-card__icon--green {
    background: #dcfce7;
}

.product-card__icon svg {
    inline-size: 1.25rem;
    block-size: 1.25rem;
}

.product-card__title {
    margin: 0;
    font-size: 1.2rem;
}

.product-card__copy {
    margin: 0;
    color: var(--wa-color-text-600);
    font-size: 1.1rem;
    font-family: var(--inter-light);
    line-height: 1.5;
    flex-grow: 1;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--wa-color-primary-600);
}

.product-card__link svg {
    inline-size: 0.7rem;
    block-size: 0.8rem;
}

.product-card__link:hover {
    color: var(--wa-color-primary-700);
}

.benefits {
    padding-block-end: 3.5rem;
}

.benefits__panel {
    background: linear-gradient(140deg, rgba(56, 160, 255, 0.05), #f1f6fb 50%, #e6eff7 100%);
    border-radius: var(--wa-radius-xl);
    padding: clamp(2rem, 6vw, 7.5rem) 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.3rem;
}

.benefits__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--wa-space-4);
    text-align: center;
}

.benefits__subline {
    margin: 0;
    color: #3f5073;
    font-size: clamp(1rem, 2.4vw, var(--wa-font-20));
    line-height: 1.4;
}

.benefits__list {
    inline-size: min(100%, 63.5rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.875rem;
}

.benefit-card {
    flex: 1 1 28rem;
    padding: 1.875rem;
    min-block-size: 13.5rem;
}

.benefit-card h3,
.benefit-card h4,
.benefit-card p {
    margin: 0;
}

.benefit-card h3 {
    font-size: var(--wa-font-20);
    font-family: var(--inter-medium);
}

.benefit-card h4 {
    font-size: var(--wa-font-16);
    font-family: var(--inter-regular);
}

.benefit-card p {
    margin-top: 1rem;
    color: var(--wa-color-text-400);
    font-size: 1rem;
    font-family: var(--inter-regular);
    line-height: 1.4;
}

.process {
    padding-block: var(--wa-space-20);
}

.process__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.process__tag {
    margin: 0;
    color: var(--wa-color-primary-600);
    font-size: var(--wa-font-20);
}

.process__title {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, var(--wa-font-30));
}

.process__steps {
    inline-size: min(100%, 71.875rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.125rem;
}

.process-step {
    flex: 1 1 19rem;
    max-inline-size: 21.875rem;
    padding-block: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem;
}

.process-step__index {
    inline-size: 3.125rem;
    block-size: 3.125rem;
    border-radius: 50%;
    border: 0.0625rem solid var(--wa-color-primary-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wa-color-primary-600);
    font-size: var(--wa-font-20);
}

.process-step__title {
    margin: 0;
    font-size: var(--wa-font-20);
}

.process-step__copy {
    margin: 0;
    color: #6c6c6c;
    font-size: 1.1rem;
    line-height: 1.3;
}

.process__image {
    inline-size: min(100%, 50.9rem);
}

.roadmap {
    background: var(--wa-color-primary-600);
    border-radius: 5.75rem 5.75rem 0 0;
    padding-block: 6rem;
}

.roadmap__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.roadmap__content {
    flex: 1 1 30rem;
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.roadmap__title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.125rem);
    font-family: var(--inter-sbold);
    line-height: 1.2;
    color: var(--wa-color-white);
}

.roadmap__copy {
    margin: 0;
    color: var(--wa-color-white);
    font-size: var(--wa-font-20);
    font-family: var(--inter-light);
    line-height: 1.5;
}

.roadmap__tags {
    position: relative;
    flex: 1 1 24rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.roadmap__tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: var(--wa-radius-sm);
    background: var(--wa-color-primary-600);
    padding: 0.625rem;
    color: var(--wa-color-white);
    font-size: var(--wa-font-15);
    white-space: nowrap;
    border: 1px solid var(--white-op);
}

/* leadenrichment */
.roadmap__tag.pos1 {
    top: 80px;
}

/* companyenrichment */
.roadmap__tag.pos2 {
    bottom: 80px;
}

/* publicapis */
.roadmap__tag.pos3 {
    top: 200px;
    left: 60px;
}

/* integration */
.roadmap__tag.pos4 {
    top: 200px;
    right: 60px;
}

/* leadgeneration */
.roadmap__tag.pos5 {
    bottom: -12px;
}

/* structureddata */
.roadmap__tag.pos6 {
    top: 30px;
    left: 60px;
}

/* companyintellegence */
.roadmap__tag.pos7 {
    top: 30px;
    right: 60px;
}

/* dashboard */
.roadmap__tag.pos8 {
    top: -25px;
}

.roadmap__tag::before {
    content: "";
    inline-size: 0.9375rem;
    block-size: 0.9375rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.roadmap__tag.pos1::before {
    background-image: url("../../images/site/roadmap/leadenrichment.9c241971288a82ac3eaf91bbc3c26956.svg");
}

.roadmap__tag.pos2::before {
    background-image: url("../../images/site/roadmap/company-intelligence.c3d8374db96a1e387f0c241cbb98db93.svg");
}

.roadmap__tag.pos3::before {
    background-image: url("../../images/site/roadmap/publicapis.b2dca6253a078d02c8eb8de123a76dc6.svg");
}

.roadmap__tag.pos4::before {
    background-image: url("../../images/site/roadmap/integrations.adda7bad309b61546505964634391940.svg");
}

.roadmap__tag.pos5::before {
    background-image: url("../../images/site/roadmap/leadgenreation.2ddc4bfa947ee79cab748b4eba42c57c.svg");
}

.roadmap__tag.pos6::before {
    background-image: url("../../images/site/roadmap/structureddata.97d1ef60a8e6f351d50e3460a329eab1.svg");
}

.roadmap__tag.pos7::before {
    background-image: url("../../images/site/roadmap/company-intelligence.c3d8374db96a1e387f0c241cbb98db93.svg");
}

.roadmap__tag.pos8::before {
    background-image: url("../../images/site/roadmap/dashboard.05b53c537204ec2a1af001cfcfdd68a2.svg");
}

.mission__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3.125rem;
}

.mission__media {
    flex: 1 1 24rem;
    max-inline-size: 34.625rem;
    border-radius: 0.625rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mission__media img {
    inline-size: 100%;
    object-fit: cover;
}

.mission__media-caption {
    margin: 0;
    background: var(--wa-color-primary-600);
    color: var(--wa-color-white);
    font-size: var(--wa-font-20);
    line-height: 1.3;
    padding: 1rem 1.25rem;
}

.mission__content {
    flex: 1 1 30rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.mission__kicker {
    margin: 0;
    color: var(--wa-color-primary-600);
    font-size: 26px;
}

.mission__paragraph {
    margin: 0;
    font-size: var(--wa-font-20);
    font-family: var(--inter-light);
    line-height: 1.35;
}

.vision {
    padding-block: 3.125rem;
}

.vision__card {
    border-radius: var(--wa-radius-2xl);
    background: url(../../images/site/quotebg.722813029d56cd48e4d26ce7f9df61fb.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
    box-shadow: 0.25rem 0 0.25rem rgba(191, 189, 189, 0.25), 0 0.25rem 0.25rem rgba(191, 189, 189, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
    padding: clamp(2rem, 6vw, 5.875rem) 1.5rem;
}

.vision__title {
    margin: 0;
    font-size: clamp(1.8rem, 4.5vw, var(--wa-font-36));
    font-family: var(--inter-sbold);
}

.vision__copy {
    margin: 0;
    max-inline-size: 35.7rem;
    font-size: var(--wa-font-18);
    line-height: 1.5;
    font-family: var(--inter-light);
}

.footer {
    padding-top: 2.5rem;
    background: var(--wa-color-white);
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    padding-bottom: 2.2rem;
}

.footer__brand {
    flex: 1 1 12rem;
    max-inline-size: 12.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__brand-copy {
    margin: 0;
    font-size: var(--wa-font-18);
    line-height: 1.3;
}

.footer__social {
    display: flex;
    gap: 0.7rem;
}

.footer__social-item {
    inline-size: 1.25rem;
    block-size: 1.25rem;
}

.footer__columns {
    flex: 1 1 32rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: flex-end;
}

.footer__column {
    min-inline-size: 9rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__column-title {
    margin: 0 0 0.2rem;
    font-size: var(--wa-font-15);
}

.footer__bottom {
    border-top: 0.05rem solid var(--wa-color-primary-300);
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.15);
}

.footer__bottom-inner {
    min-height: 4.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.footer__copyright {
    color: var(--wa-color-text-300);
    font-size: var(--wa-font-15);
    font-family: var(--inter-light);
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
}

@media (max-width: 62rem) {
    .header__button {
        display: none;
    }

    .header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header__menu {
        position: absolute;
        inset-inline: 0;
        top: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem var(--wa-container-padding);
        border-bottom: 0.0625rem solid var(--wa-color-card-border);
        background: var(--wa-color-white);
        display: none;
    }

    .header__menu-wrapper {
        width: 100%;
        align-items: flex-start;
        height: auto;
    }

    .header__menu-wrapper::after {
        content: none;
    }

    .header__menu-trigger {
        width: 100%;
        justify-content: space-between;
        min-height: 2.5rem;
    }

    .header__popover {
        position: static;
        transform: none;
        inline-size: 100%;
        box-shadow: none;
        border-radius: 1rem;
        padding: 0;
        background: transparent;
    }

    .header__menu-wrapper:hover .header__popover {
        display: none;
    }

    .header__menu-wrapper.is-open .header__popover {
        display: flex;
    }

    .header__popover-item {
        min-block-size: 3.75rem;
        padding: 0.625rem;
    }

    .header__menu.is-open {
        display: flex;
    }

    .footer__columns {
        justify-content: flex-start;
    }
}

@media (max-width: 48rem) {
    .roadmap {
        border-radius: 2.5rem 2.5rem 0 0;
        padding-block: 4rem;
    }

    .roadmap__copy,
    .mission__paragraph {
        font-size: var(--wa-font-18);
    }
}

.subject-request {
    background: url(/images/site/herosectionbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

body,
html {
    background-color: #fff !important;
    background-image: none !important;
}

.signin_box {
    border: none !important;
}