/* ==========================================================================
   AutoKirim theme-v2 — persona pages
   ========================================================================== */

/* ============================================================ PERSONA HERO */

.ak-persona-hero {
    position: relative;
    /* Pulls up behind the sticky navbar so the transparent bar sits on red. */
    margin-top: calc(var(--ak-nav-h) * -1);
    padding: calc(var(--ak-nav-h) + 72px) 0 150px;
    overflow: hidden;
}

/* Red is its own layer, stopping short of the section's bottom edge. `overflow:
   hidden` cuts every layer at the section's fractional pixel row; with red still
   underneath, that row composites to a pink-grey hairline above 1x DPR. */
.ak-persona-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 20px;
    background: var(--ak-red);
}

/* Wider than the viewport so the arc stays shallow instead of curving up at the corners. */
.ak-persona-hero::after {
    content: "";
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: -90px;
    height: 170px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.ak-persona-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    align-items: center;
    gap: 40px;
}

.ak-persona-hero__title {
    color: #fff;
    font-size: clamp(1.75rem, 3.1vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
}

.ak-persona-hero__sub {
    color: rgba(255, 255, 255, .92);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 46ch;
    margin: 0 0 32px;
}

.ak-persona-hero__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.ak-persona-hero__stores img {
    display: block;
    width: 152px;
    transition: transform .25s var(--ak-ease);
}

.ak-persona-hero__stores a:hover img {
    transform: translateY(-3px);
}

.ak-persona-hero__media {
    display: flex;
    justify-content: flex-end;
}

.ak-persona-hero__media img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
}

/* The row spans the full width and the copy column's gutter is rebuilt from the
   shell — a negative margin against 100vw would be off by the scrollbar. */
.ak-persona-hero--wide {
    /* One source for the artwork width: the overhang below is a fraction of it. */
    --hero-art-w: min(749px, 54vw);
    padding-block: calc(var(--ak-nav-h) + 30px) 0;
}

.ak-persona-hero--wide .ak-persona-hero__inner {
    width: 100%;
    padding-inline: max(20px, calc((100% - 1200px) / 2)) 20px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
}

.ak-persona-hero--wide .ak-persona-hero__media {
    align-items: flex-start;
}

/* A paint-time shift, not a margin: the band's height is set by the media box. */
.ak-persona-hero--wide .ak-persona-hero__media img {
    position: relative;
    top: calc(var(--hero-art-rise, 0px) * -1);
    width: var(--hero-art-w);
    max-width: none;
    margin-bottom: calc(var(--hero-art-w) * var(--hero-art-drop, 0.128) * -1);
}

.ak-persona-hero--wide::after {
    z-index: 2;
}

.ak-persona-hero--wide .ak-persona-hero__title {
    font-size: clamp(1.6rem, 2.7vw, 2.3rem);
}

.ak-persona-hero--wide .ak-persona-hero__sub {
    max-width: 55ch;
}

.ak-persona-hero--wide .ak-persona-hero__inner {
    align-items: start;
}

.ak-persona-hero--wide .ak-persona-hero__copy {
    padding-top: 74px;
}

@media (max-width: 860px) {
    .ak-persona-hero,
    .ak-persona-hero--wide {
        padding: calc(var(--ak-nav-h) + 40px) 0 120px;
    }

    .ak-persona-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ak-persona-hero__sub {
        margin-inline: auto;
    }

    .ak-persona-hero__stores {
        justify-content: center;
    }

    .ak-persona-hero__media {
        order: -1;
        max-width: 420px;
        margin-inline: auto;
    }

    /* The grid has to be reset here too: the variant's two-column rule outranks the
       single-column one and would leave the artwork in a zero-width column. */
    .ak-persona-hero--wide .ak-persona-hero__inner {
        width: min(1200px, calc(100% - 40px));
        padding-inline: 0;
        grid-template-columns: 1fr;
        align-items: center;
    }

    .ak-persona-hero--wide .ak-persona-hero__media img {
        width: 100%;
        max-width: 420px;
        margin-bottom: 0;
    }

    .ak-persona-hero--wide .ak-persona-hero__copy {
        padding-top: 0;
    }
}

