.ac-page,
.ac-comparison,
.ac-wizard {
    --ac-ink: #13233a;
    --ac-ink-soft: #526177;
    --ac-blue: #1463ff;
    --ac-blue-dark: #0b46c8;
    --ac-blue-pale: #edf4ff;
    --ac-green: #0d9c70;
    --ac-green-pale: #e9f8f2;
    --ac-orange: #f59e0b;
    --ac-line: #dce5f0;
    --ac-surface: #fff;
    --ac-canvas: #f6f9fc;
    --ac-radius-lg: 30px;
    --ac-radius: 18px;
    --ac-radius-sm: 12px;
    --ac-shadow: 0 24px 70px -42px rgba(17, 38, 72, .42);
    color: var(--ac-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

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

.ac-page {
    width: min(1240px, calc(100% - 32px));
    margin: 28px auto 72px;
}

.ac-page h1,
.ac-page h2,
.ac-page h3,
.ac-page p,
.ac-comparison h3,
.ac-comparison p,
.ac-wizard p {
    font-family: inherit;
}

.ac-page h1,
.ac-page h2,
.ac-page h3,
.ac-comparison h3 {
    color: var(--ac-ink);
    line-height: 1.16;
    letter-spacing: -.025em;
}

.ac-page a,
.ac-comparison a {
    text-decoration: none;
}

.ac-page a:focus-visible,
.ac-page button:focus-visible,
.ac-page input:focus-visible,
.ac-page select:focus-visible,
.ac-comparison a:focus-visible,
.ac-comparison button:focus-visible {
    outline: 3px solid rgba(20, 99, 255, .28);
    outline-offset: 3px;
}

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

.ac-eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ac-green);
    content: "";
    box-shadow: 0 0 0 5px var(--ac-green-pale);
}

.ac-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 11px;
    padding: 9px 15px;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.2;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.ac-button:hover {
    transform: translateY(-1px);
}

.ac-button--primary {
    background: var(--ac-blue);
    color: #fff !important;
    box-shadow: 0 12px 24px -16px rgba(20, 99, 255, .72);
}

.ac-button--primary:hover {
    background: var(--ac-blue-dark);
}

.ac-button--soft {
    background: var(--ac-blue-pale);
    color: var(--ac-blue-dark) !important;
}

.ac-button--soft:hover,
.ac-button--quiet:hover {
    background: #dfeaff;
}

.ac-button--line {
    border-color: var(--ac-line);
    background: rgba(255, 255, 255, .64);
    color: var(--ac-ink) !important;
}

.ac-button--quiet {
    border-color: var(--ac-line);
    background: #fff;
    color: var(--ac-ink) !important;
}

.ac-hero {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 500px;
    align-items: center;
    border: 1px solid #d7e3f0;
    border-radius: 38px;
    background:
        radial-gradient(circle at 18% 0%, rgba(20, 99, 255, .15), transparent 38%),
        linear-gradient(135deg, #f7faff 0%, #fff 54%, #effbf7 100%);
    box-shadow: var(--ac-shadow);
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
}

.ac-hero::after {
    position: absolute;
    right: -130px;
    bottom: -190px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(20, 99, 255, .12);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 62px rgba(20, 99, 255, .035), 0 0 0 124px rgba(20, 99, 255, .025);
}

.ac-hero__content {
    position: relative;
    z-index: 2;
    padding: clamp(34px, 6vw, 78px);
}

.ac-hero h1 {
    max-width: 720px;
    margin: 18px 0 20px;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 820;
}

.ac-hero__intro {
    max-width: 720px;
    color: var(--ac-ink-soft);
    font-size: clamp(16px, 2vw, 19px);
}

.ac-hero__intro p {
    margin: 0;
}

.ac-hero__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.ac-hero__visual {
    position: relative;
    z-index: 1;
    align-self: stretch;
    min-height: 390px;
    padding: 54px 45px 54px 0;
}

.ac-hero__image {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 1px solid rgba(184, 202, 222, .7);
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 30px 65px -38px rgba(24, 50, 86, .65);
}

.ac-hero__badge {
    position: absolute;
    right: 22px;
    bottom: 92px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 15px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 16px 35px -22px rgba(17, 38, 72, .55);
    color: var(--ac-ink-soft);
    font-size: 12px;
    line-height: 1.35;
    backdrop-filter: blur(12px);
}

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

.ac-section {
    scroll-margin-top: 30px;
    margin-top: clamp(58px, 8vw, 96px);
}

.ac-section--tint {
    padding: clamp(26px, 5vw, 54px);
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius-lg);
    background: linear-gradient(140deg, #f7faff, #f0f7ff 58%, #effaf6);
}

.ac-section-heading {
    display: grid;
    max-width: 900px;
    align-items: start;
    margin: 0 0 28px;
    grid-template-columns: 48px minmax(0, 1fr);
}

.ac-section-heading > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9d9eb;
    border-radius: 10px;
    background: #fff;
    color: var(--ac-blue);
    font-size: 11px;
    font-weight: 800;
}

.ac-section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
}

.ac-section-heading p {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--ac-ink-soft);
    font-size: 15px;
}

.ac-section--split {
    display: grid;
    align-items: start;
    gap: 30px;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
}

.ac-section--split .ac-section-heading {
    margin-bottom: 0;
}

.ac-featured-answer {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid #cfe0f3;
    border-radius: var(--ac-radius-lg);
    background: #fff;
    box-shadow: var(--ac-shadow);
    color: #354761;
    font-size: 18px;
}

.ac-featured-answer::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 6px;
    background: linear-gradient(var(--ac-blue), var(--ac-green));
    content: "";
}

.ac-featured-answer p {
    margin: 0;
}

.ac-wizard {
    padding: 22px;
    border: 1px solid var(--ac-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--ac-shadow);
}

