:root {
    --ah-navy: #071832;
    --ah-navy-2: #061f36;
    --ah-teal: #009C9A;
    --ah-teal-dark: #006D73;
    --ah-teal-soft: #E6F7F6;
    --ah-bg: #f7f8f5;
    --ah-card: #ffffff;
    --ah-muted: #5d728b;
    --ah-border: #e6ecef;
    --ah-shadow: 0 18px 44px rgba(7,24,50,.075);
    --ah-container: 1260px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.asystr-public-body {
    margin: 0;
    background: #fbfcfb;
    color: var(--ah-navy);
    font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input {
    font: inherit;
}

.ah-page {
    overflow-x: hidden;
    overflow-y: visible;
    background: radial-gradient(circle at 78% 12%, rgba(0,156,154,.10), transparent 28%), linear-gradient(180deg, #fbfcfb 0%, #f7f8f5 100%);
}

/* NAV */
.ah-nav {
    height: 76px;
    max-width: var(--ah-container);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.ah-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -.045em;
    font-size: 28px;
}

.ah-brand-mark {
    font-size: 30px;
    color: #12c8c2;
    line-height: 1;
}

.ah-nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    font-size: 14px;
    font-weight: 700;
    color: #17314e;
}

    .ah-nav-links a:hover {
        color: var(--ah-teal);
    }

.ah-nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ah-login {
    font-size: 14px;
    font-weight: 800;
    color: #132947;
}

/* BUTTONS */
.ah-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    font-weight: 800;
    transition: .18s ease;
}

.ah-btn-primary {
    background: var(--ah-teal);
    color: #fff;
    box-shadow: 0 14px 28px rgba(0,156,154,.18);
}

    .ah-btn-primary:hover {
        background: var(--ah-teal-dark);
        transform: translateY(-1px);
    }

.ah-btn-secondary {
    background: #fff;
    border: 1px solid var(--ah-border);
    color: #17314e;
    box-shadow: 0 12px 30px rgba(7,24,50,.055);
}

.ah-btn-light {
    background: #fff;
    color: var(--ah-teal-dark);
}

.ah-btn-small {
    height: 44px;
    padding: 0 23px;
}

.ah-btn-large {
    height: 58px;
    padding: 0 31px;
}

/* HERO */
.ah-hero {
    max-width: var(--ah-container);
    margin: 18px auto 0;
    padding: 0 30px 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 560px;
    gap: 64px;
    align-items: center;
}

.ah-hero-copy {
    padding-top: 64px;
}

.ah-pill,
.ah-eyebrow {
    display: inline-flex;
    align-items: center;
    color: #008f8d;
    background: #fff;
    border: 1px solid #dcefed;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(7,24,50,.04);
}

.ah-eyebrow {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    font-size: 13px;
}

.ah-hero h1 {
    margin: 28px 0 22px;
    font-size: 66px;
    line-height: 1.01;
    letter-spacing: -.055em;
    font-weight: 800;
}

    .ah-hero h1 span {
        color: var(--ah-teal);
    }

.ah-lead {
    max-width: 555px;
    margin: 0;
    color: #183957;
    font-size: 18px;
    line-height: 1.68;
    font-weight: 600;
}

.ah-proof-row {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    margin: 30px 0 34px;
}

    .ah-proof-row div {
        display: grid;
        grid-template-columns: 36px auto;
        column-gap: 12px;
        align-items: center;
    }

    .ah-proof-row span {
        grid-row: 1 / 3;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--ah-teal-soft);
        color: var(--ah-teal);
        font-weight: 800;
    }

    .ah-proof-row strong {
        font-size: 13px;
        font-weight: 800;
    }

    .ah-proof-row small {
        font-size: 12px;
        color: #60758d;
        font-weight: 700;
    }

.ah-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ah-btn-demo .play {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #b9d6d4;
    display: grid;
    place-items: center;
    color: var(--ah-teal);
    font-size: 10px;
}

.ah-trust-notes {
    display: flex;
    gap: 28px;
    margin-top: 18px;
    color: #6b7d91;
    font-size: 13px;
    font-weight: 700;
}

    .ah-trust-notes span::first-letter {
        color: var(--ah-teal);
    }

/* HERO VISUAL */
.ah-hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    align-self: start;
    overflow: visible;
}

.ah-orbit {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,156,154,.13), rgba(0,156,154,.055) 52%, transparent 53%);
    border: 1px dashed rgba(0,156,154,.22);
    z-index: 1;
}

.ah-phone {
    position: relative;
    width: 268px;
    height: 535px;
    border: 8px solid #0b0f16;
    border-radius: 42px;
    background: #0b0f16;
    box-shadow: 0 28px 60px rgba(7,24,50,.22);
    z-index: 4;
}

