:root {
    --green: #004c3f;
    --green-dark: #00352c;
    --green-soft: #e7f3ef;
    --bg: #fcf8f2;
    --card: #ffffff;
    --ink: #1a1f1c;
    --muted: #5f6b66;
    --line: #e6e2da;
    --beige: #f4eee3;
    --beige-text: #5c5240;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(26, 40, 34, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
p { margin: 0; }

.page-shell {
    width: min(960px, 100%);
    margin: 0 auto;
    min-height: 100vh;
    background: #fff;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 2rem;
    border-bottom: 1px solid var(--line);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__mark {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--green);
}
.brand__sub {
    margin-top: .25rem;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #8a938d;
}

.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    max-width: 10rem;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--green);
}
.badge-verified svg { width: 22px; height: 22px; flex-shrink: 0; }

.site-main {
    flex: 1;
    padding: 1.75rem 2rem 2.25rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #faf8f4;
    padding: 1.25rem 2rem 1.4rem;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    text-align: left;
    color: var(--green);
}
.trust-item__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: grid;
    place-items: center;
    color: var(--green);
}
.trust-item__icon svg {
    width: 22px;
    height: 22px;
}
.trust-item__text {
    min-width: 0;
}
.trust-item strong {
    display: block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.25;
    color: var(--green);
}
.trust-item p {
    margin: .2rem 0 0;
    font-size: .78rem;
    font-weight: 500;
    line-height: 1.35;
    color: #4a5550;
    letter-spacing: 0;
    text-transform: none;
}

.encrypt-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    font-size: .75rem;
    color: var(--muted);
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    background: var(--green);
    color: #fff;
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .15s ease;
}
.btn:hover { background: var(--green-dark); }
.btn:disabled { opacity: .65; cursor: wait; }
.btn--ghost {
    width: auto;
    background: #fff;
    color: var(--green);
    border: 1.5px solid var(--green);
    padding: .75rem 1rem;
    font-size: .88rem;
}
.btn--ghost:hover { background: var(--green-soft); }

/* Landing */
.hero { margin-bottom: 1rem; }
.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 1.25rem;
    align-items: stretch;
}
.hero h1 {
    margin: 0 0 .75rem;
    font-size: clamp(1.45rem, 3.4vw, 1.9rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.02em;
}
.hero h1 em {
    font-style: normal;
    color: var(--green);
}
.hero__text {
    margin: 0 0 1rem;
    font-size: .95rem;
    color: var(--muted);
}
.checks {
    list-style: none;
    margin: 0 0 1.15rem;
    padding: 0;
}
.checks li {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    margin-bottom: .55rem;
    font-size: .92rem;
    font-weight: 650;
}
.checks li::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: .15rem;
    flex-shrink: 0;
    border-radius: 999px;
    background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/11px no-repeat;
}
.hero__cta { margin-top: .25rem; }

.hero__media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    min-height: 420px;
    height: 100%;
    align-self: stretch;
}
.hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(90deg, #fff 0%, transparent 14%, transparent 86%, #fff 100%),
        linear-gradient(180deg, #fff 0%, transparent 12%, transparent 82%, #fff 100%);
    z-index: 1;
}
.hero__media .float-card {
    z-index: 2;
}
.float-card {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: calc(100% - 1.75rem);
    max-width: 280px;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: .85rem;
    align-items: flex-start;
}
.float-card__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--green);
    margin-top: .1rem;
}
.float-card__icon svg {
    width: 100%;
    height: 100%;
}
.float-card__body {
    min-width: 0;
    text-align: left;
}
.float-card__title {
    display: block;
    margin: 0 0 .45rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--green);
    line-height: 1.2;
}
.float-card__text {
    margin: 0;
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.28;
    color: #1a3c34;
}
.float-card__text b {
    font-weight: 800;
    font-size: 1.15em;
    color: var(--green);
}

.notice {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin: 0 0 1.25rem;
    padding: .95rem 1rem;
    background: var(--beige);
    border-radius: 12px;
    color: var(--beige-text);
    font-size: .88rem;
}
.notice svg { flex-shrink: 0; margin-top: .1rem; }

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0 0 1.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.feature {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 1rem 1.15rem;
    text-align: center;
    position: relative;
}
.feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18%;
    bottom: 18%;
    right: 0;
    width: 1px;
    background: #e2e5e3;
}
.feature__icon {
    width: auto;
    height: auto;
    margin: 0 auto .85rem;
    border-radius: 0;
    background: transparent;
    color: var(--green);
    display: grid;
    place-items: center;
}
.feature h3 {
    margin: 0 0 .4rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
}
.feature p {
    margin: 0 auto;
    max-width: 15rem;
    font-size: .84rem;
    line-height: 1.4;
    color: #3d4743;
}