/* ============================================================== COMPARISON */

.ak-compare {
    padding: var(--ak-section-y) 0;
    background: #fff;
}

.ak-compare__title {
    text-align: center;
    margin: 0 0 56px;
}

.ak-compare__grid {
    display: grid;
    grid-template-columns: 1fr 170px 1fr;
    align-items: stretch;
}

.ak-compare__panel {
    border-radius: var(--ak-radius-lg);
    padding: 34px 34px 52px;
}

.ak-compare__panel--before {
    background: #fde9e9;
}

.ak-compare__panel--after {
    background: #e6f7dd;
}

.ak-compare__head {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 34px;
    color: var(--ak-ink);
}

.ak-compare__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 26px;
}

.ak-compare__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.35;
    color: var(--ak-ink);
}

.ak-compare__list--end li {
    justify-content: flex-end;
    text-align: right;
}

.ak-compare__mark {
    position: relative;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
}

.ak-compare__mark--no::before,
.ak-compare__mark--no::after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: #e02424;
}

.ak-compare__mark--no::before {
    transform: rotate(45deg);
}

.ak-compare__mark--no::after {
    transform: rotate(-45deg);
}

.ak-compare__mark--yes {
    background: #16a34a;
    border-radius: 5px;
}

.ak-compare__mark--yes::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 11px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.ak-compare__mascots {
    position: relative;
}

.ak-compare__mascots img {
    position: absolute;
    bottom: 0;
    height: auto;
}

.ak-compare__mascots img:first-child {
    left: -96px;
    width: 156px;
}

.ak-compare__mascots img:last-child {
    right: -74px;
    width: 172px;
}

@media (max-width: 900px) {
    .ak-compare__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ak-compare__mascots {
        display: none;
    }

    .ak-compare__list--end li {
        flex-direction: row-reverse;
        justify-content: flex-end;
        text-align: left;
    }
}

.ak-compare--plain {
    background: linear-gradient(180deg, #fff 55%, #ffeded 100%);
    padding-bottom: 72px;
}

.ak-compare__sub {
    text-align: center;
    color: var(--ak-body);
    max-width: 68ch;
    margin: -34px auto 56px;
}

.ak-compare--plain .ak-compare__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: stretch;
}

.ak-compare--plain .ak-compare__panel {
    border: 2px solid;
    padding: 34px 34px 40px;
}

.ak-compare--plain .ak-compare__panel--before {
    background: #fff4f4;
    border-color: #e02424;
}

.ak-compare--plain .ak-compare__panel--after {
    background: #ecffeb;
    border-color: #16a34a;
}

.ak-compare--plain .ak-compare__list li {
    align-items: flex-start;
    font-weight: 400;
    font-size: .98rem;
    line-height: 1.6;
}

.ak-compare--plain .ak-compare__mark {
    margin-top: 3px;
}

@media (max-width: 900px) {
    .ak-compare--plain .ak-compare__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ================================================================= SEGMENTS */

.ak-segments {
    background: var(--ak-red);
    padding-block: 72px 80px;
    color: #fff;
}

.ak-segments__title {
    text-align: center;
    color: #fff;
    max-width: 30ch;
    margin: 0 auto 56px;
}

.ak-segments__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 76px;
}

.ak-segments__card {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 26px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
    transition: transform .35s var(--ak-ease), box-shadow .35s var(--ak-ease);
}

.ak-segments__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.ak .ak-segments__icon {
    width: 116px;
    height: 116px;
    object-fit: contain;
}

.ak-segments__copy h3 {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ak-ink);
    margin: 0 0 10px;
}