.ah-phone-speaker {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 25px;
    background: #0b0f16;
    border-radius: 0 0 18px 18px;
    z-index: 6;
}

.ah-phone-screen {
    position: absolute;
    inset: 7px;
    background: #fbfcfb;
    border-radius: 33px;
    padding: 32px 14px 14px;
    overflow: hidden;
}

.ah-phone-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

    .ah-phone-top strong {
        font-size: 13px;
        color: #071832;
    }

.ah-phone h3 {
    font-size: 18px;
    line-height: 1.2;
    margin: 20px 0 5px;
    letter-spacing: -.03em;
}

.ah-phone p {
    margin: 0 0 12px;
    color: #5d728b;
    font-size: 11px;
    font-weight: 600;
}

.ah-phone-card {
    border: 1px solid #e6ecef;
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(7,24,50,.055);
}

.ah-phone-card-head {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}

.ah-phone-card strong {
    font-size: 12px;
}

.ah-phone-card em {
    font-style: normal;
    background: #e6f7f6;
    color: #008786;
    border-radius: 999px;
    padding: 5px 7px;
    font-size: 9px;
    font-weight: 800;
}

.ah-phone-progress {
    height: 5px;
    border-radius: 999px;
    background: #e1e7ea;
    margin: 10px 0;
}

    .ah-phone-progress span {
        display: block;
        height: 100%;
        border-radius: 999px;
        background: var(--ah-teal);
    }

.ah-phone-card small {
    display: block;
    color: #5d728b;
    font-size: 9px;
    line-height: 1.45;
}

.ah-phone-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    margin: 11px 0;
}

    .ah-phone-icons span {
        width: 31px;
        height: 31px;
        border-radius: 50%;
        background: #e6f7f6;
        color: #008f8d;
        display: grid;
        place-items: center;
        font-size: 15px;
    }

.ah-phone-card button {
    width: 100%;
    height: 32px;
    border: 0;
    border-radius: 8px;
    background: var(--ah-teal);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.ah-phone-section {
    display: flex;
    justify-content: space-between;
    margin: 14px 0 8px;
}

    .ah-phone-section strong {
        font-size: 12px;
    }

    .ah-phone-section small {
        font-size: 10px;
        color: var(--ah-teal);
        font-weight: 800;
    }

.ah-phone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

    .ah-phone-grid div {
        background: #fff;
        border: 1px solid #e6ecef;
        border-radius: 12px;
        padding: 9px 4px;
        text-align: center;
    }

    .ah-phone-grid span {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--ah-teal);
        color: #fff;
        display: grid;
        place-items: center;
        margin: 0 auto 6px;
    }

    .ah-phone-grid b {
        display: block;
        font-size: 8px;
    }

    .ah-phone-grid small {
        font-size: 7px;
        color: #5d728b;
        font-weight: 700;
    }

.ah-phone-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 44px;
    background: #fff;
    border-top: 1px solid #e6ecef;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    place-items: center;
    color: #50647c;
}

    .ah-phone-nav b {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        border-radius: 50%;
        background: var(--ah-teal);
        border: 4px solid #fff;
        color: #fff;
        display: grid;
        place-items: center;
        font-size: 20px;
    }

/* ORBIT CARDS — fixed to match the supplied landing mock */
.ah-orbit-card {
    position: absolute;
    width: 142px;
    min-height: 104px;
    background: #fff;
    border: 1px solid var(--ah-border);
    border-radius: 18px;
    box-shadow: var(--ah-shadow);
    padding: 18px;
    z-index: 5;
}

    .ah-orbit-card span {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #e6f7f6;
        color: var(--ah-teal);
        display: grid;
        place-items: center;
        margin-bottom: 10px;
        font-size: 20px;
    }

    .ah-orbit-card strong {
        display: block;
        font-size: 14px;
        font-weight: 800;
    }

    .ah-orbit-card small {
        color: #66798e;
        font-size: 12px;
        font-weight: 700;
    }

/* These are deliberately outside the phone edge, not on top of the UI */
.ah-orbit-health {
    left: -10px;
    top: 118px;
}

.ah-orbit-goals {
    left: -18px;
    top: 330px;
}

.ah-orbit-calendar {
    right: -15px;
    top: 80px;
}

.ah-orbit-productivity {
    right: -27px;
    top: 252px;
}

.ah-orbit-mind {
    right: -10px;
    bottom: 0;
}