.how {
    border: 0;
    border-radius: 0;
    padding: 1.5rem 0 0.25rem;
    background: transparent;
}
.how h2 {
    margin: 0 0 .35rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 800;
}
.how__lead {
    text-align: center;
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: 1.35rem;
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}
.step {
    text-align: center;
    padding: 1rem 1.15rem;
    position: relative;
}
.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 14%;
    bottom: 14%;
    right: 0;
    width: 1px;
    background: #e2e5e3;
}
.step__num {
    width: 34px;
    height: 34px;
    margin: 0 auto .7rem;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: .95rem;
    border: 0;
    box-shadow: none;
}
.step__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto .85rem;
    color: #1a1f1c;
    display: grid;
    place-items: center;
}
.step__icon svg {
    width: 42px;
    height: 42px;
}
.step h3 {
    margin: 0 0 .4rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.step p {
    margin: 0 auto;
    max-width: 16rem;
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.45;
}

/* Form */
.stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .4rem;
    margin-bottom: 1.15rem;
    padding: .85rem .5rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    position: relative;
}
.stepper::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: #e5e7eb;
}
.stepper__item {
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    color: #9aa3ad;
    position: relative;
    z-index: 1;
}
.stepper__item span {
    width: 28px;
    height: 28px;
    margin: 0 auto .35rem;
    border-radius: 999px;
    border: 2px solid #d1d5db;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: .78rem;
}
.stepper__item.is-active,
.stepper__item.is-done { color: var(--green); }
.stepper__item.is-active span,
.stepper__item.is-done span {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.form-wrap h1 {
    margin: 0 0 .5rem;
    font-size: clamp(1.25rem, 3vw, 1.55rem);
    line-height: 1.2;
    font-weight: 800;
}
.form-wrap > .lead {
    margin: 0 0 1rem;
    font-size: .92rem;
    color: var(--muted);
}

.block {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.05rem;
    margin-bottom: .9rem;
    background: #fff;
}
.block__head {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: .95rem;
}
.block__num {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .82rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: .1rem;
}
.block__title {
    flex: 1;
    min-width: 0;
}
.block h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
}
.block .hint,
.block__title .hint {
    margin: .2rem 0 0;
    font-size: .86rem;
    color: var(--muted);
}
.block__badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--green-soft);
    color: var(--green);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .85rem;
}
.field { margin-bottom: 0; }
.field label {
    display: block;
    margin-bottom: .3rem;
    font-size: .84rem;
    font-weight: 700;
}
.field__control {
    position: relative;
}
.field__control input {
    width: 100%;
    border: 1px solid #d8ddd8;
    border-radius: 10px;
    padding: .8rem 2.6rem .8rem .9rem;
    background: #fff;
}
.field__icon {
    position: absolute;
    right: .85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    pointer-events: none;
    display: grid;
    place-items: center;
}
.field input[type="date"] {
    color-scheme: light;
}
.field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 2.6rem;
    height: 100%;
    cursor: pointer;
}