.ak-segments__copy p {
    font-size: .94rem;
    line-height: 1.65;
    color: var(--ak-body);
    margin: 0;
}

@media (max-width: 900px) {
    .ak-segments__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 560px;
        margin-inline: auto;
    }
}

@media (max-width: 520px) {
    .ak-segments__card {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 14px;
        padding: 22px 20px;
    }

    .ak .ak-segments__icon {
        width: 84px;
        height: 84px;
    }
}

/* ================================================================== VERSUS */

/* Clips horizontally so the mascots in the bottom corners cannot widen the page. */
.ak-versus {
    position: relative;
    background: #fff;
    padding-block: 80px var(--ak-section-y);
    overflow-x: clip;
}

.ak-versus__title {
    text-align: center;
    margin: 0 0 48px;
}

.ak-versus__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
    align-items: center;
    gap: 22px 0;
    max-width: 920px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.ak-versus__head {
    text-align: center;
    font-size: 1.14rem;
    font-weight: 700;
    color: var(--ak-ink);
    margin: 0 0 8px;
}

.ak-versus__head--before {
    grid-column: 1;
}

.ak-versus__head--after {
    grid-column: 3;
}

.ak-versus__cell {
    padding: 20px 56px;
    border: 2px solid;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--ak-ink);
}

.ak-versus__cell--before {
    background: #fef6f6;
    border-color: #e02424;
}

.ak-versus__cell--after {
    background: #efffee;
    border-color: #16a34a;
}

.ak-versus__arrow {
    display: grid;
    place-items: center;
    justify-self: center;
    color: var(--ak-ink);
}

.ak-versus__arrow svg {
    display: block;
}

.ak-versus__mascot {
    position: absolute;
    bottom: 0;
    width: 165px;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.ak-versus__mascot--left {
    left: max(0px, calc((100% - 1150px) / 2));
}

.ak-versus__mascot--right {
    right: max(0px, calc((100% - 1150px) / 2));
}

@media (max-width: 1200px) {
    .ak-versus__mascot {
        display: none;
    }
}

@media (max-width: 700px) {
    .ak-versus__grid {
        grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
    }

    .ak-versus__cell {
        padding: 16px 12px;
        font-size: .9rem;
    }

    .ak-versus__arrow svg {
        width: 30px;
        height: 10px;
    }

    .ak-versus__head {
        font-size: .98rem;
    }
}

/* ================================================================ FEATURES */

.ak-features {
    padding: 8px 0 var(--ak-section-y);
    background: #fff;
}

.ak-features__title {
    text-align: center;
    margin: 0 0 14px;
}

.ak-features__title + .ak-features__grid {
    margin-top: 88px;
}

.ak-persona-hero + .ak-features {
    padding-top: 56px;
}

.ak-features__sub {
    text-align: center;
    color: var(--ak-body);
    max-width: 72ch;
    margin: 0 auto 88px;
}

/* The illustration overhangs the card's top edge, so the row gap leaves room for
   it and the card must not clip. */
.ak-features__grid {
    display: grid;
}

.ak-features__grid--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 88px 32px;
}

.ak-features__grid--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 88px 24px;
}

.ak-features__card {
    position: relative;
    overflow: visible;
    background: #fff;
    border: 2px solid var(--ak-red);
    border-radius: 20px;
    padding: 68px 26px 32px;
    text-align: center;
    box-shadow: 0 0 26px rgba(207, 13, 13, .16);
    transition: transform .35s var(--ak-ease), box-shadow .35s var(--ak-ease);
}

.ak-features__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(207, 13, 13, .16);
}

.ak-features__card:hover .ak-features__icon {
    transform: translateX(-50%) scale(1.07) rotate(-3deg);
}

.ak-features__name {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 14px;
    color: var(--ak-ink);
}

.ak-features__text {
    font-size: .94rem;
    line-height: 1.7;
    color: var(--ak-body);
    margin: 0;
}