/* LOGOS */
.ah-logos {
    max-width: var(--ah-container);
    margin: 0 auto;
    padding: 6px 30px 52px;
    text-align: center;
}

    .ah-logos p {
        margin: 0 0 24px;
        color: #7a8a9a;
        font-weight: 700;
        font-size: 13px;
    }

    .ah-logos div {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 28px;
        flex-wrap: wrap;
        color: #566273;
        font-size: 22px;
        font-weight: 700;
        opacity: .9;
        max-width: 1040px;
        margin: 0 auto;
    }

/* FEATURES */
.ah-features {
    max-width: var(--ah-container);
    margin: 0 auto;
    padding: 70px 30px;
    display: grid;
    grid-template-columns: .68fr 1.32fr .72fr;
    gap: 50px;
    align-items: center;
}

.ah-feature-intro h2,
.ah-testimonials h2,
.ah-pricing h2,
.ah-final-cta h2 {
    margin: 14px 0 18px;
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: -.04em;
    font-weight: 800;
}

.ah-feature-intro p {
    color: #5d728b;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
}

.ah-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px 38px;
}

    .ah-feature-grid article span {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #dcefed;
        color: var(--ah-teal);
        display: grid;
        place-items: center;
        margin-bottom: 13px;
        font-weight: 800;
    }

    .ah-feature-grid h3 {
        margin: 0 0 8px;
        font-size: 14px;
        font-weight: 800;
    }

    .ah-feature-grid p {
        margin: 0;
        color: #5d728b;
        font-size: 12px;
        line-height: 1.6;
        font-weight: 600;
    }

.ah-photo-card {
    position: relative;
    min-height: 340px;
}

.ah-person {
    width: 250px;
    height: 330px;
    border-radius: 28px;
    background: linear-gradient(145deg, #0e6b70, #0f2d3b 58%, #f4b04b 59%);
    box-shadow: var(--ah-shadow);
    margin: auto;
}

.ah-progress-pop {
    position: absolute;
    right: 0;
    bottom: 45px;
    width: 175px;
    background: #fff;
    border: 1px solid var(--ah-border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--ah-shadow);
}

    .ah-progress-pop strong,
    .ah-progress-pop small {
        display: block;
    }

    .ah-progress-pop small {
        color: #5d728b;
        margin-top: 4px;
        font-size: 11px;
        font-weight: 700;
    }

    .ah-progress-pop span {
        display: grid;
        place-items: center;
        width: 54px;
        height: 54px;
        border: 5px solid #e6f7f6;
        border-top-color: var(--ah-teal);
        border-radius: 50%;
        font-weight: 800;
        color: var(--ah-teal);
        margin: 15px 0;
    }

    .ah-progress-pop em {
        display: block;
        height: 28px;
        background: linear-gradient(135deg, transparent 20%, rgba(0,156,154,.18));
        border-radius: 8px;
    }

    .ah-progress-pop p {
        margin: 10px 0 0;
        font-size: 11px;
        color: #5d728b;
        font-weight: 700;
    }

/* TESTIMONIALS */
.ah-testimonials {
    max-width: 1120px;
    margin: 0 auto;
    padding: 50px 30px;
    text-align: center;
}

.ah-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 30px;
    text-align: left;
}

    .ah-testimonial-grid article {
        background: #fff;
        border: 1px solid var(--ah-border);
        border-radius: 17px;
        padding: 28px;
        box-shadow: 0 12px 32px rgba(7,24,50,.045);
    }

        .ah-testimonial-grid article > span {
            display: block;
            color: var(--ah-teal);
            font-size: 36px;
            font-weight: 800;
            height: 24px;
        }

    .ah-testimonial-grid p {
        font-size: 16px;
        line-height: 1.65;
        color: #183957;
        font-weight: 600;
    }

    .ah-testimonial-grid b,
    .ah-testimonial-grid small {
        display: block;
    }

    .ah-testimonial-grid b {
        font-size: 13px;
    }

    .ah-testimonial-grid small {
        color: #5d728b;
        font-size: 12px;
        margin-top: 2px;
    }

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

    .ah-dots b {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #d7e1e5;
    }

        .ah-dots b:first-child {
            background: var(--ah-teal);
        }

/* PRICING */
.ah-pricing {
    max-width: var(--ah-container);
    margin: 0 auto;
    padding: 40px 30px 66px;
    text-align: center;
}

.ah-pricing-head {
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
}

    .ah-pricing-head h2 {
        margin: 10px 0 0;
    }

