@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --landing-bg: #fffef3;
    --landing-surface: #ffffff;
    --landing-tint: #eef58e;
    --landing-tint-soft: #f6f9da;
    --landing-border: #e6e1b8;
    --landing-border-soft: #ece7c8;
    --landing-text: #2e2f2c;
    --landing-muted: #7c7c78;
    --landing-brand: #357f41;
    --landing-brand-dark: #2b6d35;
    --landing-shadow: 0 10px 30px rgba(122, 134, 57, 0.08);
    --landing-width: 1392px;
    --landing-width-narrow: 1188px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Inter", sans-serif;
    color: var(--landing-text);
    background:
        radial-gradient(circle at top center, rgba(233, 241, 130, 0.18), transparent 28%),
        linear-gradient(180deg, #fffef5 0%, #fffef5 100%);
}

img {
    display: block;
    max-width: 100%;
}

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

button,
summary {
    font: inherit;
}

.landing {
    padding: 0 0 48px;
}

.landing__container {
    width: min(calc(100% - 64px), var(--landing-width));
    margin: 0 auto;
}

.landing__container--narrow {
    width: min(calc(100% - 64px), var(--landing-width-narrow));
}

.landing__header {
    padding-top: 30px;
    margin-bottom: 58px;
}

.landing-nav {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 54px;
    padding: 10px 16px 10px 22px;
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.52);
}

.landing-nav__menu {
    display: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: #262823;
    cursor: pointer;
}

.landing-nav__menu i {
    font-size: 28px;
    line-height: 1;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
}

.landing-brand__image {
    display: block;
    width: auto;
    height: 48px;
}

.landing-nav__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
}

.landing-nav__links a {
    font-size: 15px;
    font-weight: 400;
    color: #191a17;
}

.landing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}

.landing-button--primary {
    background: var(--landing-brand);
    border-color: var(--landing-brand);
    color: #fff;
}

.landing-button--secondary {
    background: transparent;
    border-color: var(--landing-brand);
    color: var(--landing-brand);
}

.landing-nav__cta {
    min-height: 46px;
    padding: 0 25px;
    font-size: 14px;
}

.landing-hero {
    padding-bottom: 0;
}

.landing-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.96fr);
    gap: 72px;
    align-items: center;
}

.landing-hero__copy {
    padding: 30px 0 0 46px;
}

.landing-hero__copy h1 {
    margin: 0;
    max-width: 550px;
    color: var(--landing-brand);
    font-size: clamp(3.7rem, 5.25vw, 5.45rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    font-weight: 700;
}

.landing-hero__copy p {
    max-width: 505px;
    margin: 32px 0 0;
    color: var(--landing-muted);
    font-size: 18px;
    line-height: 1.52;
}

.landing-hero__subnote {
    margin-top: 14px;
    color: #6d8b48;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 116px;
}

.landing-hero__note {
    margin-top: 14px;
    color: #91918e;
    font-size: 13px;
}

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

.landing-hero__frame {
    position: relative;
    width: 100%;
    max-width: 735px;
    aspect-ratio: 1.28 / 1;
    border-radius: 14px;
    background: #e8f689;
}

.landing-hero__main-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 61%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.landing-hero__phone-image {
    position: absolute;
    left: -3%;
    bottom: -5%;
    width: 46%;
    max-width: 300px;
    z-index: 2;
    filter: drop-shadow(0 14px 10px rgba(46, 52, 34, 0.2));
}

.landing-assurance {
    padding: 22px 0 86px;
    margin-top: 30px;
}

.landing-assurance .landing__container {
    width: 100%;
    max-width: none;
}

.landing-assurance__grid {
    display: block;
    border-top: 1px solid #e7ea90;
    border-bottom: 1px solid #e7ea90;
    background: rgba(239, 244, 155, 0.5);
    overflow: hidden;
}

.landing-assurance__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 12px 18px;
}

.landing-assurance__track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #747850;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.landing-assurance__clone {
    display: none !important;
}

.landing-assurance__track span i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #64853d;
    color: #fff;
    font-size: 11px;
}

