:root {
    --ac-navy: #071b4a;
    --ac-navy-2: #0b275e;
    --ac-blue: #086cff;
    --ac-blue-2: #2798ff;
    --ac-cyan: #39c6ff;
    --ac-green: #16a66a;
    --ac-text: #465778;
    --ac-muted: #71809d;
    --ac-line: #dfe8f5;
    --ac-soft: #f5f9ff;
    --ac-white: #fff;
    --ac-shadow: 0 18px 50px rgba(26, 70, 135, .12);
    --ac-shadow-soft: 0 10px 28px rgba(26, 70, 135, .08);
    --ac-radius: 18px;
    --ac-container: 1240px;
}

html {
    scroll-behavior: smooth;
}

body.ariacal-ai-landing-template {
    margin: 0;
    overflow-x: hidden;
    background: #fff;
    color: var(--ac-text);
}

body.ariacal-ai-landing-template.ac-modal-open {
    overflow: hidden;
}

.ac-page,
.ac-modal {
    color: var(--ac-text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.ac-page *,
.ac-modal * {
    box-sizing: border-box;
}

.ac-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.ac-page a {
    color: inherit;
    text-decoration: none;
}

.ac-page button,
.ac-modal button,
.ac-modal input,
.ac-modal textarea,
.ac-modal select {
    font: inherit;
}

.ac-page button,
.ac-modal button {
    cursor: pointer;
}

.ac-page h1,
.ac-page h2,
.ac-page h3,
.ac-page p,
.ac-page ul,
.ac-page ol,
.ac-page blockquote,
.ac-modal h2,
.ac-modal p,
.ac-modal ul {
    margin-top: 0;
}

.ac-page h1,
.ac-page h2,
.ac-page h3,
.ac-modal h2 {
    padding: 0;
    color: var(--ac-navy);
    font-family: inherit;
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.ac-container {
    width: min(calc(100% - 48px), var(--ac-container));
    margin-inline: auto;
}

.ac-skip-link {
    position: fixed;
    z-index: 100000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: 8px;
    background: var(--ac-navy);
    color: #fff;
}

.ac-skip-link:focus {
    transform: none;
}

.ac-icon,
.ac-service-card__icon,
.ac-process__icon,
.ac-mini-icon {
    display: inline-grid;
    place-items: center;
}

.ac-icon svg,
.ac-service-card__icon svg,
.ac-process__icon svg,
.ac-mini-icon svg,
.ac-button__icon svg,
.ac-final-cta .ac-button svg,
.ac-modal svg,
.ac-check-list svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ac-icon--small {
    width: 21px;
    height: 21px;
}

.ac-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    border-bottom: 1px solid rgba(212, 225, 242, .8);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 4px 18px rgba(21, 52, 101, .035);
    backdrop-filter: blur(16px);
}

.admin-bar .ac-header {
    top: 32px;
}

.ac-header__inner {
    display: grid;
    grid-template-columns: 208px 1fr auto;
    align-items: center;
    min-height: 78px;
    gap: 32px;
}

.ac-brand {
    display: inline-flex;
    align-items: center;
    width: 164px;
}

.ac-brand img {
    width: 100%;
}

.ac-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.3vw, 36px);
}

.ac-nav a {
    position: relative;
    padding: 8px 0;
    color: var(--ac-navy);
    font-size: 13px;
    font-weight: 700;
}

.ac-nav a::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    border-radius: 2px;
    background: var(--ac-blue);
    content: "";
    transition: transform .2s ease;
}

.ac-nav a:hover::after,
.ac-nav a:focus-visible::after {
    transform: scaleX(1);
}

.ac-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--ac-line);
    border-radius: 11px;
    background: #fff;
}

.ac-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: var(--ac-navy);
    transition: transform .2s ease, opacity .2s ease;
}

.ac-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
}

.ac-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.ac-menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
}

.ac-mobile-nav {
    display: none;
}

.ac-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 12px 22px;
    border: 1px solid var(--ac-blue);
    border-radius: 10px;
    background: linear-gradient(135deg, #0867f2, #087bff);
    box-shadow: 0 10px 24px rgba(8, 108, 255, .19);
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.ac-button:hover,
.ac-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(8, 108, 255, .27);
}

.ac-button:focus-visible,
.ac-menu-toggle:focus-visible,
.ac-modal__close:focus-visible,
.ac-footer button:focus-visible {
    outline: 3px solid rgba(8, 108, 255, .28);
    outline-offset: 3px;
}

.ac-button--sm {
    min-height: 44px;
    padding: 10px 17px;
    font-size: 12px;
}