.ah-billing-toggle {
    position: absolute;
    right: 0;
    bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid var(--ah-border);
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 10px 28px rgba(7,24,50,.045);
    font-size: 12px;
    font-weight: 800;
    color: #5d728b;
}

    .ah-billing-toggle span:first-child {
        background: #e6f7f6;
        color: #007f86;
        border-radius: 999px;
        padding: 8px 12px;
    }

    .ah-billing-toggle span:nth-child(2) {
        padding: 8px 12px;
    }

    .ah-billing-toggle b {
        background: var(--ah-teal);
        color: white;
        border-radius: 999px;
        padding: 8px 12px;
    }

.ah-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    text-align: left;
}

.ah-price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--ah-border);
    border-radius: 18px;
    padding: 26px 22px;
    min-height: 342px;
    box-shadow: 0 12px 34px rgba(7,24,50,.045);
    overflow: hidden;
}

    .ah-price-card.is-popular {
        border-color: #c7e8e6;
        box-shadow: 0 18px 44px rgba(0,156,154,.11);
        padding-top: 50px;
    }

.ah-popular {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 34px;
    background: var(--ah-teal);
    color: #fff;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    line-height: 34px;
}

.ah-price-card h3 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -.03em;
}

.ah-price-card p {
    margin: 6px 0 20px;
    color: #5d728b;
    font-size: 13px;
    font-weight: 700;
}

.ah-price {
    font-size: 37px;
    font-weight: 800;
    letter-spacing: -.04em;
}

    .ah-price small {
        font-size: 13px;
        color: #5d728b;
        font-weight: 700;
        letter-spacing: 0;
    }

.ah-price-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 13px;
}

.ah-price-card li {
    position: relative;
    padding-left: 21px;
    color: #223f5c;
    font-size: 13px;
    font-weight: 700;
}

    .ah-price-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--ah-teal);
        font-weight: 800;
    }

.ah-price-card a {
    height: 46px;
    border-radius: 10px;
    border: 1px solid var(--ah-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ah-teal);
    font-size: 13px;
    font-weight: 800;
}

.ah-price-card:not(:first-child) a,
.ah-price-card.is-popular a {
    background: var(--ah-teal);
    border-color: var(--ah-teal);
    color: #fff;
}

.ah-guarantees {
    max-width: 960px;
    margin: 30px auto 0;
    background: #fff;
    border: 1px solid var(--ah-border);
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(7,24,50,.045);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 14px;
}

    .ah-guarantees div {
        display: grid;
        grid-template-columns: 40px auto;
        column-gap: 10px;
        align-items: center;
        text-align: left;
    }

    .ah-guarantees span {
        grid-row: 1 / 3;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #e6f7f6;
        color: var(--ah-teal);
        display: grid;
        place-items: center;
    }

    .ah-guarantees strong {
        font-size: 12px;
    }

    .ah-guarantees small {
        font-size: 11px;
        color: #5d728b;
        font-weight: 700;
    }