.landing-section {
    padding: 86px 0;
}

.landing-section--steps {
    padding-top: 92px;
}

.landing-section--proof {
    padding-top: 48px;
    padding-bottom: 52px;
}

.landing-section--faq {
    padding-top: 46px;
}

.landing-section__heading {
    margin: 0 auto 52px;
    text-align: center;
}

.landing-section__heading--narrow {
    max-width: 760px;
}

.landing-section__heading h2 {
    margin: 0;
    color: #2f312d;
    font-size: clamp(2.65rem, 4vw, 3.3rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 500;
}

.landing-section__heading h2 span {
    color: var(--landing-brand);
}

.landing-section__heading p {
    margin: 22px 0 0;
    color: var(--landing-muted);
    font-size: 17px;
    line-height: 1.48;
}

.landing-card-grid {
    display: grid;
    gap: 16px;
}

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

.landing-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card,
.feature-panel,
.pricing-card {
    box-shadow: var(--landing-shadow);
}

.step-card {
    padding: 14px 14px 18px;
    border: 1px solid #ebe6be;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(245, 249, 219, 0.98), rgba(248, 249, 229, 0.9)),
        linear-gradient(90deg, rgba(205, 216, 169, 0.2) 1px, transparent 1px),
        linear-gradient(rgba(205, 216, 169, 0.16) 1px, transparent 1px);
    background-size: auto, 18px 18px, 18px 18px;
}

.step-card__mockup {
    min-height: 142px;
    margin-bottom: 18px;
    border: 1px solid #ece6c8;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.52);
}

.step-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-card h3,
.feature-panel h3,
.trust-grid__item h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.32;
    font-weight: 600;
}

.step-card p,
.feature-panel p,
.trust-grid__item p,
.faq-item p,
.testimonial-card p {
    margin: 0;
    color: var(--landing-muted);
    font-size: 15px;
    line-height: 1.5;
}

.mock-whatsapp__chips span,
.mock-vault__tabs span,
.mock-vault__button,
.mock-vault__document button,
.mock-summary__top,
.mock-alert__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    border: 1px solid #ddd8c3;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.84);
    color: #2f302d;
    font-size: 11px;
}

.feature-panel {
    padding: 14px 14px 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(249, 250, 233, 0.98), rgba(248, 249, 235, 0.98));
}

.feature-panel__mockup {
    min-height: 132px;
    margin-bottom: 12px;
}

.feature-panel__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--landing-border-soft);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.trust-grid__item {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding: 34px 42px;
}

.trust-grid__item:nth-child(1),
.trust-grid__item:nth-child(2) {
    border-bottom: 1px solid var(--landing-border-soft);
}

.trust-grid__item:nth-child(odd) {
    border-right: 1px solid var(--landing-border-soft);
}

.trust-grid__icon {
    width: 58px;
    height: 58px;
    margin-top: 2px;
    object-fit: contain;
}

.landing-privacy-link,
.testimonial-grid__note {
    margin: 46px 0 0;
    color: #8a8b85;
    text-align: center;
    font-size: 13px;
}

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

.testimonial-carousel {
    position: relative;
}

.testimonial-carousel__viewport {
    overflow: visible;
}

.testimonial-carousel__arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 1px solid #d9ddb2;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #3d6f43;
    box-shadow: 0 8px 18px rgba(62, 72, 29, 0.12);
    cursor: pointer;
}

.testimonial-carousel__arrow i {
    font-size: 24px;
    line-height: 1;
}

.testimonial-carousel__arrow--left {
    left: -8px;
}

.testimonial-carousel__arrow--right {
    right: -8px;
}