.ac-wizard__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.ac-wizard__top p {
    margin: 6px 0 0;
    color: var(--ac-ink-soft);
    font-size: 13px;
}

.ac-wizard__reset {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: var(--ac-blue-dark);
    cursor: pointer;
    font-size: 13px;
    font-weight: 750;
}

.ac-wizard__fields {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ac-wizard__field {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 92px;
    align-content: start;
    padding: 13px 14px;
    border: 1px solid #e1e8f1;
    border-radius: 14px;
    background: var(--ac-canvas);
}

.ac-wizard__field > span {
    color: var(--ac-ink-soft);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ac-wizard__field output {
    margin-top: 5px;
    color: var(--ac-ink);
    font-size: 15px;
    font-weight: 800;
}

.ac-wizard__field input[type="range"] {
    width: 100%;
    height: 4px;
    margin-top: 13px;
    accent-color: var(--ac-blue);
}

.ac-wizard__field select {
    width: 100%;
    height: 42px;
    margin-top: 8px;
    border: 1px solid #cfdae7;
    border-radius: 9px;
    background: #fff;
    color: var(--ac-ink);
    font: inherit;
    font-size: 13px;
}

.ac-wizard__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.ac-wizard__features label {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid var(--ac-line);
    border-radius: 999px;
    background: #fff;
    color: var(--ac-ink-soft);
    cursor: pointer;
    font-size: 12px;
    font-weight: 650;
}

.ac-wizard__features label:has(input:checked) {
    border-color: #a8c5ff;
    background: var(--ac-blue-pale);
    color: var(--ac-blue-dark);
}

.ac-wizard__features input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--ac-blue);
}

.ac-comparison__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    color: var(--ac-ink-soft);
    font-size: 12px;
}

.ac-comparison__bar strong {
    color: var(--ac-ink);
    font-size: 18px;
}

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

.ac-provider-card {
    display: grid;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    background: #fff;
    box-shadow: 0 12px 38px -34px rgba(17, 38, 72, .55);
    grid-template-columns: minmax(225px, .82fr) minmax(480px, 1.85fr) 142px;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.ac-provider-card:hover {
    border-color: #b8cce4;
    box-shadow: 0 20px 45px -34px rgba(17, 38, 72, .62);
    transform: translateY(-1px);
}

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

.ac-provider-card__brand {
    display: grid;
    min-width: 0;
    align-items: center;
    gap: 11px;
    grid-template-columns: 64px minmax(0, 1fr);
}

.ac-provider-card__logo-wrap,
.ac-provider-card__logo {
    display: block;
    width: 64px;
    height: 54px;
}

.ac-provider-card__logo-wrap {
    overflow: hidden;
    padding: 5px;
    border: 1px solid #e2e9f1;
    border-radius: 11px;
    background: #fff;
}

.ac-provider-card__logo {
    width: 100%;
    height: 100%;
    border-radius: 7px;
    object-fit: contain;
}

.ac-provider-card__brand h3 {
    overflow: hidden;
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ac-provider-card__brand h3 a {
    color: var(--ac-ink);
}

.ac-provider-card__brand span {
    display: block;
    margin-top: 3px;
    color: #8390a2;
    font-size: 10px;
}

.ac-provider-card__facts {
    display: grid;
    min-width: 0;
    gap: 5px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ac-provider-card__metric {
    min-width: 0;
    min-height: 52px;
    padding: 7px 8px;
    border-radius: 9px;
    background: var(--ac-canvas);
}

.ac-provider-card__metric span,
.ac-provider-card__metric strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ac-provider-card__metric span {
    color: #77869a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.ac-provider-card__metric strong {
    margin-top: 3px;
    color: var(--ac-ink);
    font-size: 11px;
    font-weight: 780;
}

.ac-provider-card__metric--accent {
    background: var(--ac-blue-pale);
}

.ac-provider-card__metric--accent strong {
    color: var(--ac-blue-dark);
}

.ac-provider-card__actions {
    display: grid;
    gap: 5px;
}

.ac-provider-card__actions .ac-button {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 11px;
}

.ac-provider-card__details {
    grid-column: 1 / -1;
    border-top: 1px solid #edf1f6;
}

.ac-provider-card__details summary {
    width: max-content;
    padding-top: 8px;
    color: var(--ac-blue-dark);
    cursor: pointer;
    font-size: 11px;
    font-weight: 750;
    list-style: none;
}

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

.ac-provider-card__details summary::after {
    margin-left: 6px;
    content: "+";
}

.ac-provider-card__details[open] summary::after {
    content: "−";
}

.ac-provider-card__details dl {
    display: grid;
    gap: 6px;
    margin: 10px 0 2px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ac-provider-card__details dl div {
    padding: 9px;
    border-radius: 9px;
    background: var(--ac-canvas);
}

.ac-provider-card__details dt {
    color: #77869a;
    font-size: 9px;
    font-weight: 750;
    text-transform: uppercase;
}

.ac-provider-card__details dd {
    margin: 3px 0 0;
    color: var(--ac-ink);
    font-size: 11px;
}

.ac-more-providers {
    display: flex;
    width: min(360px, 100%);
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin: 18px auto 0;
    border: 1px solid #b9cbe1;
    border-radius: 13px;
    background: #fff;
    color: var(--ac-blue-dark);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
}

.ac-more-providers:hover {
    border-color: var(--ac-blue);
    background: var(--ac-blue-pale);
}

.ac-comparison__note {
    margin: 12px 0 0;
    color: #77869a;
    font-size: 11px;
    text-align: center;
}

.ac-empty {
    padding: 24px;
    border: 1px dashed #b9cbe1;
    border-radius: var(--ac-radius);
    background: var(--ac-blue-pale);
    color: var(--ac-ink-soft);
    text-align: center;
}

.ac-tip-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ac-tip {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    padding: 24px 20px;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    background: #fff;
    box-shadow: 0 18px 45px -42px rgba(17, 38, 72, .55);
}

.ac-tip > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--ac-blue-pale);
    color: var(--ac-blue);
    font-size: 11px;
    font-weight: 850;
}

.ac-tip h3 {
    margin: 32px 0 10px;
    font-size: 17px;
}

.ac-tip p {
    margin: 0;
    color: var(--ac-ink-soft);
    font-size: 13px;
}

.ac-process {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ac-process__step {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(193, 210, 231, .9);
    border-radius: 16px;
    background: rgba(255, 255, 255, .82);
}

.ac-process__step > span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ac-ink);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.ac-process__step h3 {
    margin: 22px 0 8px;
    font-size: 15px;
}

.ac-process__step p {
    margin: 0;
    color: var(--ac-ink-soft);
    font-size: 12px;
}

.ac-requirements {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ac-requirements article {
    display: grid;
    gap: 13px;
    padding: 20px;
    border: 1px solid var(--ac-line);
    border-radius: 16px;
    background: #fff;
    grid-template-columns: 30px minmax(0, 1fr);
}

.ac-check {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--ac-green-pale);
    color: var(--ac-green);
    font-size: 13px;
    font-weight: 900;
}

.ac-requirements h3 {
    margin: 2px 0 7px;
    font-size: 15px;
}

.ac-requirements p {
    margin: 0;
    color: var(--ac-ink-soft);
    font-size: 12px;
}

.ac-alternatives {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ac-alternatives article {
    position: relative;
    min-height: 210px;
    padding: 25px;
    border: 1px solid var(--ac-line);
    border-radius: 20px;
    background: linear-gradient(145deg, #fff, #f8fbff);
}

.ac-alternatives article > span {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--ac-blue);
    font-size: 20px;
}

.ac-alternatives h3 {
    max-width: calc(100% - 30px);
    margin: 36px 0 12px;
    font-size: 20px;
}

.ac-alternatives h3 a {
    color: var(--ac-ink);
}

.ac-alternatives h3 a:hover {
    color: var(--ac-blue);
}

.ac-alternatives p {
    margin: 0;
    color: var(--ac-ink-soft);
    font-size: 13px;
}

.ac-faq {
    overflow: hidden;
    border: 1px solid var(--ac-line);
    border-radius: 22px;
    background: #fff;
}

.ac-faq details + details {
    border-top: 1px solid var(--ac-line);
}

.ac-faq summary {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    color: var(--ac-ink);
    cursor: pointer;
    font-size: 15px;
    font-weight: 750;
    list-style: none;
}

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

.ac-faq summary i {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: var(--ac-blue-pale);
}

.ac-faq summary i::before,
.ac-faq summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    background: var(--ac-blue);
    content: "";
    transform: translate(-50%, -50%);
}

.ac-faq summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .18s ease;
}

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

.ac-faq details > div {
    max-width: 940px;
    padding: 0 64px 20px 20px;
    color: var(--ac-ink-soft);
    font-size: 14px;
}

.ac-faq details > div p {
    margin: 0;
}

.ac-home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(42px, 7vw, 86px);
    border: 1px solid #d5e2f1;
    border-radius: 38px;
    background:
        radial-gradient(circle at 86% 15%, rgba(13, 156, 112, .18), transparent 24%),
        radial-gradient(circle at 8% 0%, rgba(20, 99, 255, .17), transparent 34%),
        #f8fbff;
    box-shadow: var(--ac-shadow);
}