.ak-features__grid--4 .ak-features__card {
    padding-inline: 20px;
}

.ak-features__grid--4 .ak-features__name {
    font-size: 1.1rem;
}

/* Six half-columns let the fourth card start on a half-column offset, centring the
   two-card last row; a plain three-column grid cannot express that. */
.ak-features__grid--center-last {
    grid-template-columns: repeat(6, 1fr);
}

.ak-features__grid--center-last > .ak-features__card {
    grid-column: span 2;
}

.ak-features__grid--center-last > .ak-features__card:nth-child(4) {
    grid-column: 2 / span 2;
}

@media (max-width: 1100px) {
    .ak-features__grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .ak-features__grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Four half-columns: two cards per row, and the fifth centres itself. */
    .ak-features__grid--center-last {
        grid-template-columns: repeat(4, 1fr);
    }

    .ak-features__grid--center-last > .ak-features__card:nth-child(4) {
        grid-column: auto / span 2;
    }

    .ak-features__grid--center-last > .ak-features__card:nth-child(5) {
        grid-column: 2 / span 2;
    }
}

@media (max-width: 620px) {
    .ak-features__grid--3,
    .ak-features__grid--4 {
        grid-template-columns: 1fr;
        gap: 72px 0;
    }

    .ak-features__grid--center-last {
        grid-template-columns: 1fr;
        gap: 72px 0;
    }

    .ak-features__grid--center-last > .ak-features__card,
    .ak-features__grid--center-last > .ak-features__card:nth-child(4),
    .ak-features__grid--center-last > .ak-features__card:nth-child(5) {
        grid-column: auto;
    }

    .ak-features__sub {
        margin-bottom: 72px;
    }
}

.ak .ak-features__icon--wide {
    --card-icon: 170px;
}

@media (max-width: 767.98px) {
    .ak .ak-features__icon--wide {
        --card-icon: 128px;
    }
}

/* ================================================================ CAROUSEL */

.ak-pcarousel {
    padding: 8px 0 var(--ak-section-y);
    background: #fff;
}

.ak-pcarousel__title {
    text-align: center;
    margin: 0 0 18px;
}

.ak-pcarousel__sub {
    text-align: center;
    color: var(--ak-body);
    max-width: 80ch;
    margin: 0 auto 56px;
}

.ak-pcarousel__stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ak-pcarousel__media {
    position: relative;
    aspect-ratio: 3 / 2;
    border-radius: 18px;
    overflow: hidden;
}

/* Slides cross-fade on top of each other, so the box keeps a fixed height. */
.ak-pcarousel__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .45s var(--ak-ease);
}

.ak-pcarousel__photo.is-active {
    opacity: 1;
}

.ak-pcarousel__headrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ak-pcarousel__nav {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fadadd;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color .25s var(--ak-ease);
}

.ak-pcarousel__nav:hover {
    background: var(--ak-red);
}

.ak-pcarousel__names,
.ak-pcarousel__descs {
    flex: 1 1 auto;
    text-align: center;
}

.ak-pcarousel__name,
.ak-pcarousel__desc {
    display: none;
    margin: 0;
}

.ak-pcarousel__name.is-active,
.ak-pcarousel__desc.is-active {
    display: block;
}

.ak-pcarousel__name {
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: var(--ak-ink);
}

.ak-pcarousel__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ak-ink);
}

.ak-pcarousel__rule {
    width: 180px;
    margin: 22px auto;
    border: 0;
    border-top: 1px solid var(--ak-line);
}

/* Reserve the tallest description so the dots below do not shift per slide. */
.ak-pcarousel__descs {
    min-height: 96px;
}

.ak-pcarousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.ak-pcarousel__dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #bdbdbd;
    background: #fff;
    cursor: pointer;
    transition: background-color .25s, border-color .25s;
}

.ak-pcarousel__dot.is-active {
    background: #9e9e9e;
    border-color: #9e9e9e;
}