.ac-button--secondary {
    border-color: #a9c7ef;
    background: rgba(255, 255, 255, .82);
    box-shadow: none;
    color: var(--ac-blue) !important;
}

.ac-button--secondary:hover,
.ac-button--secondary:focus-visible {
    border-color: var(--ac-blue);
    background: #fff;
    box-shadow: 0 10px 24px rgba(31, 89, 165, .1);
}

.ac-button--white {
    border-color: #fff;
    background: #fff;
    box-shadow: 0 10px 26px rgba(4, 29, 88, .16);
    color: var(--ac-blue) !important;
}

.ac-button--ghost {
    border-color: rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .1);
    box-shadow: none;
}

.ac-button--ghost:hover,
.ac-button--ghost:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, .18);
}

.ac-button__icon {
    display: inline-flex;
    font-size: 18px;
}

.ac-button__play {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid #8eb5eb;
    border-radius: 50%;
    font-size: 8px;
}

.ac-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ac-hero {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    border-bottom: 1px solid #e5edf8;
    background:
        radial-gradient(circle at 10% 0%, rgba(51, 174, 255, .1), transparent 30%),
        linear-gradient(110deg, #fff 0%, #f9fcff 44%, #edf6ff 100%);
}

.ac-hero::before {
    position: absolute;
    z-index: 0;
    top: -220px;
    right: -170px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(52, 168, 255, .18);
    border-radius: 50%;
    content: "";
}

.ac-hero::after {
    position: absolute;
    z-index: 0;
    right: 3%;
    bottom: 5%;
    width: 180px;
    height: 110px;
    background-image: radial-gradient(rgba(0, 110, 255, .24) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    content: "";
    mask-image: linear-gradient(to right, transparent, #000);
}

.ac-hero__glow {
    position: absolute;
    z-index: 0;
    top: 160px;
    left: 48%;
    width: 520px;
    height: 360px;
    border-radius: 50%;
    background: rgba(52, 174, 255, .16);
    filter: blur(90px);
}

.ac-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(560px, .96fr) minmax(540px, 1.04fr);
    min-height: 690px;
    align-items: center;
    gap: 0;
}

.ac-hero__copy {
    position: relative;
    z-index: 4;
    padding: 64px 0 48px;
}

.ac-eyebrow,
.ac-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ac-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.ac-eyebrow {
    margin-bottom: 22px;
    padding: 7px 12px;
    border: 1px solid #d5e6fb;
    border-radius: 999px;
    background: rgba(238, 247, 255, .9);
    font-size: 11px;
    letter-spacing: 0;
    text-transform: none;
}

.ac-hero h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(40px, 3.5vw, 54px);
    line-height: 1.06;
}

.ac-hero h1 span {
    display: block;
    background: linear-gradient(100deg, #085fdc 0%, #0994ff 82%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ac-hero__lede {
    max-width: 620px;
    margin-bottom: 28px;
    color: #536483;
    font-size: 17px;
    line-height: 1.7;
}

.ac-proof-grid {
    display: grid;
    max-width: 660px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 36px;
}

.ac-proof {
    position: relative;
    padding: 0 14px;
    border-left: 1px solid #dce7f4;
}

.ac-proof:first-child {
    padding-left: 0;
    border-left: 0;
}

.ac-proof strong,
.ac-proof span {
    display: block;
}

.ac-proof strong {
    color: var(--ac-navy);
    font-size: 14px;
    line-height: 1.3;
}

.ac-proof span {
    margin-top: 2px;
    color: var(--ac-muted);
    font-size: 11px;
}

.ac-hero__visual {
    position: relative;
    align-self: stretch;
    min-width: 0;
}

.ac-hero__visual > picture {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 940px;
    max-width: none;
    transform: translate(-45%, -50%);
    filter: saturate(.98) contrast(1.01);
    mix-blend-mode: multiply;
}

.ac-hero__visual > picture img {
    width: 100%;
    max-width: none;
}

.ac-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 164px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 14px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 15px 36px rgba(29, 87, 156, .13);
    backdrop-filter: blur(13px);
}

.ac-floating-card--visibility {
    top: 22%;
    left: -2%;
}

.ac-floating-card--growth {
    right: -1%;
    bottom: 21%;
}

.ac-mini-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #e8f4ff;
    color: var(--ac-blue);
    font-size: 19px;
}

.ac-floating-card small,
.ac-floating-card strong {
    display: block;
    line-height: 1.3;
}

.ac-floating-card small {
    color: var(--ac-muted);
    font-size: 9px;
}