.upload-row {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 1rem;
    align-items: center;
}
.upload-actions .meta {
    margin-top: .45rem;
    font-size: .76rem;
    color: var(--muted);
}
.file-name {
    margin-top: .4rem;
    font-size: .8rem;
    color: var(--green);
    font-weight: 700;
}
.upload-preview {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #f3f4f6;
    aspect-ratio: 1;
}
.upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.callout {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin: 0 0 .9rem;
    padding: .95rem 1rem;
    background: var(--beige);
    border-radius: 12px;
    color: var(--beige-text);
    font-size: .86rem;
}
.callout svg { flex-shrink: 0; margin-top: .1rem; }
.callout strong {
    display: block;
    margin-bottom: .25rem;
    font-size: .82rem;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.safe-box {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0 0 1rem;
    padding: 1.1rem 1.15rem;
    background: var(--beige);
    border-radius: 12px;
    color: var(--beige-text);
}
.safe-box__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    color: var(--green);
    display: grid;
    place-items: center;
}
.safe-box__icon svg {
    width: 36px;
    height: 36px;
}
.safe-box strong {
    display: block;
    margin-bottom: .25rem;
    color: var(--green);
    font-size: .9rem;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.safe-box p { font-size: .84rem; }

.error { color: #b91c1c; font-size: .78rem; margin-top: .3rem; }

.error-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: grid;
    place-items: center;
    z-index: 100;
    padding: 1rem;
}
.error-modal {
    width: min(420px, 100%);
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.error-modal__header {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .75rem;
}
.error-modal__header h3 { margin: 0; flex: 1; font-size: 1.05rem; }
.error-modal__close {
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.error-modal__msg { margin-bottom: .65rem; color: var(--muted); }
.error-modal__list {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    color: #991b1b;
    font-size: .88rem;
}
.error-modal__btn { margin-top: .25rem; }

/* Success */
.success {
    text-align: center;
    padding: 1.25rem 0 .5rem;
    position: relative;
}
.confetti span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 999px;
}
.confetti span:nth-child(1) { background: #ef4444; top: 12px; left: 18%; }
.confetti span:nth-child(2) { background: #3b82f6; top: 36px; left: 10%; }
.confetti span:nth-child(3) { background: #22c55e; top: 18px; right: 16%; }
.confetti span:nth-child(4) { background: #f59e0b; top: 48px; right: 12%; }
.confetti span:nth-child(5) { background: #ef4444; top: 64px; left: 30%; }
.confetti span:nth-child(6) { background: #3b82f6; top: 8px; right: 30%; }

.success-check {
    width: 78px;
    height: 78px;
    margin: .4rem auto .9rem;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 2.1rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(0, 76, 63, .28);
}
.success h1 {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.7rem);
    font-weight: 800;
    line-height: 1.25;
}

.status-card {
    margin: 1.1rem 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem 1.05rem;
    background: #fff;
}
.status-card__head {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .55rem;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--green);
}
.status-card__icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .8rem;
}
.status-card p {
    font-size: .9rem;
    color: var(--muted);
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
    margin-bottom: 1rem;
}
.status-item {
    background: var(--green-soft);
    border-radius: 14px;
    padding: 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .35rem;
}
.status-item__icon {
    width: 52px;
    height: 52px;
    color: var(--green);
    display: grid;
    place-items: center;
    margin-bottom: .35rem;
}
.status-item__icon svg {
    width: 48px;
    height: 48px;
}
.status-item strong {
    display: block;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.status-item em {
    display: block;
    margin-top: .1rem;
    font-style: normal;
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.4;
}

.next-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 0;
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    background: var(--green);
    align-items: stretch;
    min-height: 280px;
}
.next-box {
    background: var(--green);
    color: #fff;
    border-radius: 0;
    padding: 1.25rem 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.next-box h2 {
    margin: 0 0 .85rem;
    font-size: .92rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: .65rem;
    font-size: .88rem;
    line-height: 1.4;
}
.check-list li:last-child {
    margin-bottom: 0;
}
.check-list__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: .05rem;
    color: #fff;
    display: grid;
    place-items: center;
}
.check-list__icon svg {
    width: 22px;
    height: 22px;
}
.next-photo {
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #c8beb4;
    min-height: 0;
    height: 100%;
}
.next-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 18%;
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
}
.contact-box strong { display: block; font-size: .95rem; }
.contact-box p {
    margin-top: .2rem;
    font-size: .84rem;
    color: var(--muted);
}

.welcome-bar {
    padding: 1rem;
    background: var(--beige);
    border-radius: 12px;
    text-align: center;
}
.welcome-bar strong {
    display: block;
    color: var(--green);
    font-size: .95rem;
    margin-bottom: .25rem;
}
.welcome-bar p {
    font-size: .84rem;
    color: var(--beige-text);
}

[x-cloak] { display: none !important; }

@media (max-width: 800px) {
    .page-shell { box-shadow: none; }
    .site-header,
    .site-main,
    .site-footer { padding-left: 1.15rem; padding-right: 1.15rem; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__media {
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
        min-height: 360px;
        aspect-ratio: 4 / 5;
        height: auto;
    }
    .hero__cta { width: 100%; }
    .features { grid-template-columns: 1fr; border: 0; padding: 0; gap: .75rem; }
    .feature {
        text-align: left;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 1rem;
        display: grid;
        grid-template-columns: 36px 1fr;
        column-gap: .75rem;
        align-items: start;
    }
    .feature:not(:last-child)::after { display: none; }
    .feature__icon {
        margin: 0;
        grid-row: 1 / span 2;
    }
    .feature h3 { font-size: .82rem; }
    .feature p { max-width: none; }
    .how { padding-top: .5rem; }
    .steps { grid-template-columns: 1fr; gap: .85rem; }
    .step {
        text-align: left;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 1rem;
        display: grid;
        grid-template-columns: 34px 1fr;
        column-gap: .75rem;
        align-items: start;
    }
    .step:not(:last-child)::after { display: none; }
    .step__num { margin: 0; grid-row: 1 / span 3; }
    .step__icon {
        grid-column: 2;
        margin: 0 0 .35rem;
        place-items: start;
    }
    .step h3 { font-size: .82rem; }
    .step p { max-width: none; }
    .trust-row { grid-template-columns: 1fr; gap: .85rem; }
    .trust-item { align-items: flex-start; }
    .upload-row { grid-template-columns: 1fr; }
    .upload-preview { max-width: 240px; aspect-ratio: 16/10; }
    .next-grid { grid-template-columns: 1fr; min-height: 0; }
    .next-photo { min-height: 240px; }
    .contact-box { flex-direction: column; align-items: stretch; }
}

@media (min-width: 801px) and (max-width: 1099px) {
    .page-shell { width: min(900px, calc(100% - 2rem)); }
}

@media (min-width: 1100px) {
    body {
        padding: 2rem 0 2.5rem;
        background: #efeae1;
    }
    .page-shell {
        width: min(1100px, calc(100% - 3rem));
        min-height: calc(100vh - 4.5rem);
        border-radius: 22px;
        overflow: hidden;
    }
    .site-header { padding: 1.25rem 2.5rem; }
    .site-main { padding: 2.25rem 2.5rem 2.75rem; }
    .site-footer { padding: 1.35rem 2.5rem 1.5rem; }

    .brand__mark { font-size: 1.9rem; }
    .badge-verified { max-width: 12rem; font-size: .68rem; }

    .hero__grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 2rem;
        align-items: stretch;
    }
    .hero h1 { font-size: 2.15rem; }
    .hero__text { font-size: 1.02rem; max-width: 36rem; }
    .checks li { font-size: 1rem; }
    .hero__media { min-height: 480px; }
    .float-card {
        max-width: 300px;
        padding: 1.15rem 1.2rem;
        bottom: 1.25rem;
    }
    .float-card__icon { width: 32px; height: 32px; }
    .float-card__title { font-size: .82rem; }
    .float-card__text { font-size: 1rem; }
    .btn { font-size: .98rem; padding: 1.1rem 1.25rem; }

    .features {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-bottom: 2rem;
        padding: 1.75rem 0;
    }
    .feature { padding: 1.1rem 1.25rem; }
    .feature h3 { font-size: .82rem; }
    .feature p { font-size: .88rem; }

    .how { padding: 1.75rem 0 .5rem; }
    .how h2 { font-size: 1.4rem; }
    .how__lead { font-size: 1rem; margin-bottom: 1.5rem; }
    .steps { grid-template-columns: repeat(3, 1fr); }
    .step { padding: 1.15rem 1.35rem; }
    .step__num { width: 38px; height: 38px; margin-bottom: .8rem; }
    .step__icon { width: 52px; height: 52px; margin-bottom: .95rem; }
    .step__icon svg { width: 46px; height: 46px; }
    .step h3 { font-size: .84rem; }
    .step p { font-size: .9rem; }

    .form-wrap h1 { font-size: 1.75rem; }
    .form-wrap > .lead { font-size: 1rem; max-width: 48rem; }
    .block { padding: 1.25rem 1.35rem; }
    .field-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .upload-row { grid-template-columns: 1fr 180px; gap: 1.25rem; }

    .status-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .status-item {
        padding: 1.35rem 1.1rem 1.25rem;
    }
    .status-item__icon {
        width: 58px;
        height: 58px;
        margin-bottom: .45rem;
    }
    .status-item__icon svg {
        width: 54px;
        height: 54px;
    }
    .status-item strong { font-size: .95rem; }
    .status-item em { font-size: .88rem; }
    .next-grid { min-height: 300px; }
    .next-box { padding: 1.35rem 1.45rem; }
    .next-photo { min-height: 0; }
}
