body.solution-page .pricing-note, body.solution-page .intro:not(.mob) {
    display: none;
}

.intelligence-section {
    --intelligence-orange: #FE3F00;
    --intelligence-bg: #FAF6F0;
    --intelligence-card-bg: #ffffff;
    --intelligence-text: #303030;
    --intelligence-muted: #555;
    position: relative;
    overflow: hidden;
    padding: 3.75rem 0;
    background: var(--intelligence-bg);
    color: var(--intelligence-text);
}

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

.intelligence-section .eyebrow {
    margin: 0 0 1.5rem;
    color: #303030;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
}

.intelligence-section__header h2 {
    margin: 0;
    color: #303030;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.intelligence-section__intro {
    margin: 1.25rem auto 0;
    color: #303030;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
}

.intelligence-tabs {
    position: relative;
    display: flex;
    gap: 0.56rem;
    margin: 2.5rem 0 1rem;
}

.intelligence-tabs__button {
    position: relative;
    padding: 0.75rem 1.875rem;
    border: 2px solid var(--neo-org);
    border-radius: 2px;
    background: transparent;
    color: var(--neo-org);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition:
        color 300ms ease,
        background-color 300ms ease,
        transform 300ms ease;
}

.intelligence-tabs__button::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: var(--neo-org);
    transform: translateY(101%);
    transition: transform 350ms cubic-bezier(.16, 1, .3, 1);
}

.intelligence-tabs__button:hover {
    transform: translateY(-2px);
}

.intelligence-tabs__button.is-active {
    color: #fff;
}

.intelligence-tabs__button.is-active::before {
    transform: translateY(0);
}

.intelligence-tabs__button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.intelligence-card-wrap {
    position: relative;
    margin-top: 0.25rem;
    perspective: 1400px;
}

.intelligence-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.875rem 1.25rem;
    border-top: 4px solid var(--intelligence-orange);
    border-radius: 16px;
    background: var(--intelligence-card-bg);
    transform-origin: center center;
    overflow: hidden;
}

.intelligence-card[hidden] {
    display: none !important;
}

.intelligence-card::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: -10%;
    width: 1px;
    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--intelligence-orange),
            transparent
        );
    opacity: 0;
    transform: translateX(0);
}

.intelligence-card.is-animating::before {
    animation: intelligence-light-sweep 900ms ease;
}

.intelligence-card::after {
    content: "";
    position: absolute;
    z-index: 0;

    width: 300px;
    height: 300px;

    right: -180px;
    bottom: -200px;

    border-radius: 50%;

    background: var(--intelligence-orange);
    opacity: 0.035;

    filter: blur(40px);
    pointer-events: none;
}