.ac-home-hero::after {
    position: absolute;
    top: -170px;
    right: -120px;
    width: 430px;
    height: 430px;
    border: 72px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    content: "";
}

.ac-home-hero > * {
    position: relative;
    z-index: 1;
}

.ac-home-hero h1 {
    max-width: 920px;
    margin: 18px 0 20px;
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 840;
}

.ac-home-hero > div:not(.ac-home-hero__stats) {
    max-width: 790px;
    color: var(--ac-ink-soft);
    font-size: 18px;
}

.ac-home-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

.ac-home-hero__stats span {
    padding: 10px 14px;
    border: 1px solid rgba(196, 212, 231, .8);
    border-radius: 12px;
    background: rgba(255, 255, 255, .72);
    color: var(--ac-ink-soft);
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.ac-home-hero__stats strong {
    margin-right: 3px;
    color: var(--ac-ink);
    font-size: 17px;
}

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

.ac-category-grid article {
    position: relative;
    min-height: 190px;
    padding: 22px;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    background: #fff;
}

.ac-category-grid article > span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--ac-blue-pale);
    color: var(--ac-blue);
}

.ac-category-grid h3 {
    margin: 30px 0 9px;
    font-size: 18px;
}

.ac-category-grid h3 a {
    color: var(--ac-ink);
}

.ac-category-grid h3 a:hover {
    color: var(--ac-blue);
}

.ac-category-grid p {
    margin: 0;
    color: var(--ac-ink-soft);
    font-size: 12px;
}

.ac-about,
.ac-how {
    display: grid;
    align-items: center;
    gap: clamp(28px, 6vw, 74px);
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
}

.ac-about__copy > p,
.ac-how__intro > p {
    color: var(--ac-ink-soft);
    font-size: 15px;
}

.ac-about__visual {
    position: relative;
}

.ac-about__image {
    display: block;
    width: 100%;
    min-height: 380px;
    border: 1px solid var(--ac-line);
    border-radius: 28px;
    object-fit: cover;
    box-shadow: var(--ac-shadow);
}