@media (max-width: 900px) {
    .ak-pcarousel__stage {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ================================================================ USECASES */

.ak-usecases {
    padding: 64px 0 24px;
    background: #fff;
}

.ak-usecases__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ak-usecases__title {
    margin: 0 0 22px;
}

.ak-usecases__sub {
    color: var(--ak-body);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 46ch;
    margin: 0 0 36px;
}

.ak-usecases__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 500px;
}

.ak-usecases__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    border: 1.5px solid var(--ak-red);
    border-radius: 999px;
    font-weight: 600;
    font-size: .97rem;
    color: var(--ak-ink);
    background: #fff;
    transition: transform .3s var(--ak-ease), box-shadow .3s var(--ak-ease);
}

.ak-usecases__list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(207, 13, 13, .16);
}

.ak-usecases__list i {
    flex: 0 0 auto;
    color: var(--ak-red);
    font-size: 1.35rem;
    line-height: 1;
}

.ak-usecases__media {
    display: flex;
    justify-content: center;
}

/* Capped at its intrinsic width: `width: 100%` alone upscaled it to 520px and blurred it. */
.ak-usecases__media img {
    display: block;
    width: 100%;
    max-width: 380px;
    height: auto;
}

@media (max-width: 900px) {
    .ak-usecases__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ak-usecases__media {
        order: -1;
    }

    .ak-usecases__sub {
        max-width: none;
    }
}

@media (max-width: 520px) {
    .ak-usecases__list {
        grid-template-columns: 1fr;
    }
}

/* Columns are placed explicitly because auto-placement only moves forward. */
.ak-usecases--photo-left .ak-usecases__inner {
    grid-template-columns: .78fr 1.22fr;
    gap: 56px;
}

.ak-usecases--photo-left .ak-usecases__copy {
    grid-column: 2;
    grid-row: 1;
}

.ak-usecases--photo-left .ak-usecases__media {
    grid-column: 1;
    grid-row: 1;
}

.ak-usecases--photo-left .ak-usecases__media img {
    max-width: 440px;
}

.ak-usecases:has(+ .ak-couriers) {
    padding-bottom: 72px;
}

.ak-usecases__list--wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 560px;
}

.ak-usecases__note {
    color: var(--ak-body);
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 32px 0 0;
}

@media (max-width: 900px) {
    .ak-usecases--photo-left .ak-usecases__inner {
        grid-template-columns: 1fr;
    }

    /* One column only, so both children must come back to it. */
    .ak-usecases--photo-left .ak-usecases__copy,
    .ak-usecases--photo-left .ak-usecases__media {
        grid-column: 1;
        grid-row: auto;
    }
}

/* ================================================================= PRICING */

.ak-pricing {
    padding: 88px 0 var(--ak-section-y);
    background: #fff;
}

.ak-pricing__title {
    text-align: center;
    margin: 0 0 56px;
}

.ak-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.ak-plan {
    background: #fff;
    border: 1px solid var(--ak-line);
    border-radius: 22px;
    padding: 32px 28px 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.ak-plan--featured {
    border-color: var(--ak-red);
    box-shadow: 0 0 34px rgba(207, 13, 13, .22);
}

.ak-plan__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.ak-plan__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ak-ink);
    margin: 0;
}

.ak-plan__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--ak-red-soft);
    color: var(--ak-red);
    font-size: .8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Two lines reserved so the prices below share a baseline across the three cards. */
.ak-plan__sub {
    color: var(--ak-body);
    font-size: .92rem;
    line-height: 1.6;
    margin: 0 0 22px;
    min-height: 3.2em;
}

.ak-plan__price {
    color: var(--ak-red);
    font-size: clamp(1.6rem, 2.4vw, 1.95rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 8px;
}

/* Kept in the flow even when a plan has no discount, so the buttons align. */
.ak-plan__compare {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 24px;
    margin: 0 0 24px;
}

.ak-plan__compare s {
    color: var(--ak-muted);
    font-size: .9rem;
}

.ak-plan__save {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--ak-red-soft);
    color: var(--ak-red);
    font-size: .72rem;
    font-weight: 600;
    white-space: nowrap;
}