.ac-floating-card strong {
    color: var(--ac-navy);
    font-size: 12px;
}

.ac-trust {
    position: relative;
    z-index: 4;
    padding: 22px 0;
    border-bottom: 1px solid var(--ac-line);
    background: #fff;
}

.ac-trust__grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    align-items: center;
}

.ac-trust__intro,
.ac-trust__item {
    min-height: 58px;
    padding: 0 26px;
    border-left: 1px solid var(--ac-line);
}

.ac-trust__intro {
    padding-left: 0;
    border-left: 0;
}

.ac-trust__intro strong,
.ac-trust__intro span,
.ac-trust__item strong,
.ac-trust__item small {
    display: block;
}

.ac-trust__intro strong {
    color: var(--ac-navy);
    font-size: 13px;
    line-height: 1.35;
}

.ac-trust__intro span {
    color: var(--ac-muted);
    font-size: 11px;
}

.ac-trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ac-trust__mark {
    display: inline-grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #edf6ff;
    color: var(--ac-blue);
    font-size: 12px;
    font-weight: 900;
}

.ac-trust__item strong {
    color: var(--ac-navy);
    font-size: 12px;
}

.ac-trust__item small {
    color: var(--ac-muted);
    font-size: 9px;
    white-space: nowrap;
}

.ac-section {
    padding: 100px 0;
}

.ac-section--soft {
    border-top: 1px solid #e8eff8;
    border-bottom: 1px solid #e8eff8;
    background:
        radial-gradient(circle at 50% 0%, rgba(72, 179, 255, .08), transparent 34%),
        var(--ac-soft);
}

.ac-section-heading {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.ac-section-heading .ac-kicker {
    margin-bottom: 13px;
}

.ac-section-heading h2,
.ac-results__copy h2,
.ac-outcome h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 3.2vw, 48px);
}

.ac-section-heading p,
.ac-results__copy > p,
.ac-outcome__grid > div:first-child > p {
    color: var(--ac-muted);
    font-size: 16px;
}

.ac-card-grid {
    display: grid;
    gap: 22px;
}