.ac-about__visual span {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(19, 35, 58, .88);
    color: #fff;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.ac-how {
    align-items: start;
    padding: clamp(28px, 5vw, 58px);
    border-radius: var(--ac-radius-lg);
    background: var(--ac-ink);
    grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
}

.ac-how .ac-section-heading h2,
.ac-how .ac-section-heading p,
.ac-how__intro > p {
    color: #fff;
}

.ac-how .ac-section-heading > span {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    color: #8bb5ff;
}

.ac-how__intro > p {
    opacity: .72;
    font-size: 14px;
}

.ac-how__steps {
    display: grid;
    gap: 8px;
}

.ac-how__steps article {
    display: grid;
    gap: 14px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    background: rgba(255, 255, 255, .06);
    grid-template-columns: 34px minmax(0, 1fr);
}

.ac-how__steps article > span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--ac-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 850;
}

.ac-how__steps h3 {
    margin: 1px 0 5px;
    color: #fff;
    font-size: 14px;
}

.ac-how__steps p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.ac-provider-hero {
    display: grid;
    align-items: center;
    gap: 30px;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid var(--ac-line);
    border-radius: 34px;
    background: linear-gradient(135deg, #f7faff, #fff 58%, #effaf6);
    box-shadow: var(--ac-shadow);
    grid-template-columns: minmax(0, 1fr) 190px;
}

.ac-provider-hero__brand {
    display: grid;
    align-items: center;
    gap: 24px;
    grid-template-columns: 130px minmax(0, 1fr);
}

.ac-provider-hero__logo {
    display: flex;
    width: 130px;
    height: 112px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--ac-line);
    border-radius: 18px;
    background: #fff;
}

.ac-provider-hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ac-provider-hero h1 {
    margin: 12px 0 9px;
    font-size: clamp(34px, 5vw, 56px);
}

.ac-provider-hero p {
    max-width: 700px;
    margin: 0;
    color: var(--ac-ink-soft);
    font-size: 14px;
}

.ac-provider-hero__cta {
    display: grid;
    gap: 9px;
    text-align: center;
}

.ac-provider-hero__cta span {
    color: #7d8b9d;
    font-size: 10px;
}

.ac-provider-summary {
    display: grid;
    overflow: hidden;
    margin-top: 14px;
    border: 1px solid var(--ac-line);
    border-radius: 18px;
    background: #fff;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ac-provider-summary > div {
    min-width: 0;
    padding: 17px 19px;
}

.ac-provider-summary > div + div {
    border-left: 1px solid var(--ac-line);
}

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

.ac-provider-summary span {
    color: #7b899a;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
}

.ac-provider-summary strong {
    overflow: hidden;
    margin-top: 5px;
    color: var(--ac-ink);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ac-provider-summary .is-accent {
    background: var(--ac-blue-pale);
}

.ac-provider-summary .is-accent strong {
    color: var(--ac-blue-dark);
}

.ac-provider-intro,
.ac-example {
    max-width: 900px;
    padding: 28px;
    border: 1px solid var(--ac-line);
    border-radius: 20px;
    background: #fff;
}

.ac-provider-intro {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
}

.ac-provider-intro h2,
.ac-example h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.ac-provider-intro p,
.ac-example p {
    margin: 0;
    color: var(--ac-ink-soft);
}

.ac-detail-grid {
    display: grid;
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--ac-line);
    border-radius: 20px;
    background: #fff;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ac-detail-grid > div {
    padding: 17px 19px;
    border-right: 1px solid var(--ac-line);
    border-bottom: 1px solid var(--ac-line);
}

.ac-detail-grid dt {
    color: #7c8a9b;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
}

.ac-detail-grid dd {
    margin: 6px 0 0;
    color: var(--ac-ink);
    font-size: 13px;
    font-weight: 650;
}

.ac-product-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ac-product-grid article {
    padding: 20px;
    border: 1px solid rgba(193, 210, 231, .9);
    border-radius: 16px;
    background: rgba(255, 255, 255, .86);
}

.ac-product-grid h3 {
    margin: 0 0 14px;
    font-size: 17px;
}

.ac-product-grid h3 a {
    color: var(--ac-blue-dark);
    text-decoration: none;
}