.ak-plan__cta {
    width: 100%;
    margin-bottom: 26px;
}

.ak-plan__cta--ghost {
    --btn-bg: #fff;
    --btn-fg: var(--ak-red);
    --btn-bd: var(--ak-red);
}

.ak-plan__cta--ghost:hover {
    --btn-bg: var(--ak-red);
    --btn-fg: #fff;
}

.ak-plan__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.ak-plan__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
    line-height: 1.4;
    color: var(--ak-ink);
}

.ak-plan__list i {
    flex: 0 0 auto;
    font-size: 1.15rem;
    line-height: 1;
}

.ak-plan__list .is-on i {
    color: #16a34a;
}

.ak-plan__list .is-off i {
    color: var(--ak-red);
}

.ak-plan__list .is-off span {
    color: var(--ak-body);
}

@media (max-width: 980px) {
    .ak-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-inline: auto;
    }

    .ak-plan__sub {
        min-height: 0;
    }
}

/* =================================================================== STEPS */

.ak-psteps {
    padding: 8px 0 40px;
    background: #fff;
}

.ak-psteps__title {
    text-align: center;
    margin: 0 0 48px;
}

.ak-psteps__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.ak-psteps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.ak-psteps__step {
    display: flex;
    gap: 16px;
    padding: 22px 26px;
    border-radius: 18px;
    background: #fdecec;
}

.ak-psteps__num {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--ak-red);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
}

.ak-psteps__step h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--ak-ink);
    margin: 0 0 6px;
}

.ak-psteps__step p {
    font-size: .95rem;
    line-height: 1.6;
    color: var(--ak-body);
    margin: 0;
}

.ak-psteps__media {
    display: flex;
    justify-content: center;
}

.ak-psteps__media img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
}

.ak-psteps__note {
    text-align: center;
    font-size: 1.15rem;
    color: var(--ak-ink);
    margin: 44px 0 0;
}

@media (max-width: 900px) {
    .ak-psteps__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ak-psteps__media {
        order: -1;
    }
}

/* ============================================================ CTA — SIMPLE */

.ak-cta-simple {
    padding: 8px 0 16px;
    background: #fff;
    text-align: center;
}

.ak-cta-simple__title {
    max-width: 24ch;
    margin: 0 auto 28px;
}

/* ================================================================= REASONS */

.ak-reasons {
    padding: 88px 0 8px;
    background: #fff;
}

.ak-reasons__title {
    text-align: center;
    margin: 0 0 64px;
}

.ak-reasons__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 95px;
}

/* Taken out of the flow: as a grid child the mascot would set the card's height
   and the cards in a row would stop matching. */
.ak-reasons__card {
    position: relative;
    min-height: 150px;
    padding: 26px 30px 26px 196px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: transform .35s var(--ak-ease), box-shadow .35s var(--ak-ease);
}

.ak-reasons__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .13);
}

/* A fixed slot the mascots are fitted into: their source files differ in aspect.
   `.ak .ak-reasons__art` (0,2,0) is needed to beat `.ak img` (0,1,1). */
.ak .ak-reasons__art {
    position: absolute;
    left: 12px;
    bottom: 4px;
    width: 170px;
    height: 180px;
    object-fit: contain;
    object-position: center bottom;
    transition: transform .35s var(--ak-ease);
}

.ak-reasons__card:hover .ak-reasons__art {
    transform: translateY(-5px);
}

.ak-reasons__copy h3 {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ak-ink);
    margin: 0 0 14px;
}

.ak-reasons__copy p {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--ak-body);
    margin: 0;
}