.ac-card-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.ac-service-card {
    position: relative;
    min-width: 0;
    padding: 34px 32px;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    background: #fff;
    box-shadow: var(--ac-shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ac-service-card:hover {
    transform: translateY(-5px);
    border-color: #b9d5f7;
    box-shadow: var(--ac-shadow);
}

.ac-service-card--featured {
    border-color: #bdd9fb;
    background: linear-gradient(160deg, #fff 45%, #f1f8ff 100%);
}

.ac-service-card__label {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #e9f5ff;
    color: var(--ac-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ac-service-card__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border: 1px solid #d8e8fb;
    border-radius: 16px;
    background: linear-gradient(145deg, #f4faff, #e7f3ff);
    box-shadow: inset 0 1px 0 #fff;
    color: var(--ac-blue);
    font-size: 28px;
}

.ac-service-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.ac-service-card > p {
    min-height: 78px;
    margin-bottom: 22px;
    color: var(--ac-muted);
    font-size: 14px;
    line-height: 1.65;
}

.ac-check-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ac-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #405171;
    font-size: 13px;
}

.ac-check-list svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    padding: 3px;
    border-radius: 50%;
    background: var(--ac-blue);
    color: #fff;
    stroke-width: 2.5;
}

.ac-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ac-process::before {
    position: absolute;
    top: 48px;
    right: 11%;
    left: 11%;
    height: 1px;
    background: repeating-linear-gradient(90deg, #b9cee9 0 5px, transparent 5px 10px);
    content: "";
}

.ac-process__step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.ac-process__number {
    position: absolute;
    top: 35px;
    left: calc(50% - 55px);
    padding: 2px 5px;
    border-radius: 5px;
    background: #fff;
    color: var(--ac-blue);
    font-size: 9px;
    font-weight: 900;
}

.ac-process__icon {
    width: 82px;
    height: 82px;
    margin: 7px auto 22px;
    border: 1px solid #d6e6f9;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(26, 86, 163, .08);
    color: var(--ac-blue);
    font-size: 31px;
}

.ac-process__step h3 {
    margin-bottom: 9px;
    font-size: 17px;
}

.ac-process__step p {
    max-width: 240px;
    margin: 0 auto;
    color: var(--ac-muted);
    font-size: 12px;
    line-height: 1.6;
}

.ac-industries {
    padding-top: 86px;
    padding-bottom: 86px;
}

.ac-industries .ac-section-heading {
    margin-bottom: 36px;
}

.ac-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ac-industry {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--ac-line);
    border-radius: 13px;
    background: #fff;
    color: var(--ac-navy);
    font-size: 13px;
    font-weight: 750;
    text-align: center;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ac-industry:hover {
    transform: translateY(-2px);
    border-color: #b9d6f8;
    box-shadow: var(--ac-shadow-soft);
}

.ac-industry span {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    background: #eef7ff;
    color: var(--ac-blue);
    font-size: 19px;
    line-height: 1;
}

.ac-results {
    padding: 100px 0;
    border-top: 1px solid #dbe8f7;
    border-bottom: 1px solid #dbe8f7;
    background:
        radial-gradient(circle at 12% 40%, rgba(19, 137, 255, .14), transparent 31%),
        linear-gradient(110deg, #eaf5ff 0%, #f7fbff 52%, #eff7ff 100%);
}

.ac-results__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 70px;
}

.ac-dashboard {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 22px;
    border: 1px solid rgba(188, 211, 239, .9);
    border-radius: 20px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 24px 55px rgba(30, 91, 165, .16);
    backdrop-filter: blur(12px);
}

.ac-dashboard::after {
    position: absolute;
    top: -80px;
    right: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(49, 163, 255, .11);
    content: "";
}

.ac-dashboard__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 15px;
}

.ac-dashboard__eyebrow,
.ac-dashboard__top strong {
    display: block;
}

.ac-dashboard__eyebrow {
    color: var(--ac-muted);
    font-size: 9px;
    text-transform: uppercase;
}

.ac-dashboard__top strong {
    color: var(--ac-navy);
    font-size: 14px;
}

.ac-dashboard__date {
    padding: 6px 9px;
    border: 1px solid var(--ac-line);
    border-radius: 7px;
    background: #fff;
    color: var(--ac-muted);
    font-size: 8px;
}

.ac-dashboard__metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}

.ac-dashboard__metrics > div {
    padding: 12px;
    border: 1px solid #e3ecf7;
    border-radius: 10px;
    background: #fff;
}

.ac-dashboard__metrics small,
.ac-dashboard__metrics strong,
.ac-dashboard__metrics span {
    display: block;
}

.ac-dashboard__metrics small {
    color: var(--ac-muted);
    font-size: 8px;
}

.ac-dashboard__metrics strong {
    margin: 2px 0;
    color: var(--ac-navy);
    font-size: 13px;
}

.ac-dashboard__metrics span {
    color: var(--ac-green);
    font-size: 7px;
    line-height: 1.3;
}

.ac-dashboard__charts {
    display: grid;
    grid-template-columns: 1.65fr .75fr;
    gap: 10px;
    margin-top: 10px;
}

.ac-line-chart,
.ac-donut-card {
    min-width: 0;
    padding: 14px;
    border: 1px solid #e3ecf7;
    border-radius: 11px;
    background: #fff;
}

.ac-chart-title {
    margin-bottom: 5px;
    color: var(--ac-navy);
    font-size: 9px;
    font-weight: 800;
}

.ac-line-chart svg {
    display: block;
    width: 100%;
    height: auto;
}

.ac-chart-grid {
    fill: none;
    stroke: #e7edf7;
    stroke-width: 1;
}

.ac-chart-area {
    fill: url(#ac-chart-fill);
}

.ac-chart-line {
    fill: none;
    stroke: var(--ac-blue);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
}

.ac-chart-dots {
    fill: #fff;
    stroke: var(--ac-blue);
    stroke-width: 3;
}

.ac-donut {
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
    margin: 15px auto;
    border-radius: 50%;
    background: conic-gradient(#086cff 0 45%, #25a7ff 45% 75%, #b7dcff 75% 100%);
}

.ac-donut::before {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    content: "";
}

.ac-donut span {
    position: relative;
    z-index: 1;
    color: var(--ac-navy);
    font-size: 12px;
    font-weight: 850;
}

.ac-donut-card ul {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ac-donut-card li {
    color: var(--ac-muted);
    font-size: 8px;
}

.ac-donut-card li i {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--ac-blue);
}

.ac-donut-card li:nth-child(2) i {
    background: #25a7ff;
}

.ac-donut-card li:nth-child(3) i {
    background: #b7dcff;
}

.ac-dashboard__note {
    display: block;
    margin-top: 12px;
    color: #8a96ac;
    font-size: 7px;
}

.ac-results__copy .ac-kicker {
    margin-bottom: 14px;
}

.ac-results__copy > p {
    margin-bottom: 24px;
    line-height: 1.75;
}

.ac-check-list--large {
    gap: 13px;
    margin-bottom: 30px;
}

.ac-check-list--large li {
    color: var(--ac-navy-2);
    font-size: 14px;
    font-weight: 650;
}

.ac-outcome {
    background: #fff;
}

.ac-outcome__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr .72fr;
    align-items: stretch;
    gap: 24px;
}

.ac-outcome__grid > div:first-child {
    padding: 16px 30px 16px 0;
}

.ac-outcome__grid > div:first-child .ac-kicker {
    margin-bottom: 12px;
}

.ac-outcome__grid > div:first-child > p {
    margin-bottom: 26px;
}

.ac-outcome__quote,
.ac-outcome__list {
    position: relative;
    padding: 30px;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    background: #fff;
    box-shadow: var(--ac-shadow-soft);
}

.ac-outcome__quote-mark {
    position: absolute;
    top: 10px;
    right: 22px;
    color: #ddecfd;
    font-family: Georgia, serif;
    font-size: 78px;
    line-height: 1;
}

.ac-outcome__quote blockquote {
    position: relative;
    z-index: 1;
    margin-bottom: 26px;
    color: var(--ac-navy);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.7;
}

.ac-outcome__signature {
    display: flex;
    align-items: center;
    gap: 11px;
}

.ac-outcome__avatar {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ac-blue), var(--ac-cyan));
    color: #fff;
    font-weight: 900;
}

.ac-outcome__signature strong,
.ac-outcome__signature small {
    display: block;
}

.ac-outcome__signature strong {
    color: var(--ac-navy);
    font-size: 12px;
}

.ac-outcome__signature small {
    color: var(--ac-muted);
    font-size: 9px;
}

.ac-outcome__list {
    background: linear-gradient(160deg, #f9fcff, #edf6ff);
}

.ac-outcome__list > strong {
    display: block;
    margin-bottom: 18px;
    color: var(--ac-navy);
    font-size: 15px;
}

.ac-outcome__list ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ac-outcome__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid #dce8f6;
    color: var(--ac-navy-2);
    font-size: 12px;
    font-weight: 700;
}

.ac-outcome__list li:last-child {
    border-bottom: 0;
}

.ac-outcome__list li span {
    color: var(--ac-blue);
    font-size: 9px;
}

.ac-faq {
    padding-top: 80px;
    background: var(--ac-soft);
}

.ac-faq .ac-section-heading {
    margin-bottom: 34px;
}

.ac-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 12px;
}