.intelligence-card__content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.intelligence-card__eyebrow {
    margin: 0 0 0.5rem;
    color: var(--intelligence-orange);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

.intelligence-card__title {
    margin: 0;
    color: #303030;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.intelligence-card__content .intelligence-card__desc, .intelligence-card__content .btn {
    display: none;
}

.intelligence-card__desc {
    margin: 1.5rem 0 0;
    color: #303030;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}

.intelligence-card__mob .btn {
    margin-top: 1.5rem;
    padding: 0.725rem 1.875rem;
}

.intelligence-card__visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.intelligence-card__image-wrap {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 360px;
    overflow: hidden;
    border-radius: 16px;
    transform-style: preserve-3d;
    transition:
        transform 500ms cubic-bezier(.16, 1, .3, 1);
}

.intelligence-card__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transform: scale(1.01);
    transition:
        transform 900ms cubic-bezier(.16, 1, .3, 1);
}

.intelligence-card__image-wrap:hover .intelligence-card__image {
    transform: scale(1.06);
}

.agency-services {
    padding: 3.75rem 0;
    background-color: #fff;
}

.agency-services__header {
    margin-bottom: 1.5rem;
}

.agency-services__header h2 {
    margin: 0;
    color: #303030;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}


/* Cards */

.agency-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 1.875rem 1.25rem;
    color: #fff;
    background-color: #303030;
    border-radius: 16px;
}

.service-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.service-card__icon svg {
    height: auto;
}

.service-card__eyebrow {
    margin: 0 0 0.25rem;
    color: #FFF;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
}

.service-card__title {
    margin: 0 0 1rem;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.service-card__description {
    margin: 0;
    color: #FFF;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.ai-discovery-cta {
    position: relative;
    padding: 3.75rem 0;
    color: #fff;
    background:
        linear-gradient(
            110deg,
            var(--color-purple) 0%,
            #7814a7 50%,
            var(--color-purple-light) 100%
        );
}

.ai-discovery-cta__content {
    text-align: center;
}

.ai-discovery-cta h2 {
    margin: 0 0 1.5rem;
    color: #FFF;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.ai-discovery-cta p {
    margin: 0 0 2.5rem;
    color: #FFF;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
}

.ai-discovery-cta .btn--primary {
    background: #ffffff;
    color: #FE3F00;
    border: 1px solid #FE3F00;
    padding: 0.82rem 3.75rem;
}

.ai-discovery {
    padding: 3.75rem 0 1.875rem;
    background-color: #fff;
}

.ai-discovery__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ai-discovery__card {
    display: grid;
    padding: 3.75rem 1.25rem;
    background-color: #FAF6F0;
    border-radius: 16px;
}

.ai-discovery__eyebrow {
    margin: 0 0 0.5rem;
    color: #303030;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
}

.ai-discovery__intro h2 {
    margin: 0 0 1.5rem;
    color: #303030;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.ai-discovery__description {
    margin: 0 0 1.5rem;
    color: #303030;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}

.ai-discovery__steps {
    display: flex;
    flex-direction: column;
}

.ai-discovery-step {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #FF5C00;
}

.ai-discovery-step:first-child {
    padding-top: 0;
}

.ai-discovery-step:last-of-type {
    padding-bottom: 2.5rem;
    border-bottom: 0;
}

.ai-discovery__intro .btn {
    display: none;
}

.ai-discovery-step__number {
    color: #303030;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

.ai-discovery-step h3 {
    margin: 0 0 0.5rem;
    color: var(--neo-org);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.ai-discovery-step__content > p:last-child {
    margin: 0;
    color: #303030;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
}

.funnel-shift {
    padding-block: 3.75rem 1.875rem;
}

.funnel-shift .eyebrow {
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.funnel-shift h2 {
    max-width: 600px;
    margin: 0;
    color: #303030;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.funnel-shift__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.funnel-shift__content p {
    margin: 1rem 0 0;
    color: #303030;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.funnel-shift__callout {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2.5rem 1.25rem;
    overflow: hidden;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            #d18cf1 0%,
            #db69a8 45%,
            #ff4218 100%
        );
}

.funnel-shift__callout::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(./assets/funnel-shift-img.svg) center 60px no-repeat;
    background-size: 100% auto;
    opacity: 0.2;
    pointer-events: none;
}

.funnel-shift__callout p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.growth-metric {
    padding: 1.875rem 0;
}

.growth-metric p {
    margin: 0;
    color: #303030;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
}

.growth-metric .eyebrow {
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.growth-metric h2 {
    margin: 0 0 1rem;
    color: #303030;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.signal-grid {
    display: grid;
    gap: 16px;
    margin-top: 1.5rem;
}

.signal-card {
    padding: 1.875rem;
    border-radius: 16px;
    background: #DFB2FF;
}

.signal-card__number {
    margin: 0;
    color: #303030;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
}

.signal-card h3 {
    margin: 0.25rem 0 1rem;
    color: #303030;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.signal-card p {
    margin: 0;
    color: #303030;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.revenue-case {
    padding: 1.875rem 0 3.875rem;
}

.revenue-case .section-header p {
    margin: 0;
    color: #303030;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.revenue-case .section-header .eyebrow {
    text-transform: uppercase;
}

.revenue-case h2 {
    margin: 0.5rem 0 1rem;
    color: #303030;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.revenue-grid {
    display: grid;
    gap: 16px;

    margin-block-start: 32px;
}

.revenue-card {
    padding: 1.875rem 1.25rem;
    border-radius: 16px;
    background: #303030;
    color: #fff;
}

.revenue-card__value {
    margin: 0;
    color: #FFF;
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.revenue-card > p:last-child {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.revenue-card strong {
    color: var(--neo-org);
}

.revenue-case__sources {
    margin: 1.5rem 0 0;
    color: #303030;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
}

@media (min-width: 768px) {

    body.solution-page .pricing-note {
        margin-bottom: 1.5rem;
    }

    body.solution-page .pricing-note, body.solution-page .intro:not(.mob) {
        display: block;
    }

    body.solution-page .intro.mob {
        display: none;
    }

    .intelligence-card {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 0.85fr);

        align-items: center;
        gap: 3rem;

        border-top: none;
        border-left: 4px solid var(--intelligence-orange);
        padding: 2.5rem 2rem;
    }

    .intelligence-card__visual {
        justify-content: flex-end;
    }

    .intelligence-card__content .btn {
        margin-top: 2.5rem;
    }

    .intelligence-card__content .intelligence-card__desc, .intelligence-card__content .btn {
        display: block;
    }

    .intelligence-card__mob {
        display: none;
    }

    .agency-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-discovery {
        padding: 7.5rem 0 3.75rem;
    }

    .ai-discovery__card {
        gap: 30px;
        margin-inline: auto;
        padding: 3.75rem;
    }

    .ai-discovery__intro h2 {
        font-size: 3rem;
    }

    .ai-discovery__description {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }

    .ai-discovery__intro .btn {
        display: inline-flex;
        align-self: flex-start;
    }

    .ai-discovery__steps .btn {
        display: none;
    }

    .ai-discovery-step {
        grid-template-columns: 130px 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .ai-discovery-step__number {
        font-size: 1.25rem;
    }

    .ai-discovery-step h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .ai-discovery-step__content > p:last-child {
        font-size: 1rem;
    }

    .ai-discovery-step:last-of-type {
        padding-bottom: 0;
    }

    .funnel-shift__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: center;
        gap: 68px;
    }

    .revenue-grid {
        gap: 40px;
        grid-template-columns: repeat(3, 1fr);
    }

    .growth-metric .section-header {
        text-align: center;
    }

    .growth-metric p {
        font-size: 1.25rem;
    }

    .growth-metric h2 {
        margin-bottom: 1.5rem;
        font-size: 3rem;
        line-height: 1;
    }

    .growth-metric .eyebrow {
        margin-bottom: 1rem;
    }

    .signal-grid {
        gap: 40px;
        margin-top: 3rem;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1100px) {

    .intelligence-section {
        padding: 7.5rem 0;
    }

    .intelligence-section .eyebrow {
        font-size: 1.25rem;
    }

    .intelligence-section__header h2 {
        max-width: 1024px;
        margin-inline: auto;
        font-size: 5rem;
        line-height: 1;
    }

    .intelligence-section__intro {
        max-width: 1150px;
        font-size: 1.25rem;
    }

    .intelligence-tabs {
        margin: 3.75rem 0 0.5rem;
    }

    .intelligence-card {
        grid-template-columns: 1fr 0.9fr;
        padding: 3.75rem;
    }

    .intelligence-card__content {
        padding-left: 0.25rem;
    }

    .intelligence-card__title {
        font-size: 3rem;
    }

    .intelligence-card__desc {
        font-size: 1.25rem;
    }

    .intelligence-card__eyebrow {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .intelligence-card__visual {
        padding-right: 0.25rem;
    }

    .intelligence-card__image-wrap {
        max-width: 100%;
        height: 480px;
    }

    .agency-services {
        padding: 7.5rem 0;
    }

    .agency-services__header {
        margin-bottom: 3.75rem;
        text-align: center;
    }

    .agency-services__header h2 {
        font-size: 3rem;
        line-height: 1;
    }

    .agency-services__grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 2.5rem;
    }

    .service-card {
        padding: 2.5rem 1.875rem;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        grid-column: span 2;
    }

    .service-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .service-card:nth-child(5) {
        grid-column: 4 / span 2;
    }

    .service-card__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .service-card__eyebrow {
        font-weight: 500;
    }

    .service-card__title {
        font-size: 1.75rem;
    }

    .service-card__description {
        font-size: 1.25rem;
        font-weight: 500;
    }

    .ai-discovery-cta {
        padding: 4.1rem 0;
    }

    .ai-discovery-cta h2 {
        font-size: 3rem;
    }

    .ai-discovery-cta p {
        font-size: 1.25rem;
    }

    .ai-discovery__card {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 60px;
    }

    .ai-discovery__eyebrow {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .funnel-shift {
        padding: 7.5rem 0 3.75rem;
    }

    .funnel-shift .eyebrow {
        margin-bottom: 1rem;        
    }

    .funnel-shift__content p {
        font-size: 1.25rem;
    }

    .funnel-shift h2 {
        font-size: 3rem;
    }

    .funnel-shift__callout {
        padding: 3.5rem 2.5rem;
    }

    .funnel-shift__callout p {
        font-size: 2.5rem;
    }

    .growth-metric {
        padding: 3.75rem 0;
    }

    .signal-card {
        padding: 3.5rem 1.875rem 2.5rem;
    }

    .signal-card h3 {
        font-size: 1.75rem;
    }

    .revenue-case .section-header p {
        font-size: 1.25rem;
    }

    .revenue-grid {
        margin-top: 3rem;
    }

    .revenue-case h2 {
        margin: 1.5rem 0;
        font-size: 3rem;
        line-height: 1;
    }

    .revenue-card {
        padding: 2.75rem 1.875rem 2.7rem;
    }

    .revenue-card__value {
        font-size: 5rem;
    }

    .revenue-card > p:last-child {
        font-size: 1.125rem;
    }

    .revenue-card strong {
        font-weight: 800;
    }

    .revenue-case__sources {
        max-width: 1024px;
        margin: 3rem auto 0;
        margin-top: 3rem;
        font-size: 1rem;
        text-align: center;
    }
}

@keyframes intelligence-light-sweep {

    0% {
        opacity: 0;
        transform: translateX(0);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(1100px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .intelligence-section *,
    .intelligence-section *::before,
    .intelligence-section *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}