.testimonial-card {
    min-height: 392px;
    padding: 24px 24px 20px;
    border-radius: 12px;
    background: linear-gradient(180deg, #eef499 0%, #f5f8ca 100%);
}

.testimonial-card__quote {
    display: block;
    width: 58px;
    height: auto;
    margin-bottom: 18px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.54;
}

.testimonial-card footer {
    margin-top: 40px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    color: var(--landing-brand);
    font-size: 16px;
    font-weight: 500;
}

.testimonial-card span {
    margin-top: 4px;
    color: #9d9d96;
    font-size: 14px;
}

.pricing-card {
    width: min(100%, 334px);
    margin: 0 auto;
    padding: 20px 20px 18px;
    border: 1px solid #ddd9cc;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
}

.pricing-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pricing-card__name {
    font-size: 14px;
    font-weight: 700;
}

.pricing-card__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8b8c86;
    font-size: 12px;
    cursor: pointer;
}

.pricing-card__toggle-label {
    color: #8b8c86;
    transition: color 0.2s ease;
}

.pricing-card__toggle-label.is-active {
    color: #30312e;
}

.pricing-card__switch {
    position: relative;
    width: 30px;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, #33bf56, #25a94b);
}

.pricing-card__switch::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
}

.pricing-card__toggle.is-monthly .pricing-card__switch::after {
    transform: translateX(-10px);
}

.pricing-card__price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin-top: 16px;
}

.pricing-card__price strong {
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.pricing-card__price span {
    color: #969791;
    font-size: 13px;
}

.pricing-card__badge {
    width: fit-content;
    margin: 10px auto 12px;
    padding: 4px 10px;
    border: 1px solid #2eae4e;
    border-radius: 999px;
    background: #f0fff0;
    color: #1aa03f;
    font-size: 11px;
    text-align: center;
}

.pricing-card__caption {
    margin: 0 0 14px;
    color: #999a93;
    text-align: center;
    font-size: 10px;
    line-height: 1.5;
}

.pricing-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #ece8dd;
    color: #7f8079;
    font-size: 12px;
    line-height: 1.35;
}

.pricing-card__list li i {
    flex: 0 0 auto;
    color: var(--landing-brand);
    font-size: 22px;
    line-height: 1;
}

.pricing-card__list li span {
    display: block;
}

.pricing-card__cta {
    width: 100%;
    min-height: 36px;
    margin-top: 16px;
    font-size: 12px;
}

.pricing-card__footnote {
    margin-top: 12px;
    color: #999a93;
    text-align: center;
    font-size: 11px;
}

.proof-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.proof-strip__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-strip__item span,
.proof-strip__item strong {
    line-height: 1.02;
}

.proof-strip__item span {
    font-size: 23px;
}

.proof-strip__item strong {
    width: fit-content;
    padding: 0 2px;
    background: #eef58e;
    color: var(--landing-brand);
    font-size: 23px;
    font-weight: 600;
}

.proof-strip__divider {
    width: 1px;
    height: 74px;
    background: #dae274;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    padding: 0 0 22px;
    border-bottom: 1px solid #ebe7c7;
}

.faq-item + .faq-item {
    margin-top: 24px;
}

.faq-item summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    list-style: none;
    cursor: pointer;
    color: #4a4b47;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
}

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

.faq-item__icon {
    flex: 0 0 auto;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #edf193;
    color: #7f832a;
}

.faq-item__icon i {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: opacity 0.18s ease;
}

.faq-item__icon-minus {
    opacity: 0;
}

.faq-item[open] .faq-item__icon-plus {
    opacity: 0;
}

.faq-item[open] .faq-item__icon-minus {
    opacity: 1;
}

.faq-item p {
    margin-top: 12px;
    line-height: 1.72;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    border-radius: 18px;
    overflow: hidden;
}

.cta-panel__copy {
    padding: 24px 26px 22px;
    background: linear-gradient(135deg, #eff68c 0%, #eef4a8 100%);
}

.cta-panel__copy h2 {
    margin: 0;
    color: var(--landing-brand);
    font-size: clamp(3rem, 4vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 500;
}

.cta-panel__copy h2 span {
    font-weight: 700;
}

.cta-panel__copy p {
    max-width: 364px;
    margin: 16px 0 0;
    color: #738243;
    font-size: 17px;
    line-height: 1.42;
}

.cta-panel__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}

.cta-panel__actions span {
    color: var(--landing-brand);
    font-size: 14px;
}

.cta-panel__media {
    background: #dde3b3;
}

.cta-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-footer {
    padding: 34px 0 8px;
}

.landing-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.landing-footer__brand {
    max-width: 300px;
}

.landing-footer__brand p {
    margin: 14px 0 0;
    color: var(--landing-muted);
    font-size: 12px;
    line-height: 1.7;
}

.landing-footer__social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
}