.ac-faq details {
    overflow: hidden;
    border: 1px solid var(--ac-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(25, 73, 137, .04);
}

.ac-faq summary {
    position: relative;
    padding: 18px 50px 18px 20px;
    color: var(--ac-navy);
    cursor: pointer;
    font-size: 13px;
    font-weight: 750;
    list-style: none;
}

.ac-faq summary::-webkit-details-marker {
    display: none;
}

.ac-faq summary span::before,
.ac-faq summary span::after {
    position: absolute;
    top: 50%;
    right: 21px;
    width: 11px;
    height: 2px;
    transform: translateY(-50%);
    border-radius: 2px;
    background: var(--ac-blue);
    content: "";
    transition: transform .2s ease;
}

.ac-faq summary span::after {
    transform: translateY(-50%) rotate(90deg);
}

.ac-faq details[open] summary span::after {
    transform: translateY(-50%) rotate(0);
}

.ac-faq details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--ac-muted);
    font-size: 13px;
    line-height: 1.7;
}

.ac-final-cta {
    padding: 32px 0;
    background: #fff;
}

.ac-final-cta__inner {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 150px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 32px 44px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 50%, rgba(78, 203, 255, .38), transparent 26%),
        linear-gradient(110deg, #075bd8, #087cff 58%, #0c9bff);
    box-shadow: 0 20px 45px rgba(8, 105, 234, .23);
}

.ac-final-cta__inner::after {
    position: absolute;
    right: 15px;
    width: 170px;
    height: 110px;
    background-image: radial-gradient(rgba(255, 255, 255, .45) 1.6px, transparent 1.6px);
    background-size: 15px 15px;
    content: "";
    opacity: .8;
}

.ac-final-cta__inner > * {
    position: relative;
    z-index: 1;
}

.ac-final-cta h2 {
    margin-bottom: 4px;
    color: #fff;
    font-size: clamp(25px, 2.8vw, 38px);
}

.ac-final-cta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.ac-footer {
    padding: 50px 0 20px;
    border-top: 1px solid var(--ac-line);
    background: #fff;
}