@media (max-width: 980px) {
    .ak-reasons__grid {
        grid-template-columns: 1fr;
        gap: 54px;
        max-width: 560px;
        margin-inline: auto;
    }
}

@media (max-width: 520px) {
    .ak-reasons__card {
        padding: 22px 18px 22px 142px;
    }

    .ak .ak-reasons__art {
        left: 6px;
        width: 128px;
        height: 140px;
    }
}

/* =========================================================== CTA — PHOTO */

/* Columns are placed explicitly rather than reordered: `order` moves an item
   visually but still assigns it the next grid cell, and the row must be pinned
   too — auto-placement only moves forward. */
.ak-cta--photo {
    --cta-band-h: 300px;
}

.ak-cta--photo .ak-cta__band {
    inset-inline: max(20px, calc((100% - 1200px) / 2));
    border-radius: var(--ak-radius-lg);
}

.ak-cta--photo-right .ak-cta__inner {
    grid-template-columns: 1.28fr .72fr;
    padding-inline: 56px 24px;
}

.ak-cta--photo-left .ak-cta__inner {
    grid-template-columns: .86fr 1.14fr;
    padding-inline: 24px 56px;
}

.ak-cta--photo-left {
    --cta-bleed: 100px;
}

.ak-cta--photo .ak-cta__copy {
    grid-row: 1;
    text-align: left;
}

.ak-cta--photo-right .ak-cta__copy {
    grid-column: 1;
}

.ak-cta--photo-left .ak-cta__copy {
    grid-column: 2;
}

.ak-cta--photo .ak-cta__copy p {
    margin-left: 0;
}

.ak-cta--photo .ak-cta__copy h2 {
    font-size: clamp(1.4rem, 2.35vw, 2.1rem);
    margin-bottom: 14px;
}

.ak-cta--photo .ak-cta__art {
    grid-row: 1;
    display: flex;
    align-items: flex-end;
    align-self: stretch;
}

.ak-cta--photo-right .ak-cta__art {
    grid-column: 2;
    justify-content: flex-end;
}

.ak-cta--photo-left .ak-cta__art {
    grid-column: 1;
    justify-content: flex-start;
}

.ak-cta--photo .ak-cta__photo {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(var(--cta-band-h) + var(--cta-bleed) * 0.7);
    height: auto;
    object-fit: contain;
}

.ak-cta--photo .ak-cta__copy .ak-btn + .ak-btn {
    margin-left: 12px;
}

.ak-cta--bleed {
    --cta-band-h: 340px;
    --cta-bleed: 40px;
}

.ak-cta--bleed .ak-cta__band {
    inset-inline: 0;
    border-radius: 0;
}

/* The row spans the full width and only the copy's gutter is rebuilt — a negative
   margin against 100vw would be off by the scrollbar. */
.ak-cta--flush .ak-cta__inner {
    width: 100%;
}

.ak-cta--flush.ak-cta--photo-left .ak-cta__inner {
    padding-inline: 0 calc(max(20px, (100% - 1200px) / 2) + 56px);
}

.ak-cta--flush.ak-cta--photo-right .ak-cta__inner {
    padding-inline: calc(max(20px, (100% - 1200px) / 2) + 56px) 0;
}

.ak-cta__copy p:last-child {
    margin-bottom: 0;
}

@media (max-width: 860px) {
    .ak-cta--photo {
        --cta-band-h: 300px;
    }

    .ak-cta--flush .ak-cta__inner {
        padding-inline: 26px;
    }

    .ak-cta--photo-left {
        --cta-bleed: 38px;
    }

    .ak-cta--photo .ak-cta__inner {
        grid-template-columns: 1fr;
        padding-inline: 26px;
    }

    /* One column only, so the copy must come back to it: a leftover
       `grid-column: 2` would create an implicit second column. */
    .ak-cta--photo .ak-cta__copy {
        grid-column: 1;
    }

    .ak-cta--photo .ak-cta__art {
        display: none;
    }
}