.landing-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8e8f88;
    font-size: 22px;
    line-height: 1;
    transition: color 0.2s ease;
}

.landing-footer__social a:hover {
    color: var(--landing-brand);
}

.landing-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(110px, auto));
    gap: 72px;
}

.landing-footer__links h3 {
    margin: 0 0 14px;
    color: var(--landing-brand-dark);
    font-size: 12px;
    font-weight: 600;
}

.landing-footer__links a {
    display: block;
    color: #8e8f88;
    font-size: 12px;
    line-height: 1.85;
}

.landing-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--landing-border-soft);
}

.landing-footer__bottom p {
    margin: 0;
    color: #4a734f;
    font-size: 12px;
}

@media (max-width: 1200px) {
    .landing-hero__grid,
    .cta-panel,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-hero__copy {
        padding-left: 0;
    }

    .landing-hero__frame {
        max-width: 620px;
    }

    .landing-card-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-panel:last-child,
    .testimonial-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 1100px) {
    .landing-card-grid--four {
        grid-template-columns: 1fr;
    }

    .feature-panel:last-child {
        grid-column: auto;
    }
}

@media (max-width: 820px) {
    .landing {
        padding-bottom: 32px;
    }

    .landing__container,
    .landing__container--narrow {
        width: min(calc(100% - 20px), 390px);
    }

    .landing__header {
        padding-top: 0;
        margin-bottom: 18px;
    }

    .landing-nav {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 12px;
        min-height: 56px;
        padding: 12px 18px 12px 10px;
        border-top: 0;
        border-bottom: 1px solid var(--landing-border);
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        background: transparent;
    }

    .landing-brand__image {
        height: 48px;
    }

    .landing-nav__menu {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        justify-self: end;
    }

    .landing-nav__links,
    .landing-nav__cta {
        display: none;
    }

    .landing-nav__links {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 1px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 10px 12px;
        border: 1px solid var(--landing-border);
        border-bottom: 1px solid var(--landing-border);
        border-top: 0;
        border-radius: 0 0 16px 16px;
        background: #fffef5;
        box-shadow: 0 14px 26px rgba(62, 72, 29, 0.12);
        z-index: 5;
    }

    .landing-nav__links a {
        padding: 12px 8px;
        font-size: 15px;
    }

    .landing-nav__links.is-open {
        display: flex;
    }

    .landing-hero__grid,
    .landing-card-grid--three,
    .landing-card-grid--four,
    .trust-grid,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .landing-hero__grid {
        gap: 24px;
    }

    .landing-hero__copy {
        padding-left: 0;
        padding-top: 0;
        order: 2;
    }

    .landing-hero__copy h1 {
        max-width: none;
        font-size: 3.5rem;
        line-height: 0.96;
        letter-spacing: -0.07em;
    }

    .landing-hero__copy p {
        font-size: 18px;
        max-width: none;
        margin-top: 22px;
        line-height: 1.52;
    }

    .landing-hero__subnote {
        margin-top: 12px;
        font-size: 13px;
    }

    .landing-hero__media {
        order: 1;
        justify-content: center;
        overflow: visible;
    }

    .landing-hero__actions {
        margin-top: 26px;
    }

    .landing-hero__frame {
        width: 100%;
        max-width: 370px;
        aspect-ratio: 370 / 376;
        overflow: visible;
    }

    .landing-hero__main-image {
        width: 71%;
        right: 0;
        border-radius: 16px;
    }

    .landing-hero__phone-image {
        width: 56%;
        max-width: none;
        left: -5%;
        bottom: -3%;
    }

    .landing-hero__note {
        font-size: 13px;
    }

    .landing-button {
        min-height: 46px;
        padding: 0 24px;
        font-size: 14px;
    }

    .proof-strip {
        grid-template-columns: 1fr;
        display: grid;
    }

    .landing-assurance__track {
        width: max-content;
        gap: 32px;
        padding: 12px 0;
        animation: landing-assurance-scroll 16s linear infinite;
    }

    .landing-assurance__clone {
        display: inline-flex !important;
    }

    .trust-grid__item {
        padding: 24px 22px;
        border-right: 0 !important;
        border-bottom: 1px solid var(--landing-border-soft);
    }

    .trust-grid__item:last-child {
        border-bottom: 0;
    }

    .proof-strip {
        gap: 18px;
        justify-items: start;
    }

    .proof-strip__divider {
        width: 100%;
        height: 1px;
    }

    .landing-section {
        padding: 48px 0;
    }

    .landing-section__heading {
        margin-bottom: 32px;
    }

    .landing-section__heading h2 {
        font-size: 2rem;
        line-height: 1.06;
    }

    .step-card {
        padding: 14px 14px 18px;
        border: 1px solid #ebe6be;
        border-radius: 18px;
        background:
            linear-gradient(180deg, rgba(245, 249, 219, 0.98), rgba(248, 249, 229, 0.9)),
            linear-gradient(90deg, rgba(205, 216, 169, 0.2) 1px, transparent 1px),
            linear-gradient(rgba(205, 216, 169, 0.16) 1px, transparent 1px);
        background-size: auto, 18px 18px, 18px 18px;
        box-shadow: var(--landing-shadow);
    }

    .feature-panel {
        padding: 14px 14px 18px;
        border: 1px solid #ebe6be;
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(249, 250, 233, 0.98), rgba(248, 249, 235, 0.98));
        box-shadow: var(--landing-shadow);
    }

    .step-card__mockup {
        min-height: 142px;
        margin-bottom: 18px;
        border: 1px solid #ece6c8;
        border-radius: 14px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.52);
    }

    .feature-panel__mockup {
        min-height: 132px;
        margin-bottom: 14px;
        width: 100%;
    }

    .step-card h3,
    .feature-panel p,
    .step-card p {
        padding: 0 4px;
    }

    .feature-panel__image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .feature-panel p {
        display: block;
        width: 100%;
        padding: 0 4px;
    }

    .trust-grid {
        border-radius: 22px;
    }

    .trust-grid__item {
        grid-template-columns: 56px 1fr;
        gap: 16px;
        padding: 24px 20px;
        border-right: 0 !important;
        border-bottom: 1px solid var(--landing-border-soft);
    }

    .trust-grid__item:last-child {
        border-bottom: 0;
    }

    .testimonial-carousel {
        padding: 0 24px;
    }

    .testimonial-carousel__viewport {
        overflow: hidden;
    }

    .testimonial-carousel__arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-grid {
        display: flex;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: auto;
        scroll-snap-align: start;
        width: 100%;
        padding: 22px 22px 20px;
    }

    .testimonial-card footer {
        margin-top: 24px;
    }

    .pricing-card {
        width: 100%;
        max-width: 360px;
    }

    .proof-strip {
        gap: 14px;
        justify-items: start;
    }

    .faq-item {
        padding-bottom: 18px;
    }

    .faq-item summary {
        font-size: 17px;
    }

    .faq-item p {
        font-size: 16px;
        line-height: 1.65;
    }

    .cta-panel {
        overflow: visible;
    }

    .cta-panel__media {
        order: 1;
        min-height: 300px;
        border-radius: 24px 24px 0 0;
        overflow: hidden;
    }

    .cta-panel__copy {
        order: 2;
        border-radius: 0 0 24px 24px;
        padding: 16px;
    }

    .cta-panel__copy h2 {
        font-size: 2.5rem;
    }

    .cta-panel__copy p,
    .cta-panel__actions span {
        font-size: 16px;
    }

    .landing-footer {
        padding-top: 24px;
    }

    .landing-footer__top,
    .landing-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .landing-footer__links {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 400px) {
    .landing__container,
    .landing__container--narrow {
        width: min(calc(100% - 28px), 390px);
    }

    .landing-nav {
        padding-right: 14px;
    }

    .landing-hero__copy h1 {
        font-size: 3.2rem;
    }

    .landing-hero__copy p {
        font-size: 17px;
    }

    .landing-hero__subnote {
        font-size: 12px;
    }

    .landing-hero__frame {
        max-width: 342px;
        aspect-ratio: 342 / 360;
    }

    .landing-hero__main-image {
        width: 69%;
    }

    .landing-hero__phone-image {
        width: 54%;
        left: -4%;
        bottom: -2%;
    }

    .landing-hero__actions {
        gap: 12px;
    }

    .landing-button {
        padding: 0 22px;
    }
}