.ac-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 60px;
}

.ac-footer__brand img {
    width: 150px;
    margin-bottom: 14px;
}

.ac-footer__brand p {
    max-width: 290px;
    color: var(--ac-muted);
    font-size: 12px;
}

.ac-footer__grid > div:not(.ac-footer__brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.ac-footer__grid strong {
    margin-bottom: 4px;
    color: var(--ac-navy);
    font-size: 12px;
}

.ac-footer__grid a,
.ac-footer__grid button {
    padding: 0;
    border: 0;
    background: none;
    color: #5e6d88;
    font-size: 11px;
    text-align: left;
}

.ac-footer__grid a:hover,
.ac-footer__grid button:hover {
    color: var(--ac-blue);
}

.ac-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid var(--ac-line);
    color: #8b96aa;
    font-size: 10px;
}

.ac-mobile-cta {
    display: none;
}

.ac-modal {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.ac-modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.ac-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 15, 44, .68);
    backdrop-filter: blur(6px);
}

.ac-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    overflow: auto;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    grid-template-columns: .85fr 1.15fr;
    transform: translateY(18px) scale(.985);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 16, 51, .35);
    transition: transform .25s ease;
}

.ac-modal[aria-hidden="false"] .ac-modal__dialog {
    transform: none;
}

.ac-modal__close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    border: 1px solid #dce7f4;
    border-radius: 50%;
    background: #fff;
    color: var(--ac-navy);
}

.ac-modal__close svg {
    width: 18px;
    height: 18px;
}

.ac-modal__intro {
    position: relative;
    overflow: hidden;
    padding: 56px 42px;
    background:
        radial-gradient(circle at 10% 90%, rgba(48, 184, 255, .16), transparent 30%),
        linear-gradient(150deg, #eef7ff, #f8fbff);
}

.ac-modal__intro::after {
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    border: 30px solid rgba(8, 108, 255, .07);
    border-radius: 50%;
    content: "";
}

.ac-modal__intro .ac-kicker {
    margin-bottom: 13px;
}

.ac-modal__intro h2 {
    margin-bottom: 17px;
    font-size: 36px;
}

.ac-modal__intro > p {
    position: relative;
    z-index: 1;
    color: var(--ac-muted);
    font-size: 14px;
    line-height: 1.7;
}

.ac-modal__benefits {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.ac-modal__benefits li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ac-navy);
    font-size: 13px;
    font-weight: 700;
}

.ac-modal__benefits svg {
    width: 18px;
    height: 18px;
    padding: 3px;
    border-radius: 50%;
    background: var(--ac-blue);
    color: #fff;
}

.ac-modal__form {
    padding: 56px 44px 38px;
}

.ac-modal__form > small {
    display: block;
    margin-top: 10px;
    color: #8995aa;
    font-size: 9px;
    line-height: 1.5;
}

.ac-form-fallback {
    padding: 20px;
    border: 1px solid #f2d7a4;
    border-radius: 10px;
    background: #fff9eb;
    color: #644d22;
}

.ac-modal .nf-form-title,
.ac-modal .nf-form-fields-required {
    display: none;
}

.ac-modal .nf-form-cont,
.ac-modal .nf-form-wrap,
.ac-modal .nf-form-content {
    margin: 0;
    padding: 0;
}

.ac-modal .nf-form-content nf-fields-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ac-modal .nf-form-content nf-field {
    display: block;
    min-width: 0;
}

.ac-modal .nf-form-content nf-field:nth-child(n+3) {
    grid-column: 1 / -1;
}

.ac-modal .nf-field-container,
.ac-modal .nf-form-content .nf-field-container {
    margin-bottom: 0;
}

.ac-modal .nf-field-label {
    display: none;
}