.ac-product-grid h3 a:hover,
.ac-product-grid h3 a:focus-visible {
    color: var(--ac-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ac-product-grid dl {
    display: grid;
    gap: 7px;
    margin: 0;
}

.ac-product-grid dl div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 7px;
    border-top: 1px solid #e2e9f1;
    font-size: 11px;
}

.ac-product-grid dt {
    color: #7c8a9b;
}

.ac-product-grid dd {
    margin: 0;
    color: var(--ac-ink);
    font-weight: 750;
    text-align: right;
}

.ac-example > span {
    color: var(--ac-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

@media (max-width: 1120px) {
    .ac-provider-card {
        grid-template-columns: minmax(220px, .75fr) minmax(450px, 1.6fr) 130px;
    }

    .ac-tip-grid,
    .ac-process {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ac-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .ac-hero {
        grid-template-columns: 1fr;
    }

    .ac-hero__visual {
        min-height: 300px;
        padding: 0 32px 32px;
    }

    .ac-hero__image {
        min-height: 300px;
        max-height: 430px;
    }

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

    .ac-provider-card {
        grid-template-columns: minmax(0, 1fr) 140px;
    }

    .ac-provider-card__facts {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .ac-provider-card__actions {
        grid-column: 2;
        grid-row: 1;
    }

    .ac-provider-card__details {
        grid-row: 3;
    }

    .ac-section--split,
    .ac-about,
    .ac-how {
        grid-template-columns: 1fr;
    }

    .ac-about__visual {
        max-width: 640px;
    }

    .ac-requirements,
    .ac-alternatives,
    .ac-product-grid,
    .ac-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ac-provider-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ac-provider-summary > div:nth-child(4) {
        border-left: 0;
    }
}

@media (max-width: 700px) {
    .ac-page {
        width: min(100% - 20px, 1240px);
        margin-top: 10px;
    }

    .ac-hero,
    .ac-home-hero {
        border-radius: 24px;
    }

    .ac-hero__content,
    .ac-home-hero {
        padding: 28px 22px;
    }

    .ac-hero h1,
    .ac-home-hero h1 {
        font-size: 36px;
    }

    .ac-hero__nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ac-hero__nav .ac-button {
        width: 100%;
        padding-inline: 8px;
        font-size: 11px;
    }

    .ac-hero__visual {
        min-height: 230px;
        padding: 0 18px 18px;
    }

    .ac-hero__image {
        min-height: 230px;
        border-radius: 18px;
    }

    .ac-hero__badge {
        right: 28px;
        bottom: 34px;
    }

    .ac-section {
        margin-top: 58px;
    }

    .ac-section--tint,
    .ac-how {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .ac-section-heading {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .ac-section-heading h2 {
        font-size: 28px;
    }

    .ac-wizard {
        padding: 14px;
        border-radius: 18px;
    }

    .ac-wizard__top {
        align-items: flex-start;
    }

    .ac-wizard__top p {
        display: none;
    }

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

    .ac-provider-card {
        gap: 10px;
        padding: 12px;
        grid-template-columns: 1fr;
    }

    .ac-provider-card__brand,
    .ac-provider-card__actions,
    .ac-provider-card__facts,
    .ac-provider-card__details {
        grid-column: 1;
        grid-row: auto;
    }

    .ac-provider-card__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ac-provider-card__metric:last-child {
        grid-column: 1 / -1;
    }

    .ac-provider-card__actions {
        display: flex;
    }

    .ac-provider-card__actions .ac-button {
        flex: 1 1 0;
    }

    .ac-provider-card__details dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ac-comparison__sort {
        display: none;
    }

    .ac-tip-grid,
    .ac-process,
    .ac-requirements,
    .ac-alternatives,
    .ac-category-grid,
    .ac-product-grid,
    .ac-detail-grid {
        grid-template-columns: 1fr;
    }

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

    .ac-tip h3 {
        margin-top: 20px;
    }

    .ac-provider-hero {
        padding: 24px 18px;
        grid-template-columns: 1fr;
    }

    .ac-provider-hero__brand {
        align-items: start;
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .ac-provider-hero__logo {
        width: 86px;
        height: 74px;
    }

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

    .ac-provider-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ac-provider-summary > div:nth-child(odd) {
        border-left: 0;
    }

    .ac-provider-summary > div {
        border-bottom: 1px solid var(--ac-line);
    }

    .ac-about__image {
        min-height: 270px;
    }

    .ac-faq summary {
        padding: 14px 15px;
        font-size: 13px;
    }

    .ac-faq details > div {
        padding: 0 48px 18px 15px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ac-page *,
    .ac-comparison *,
    .ac-wizard * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* AmCredit 2.0.1 — visual system based on the supplied comparison reference. */
.ac-page,
.ac-comparison,
.ac-wizard {
    --ac-ink: #061a43;
    --ac-ink-soft: #445878;
    --ac-blue: #2f72e8;
    --ac-blue-dark: #1259cf;
    --ac-blue-pale: #edf4ff;
    --ac-green: #11aa7b;
    --ac-green-dark: #078861;
    --ac-green-pale: #e7f8f2;
    --ac-line: #dde6f2;
    --ac-canvas: #f7f9fc;
    --ac-shadow: 0 18px 45px -28px rgba(6, 26, 67, .28);
    color: var(--ac-ink);
    font-size: 17px;
    line-height: 1.55;
}

.ac-page {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto 80px;
}

.ac-eyebrow,
.ac-hero__badge,
.ac-home-hero__stats,
.ac-section-heading > span,
.ac-section-heading p,
.ac-tip > span,
.ac-process__step > span,
.ac-how__steps article > span,
.ac-example > span {
    display: none !important;
}

.ac-button {
    min-height: 46px;
    border-radius: 9px;
    padding: 11px 17px;
    font-size: 14px;
    font-weight: 760;
}

.ac-button--primary {
    background: var(--ac-green);
    box-shadow: 0 14px 26px -18px rgba(17, 170, 123, .7);
}

.ac-button--primary:hover {
    background: var(--ac-green-dark);
}

.ac-hero,
.ac-home-hero {
    position: relative;
    display: grid;
    min-height: 680px;
    overflow: visible;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    grid-template-columns: minmax(520px, .92fr) minmax(590px, 1.08fr);
}

.ac-hero::before {
    position: absolute;
    z-index: 0;
    top: 8px;
    right: -5vw;
    bottom: 0;
    width: 60%;
    border-radius: 52% 0 0 50%;
    background:
        radial-gradient(circle at 70% 20%, rgba(47, 114, 232, .12) 0 2px, transparent 3px) 0 0 / 20px 20px,
        linear-gradient(135deg, #f3f7ff, #eaf3ff 62%, #dbeaff);
    content: "";
    opacity: .96;
}

.ac-hero::after,
.ac-home-hero::after {
    position: absolute;
    z-index: 0;
    right: -6vw;
    bottom: -10px;
    width: 61%;
    height: 100px;
    border: 0;
    border-radius: 60% 0 0 0;
    background: repeating-radial-gradient(ellipse at 55% 110%, transparent 0 10px, rgba(47, 114, 232, .12) 11px 12px, transparent 13px 19px);
    box-shadow: none;
    content: "";
}

.ac-hero__content,
.ac-home-hero > .ac-hero__content {
    position: relative;
    z-index: 4;
    max-width: none;
    padding: 58px 42px 54px 0;
    color: var(--ac-ink-soft);
    font-size: 17px;
}

.ac-hero h1,
.ac-home-hero h1 {
    max-width: 700px;
    margin: 0 0 22px;
    color: var(--ac-ink);
    font-size: clamp(52px, 5.1vw, 78px);
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: .99;
}

.ac-hero__intro {
    max-width: 650px;
    color: var(--ac-ink-soft);
    font-size: 18px;
    line-height: 1.55;
}

.ac-hero__intro p {
    margin: 0;
}

.ac-hero__nav {
    display: grid;
    max-width: 650px;
    gap: 14px;
    margin-top: 34px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ac-hero-link {
    display: flex;
    min-height: 152px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 15px 10px 13px;
    border: 1px solid #e1e7f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 15px 28px -22px rgba(6, 26, 67, .38);
    color: var(--ac-ink) !important;
    text-align: center;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ac-hero-link:hover,
.ac-hero-link.is-primary {
    border-color: var(--ac-blue);
    box-shadow: 0 16px 34px -22px rgba(47, 114, 232, .54);
    transform: translateY(-2px);
}

.ac-hero-link__icon {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 50%;
    background: var(--ac-blue-pale);
    color: var(--ac-blue);
}

.ac-hero-link__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ac-hero-link strong {
    display: flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1.3;
}

.ac-hero-link > i {
    width: 9px;
    height: 9px;
    margin-top: auto;
    border-right: 2px solid var(--ac-ink);
    border-bottom: 2px solid var(--ac-ink);
    transform: rotate(45deg);
}

.ac-hero__home-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

.ac-hero__home-link {
    display: inline-flex;
    min-width: 290px;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 9px;
    background: var(--ac-green);
    box-shadow: 0 14px 28px -18px rgba(17, 170, 123, .8);
    color: #fff !important;
    font-size: 17px;
    font-weight: 780;
}

.ac-hero__home-link:hover {
    background: var(--ac-green-dark);
}

.ac-hero__home-link svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.ac-hero__home-link i {
    margin-left: auto;
    font-size: 23px;
    font-style: normal;
}

.ac-hero__hint {
    position: relative;
    color: var(--ac-green);
    font-family: "Segoe Print", "Bradley Hand", cursive;
    font-size: 14px;
    font-style: italic;
    transform: rotate(-2deg);
}

.ac-hero__hint::before {
    display: inline-block;
    width: 46px;
    margin-right: 8px;
    border-top: 1px dashed var(--ac-green);
    content: "";
    vertical-align: middle;
}

.ac-hero__visual {
    position: relative;
    z-index: 3;
    min-height: 680px;
    align-self: stretch;
    padding: 0;
}

.ac-hero__visual-backdrop {
    position: absolute;
    top: 118px;
    right: 1%;
    bottom: 20px;
    left: 8%;
    overflow: hidden;
    border-radius: 48% 48% 22% 34% / 35% 38% 20% 22%;
    background: #dbeaff;
    box-shadow: 0 24px 55px -35px rgba(6, 26, 67, .42);
}

.ac-hero__image {
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
}

.ac-visual-panel {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(221, 230, 242, .9);
    border-radius: 14px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 16px 35px -22px rgba(6, 26, 67, .42);
    color: var(--ac-ink);
}

.ac-visual-panel--comparison {
    top: 38px;
    left: 1%;
    width: 375px;
    padding: 18px 20px 12px;
}

.ac-visual-panel--comparison > strong,
.ac-visual-panel--conditions > strong {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
}

.ac-visual-panel--comparison small {
    display: grid;
    padding-bottom: 7px;
    color: #6f7f98;
    font-size: 9px;
    grid-template-columns: 1.4fr .75fr .75fr;
}

.ac-visual-panel--comparison p {
    display: grid;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 9px 0;
    border-top: 1px solid #e8edf4;
    font-size: 11px;
    grid-template-columns: 12px 1.25fr .72fr .72fr;
}

.ac-visual-panel--comparison p i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ac-green);
}

.ac-visual-panel--comparison p:nth-of-type(2) i { background: var(--ac-blue); }
.ac-visual-panel--comparison p:nth-of-type(3) i { background: #865de6; }
.ac-visual-panel--comparison p b { color: var(--ac-blue); }
.ac-visual-panel--comparison p em { color: var(--ac-green); font-style: normal; font-weight: 750; }

.ac-visual-panel--rate {
    top: 138px;
    right: -1%;
    width: 170px;
    padding: 17px;
}

.ac-visual-panel--rate small,
.ac-visual-panel--rate strong {
    display: block;
}

.ac-visual-panel--rate small { color: #566985; font-size: 10px; }
.ac-visual-panel--rate strong { margin-top: 6px; color: var(--ac-green); font-size: 27px; }
.ac-visual-panel--rate span { display: flex; width: 28px; height: 28px; align-items: center; justify-content: center; margin: 15px 0 0 auto; border-radius: 50%; background: var(--ac-green-pale); color: var(--ac-green); font-size: 12px; font-weight: 800; }

.ac-visual-panel--conditions {
    right: -2%;
    bottom: 38px;
    width: 245px;
    padding: 17px 19px 12px;
}

.ac-visual-panel--conditions p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 8px 0;
    border-top: 1px solid #edf1f6;
    color: #52637d;
    font-size: 10px;
}

.ac-visual-panel--conditions p i {
    display: flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ac-green);
    color: #fff;
    font-size: 10px;
    font-style: normal;
}

.ac-section {
    margin-top: clamp(72px, 7vw, 104px);
    scroll-margin-top: 28px;
}

.ac-section-heading {
    display: block;
    max-width: 1050px;
    margin: 0 0 30px;
}

.ac-section-heading h2,
.ac-provider-intro h2,
.ac-example h2,
.ac-faq-section > h2 {
    margin: 0;
    color: var(--ac-ink);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 830;
    letter-spacing: -.04em;
    line-height: 1.08;
}

.ac-section--tint {
    padding: clamp(34px, 4vw, 55px);
    border: 0;
    border-radius: 20px;
    background: #f1f6ff;
}

.ac-wizard {
    padding: 24px;
    border: 1px solid #d9e3f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--ac-shadow);
}

.ac-wizard__top {
    min-height: 24px;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.ac-wizard__reset {
    color: var(--ac-blue-dark);
    font-size: 14px;
}

.ac-wizard__fields {
    gap: 12px;
}

.ac-wizard__field {
    min-height: 108px;
    padding: 16px;
    border-radius: 10px;
    background: #f6f8fb;
}

.ac-wizard__field > span {
    font-size: 12px;
}

.ac-wizard__field output {
    font-size: 17px;
}

.ac-wizard__field select {
    font-size: 14px;
}

.ac-wizard__features {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ac-wizard__features label {
    min-height: 48px;
    padding: 10px 13px;
    border-radius: 9px;
    font-size: 13px;
}

.ac-comparison__bar {
    margin-bottom: 14px;
    font-size: 13px;
}

.ac-comparison__bar strong {
    font-size: 21px;
}

.ac-card-list {
    gap: 12px;
}

.ac-provider-card {
    gap: 18px;
    padding: 15px 17px;
    border: 1px solid #dce5f0;
    border-radius: 14px;
    box-shadow: 0 12px 26px -24px rgba(6, 26, 67, .34);
    grid-template-columns: minmax(270px, .86fr) minmax(550px, 1.76fr) minmax(188px, .62fr);
}

.ac-provider-card__brand {
    gap: 14px;
    grid-template-columns: 110px minmax(0, 1fr);
}

.ac-provider-card__logo-wrap,
.ac-provider-card__logo {
    width: 110px;
    height: 78px;
}

.ac-provider-card__logo-wrap {
    padding: 7px;
    border-radius: 10px;
}

.ac-provider-card__brand h3 {
    font-size: 18px;
}

.ac-provider-card__facts {
    gap: 7px;
}

.ac-provider-card__metric {
    min-height: 64px;
    padding: 10px;
    border-radius: 8px;
}

.ac-provider-card__metric span {
    font-size: 11px;
}

.ac-provider-card__metric strong {
    margin-top: 5px;
    font-size: 14px;
}

.ac-provider-card__actions {
    gap: 7px;
}

.ac-provider-card__actions .ac-button {
    min-height: 39px;
    padding: 8px 11px;
    font-size: 13px;
}

.ac-provider-card__details summary,
.ac-provider-card__details dd {
    font-size: 12px;
}

.ac-provider-card__details dt {
    font-size: 10px;
}

.ac-more-providers {
    min-height: 52px;
    border-radius: 9px;
    font-size: 14px;
}

.ac-comparison__note {
    font-size: 12px;
}

.ac-section--split {
    gap: 55px;
    grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr);
}

.ac-featured-answer {
    padding: 30px 34px;
    border-radius: 14px;
    font-size: 18px;
}

.ac-tip-grid {
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ac-tip {
    min-height: 170px;
    padding: 25px;
    border-radius: 12px;
}

.ac-tip::before {
    display: block;
    width: 42px;
    margin-bottom: 24px;
    border-top: 3px solid var(--ac-blue);
    content: "";
}

.ac-tip h3 {
    margin: 0 0 10px;
    font-size: 19px;
}

.ac-tip p,
.ac-process__step p,
.ac-requirements p,
.ac-alternatives p,
.ac-category-grid p {
    font-size: 14px;
}

.ac-process {
    gap: 12px;
}

.ac-process__step {
    padding: 22px 18px;
    border: 0;
    border-top: 3px solid var(--ac-green);
    border-radius: 0 0 10px 10px;
    background: #fff;
}

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

.ac-requirements article {
    padding: 22px;
    border-radius: 12px;
}

.ac-requirements h3 {
    font-size: 17px;
}

.ac-alternatives article,
.ac-category-grid article {
    min-height: 190px;
    padding: 25px;
    border-radius: 12px;
    background: #fff;
}

.ac-alternatives article > span,
.ac-category-grid article > span {
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ac-blue);
    font-size: 23px;
    text-align: right;
}

.ac-alternatives h3,
.ac-category-grid h3 {
    margin: 17px 0 11px;
    font-size: 20px;
}

.ac-faq {
    border-radius: 13px;
}

.ac-faq summary {
    min-height: 72px;
    padding: 17px 21px;
    font-size: 16px;
}

.ac-faq summary i {
    border-radius: 50%;
}

.ac-faq details > div {
    font-size: 15px;
}

.ac-about,
.ac-how {
    gap: 64px;
}

.ac-about__image {
    border-radius: 16px;
}

.ac-about__visual span {
    display: none;
}

.ac-how {
    padding: clamp(35px, 5vw, 62px);
    border-radius: 18px;
    background: #edf4ff;
}

.ac-how .ac-section-heading h2,
.ac-how__intro > p {
    color: var(--ac-ink);
}

.ac-how__intro > p {
    opacity: 1;
    font-size: 15px;
}

.ac-how__steps article {
    display: block;
    padding: 19px 21px;
    border-color: #d7e4f6;
    border-radius: 10px;
    background: #fff;
}

.ac-how__steps h3 {
    color: var(--ac-ink);
    font-size: 16px;
}

.ac-how__steps p {
    color: var(--ac-ink-soft);
    font-size: 13px;
}

.ac-provider-hero {
    position: relative;
    min-height: 370px;
    overflow: hidden;
    gap: 55px;
    padding: clamp(38px, 5vw, 70px);
    border: 0;
    border-radius: 0;
    background: linear-gradient(120deg, #fff 0 52%, #edf4ff 52% 100%);
    box-shadow: none;
    grid-template-columns: minmax(0, 1fr) 365px;
}

.ac-provider-hero__brand {
    gap: 30px;
    grid-template-columns: 160px minmax(0, 1fr);
}

.ac-provider-hero__logo {
    width: 160px;
    height: 128px;
    padding: 16px;
    border-radius: 14px;
    box-shadow: var(--ac-shadow);
}

.ac-provider-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(44px, 5vw, 68px);
    letter-spacing: -.05em;
}

.ac-provider-hero p {
    font-size: 16px;
}

.ac-provider-hero__cta {
    position: relative;
    z-index: 1;
    gap: 15px;
}

.ac-provider-hero__compare {
    display: grid;
    gap: 0;
    padding: 21px;
    border: 1px solid #dbe5f2;
    border-radius: 13px;
    background: #fff;
    box-shadow: var(--ac-shadow);
    text-align: left;
}

.ac-provider-hero__compare strong {
    margin-bottom: 12px;
    font-size: 16px;
}

.ac-provider-hero__compare span {
    padding: 9px 0;
    border-top: 1px solid #e7edf5;
    color: var(--ac-ink-soft);
    font-size: 13px;
}

.ac-provider-summary {
    margin: 0 0 18px;
    border-radius: 12px;
}

.ac-provider-summary > div {
    padding: 20px;
}

.ac-provider-summary span {
    font-size: 11px;
}

.ac-provider-summary strong {
    font-size: 16px;
}

.ac-detail-grid,
.ac-product-grid article,
.ac-provider-intro,
.ac-example {
    border-radius: 12px;
}

.ac-detail-grid dt,
.ac-product-grid dt {
    font-size: 11px;
}

.ac-detail-grid dd,
.ac-product-grid dd {
    font-size: 14px;
}

@media (max-width: 1180px) {
    .ac-hero,
    .ac-home-hero {
        grid-template-columns: minmax(470px, .95fr) minmax(430px, 1.05fr);
    }

    .ac-hero__content,
    .ac-home-hero > .ac-hero__content {
        padding-right: 25px;
    }

    .ac-hero h1,
    .ac-home-hero h1 {
        font-size: 56px;
    }

    .ac-hero__nav {
        gap: 9px;
    }

    .ac-hero-link {
        min-height: 145px;
    }

    .ac-visual-panel--comparison {
        width: 335px;
    }

    .ac-provider-card {
        grid-template-columns: minmax(245px, .82fr) minmax(500px, 1.74fr) minmax(175px, .62fr);
    }
}

@media (max-width: 980px) {
    .ac-page {
        width: min(100% - 32px, 860px);
    }

    .ac-hero,
    .ac-home-hero {
        grid-template-columns: 1fr;
    }

    .ac-hero::before {
        top: auto;
        right: -16px;
        bottom: 0;
        width: calc(100% + 32px);
        height: 540px;
        border-radius: 50% 50% 0 0;
    }

    .ac-hero__content,
    .ac-home-hero > .ac-hero__content {
        padding: 52px 0 25px;
    }

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

    .ac-provider-card {
        grid-template-columns: minmax(0, 1fr) 190px;
    }

    .ac-provider-card__facts {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .ac-page {
        width: min(100% - 24px, 680px);
        margin-top: 0;
    }

    .ac-hero,
    .ac-home-hero {
        border-radius: 0;
    }

    .ac-hero__content,
    .ac-home-hero > .ac-hero__content {
        padding: 38px 0 20px;
    }

    .ac-hero h1,
    .ac-home-hero h1 {
        font-size: 43px;
    }

    .ac-hero__intro {
        font-size: 16px;
    }

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

    .ac-hero-link {
        min-height: 136px;
    }

    .ac-hero__home-row {
        display: block;
    }

    .ac-hero__home-link {
        width: 100%;
        min-width: 0;
    }

    .ac-hero__hint {
        display: block;
        margin-top: 15px;
        text-align: center;
    }

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

    .ac-hero__visual-backdrop {
        top: 112px;
        right: 2%;
        bottom: 45px;
        left: 2%;
    }

    .ac-visual-panel--comparison {
        top: 30px;
        left: 0;
        width: min(92%, 340px);
    }

    .ac-visual-panel--rate {
        top: 175px;
        right: 0;
        width: 145px;
    }

    .ac-visual-panel--conditions {
        right: 0;
        bottom: 20px;
        width: 215px;
    }

    .ac-section-heading h2,
    .ac-provider-intro h2,
    .ac-example h2,
    .ac-faq-section > h2 {
        font-size: 32px;
    }

    .ac-wizard__features,
    .ac-tip-grid {
        grid-template-columns: 1fr;
    }

    .ac-provider-card {
        padding: 15px;
        grid-template-columns: 1fr;
    }

    .ac-provider-card__brand {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .ac-provider-card__logo-wrap,
    .ac-provider-card__logo {
        width: 100px;
        height: 74px;
    }

    .ac-provider-card__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ac-provider-card__actions {
        display: grid;
    }

    .ac-provider-card__actions .ac-button {
        font-size: 13px;
    }

    .ac-provider-card__details dl {
        grid-template-columns: 1fr;
    }

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

    .ac-provider-hero {
        gap: 30px;
        padding: 36px 20px;
        background: linear-gradient(160deg, #fff 0 52%, #edf4ff 52% 100%);
        grid-template-columns: 1fr;
    }

    .ac-provider-hero__brand {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .ac-provider-hero__logo {
        width: 110px;
        height: 90px;
    }

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

    .ac-provider-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