@keyframes landing-assurance-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.policy-page__header {
    margin-bottom: 72px;
}

.policy-page__main {
    padding-bottom: 42px;
}

.policy-page__hero {
    padding-bottom: 40px;
}

.policy-page__hero-copy {
    text-align: center;
}

.policy-page__hero-copy h1 {
    margin: 0;
    color: #2f312d;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
}

.policy-page__hero-copy p {
    margin: 16px 0 0;
    color: #888983;
    font-size: 17px;
    line-height: 1.45;
}

.policy-page__summary {
    margin-top: 48px;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(239, 244, 155, 0.9), rgba(234, 241, 123, 0.72));
    color: var(--landing-brand);
    font-size: 16px;
    line-height: 1.45;
}

.policy-page__summary strong {
    font-weight: 700;
}

.policy-page__intro {
    margin-top: 48px;
    color: #7e7f79;
    font-size: 18px;
    line-height: 1.45;
}

.policy-page__body {
    padding-bottom: 48px;
}

.policy-page__rows {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.policy-row {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

.policy-row__label {
    color: #4a4c47;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.policy-row__content {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.policy-block h2 {
    margin: 0 0 22px;
    color: #676862;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.policy-block p,
.policy-block li {
    color: #7d7e78;
    font-size: 17px;
    line-height: 1.42;
}

.policy-block p {
    margin: 0;
}

.policy-block p + p {
    margin-top: 4px;
}

.policy-block__lead {
    color: #666862 !important;
    font-size: 18px !important;
    font-weight: 700;
}

.policy-block ul {
    margin: 18px 0 0;
    padding-left: 28px;
}

.policy-block li + li {
    margin-top: 10px;
}

.policy-block a {
    color: var(--landing-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy-page__footer {
    padding-top: 6px;
}

.policy-footer__top {
    align-items: flex-end;
}

.policy-footer__brand {
    max-width: 272px;
}

.policy-footer__links {
    min-width: 0;
}

.policy-footer__bottom {
    margin-top: 18px;
}

.policy-footer__bottom span {
    padding: 0 10px;
    color: #9a9b94;
}

@media (max-width: 980px) {
    .policy-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .policy-footer__links {
        min-width: 0;
    }
}

@media (max-width: 820px) {
    .policy-page__header {
        margin-bottom: 26px;
    }

    .policy-page__hero {
        padding-bottom: 24px;
    }

    .policy-page__hero-copy h1 {
        font-size: 24px;
    }

    .policy-page__hero-copy p {
        margin-top: 10px;
        font-size: 15px;
    }

    .policy-page__summary {
        margin-top: 28px;
        padding: 12px 14px;
        font-size: 15px;
        line-height: 1.52;
    }

    .policy-page__intro {
        margin-top: 28px;
        font-size: 16px;
        line-height: 1.55;
    }

    .policy-page__rows {
        gap: 34px;
    }

    .policy-row {
        gap: 12px;
    }

    .policy-row__label,
    .policy-block h2 {
        font-size: 17px;
    }

    .policy-block p,
    .policy-block li {
        font-size: 15px;
        line-height: 1.55;
    }

    .policy-block__lead {
        font-size: 16px !important;
    }

    .policy-footer__top {
        align-items: flex-start;
    }
}