/* FINAL CTA + FOOTER */
.ah-final-cta {
    max-width: var(--ah-container);
    margin: 34px auto 44px;
    padding: 46px 60px;
    border-radius: 24px;
    background: linear-gradient(135deg, #079f9d, #00777b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

    .ah-final-cta > div {
        display: grid;
        grid-template-columns: 82px auto;
        column-gap: 24px;
        align-items: center;
    }

    .ah-final-cta span {
        grid-row: 1 / 4;
        font-size: 70px;
        color: #bff3ef;
    }

    .ah-final-cta h2 {
        margin: 0;
        font-size: 36px;
    }

    .ah-final-cta p {
        margin: 8px 0 0;
        color: #e8fffd;
        font-weight: 600;
    }

.ah-footer {
    margin-top: 0;
    background: #061f36;
    color: #d9eaf5;
    padding: 58px max(52px, calc((100vw - var(--ah-container)) / 2 + 30px)) 34px;
    display: grid;
    grid-template-columns: 1.3fr .7fr .7fr .7fr 1.4fr;
    gap: 42px;
}

    .ah-footer .ah-brand {
        color: #fff;
        font-size: 27px;
    }

    .ah-footer p {
        color: #a9becc;
        font-size: 13px;
        line-height: 1.7;
        font-weight: 600;
    }

    .ah-footer nav {
        display: grid;
        gap: 10px;
        align-content: start;
    }

    .ah-footer strong {
        color: #fff;
        font-size: 13px;
    }

    .ah-footer a {
        color: #a9becc;
        font-size: 13px;
        font-weight: 600;
    }

.ah-newsletter form {
    display: flex;
    gap: 10px;
    margin-top: 17px;
}

.ah-newsletter input {
    height: 45px;
    min-width: 0;
    flex: 1;
    border: 0;
    border-radius: 9px;
    padding: 0 14px;
}

.ah-newsletter button {
    border: 0;
    border-radius: 9px;
    background: var(--ah-teal);
    color: #fff;
    font-weight: 800;
    padding: 0 18px;
}

.ah-copyright {
    grid-column: 1 / -1;
    text-align: center;
    color: #8fa9ba;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
    :root {
        --ah-container: 1160px;
    }

    .ah-hero {
        grid-template-columns: minmax(0, 1fr) 520px;
        gap: 42px;
    }

        .ah-hero h1 {
            font-size: 58px;
        }

    .ah-lead {
        font-size: 17px;
    }

    .ah-phone {
        width: 250px;
        height: 500px;
    }

    .ah-orbit {
        width: 404px;
        height: 404px;
    }

    .ah-orbit-card {
        width: 132px;
        min-height: 94px;
        padding: 16px;
    }

    .ah-orbit-health {
        left: 8px;
        top: 102px;
    }

    .ah-orbit-goals {
        left: -18px;
        top: 300px;
    }

    .ah-orbit-calendar {
        right: 8px;
        top: 122px;
    }

    .ah-orbit-productivity {
        right: -8px;
        top: 260px;
    }

    .ah-orbit-mind {
        right: 46px;
        bottom: 86px;
    }
}

@media (max-width: 1050px) {
    .ah-nav {
        padding: 0 24px;
    }

    .ah-nav-links {
        display: none;
    }

    .ah-hero {
        grid-template-columns: 1fr;
        max-width: 760px;
        padding: 0 24px 44px;
        gap: 26px;
    }

    .ah-hero-copy {
        padding-top: 28px;
    }

    .ah-hero-visual {
        min-height: 520px;
    }

    .ah-features {
        grid-template-columns: 1fr;
    }

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

    .ah-photo-card {
        display: none;
    }

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

    .ah-pricing-head {
        display: block;
    }

    .ah-billing-toggle {
        position: static;
        width: max-content;
        margin: 16px auto 0;
    }

    .ah-final-cta {
        margin-left: 24px;
        margin-right: 24px;
    }

    .ah-footer {
        grid-template-columns: 1fr 1fr;
    }

    .ah-newsletter,
    .ah-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .ah-page {
        background: #fbfcfb;
    }

    .ah-nav {
        height: 68px;
        padding: 0 18px;
    }

    .ah-brand {
        font-size: 24px;
    }

    .ah-nav-actions .ah-login,
    .ah-nav-actions .ah-btn-small {
        display: none;
    }

    .ah-hero {
        padding: 8px 20px 38px;
        margin-top: 0;
        gap: 14px;
    }

    .ah-hero-copy {
        padding-top: 12px;
    }

    .ah-pill {
        font-size: 11px;
    }

    .ah-hero h1 {
        font-size: 44px;
        line-height: 1.02;
        margin: 22px 0 16px;
    }

    .ah-lead {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .ah-proof-row {
        gap: 16px;
        margin: 26px 0 30px;
    }

        .ah-proof-row div {
            grid-template-columns: 32px auto;
        }

        .ah-proof-row span {
            width: 32px;
            height: 32px;
        }

    .ah-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ah-btn-large {
        height: 54px;
    }

    .ah-trust-notes {
        display: grid;
        gap: 8px;
    }

    .ah-hero-visual {
        min-height: 470px;
        transform: scale(.82);
        transform-origin: top center;
        margin-bottom: -90px;
    }

    .ah-orbit-card {
        display: none;
    }

    .ah-logos {
        padding: 8px 20px 40px;
    }

        .ah-logos div {
            font-size: 20px;
            gap: 22px;
        }

    .ah-features {
        padding: 50px 20px;
    }

    .ah-feature-intro h2,
    .ah-testimonials h2,
    .ah-pricing h2 {
        font-size: 32px;
    }

    .ah-feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .ah-testimonials {
        padding: 42px 20px;
    }

    .ah-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .ah-pricing {
        padding: 42px 20px 54px;
    }

    .ah-price-grid {
        grid-template-columns: 1fr;
    }

    .ah-guarantees {
        grid-template-columns: 1fr;
    }

    .ah-final-cta {
        margin: 26px 20px 34px;
        padding: 30px 24px;
        border-radius: 20px;
        display: grid;
        text-align: left;
    }

        .ah-final-cta > div {
            grid-template-columns: 1fr;
        }

        .ah-final-cta span {
            font-size: 48px;
        }

    .ah-footer {
        grid-template-columns: 1fr;
        padding: 42px 24px 30px;
    }

    .ah-newsletter form {
        display: grid;
    }

    .ah-copyright {
        text-align: left;
    }
}