.ac-modal .nf-form-content input:not([type="button"]):not([type="submit"]),
.ac-modal .nf-form-content textarea,
.ac-modal .nf-form-content select {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #d6e1ef;
    border-radius: 9px;
    background: #f8fbff;
    box-shadow: none;
    color: var(--ac-navy);
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.ac-modal .nf-form-content textarea {
    height: 104px;
    min-height: 104px;
    padding: 14px 15px;
    line-height: 1.55;
    resize: vertical;
}

.ac-modal .nf-form-content input:focus,
.ac-modal .nf-form-content textarea:focus,
.ac-modal .nf-form-content select:focus {
    border-color: var(--ac-blue);
    outline: 0;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(8, 108, 255, .12);
}

.ac-modal .nf-form-content input[type="submit"] {
    width: 100%;
    min-height: 52px;
    margin: 2px 0 0;
    padding: 12px 20px;
    border: 1px solid var(--ac-blue);
    border-radius: 9px;
    background: linear-gradient(135deg, #0867f2, #087bff);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.ac-modal .nf-error-msg,
.ac-modal .ninja-forms-req-symbol {
    color: #c53b3b;
    font-size: 11px;
}

.ac-modal .nf-error.field-wrap .nf-field-element::after {
    display: none;
}

.ac-modal .nf-pass.field-wrap .nf-field-element::after {
    display: none;
}

.ac-modal .nf-response-msg {
    margin-bottom: 12px;
    color: var(--ac-green);
    font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .ac-page *,
    .ac-modal * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (max-width: 1160px) {
    .ac-header__inner {
        grid-template-columns: 1fr auto auto;
    }

    .ac-nav {
        display: none;
    }

    .ac-menu-toggle {
        display: block;
    }

    .ac-mobile-nav {
        position: absolute;
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 10px 24px 22px;
        border-bottom: 1px solid var(--ac-line);
        background: #fff;
        box-shadow: 0 18px 30px rgba(19, 56, 111, .1);
    }

    .ac-mobile-nav[hidden] {
        display: none;
    }

    .ac-mobile-nav a {
        padding: 12px 3px;
        border-bottom: 1px solid #edf2f8;
        color: var(--ac-navy);
        font-size: 14px;
        font-weight: 700;
    }

    .ac-mobile-nav .ac-button {
        margin-top: 14px;
    }

    .ac-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
    }

    .ac-hero h1 {
        font-size: clamp(38px, 4.2vw, 48px);
    }

    .ac-trust__grid {
        grid-template-columns: 1.35fr repeat(2, 1fr);
        row-gap: 16px;
    }

    .ac-trust__item:nth-child(4) {
        border-left: 0;
    }

    .ac-results__grid {
        gap: 40px;
    }

    .ac-outcome__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ac-outcome__list {
        grid-column: 1 / -1;
    }

    .ac-outcome__list ul {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .ac-outcome__list li {
        border-bottom: 0;
    }
}

@media (max-width: 900px) {
    .ac-container {
        width: min(calc(100% - 36px), var(--ac-container));
    }

    .ac-header__inner {
        min-height: 70px;
    }

    .ac-brand {
        width: 145px;
    }

    .ac-header__cta {
        display: none;
    }

    .ac-hero {
        min-height: 0;
    }

    .ac-hero__grid {
        display: block;
        min-height: 0;
    }

    .ac-hero__copy {
        max-width: 720px;
        padding: 72px 0 20px;
    }

    .ac-hero h1 {
        max-width: 700px;
    }

    .ac-hero__visual {
        min-height: 520px;
    }

    .ac-hero__visual > picture {
        width: 900px;
        transform: translate(-50%, -49%);
    }

    .ac-floating-card--visibility {
        left: 4%;
    }

    .ac-floating-card--growth {
        right: 4%;
    }

    .ac-card-grid--three {
        grid-template-columns: 1fr;
    }

    .ac-service-card {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 24px;
    }

    .ac-service-card__icon {
        grid-row: 1 / 4;
    }

    .ac-service-card > p {
        min-height: 0;
    }

    .ac-service-card .ac-check-list {
        grid-column: 2;
    }

    .ac-process {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 48px;
    }

    .ac-process::before {
        display: none;
    }

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

    .ac-results__grid {
        grid-template-columns: 1fr;
    }

    .ac-results__copy {
        max-width: 680px;
    }

    .ac-footer__grid {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 720px) {
    .admin-bar .ac-header {
        top: 46px;
    }

    .ac-section {
        padding: 72px 0;
    }

    .ac-hero__copy {
        padding-top: 54px;
    }

    .ac-eyebrow {
        font-size: 10px;
    }

    .ac-hero h1 {
        font-size: clamp(34px, 8.8vw, 42px);
    }

    .ac-hero__lede {
        font-size: 15px;
    }

    .ac-button-row .ac-button {
        width: 100%;
    }

    .ac-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }

    .ac-proof:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .ac-hero__visual {
        min-height: 390px;
    }

    .ac-hero__visual > picture {
        width: 690px;
    }

    .ac-floating-card {
        min-width: 145px;
        padding: 10px 12px;
    }

    .ac-floating-card--visibility {
        top: 18%;
        left: 0;
    }

    .ac-floating-card--growth {
        right: 0;
        bottom: 12%;
    }

    .ac-trust__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ac-trust__intro {
        grid-column: 1 / -1;
        text-align: center;
    }

    .ac-trust__item {
        padding: 0 14px;
    }

    .ac-trust__item:nth-child(even) {
        border-left: 0;
    }

    .ac-trust__item:nth-child(4) {
        border-left: 1px solid var(--ac-line);
    }

    .ac-section-heading {
        margin-bottom: 36px;
    }

    .ac-section-heading h2,
    .ac-results__copy h2,
    .ac-outcome h2 {
        font-size: 34px;
    }

    .ac-service-card {
        display: block;
        padding: 28px 24px;
    }

    .ac-service-card .ac-check-list {
        display: grid;
    }

    .ac-process {
        grid-template-columns: 1fr;
    }

    .ac-process__step p {
        max-width: 370px;
    }

    .ac-industry-grid {
        grid-template-columns: 1fr;
    }

    .ac-dashboard {
        padding: 14px;
    }

    .ac-dashboard__metrics {
        grid-template-columns: 1fr 1fr;
    }

    .ac-dashboard__charts {
        grid-template-columns: 1fr;
    }

    .ac-donut-card {
        display: grid;
        grid-template-columns: auto 110px 1fr;
        align-items: center;
    }

    .ac-donut-card .ac-chart-title {
        align-self: start;
    }

    .ac-outcome__grid {
        grid-template-columns: 1fr;
    }

    .ac-outcome__grid > div:first-child {
        padding-right: 0;
    }

    .ac-outcome__list {
        grid-column: auto;
    }

    .ac-outcome__list ul {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ac-outcome__list li {
        border-bottom: 1px solid #dce8f6;
    }

    .ac-faq__grid {
        grid-template-columns: 1fr;
    }

    .ac-final-cta__inner {
        display: block;
        padding: 30px 24px;
        text-align: center;
    }

    .ac-final-cta__inner .ac-button-row {
        margin-top: 22px;
    }

    .ac-footer {
        padding-bottom: 92px;
    }

    .ac-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ac-footer__brand {
        grid-column: 1 / -1;
    }

    .ac-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .ac-mobile-cta {
        position: fixed;
        z-index: 9980;
        right: 14px;
        bottom: 14px;
        left: 14px;
        display: block;
        min-height: 52px;
        padding: 12px 18px;
        border: 1px solid var(--ac-blue);
        border-radius: 11px;
        background: linear-gradient(135deg, #0867f2, #087bff);
        box-shadow: 0 14px 34px rgba(5, 62, 149, .3);
        color: #fff;
        font-size: 14px;
        font-weight: 850;
    }

    .ac-modal {
        padding: 10px;
    }

    .ac-modal__dialog {
        max-height: calc(100vh - 20px);
        grid-template-columns: 1fr;
    }

    .ac-modal__intro {
        padding: 38px 24px 28px;
    }

    .ac-modal__intro h2 {
        padding-right: 28px;
        font-size: 29px;
    }

    .ac-modal__intro > p {
        margin-bottom: 0;
    }

    .ac-modal__benefits {
        grid-template-columns: 1fr;
        margin-top: 17px;
    }

    .ac-modal__form {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .ac-container {
        width: min(calc(100% - 28px), var(--ac-container));
    }

    .ac-brand {
        width: 132px;
    }

    .ac-menu-toggle {
        width: 41px;
        height: 41px;
    }

    .ac-hero h1 {
        font-size: 34px;
    }

    .ac-hero__visual {
        min-height: 330px;
    }

    .ac-hero__visual > picture {
        width: 590px;
    }

    .ac-floating-card--visibility {
        top: 11%;
    }

    .ac-floating-card--growth {
        bottom: 7%;
    }

    .ac-floating-card small {
        display: none;
    }

    .ac-trust__grid {
        display: block;
    }

    .ac-trust__item {
        min-height: 56px;
        border-top: 1px solid var(--ac-line);
        border-left: 0 !important;
    }

    .ac-section-heading h2,
    .ac-results__copy h2,
    .ac-outcome h2 {
        font-size: 31px;
    }

    .ac-dashboard__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .ac-donut-card {
        display: block;
    }

    .ac-footer__grid {
        grid-template-columns: 1fr;
    }

    .ac-footer__brand {
        grid-column: auto;
    }

    .ac-modal .nf-form-content nf-fields-wrap {
        grid-template-columns: 1fr;
    }

    .ac-modal .nf-form-content nf-field {
        grid-column: 1 / -1;
    }

    .ac-modal .nf-form-content textarea {
        height: 92px;
        min-height: 92px;
    }
}
