/**
 * theme-1631 — секции, hero, формы, мастер-шаги, карточки.
 */

.t1631-hero {
    padding-block: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
}

.t1631-hero--compact {
    padding-block: var(--space-xl);
}

.t1631-hero--front {
    padding-block: 0;
}

.t1631-hero__title {
    margin: 0 0 var(--space-md);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: var(--line-height-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.t1631-hero__lead {
    margin: 0 0 var(--space-lg);
    max-width: 40rem;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.t1631-hero__links {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.t1631-hero__links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

.t1631-hero__links a:hover {
    color: var(--color-accent);
}

.t1631-breadcrumbs {
    margin-bottom: var(--space-md);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.t1631-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.t1631-breadcrumbs a:hover {
    color: var(--color-accent);
}

.t1631-section {
    padding-block: var(--space-2xl);
}

.t1631-section--alt {
    background: var(--color-surface);
    border-block: 1px solid var(--color-border);
}

.t1631-section__title {
    margin: 0 0 var(--space-md);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

.t1631-section__lead {
    margin: 0 0 var(--space-lg);
    max-width: 42rem;
    color: var(--color-text-muted);
}

.container--narrow {
    width: min(100% - 2 * var(--space-md), 40rem);
}

.t1631-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 720px) {
    .t1631-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 640px) {
    .t1631-grid--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.t1631-card {
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.t1631-card__title {
    margin: 0 0 var(--space-sm);
    font-size: 1.05rem;
    font-weight: 600;
}

.t1631-card p {
    margin: 0;
    color: var(--color-text-muted);
}

.t1631-card--linkish .t1631-card__title a {
    color: inherit;
    text-decoration: none;
}

.t1631-card--linkish .t1631-card__title a:hover {
    color: var(--color-accent);
}

.t1631-steps {
    margin: 0;
    padding-left: 1.25rem;
    display: grid;
    gap: var(--space-lg);
    max-width: 44rem;
}

.t1631-steps__title {
    margin: 0 0 var(--space-xs);
    font-size: 1.05rem;
    font-weight: 600;
}

.t1631-steps p {
    margin: 0;
    color: var(--color-text-muted);
}

.t1631-list-plain {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--color-text-muted);
    max-width: 40rem;
}

.t1631-list-plain li + li {
    margin-top: var(--space-sm);
}

.t1631-layer + .t1631-layer {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.t1631-layer p {
    margin: 0;
    color: var(--color-text-muted);
}

.t1631-quote {
    margin: 0;
    padding: var(--space-xl);
    border-left: 3px solid var(--color-accent);
    background: var(--color-surface);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.t1631-quote blockquote {
    margin: 0;
}

.t1631-quote p {
    margin: 0;
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
}

.t1631-quote figcaption {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.t1631-calc {
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
}

.t1631-calc__out {
    margin: var(--space-lg) 0 0;
    font-size: 1.05rem;
}

.t1631-calc__label {
    color: var(--color-text-muted);
    margin-right: var(--space-sm);
}

.t1631-form {
    display: grid;
    gap: var(--space-md);
}

.t1631-field {
    display: grid;
    gap: var(--space-xs);
}

.t1631-field__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.t1631-input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font: inherit;
    background: var(--color-surface);
    color: var(--color-text);
}

.t1631-input:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 1px;
}

textarea.t1631-input {
    resize: vertical;
    min-height: 5rem;
}

.t1631-check {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.t1631-check input {
    margin-top: 0.2rem;
}

.t1631-req {
    color: #8a2f2f;
}

.t1631-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.65rem 1.25rem;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-sm);
    background: var(--color-accent);
    color: #fff;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.t1631-btn:hover {
    filter: brightness(1.05);
}

.t1631-btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.t1631-btn--ghost {
    background: transparent;
    color: var(--color-accent);
}

.t1631-wizard__progress {
    position: relative;
    height: 4px;
    border-radius: 999px;
    background: var(--color-border);
    overflow: hidden;
}

.t1631-wizard__progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--color-accent);
    transition: width 0.25s ease;
}

.t1631-wizard__step-label {
    margin: var(--space-sm) 0 var(--space-md);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.t1631-wizard__panels {
    min-height: 12rem;
}

.t1631-wizard__step {
    margin: 0;
    padding: 0;
    border: 0;
}

.t1631-wizard__legend {
    padding: 0;
    margin: 0 0 var(--space-md);
    font-size: 1.05rem;
    font-weight: 600;
}

.t1631-wizard__nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.t1631-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.t1631-thankyou {
    text-align: left;
}

.t1631-thankyou__text {
    margin: 0 0 var(--space-xl);
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.t1631-case {
    padding: var(--space-xl);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
}

.t1631-case__text {
    margin: 0 0 var(--space-md);
    color: var(--color-text);
    font-size: 1.05rem;
}

.t1631-case__meta {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.site-footer__nav {
    margin-top: var(--space-sm);
}

.site-footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
}

.site-footer__nav a:hover {
    color: var(--color-accent);
}

/* =============================================================================
   Главная: премиум-полировка (только .site-main--front и дочерние классы t1631-front-*)
   ============================================================================= */

.site-main--front .t1631-front-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 16px;
}

@media (min-width: 640px) {
    .site-main--front .t1631-front-container {
        padding-inline: 24px;
    }
}

@media (min-width: 1024px) {
    .site-main--front .t1631-front-container {
        padding-inline: 32px;
    }
}

.site-main--front .t1631-section,
.site-main--front .t1631-hero--front {
    padding-block: 56px;
}

@media (min-width: 640px) {
    .site-main--front .t1631-section,
    .site-main--front .t1631-hero--front {
        padding-block: 72px;
    }
}

@media (min-width: 1024px) {
    .site-main--front .t1631-section,
    .site-main--front .t1631-hero--front {
        padding-block: 88px;
    }
}

.site-main--front .t1631-section .t1631-section__title {
    margin-top: 0;
    margin-bottom: clamp(1.4rem, 2.5vw, 1.75rem);
}

.site-main--front .t1631-section__title {
    font-size: 1.75rem;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

@media (min-width: 640px) {
    .site-main--front .t1631-section__title {
        font-size: 2.125rem;
    }
}

@media (min-width: 1024px) {
    .site-main--front .t1631-section__title {
        font-size: 2.625rem;
    }
}

.site-main--front .t1631-section__lead {
    font-size: 1rem;
    line-height: 1.65;
    color: #3d4349;
}

@media (min-width: 640px) {
    .site-main--front .t1631-section__lead {
        font-size: 1.0625rem;
        line-height: 1.65;
    }
}

@media (min-width: 1024px) {
    .site-main--front .t1631-section__lead {
        font-size: 1.125rem;
        line-height: 1.65;
    }
}

.site-main--front .t1631-card__title,
.site-main--front .t1631-steps__title {
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--color-text);
}

@media (min-width: 640px) {
    .site-main--front .t1631-card__title,
    .site-main--front .t1631-steps__title {
        font-size: 1.375rem;
    }
}

@media (min-width: 1024px) {
    .site-main--front .t1631-card__title,
    .site-main--front .t1631-steps__title {
        font-size: 1.625rem;
    }
}

.site-main--front .t1631-hero__lead,
.site-main--front .t1631-card p,
.site-main--front .t1631-steps p,
.site-main--front .t1631-case__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a4046;
}

@media (min-width: 640px) {
    .site-main--front .t1631-hero__lead,
    .site-main--front .t1631-card p,
    .site-main--front .t1631-steps p,
    .site-main--front .t1631-case__text {
        font-size: 1.0625rem;
    }
}

@media (min-width: 1024px) {
    .site-main--front .t1631-hero__lead,
    .site-main--front .t1631-card p,
    .site-main--front .t1631-steps p,
    .site-main--front .t1631-case__text {
        font-size: 1.125rem;
    }
}

.site-main--front .t1631-hero__note,
.site-main--front .t1631-case__figure-note {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4a5158;
}

.site-main--front .t1631-case__disclaimer {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* --- Hero --- */
.site-main--front .t1631-hero--front {
    background: #f0f1f3;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.site-main--front .t1631-front-hero-surface {
    border-radius: 24px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    background: var(--color-surface);
    box-shadow: 0 18px 48px rgba(26, 26, 26, 0.06);
    padding: 28px;
}

@media (min-width: 640px) {
    .site-main--front .t1631-front-hero-surface {
        padding: 40px;
    }
}

@media (min-width: 1024px) {
    .site-main--front .t1631-front-hero-surface {
        padding: 56px;
    }
}

.site-main--front .t1631-front-hero__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .site-main--front .t1631-front-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
        gap: 3rem;
    }
}

.site-main--front .t1631-front-hero__copy {
    max-width: 760px;
}

.site-main--front #front-hero .t1631-hero__title {
    margin-bottom: 1.25rem;
    max-width: 760px;
    font-size: 2.375rem;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--color-text);
}

@media (min-width: 640px) {
    .site-main--front #front-hero .t1631-hero__title {
        font-size: 3.25rem;
    }
}

@media (min-width: 1024px) {
    .site-main--front #front-hero .t1631-hero__title {
        font-size: 4rem;
    }
}

.site-main--front .t1631-front-hero__copy .t1631-hero__lead {
    margin-bottom: 1.75rem;
    max-width: 760px;
}

.site-main--front .t1631-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 1.5rem;
}

@media (max-width: 639px) {
    .site-main--front .t1631-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-main--front .t1631-hero__actions .t1631-btn {
        width: 100%;
        justify-content: center;
    }
}

.site-main--front .t1631-hero__actions .t1631-btn {
    min-height: 54px;
    padding: 0 28px;
    border-radius: 12px;
    font-weight: 600;
    border-width: 1.5px;
}

.site-main--front .t1631-hero__actions .t1631-btn:not(.t1631-btn--ghost) {
    background: #1a2330;
    border-color: #1a2330;
    color: #fff;
}

.site-main--front .t1631-hero__actions .t1631-btn:not(.t1631-btn--ghost):hover {
    filter: brightness(1.08);
}

.site-main--front .t1631-hero__actions .t1631-btn--ghost {
    background: #f7f8f9;
    border-color: rgba(26, 26, 26, 0.14);
    color: var(--color-text);
}

.site-main--front .t1631-hero__actions .t1631-btn--ghost:hover {
    background: #eef0f2;
    border-color: rgba(26, 26, 26, 0.22);
    color: var(--color-text);
}

.site-main--front .t1631-hero__note {
    margin: 0;
    max-width: 32rem;
    padding-top: 1.25rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.site-main--front .t1631-front-hero__viz {
    position: relative;
    min-height: 200px;
    display: grid;
    place-items: center;
    padding: 0.5rem;
    overflow: hidden;
}

@media (max-width: 1023px) {
    .site-main--front .t1631-front-hero__viz {
        min-height: 160px;
        order: 1;
    }

    .site-main--front .t1631-front-hero__copy {
        order: 0;
    }

    .site-main--front .t1631-front-hero__grid {
        display: flex;
        flex-direction: column;
    }
}

.site-main--front .t1631-front-hero__panel {
    position: absolute;
    border-radius: 16px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    background: #fafbfc;
    box-shadow: 0 10px 28px rgba(26, 26, 26, 0.05);
}

.site-main--front .t1631-front-hero__panel--a {
    width: 72%;
    height: 58%;
    top: 8%;
    right: 4%;
    transform: rotate(-2deg);
}

.site-main--front .t1631-front-hero__panel--b {
    width: 62%;
    height: 48%;
    bottom: 12%;
    left: 6%;
    transform: rotate(3deg);
    background: #f4f5f7;
}

.site-main--front .t1631-front-hero__panel--c {
    width: 44%;
    height: 32%;
    top: 38%;
    left: 18%;
    transform: rotate(-1deg);
    background: #fff;
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.06);
}

/* --- Боли --- */
.site-main--front .t1631-front-pains__grid {
    align-items: stretch;
}

.site-main--front .t1631-front-pain-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    background: var(--color-surface);
    box-shadow: 0 8px 26px rgba(26, 26, 26, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

@media (min-width: 1024px) {
    .site-main--front .t1631-front-pain-card {
        padding: 32px;
    }
}

.site-main--front .t1631-front-pain-card .t1631-card__title {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

.site-main--front .t1631-front-pain-card:hover {
    box-shadow: 0 14px 36px rgba(26, 26, 26, 0.08);
    transform: translateY(-3px);
}

/* --- Продукты --- */
.site-main--front .t1631-grid--products {
    align-items: stretch;
}

.site-main--front .t1631-card--product {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    min-height: 100%;
}

@media (min-width: 1024px) {
    .site-main--front .t1631-card--product {
        padding: 36px;
    }
}

.site-main--front .t1631-card--product-primary {
    background: #e8eaee;
    border-color: rgba(26, 26, 26, 0.12);
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
}

.site-main--front .t1631-card--product-secondary {
    background: #fbfbfc;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.05);
}

.site-main--front .t1631-card--product .t1631-card__list {
    flex-grow: 1;
}

.site-main--front .t1631-card__list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    color: #3a4046;
}

.site-main--front .t1631-card__list li {
    position: relative;
    padding-left: 1.1rem;
    margin-top: 0.5rem;
    line-height: 1.55;
}

.site-main--front .t1631-card__list li:first-child {
    margin-top: 0;
}

.site-main--front .t1631-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 1px;
    background: var(--color-accent);
    opacity: 0.55;
}

.site-main--front .t1631-card__actions {
    margin-top: auto;
    padding-top: 1.5rem;
}

.site-main--front .t1631-card--product .t1631-btn {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 600;
}

.site-main--front .t1631-card--product-primary .t1631-btn:not(.t1631-btn--ghost) {
    background: #1a2330;
    border-color: #1a2330;
}

.site-main--front .t1631-card--product-secondary .t1631-btn--ghost {
    background: var(--color-surface);
    border-color: rgba(26, 26, 26, 0.16);
    color: var(--color-text);
}

/* --- Как работаем --- */
.site-main--front .t1631-steps--work {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1.25rem;
    max-width: none;
    grid-template-columns: 1fr;
    counter-reset: t1631frontstep;
}

@media (min-width: 900px) {
    .site-main--front .t1631-steps--work {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.site-main--front .t1631-steps--work > li {
    margin: 0;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    background: #fbfbfc;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.04);
    counter-increment: t1631frontstep;
}

@media (min-width: 1024px) {
    .site-main--front .t1631-steps--work > li {
        padding: 32px;
    }
}

.site-main--front .t1631-steps--work > li::before {
    content: counter(t1631frontstep);
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--color-accent);
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
    .site-main--front .t1631-steps--work > li::before {
        font-size: 3.25rem;
    }
}

.site-main--front .t1631-steps--work .t1631-steps__title {
    margin-bottom: 0.5rem;
}

/* --- Кейс --- */
.site-main--front #front-case .t1631-front-container.container--narrow {
    width: 100%;
    max-width: 960px;
}

.site-main--front .t1631-case--stat {
    margin-top: 0.5rem;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    background: #f2f3f5;
    box-shadow: 0 12px 32px rgba(26, 26, 26, 0.06);
}

@media (min-width: 1024px) {
    .site-main--front .t1631-case--stat {
        padding: 40px;
    }
}

.site-main--front .t1631-front-case__metric {
    min-width: 0;
}

.site-main--front .t1631-front-case__story {
    min-width: 0;
}

.site-main--front .t1631-front-case__layout {
    display: grid;
    gap: 1.75rem;
    align-items: start;
}

@media (min-width: 768px) {
    .site-main--front .t1631-front-case__layout {
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: clamp(1.75rem, 4vw, 2.5rem);
        row-gap: 1.5rem;
        align-items: start;
    }
}

.site-main--front .t1631-case__figure {
    margin: 0;
    font-size: 2.375rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--color-text);
    white-space: nowrap;
}

@media (min-width: 640px) {
    .site-main--front .t1631-case__figure {
        font-size: 2.875rem;
    }
}

@media (min-width: 1024px) {
    .site-main--front .t1631-case__figure {
        font-size: 3.25rem;
    }
}

.site-main--front .t1631-case__figure-note {
    margin: 0.5rem 0 0;
}

.site-main--front .t1631-case__text {
    margin: 0 0 1rem;
}

.site-main--front .t1631-case__disclaimer {
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

/* --- Форма (разметка из form-contact, только внешняя оболочка) --- */
.site-main--front .t1631-front-form-frame {
    padding-bottom: 56px;
}

@media (min-width: 640px) {
    .site-main--front .t1631-front-form-frame {
        padding-bottom: 72px;
    }
}

@media (min-width: 1024px) {
    .site-main--front .t1631-front-form-frame {
        padding-bottom: 88px;
    }
}

.site-main--front .t1631-section--front-form {
    background: transparent;
    border-block: none;
}

.site-main--front .t1631-section--front-form .container--narrow {
    box-sizing: border-box;
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 28px 20px 24px;
    border-radius: 22px;
    border: 1px solid #d6d0c4;
    background: #fbfaf7;
    box-shadow: none;
}

@media (min-width: 1024px) {
    .site-main--front .t1631-section--front-form .container--narrow {
        padding: 40px 36px 34px;
        border-radius: 28px;
    }
}

.site-main--front .t1631-section--front-form .t1631-section__title {
    margin-bottom: 14px;
}

.site-main--front .t1631-section--front-form .t1631-section__lead {
    margin-bottom: 28px;
    max-width: 560px;
    color: #5f5c55;
    line-height: 1.65;
    font-size: 16px;
}

@media (min-width: 1024px) {
    .site-main--front .t1631-section--front-form .t1631-section__lead {
        font-size: 18px;
    }
}

.site-main--front .t1631-section--front-form .t1631-form {
    margin-top: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 0;
}

.site-main--front .t1631-section--front-form .t1631-form > .t1631-field ~ .t1631-field {
    margin-top: 18px;
}

@media (min-width: 1024px) {
    .site-main--front .t1631-section--front-form .t1631-form > .t1631-field ~ .t1631-field {
        margin-top: 20px;
    }
}

.site-main--front .t1631-section--front-form .t1631-field {
    gap: 0;
}

.site-main--front .t1631-section--front-form .t1631-field__label {
    margin-bottom: 10px;
    color: #1a1a18;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.site-main--front .t1631-section--front-form .t1631-field__hint {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: #5f5c55;
}

.site-main--front .t1631-section--front-form select.t1631-input {
    box-sizing: border-box;
    width: 100%;
    height: 56px;
    min-height: 56px;
    padding: 16px 18px;
    border: 1px solid #d6d0c4;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: none;
    color: #1a1a18;
    font: inherit;
    font-size: 16px;
    cursor: pointer;
}

.site-main--front .t1631-section--front-form input.t1631-input:not([type="file"]) {
    box-sizing: border-box;
    height: 56px;
    min-height: 56px;
    padding: 16px 18px;
    border: 1px solid #d6d0c4;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: none;
    color: #1a1a18;
}

.site-main--front .t1631-section--front-form textarea.t1631-input {
    box-sizing: border-box;
    height: auto;
    min-height: 160px;
    resize: vertical;
    padding: 16px 18px;
    border: 1px solid #d6d0c4;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: none;
    color: #1a1a18;
}

.site-main--front .t1631-section--front-form textarea.t1631-input.t1631-input--compact {
    min-height: 120px;
}

.site-main--front .t1631-section--front-form .t1631-input::placeholder {
    color: #888780;
    opacity: 1;
}

.site-main--front .t1631-section--front-form .t1631-input:focus,
.site-main--front .t1631-section--front-form .t1631-input:focus-visible {
    outline: none;
    border-color: #0f6e56;
    box-shadow: 0 0 0 3px rgba(15, 110, 86, 0.08);
}

.site-main--front .t1631-section--front-form input[type="file"].t1631-input {
    height: auto;
    min-height: 56px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    border: 1px solid #d6d0c4;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: none;
    color: #5f5c55;
    font-size: 15px;
}

.site-main--front .t1631-section--front-form input[type="file"].t1631-input::file-selector-button {
    margin-right: 12px;
    height: 38px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 12px;
    border: 1px solid #d6d0c4;
    background: #fbfaf7;
    font: inherit;
    font-size: 15px;
    cursor: pointer;
}

.site-main--front .t1631-section--front-form input[type="file"].t1631-input::-webkit-file-upload-button {
    margin-right: 12px;
    height: 38px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 12px;
    border: 1px solid #d6d0c4;
    background: #fbfaf7;
    font-size: 15px;
    font: inherit;
    cursor: pointer;
}

.site-main--front .t1631-section--front-form .t1631-check {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
    color: #5f5c55;
}

.site-main--front .t1631-section--front-form .t1631-check input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #0f6e56;
}

.site-main--front .t1631-section--front-form .t1631-check a {
    color: #4b5f7a;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-main--front .t1631-section--front-form .t1631-btn[type="submit"] {
    box-sizing: border-box;
    width: 100%;
    height: 54px;
    margin-top: 22px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 17px;
    background: #162338;
    border: 1px solid #162338;
    color: #ffffff;
    box-shadow: none;
}

@media (min-width: 1024px) {
    .site-main--front .t1631-section--front-form .t1631-btn[type="submit"] {
        height: 58px;
        font-size: 18px;
    }
}

.site-main--front .t1631-section--front-form .t1631-btn[type="submit"]:hover {
    filter: none;
    background: #1b2a42;
    border-color: #1b2a42;
}

.site-main--front .t1631-section--front-form .t1631-btn[type="submit"]:active {
    background: #142033;
    border-color: #142033;
}

/* --- Главная: brief-форма по шагам (только .t1631-form--brief-wizard) --- */
.site-main--front .t1631-section--front-form .t1631-form--brief-wizard:not(.t1631-form--brief-wizard--js) .t1631-brief-wizard__progress,
.site-main--front .t1631-section--front-form .t1631-form--brief-wizard:not(.t1631-form--brief-wizard--js) .t1631-brief-wizard__nav {
    display: none;
}

.site-main--front .t1631-section--front-form .t1631-form--brief-wizard:not(.t1631-form--brief-wizard--js) .t1631-brief-step + .t1631-brief-step {
    margin-top: 1.5rem;
}

.site-main--front .t1631-section--front-form .t1631-form--brief-wizard--js.t1631-form--wizard-init .t1631-brief-wizard__progress {
    display: block;
    margin-bottom: 22px;
}

.site-main--front .t1631-section--front-form .t1631-form--brief-wizard--js.t1631-form--wizard-init .t1631-brief-step {
    display: none;
}

.site-main--front .t1631-section--front-form .t1631-form--brief-wizard--js.t1631-form--wizard-init .t1631-brief-step.is-active {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
}

.site-main--front .t1631-section--front-form .t1631-brief-wizard__progress-label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #5f5c55;
    letter-spacing: 0.02em;
}

.site-main--front .t1631-section--front-form .t1631-brief-wizard__progress-track {
    height: 4px;
    border-radius: 999px;
    background: #e8e4dc;
    overflow: hidden;
}

.site-main--front .t1631-section--front-form .t1631-brief-wizard__progress-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: #0f6e56;
    width: 20%;
}

.site-main--front .t1631-section--front-form .t1631-brief-step__title {
    margin: 0 0 8px;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    color: #1a1a18;
}

@media (min-width: 1024px) {
    .site-main--front .t1631-section--front-form .t1631-brief-step__title {
        font-size: 1.2rem;
    }
}

.site-main--front .t1631-section--front-form .t1631-brief-step__hint {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.55;
    color: #5f5c55;
}

.site-main--front .t1631-section--front-form .t1631-brief-step .t1631-field {
    margin-top: 0;
}

.site-main--front .t1631-section--front-form .t1631-brief-step .t1631-field + .t1631-field,
.site-main--front .t1631-section--front-form .t1631-brief-step .t1631-field + .t1631-check {
    margin-top: 18px;
}

@media (min-width: 1024px) {
    .site-main--front .t1631-section--front-form .t1631-brief-step .t1631-field + .t1631-field,
    .site-main--front .t1631-section--front-form .t1631-brief-step .t1631-field + .t1631-check {
        margin-top: 20px;
    }
}

.site-main--front .t1631-section--front-form .t1631-form--brief-wizard--js textarea.t1631-input--brief-wizard {
    min-height: 132px;
}

@media (max-width: 639px) {
    .site-main--front .t1631-section--front-form .t1631-form--brief-wizard--js textarea.t1631-input--brief-wizard {
        min-height: 120px;
    }
}

.site-main--front .t1631-section--front-form .t1631-brief-wizard__error {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.45;
    color: #6b5344;
}

.site-main--front .t1631-section--front-form .t1631-brief-wizard__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
}

.site-main--front .t1631-section--front-form .t1631-brief-wizard__nav--end {
    justify-content: flex-end;
}

.site-main--front .t1631-section--front-form .t1631-brief-wizard__btn {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 14px;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    border: 1px solid #d6d0c4;
    background: #ffffff;
    color: #1a1a18;
}

.site-main--front .t1631-section--front-form .t1631-brief-wizard__btn--back {
    background: #fbfaf7;
    color: #1a1a18;
}

.site-main--front .t1631-section--front-form .t1631-brief-wizard__btn--next {
    background: #f0ede6;
    border-color: #cec7bb;
    color: #1a1a18;
}

.site-main--front .t1631-section--front-form .t1631-brief-wizard__btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.site-main--front .t1631-section--front-form .t1631-brief-wizard__btn:focus-visible {
    outline: 2px solid rgba(15, 110, 86, 0.35);
    outline-offset: 2px;
}

.site-main--front .t1631-section--front-form .t1631-brief-wizard__nav .t1631-btn[type="submit"] {
    margin-top: 0;
    width: auto;
    min-width: 10rem;
    flex: 1 1 auto;
}

/* =============================================================================
   Страница «Налоговый аудит» — advisory palette (только .t1631-audit-page)
   ============================================================================= */

.t1631-audit-page {
    --audit-page-bg: #f8f8f6;
    --audit-bg-soft: #f3f1ec;
    --audit-surface: #ffffff;
    --audit-surface-2: #fbfaf7;
    --audit-text: #1a1a18;
    --audit-text-sec: #5f5c55;
    --audit-text-muted: #888780;
    --audit-border: #e3ded3;
    --audit-border-strong: #d6d0c4;
    --audit-accent: #0f6e56;
    --audit-accent-hover: #0a5040;
    --audit-accent-soft: #f0f7f4;
    --audit-hero-dark: #1a1a18;
    --audit-hero-dark-2: #22211d;
    --audit-shadow-soft: 0 8px 24px rgba(26, 26, 24, 0.04);
    --audit-shadow-medium: 0 12px 32px rgba(26, 26, 24, 0.05);

    background-color: var(--audit-page-bg);
    color: var(--audit-text);
}

.t1631-audit-page .t1631-audit-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 16px;
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-container {
        padding-inline: 24px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-container {
        padding-inline: 32px;
    }
}

.t1631-audit-page .t1631-section,
.t1631-audit-page .t1631-audit-hero {
    padding-block: 56px;
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-section,
    .t1631-audit-page .t1631-audit-hero {
        padding-block: 72px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-section,
    .t1631-audit-page .t1631-audit-hero {
        padding-block: 96px;
    }
}

.t1631-audit-page .t1631-section--alt {
    background: var(--audit-bg-soft);
    border-block-color: var(--audit-border);
}

.t1631-audit-page .t1631-section__title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--audit-text);
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-section__title {
        font-size: 32px;
        margin-bottom: 24px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-section__title {
        font-size: 40px;
        margin-bottom: 28px;
    }
}

.t1631-audit-page .t1631-card__title {
    margin-top: 0;
    font-size: 19px;
    line-height: 1.22;
    font-weight: 600;
    color: var(--audit-text);
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-card__title {
        font-size: 21px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-card__title {
        font-size: 24px;
    }
}

.t1631-audit-page .t1631-card p,
.t1631-audit-page .t1631-section__lead {
    font-size: 16px;
    line-height: 1.72;
    color: var(--audit-text);
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-card p,
    .t1631-audit-page .t1631-section__lead {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-card p,
    .t1631-audit-page .t1631-section__lead {
        font-size: 18px;
    }
}

.t1631-audit-page .t1631-section__lead {
    color: var(--audit-text-sec);
}

/* --- Hero --- */
.t1631-audit-page .t1631-audit-hero.t1631-hero {
    padding-block: 56px;
    background: var(--audit-hero-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-hero.t1631-hero {
        padding-block: 72px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-hero.t1631-hero {
        padding-block: 96px;
    }
}

.t1631-audit-page .t1631-audit-hero .t1631-breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.45);
}

.t1631-audit-page .t1631-audit-hero .t1631-breadcrumbs a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
}

.t1631-audit-page .t1631-audit-hero .t1631-breadcrumbs a:hover {
    color: rgba(255, 255, 255, 0.82);
}

.t1631-audit-page .t1631-audit-hero .t1631-breadcrumbs span:last-child {
    color: rgba(255, 255, 255, 0.5);
}

.t1631-audit-page .t1631-audit-hero__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
        gap: 3rem;
    }
}

.t1631-audit-page .t1631-audit-hero__copy {
    max-width: 44rem;
}

.t1631-audit-page .t1631-audit-hero .t1631-hero__title {
    max-width: 700px;
    margin-bottom: 1rem;
    font-size: 34px;
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #fbfaf7;
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-hero .t1631-hero__title {
        font-size: 46px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-hero .t1631-hero__title {
        font-size: 60px;
    }
}

.t1631-audit-page .t1631-audit-hero .t1631-hero__lead {
    max-width: 700px;
    margin-bottom: 1.75rem;
    font-size: 16px;
    line-height: 1.72;
    font-weight: 400;
    color: rgba(251, 250, 247, 0.82);
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-hero .t1631-hero__lead {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-hero .t1631-hero__lead {
        font-size: 18px;
    }
}

.t1631-audit-page .t1631-audit-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0.75rem;
}

@media (max-width: 639px) {
    .t1631-audit-page .t1631-audit-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .t1631-audit-page .t1631-audit-hero__actions .t1631-btn {
        width: 100%;
        justify-content: center;
    }
}

.t1631-audit-page .t1631-audit-hero__actions .t1631-btn {
    min-height: 54px;
    padding: 0 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: none;
}

.t1631-audit-page .t1631-audit-hero__actions .t1631-btn:not(.t1631-btn--ghost) {
    background: var(--audit-accent);
    border-color: var(--audit-accent);
    color: #fff;
}

.t1631-audit-page .t1631-audit-hero__actions .t1631-btn:not(.t1631-btn--ghost):hover {
    background: var(--audit-accent-hover);
    border-color: var(--audit-accent-hover);
    filter: none;
}

.t1631-audit-page .t1631-audit-hero__actions .t1631-btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(251, 250, 247, 0.92);
}

.t1631-audit-page .t1631-audit-hero__actions .t1631-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
}

.t1631-audit-page .t1631-audit-hero__trust {
    margin: 0;
    max-width: 40rem;
    padding: 0;
    border: none;
    background: none;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.74);
}

.t1631-audit-page .t1631-audit-hero__viz {
    position: relative;
    min-height: 200px;
}

@media (max-width: 1023px) {
    .t1631-audit-page .t1631-audit-hero__viz {
        min-height: 160px;
        max-width: 320px;
        margin-inline: auto;
    }
}

.t1631-audit-page .t1631-audit-hero__composition {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.t1631-audit-page .t1631-audit-hero__layer {
    position: absolute;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 2px;
    pointer-events: none;
}

.t1631-audit-page .t1631-audit-hero__layer--a {
    inset: 6% 18% 32% 4%;
    background: rgba(34, 33, 29, 0.35);
}

.t1631-audit-page .t1631-audit-hero__layer--b {
    inset: 28% 8% 24% 32%;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.t1631-audit-page .t1631-audit-hero__layer--c {
    inset: 52% 22% 10% 14%;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

/* --- Что входит --- */
.t1631-audit-page .t1631-audit-includes {
    background: var(--audit-page-bg);
}

.t1631-audit-page .t1631-audit-includes__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .t1631-audit-page .t1631-audit-includes__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .t1631-audit-page .t1631-audit-item:nth-child(1) {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-includes__grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 1.25rem 1.25rem;
    }

    .t1631-audit-page .t1631-audit-item:nth-child(1) {
        grid-column: span 7;
    }

    .t1631-audit-page .t1631-audit-item:nth-child(2) {
        grid-column: span 5;
    }

    .t1631-audit-page .t1631-audit-item:nth-child(3),
    .t1631-audit-page .t1631-audit-item:nth-child(4),
    .t1631-audit-page .t1631-audit-item:nth-child(5) {
        grid-column: span 4;
    }
}

.t1631-audit-page .t1631-audit-item {
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 18px;
    border: 1px solid var(--audit-border);
    background: var(--audit-surface);
    box-shadow: var(--audit-shadow-soft);
    padding: 1.5rem 1.5rem 1.65rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-item--tier-primary {
        padding: 2rem 2rem 2.1rem;
        border-radius: 24px;
    }

    .t1631-audit-page .t1631-audit-item:not(.t1631-audit-item--tier-primary) {
        padding: 1.35rem 1.35rem 1.5rem;
    }
}

.t1631-audit-page .t1631-audit-item__meta {
    display: block;
    margin-bottom: 0.65rem;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--audit-text-muted);
}

.t1631-audit-page .t1631-audit-item .t1631-card__title {
    margin-bottom: 0.75rem;
}

.t1631-audit-page .t1631-audit-item--tier-primary {
    background: var(--audit-surface);
    border-color: var(--audit-border-strong);
    box-shadow: var(--audit-shadow-medium);
}

.t1631-audit-page .t1631-audit-item--tier-primary .t1631-card__title {
    font-size: 21px;
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-item--tier-primary .t1631-card__title {
        font-size: 24px;
    }
}

.t1631-audit-page .t1631-audit-item--tier-secondary {
    background: var(--audit-surface-2);
    border-color: var(--audit-border);
    box-shadow: none;
}

.t1631-audit-page .t1631-audit-item:hover {
    border-color: var(--audit-border-strong);
    box-shadow: var(--audit-shadow-soft);
}

.t1631-audit-page .t1631-audit-item--tier-primary:hover {
    box-shadow: var(--audit-shadow-medium);
}

/* --- Процесс --- */
.t1631-audit-page .t1631-audit-process__shell {
    margin-top: 0;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    border: 1px solid var(--audit-border);
    background: var(--audit-surface);
    box-shadow: var(--audit-shadow-soft);
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-process__shell {
        padding: 2.25rem 2rem;
    }
}

.t1631-audit-page .t1631-audit-process__steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
    counter-reset: t1631auditstep;
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-process__steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 1.75rem;
    }
}

.t1631-audit-page .t1631-audit-process__step {
    position: relative;
    margin: 0;
    padding: 1.25rem 1.1rem;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    counter-increment: t1631auditstep;
}

@media (max-width: 1023px) {
    .t1631-audit-page .t1631-audit-process__step {
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--audit-border);
    }

    .t1631-audit-page .t1631-audit-process__step:last-child {
        border-bottom: none;
    }
}

.t1631-audit-page .t1631-audit-process__step::before {
    content: "0" counter(t1631auditstep);
    display: block;
    margin-bottom: 0.65rem;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    color: rgba(15, 110, 86, 0.35);
}

.t1631-audit-page .t1631-audit-process__step-title {
    margin: 0 0 0.5rem;
    font-size: 19px;
    line-height: 1.22;
    font-weight: 600;
    color: var(--audit-text);
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-process__step-title {
        font-size: 21px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-process__step-title {
        font-size: 24px;
    }
}

.t1631-audit-page .t1631-audit-process__step p {
    margin: 0;
    font-size: 16px;
    line-height: 1.72;
    color: var(--audit-text-sec);
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-process__step p {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-process__step p {
        font-size: 18px;
    }
}

/* --- Калькулятор --- */
.t1631-audit-page .t1631-audit-calc {
    background: var(--audit-bg-soft);
    border-block: 1px solid var(--audit-border);
}

.t1631-audit-page .t1631-audit-calc-card {
    border-radius: 24px;
    border: 1px solid var(--audit-border);
    background: var(--audit-surface);
    box-shadow: var(--audit-shadow-soft);
    padding: 1.5rem 1.35rem 1.75rem;
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-calc-card {
        padding: 2rem 2rem 2.1rem;
    }
}

.t1631-audit-page .t1631-audit-calc-card .t1631-section__title {
    margin-bottom: 12px;
}

.t1631-audit-page .t1631-audit-calc-card .t1631-section__lead {
    margin-bottom: 1.5rem;
}

.t1631-audit-page .t1631-audit-calc__inner.t1631-audit-calc__workspace {
    margin-top: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-calc__inner.t1631-audit-calc__workspace {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: stretch;
    }
}

.t1631-audit-page .t1631-audit-calc__inputs-col {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.t1631-audit-page .t1631-audit-calc__workspace .t1631-field {
    margin: 0;
}

.t1631-audit-page .t1631-audit-calc__workspace .t1631-field__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--audit-text-sec);
    margin-bottom: 0.4rem;
}

.t1631-audit-page .t1631-audit-calc__workspace .t1631-input {
    min-height: 52px;
    border-radius: 10px;
    font-size: 16px;
    font-variant-numeric: tabular-nums;
    border: 1px solid var(--audit-border-strong);
    background: var(--audit-surface);
    color: var(--audit-text);
    box-shadow: none;
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-calc__workspace .t1631-input {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-calc__workspace .t1631-input {
        font-size: 18px;
    }
}

.t1631-audit-page .t1631-audit-calc__workspace .t1631-input:focus-visible {
    outline: 2px solid rgba(15, 110, 86, 0.35);
    outline-offset: 2px;
    border-color: var(--audit-accent);
}

.t1631-audit-page .t1631-audit-calc__output {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.t1631-audit-page .t1631-audit-calc__output.t1631-audit-calc__output--hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.35rem;
    border-radius: 18px;
    border: 1px solid #2a302c;
    background: #1e2420;
    box-shadow: var(--audit-shadow-soft);
}

.t1631-audit-page .t1631-audit-calc__output--hero .t1631-audit-calc__output-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(251, 250, 247, 0.55);
}

.t1631-audit-page .t1631-audit-calc__output--hero .t1631-audit-calc__output-value {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fbfaf7;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-calc__output--hero .t1631-audit-calc__output-value {
        font-size: 1.85rem;
    }
}

.t1631-audit-page .t1631-audit-calc__output--hero .t1631-audit-calc__output-value strong {
    font-weight: inherit;
    color: inherit;
}

.t1631-audit-page .t1631-audit-calc-disclaimer {
    margin: 1.25rem 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--audit-text-muted);
    max-width: 42rem;
}

/* --- Формат и стоимость --- */
.t1631-audit-page .t1631-audit-pricing__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .t1631-audit-page .t1631-audit-pricing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        align-items: stretch;
    }
}

.t1631-audit-page .t1631-audit-price {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--audit-border);
    background: var(--audit-surface);
    box-shadow: var(--audit-shadow-soft);
    min-height: 100%;
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-price {
        padding: 2rem 2rem 2.1rem;
    }
}

.t1631-audit-page .t1631-audit-price--primary {
    border-color: var(--audit-border-strong);
    background: var(--audit-surface-2);
    box-shadow: var(--audit-shadow-medium);
}

.t1631-audit-page .t1631-audit-price--primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
    background: var(--audit-accent);
}

.t1631-audit-page .t1631-audit-price--primary .t1631-card__title {
    margin-top: 0.35rem;
    color: var(--audit-text);
}

.t1631-audit-page .t1631-audit-price--secondary {
    background: var(--audit-surface);
    border-color: var(--audit-border);
    box-shadow: none;
}

.t1631-audit-page .t1631-audit-price__line {
    margin: 0 0 0.75rem;
    font-size: 16px;
    line-height: 1.72;
    color: var(--audit-text-sec);
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-price__line {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-price__line {
        font-size: 18px;
    }
}

.t1631-audit-page .t1631-audit-price__line strong {
    color: var(--audit-text);
    font-weight: 600;
}

.t1631-audit-page .t1631-audit-price__list {
    margin: auto 0 0;
    padding: 1rem 0 0;
    list-style: none;
    border-top: 1px solid var(--audit-border);
}

.t1631-audit-page .t1631-audit-price__list li {
    position: relative;
    padding-left: 1.35rem;
    margin-top: 0.65rem;
    font-size: 16px;
    line-height: 1.65;
    color: var(--audit-text);
    font-weight: 500;
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-price__list li {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-price__list li {
        font-size: 18px;
    }
}

.t1631-audit-page .t1631-audit-price__list li:first-child {
    margin-top: 0;
}

.t1631-audit-page .t1631-audit-price__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 1px;
    background: var(--audit-accent);
    opacity: 0.7;
}

/* --- Форма заявки --- */
.t1631-audit-page .t1631-audit-form-frame {
    padding-bottom: 56px;
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-form-frame {
        padding-bottom: 72px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-form-frame {
        padding-bottom: 96px;
    }
}

.t1631-audit-page .t1631-audit-form-frame--closing {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    background: var(--audit-bg-soft);
    border-top: 1px solid var(--audit-border);
}

.t1631-audit-page .t1631-audit-form-frame #audit-request {
    background: transparent;
    border-block: none;
}

.t1631-audit-page .t1631-audit-form-frame #audit-request .container--narrow {
    max-width: 720px;
    margin-inline: auto;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    border: 1px solid var(--audit-border);
    background: var(--audit-surface);
    box-shadow: var(--audit-shadow-soft);
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-form-frame #audit-request .container--narrow {
        padding: 2.5rem 2.75rem 2.75rem;
    }
}

.t1631-audit-page .t1631-audit-form-frame #audit-request .t1631-section__title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
    color: var(--audit-text);
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-form-frame #audit-request .t1631-section__title {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-form-frame #audit-request .t1631-section__title {
        font-size: 40px;
    }
}

.t1631-audit-page .t1631-audit-form-frame #audit-request .t1631-section__lead {
    margin-bottom: 1.75rem;
    color: var(--audit-text-sec);
    line-height: 1.72;
}

.t1631-audit-page .t1631-audit-form-frame .t1631-wizard__progress {
    height: 4px;
    border-radius: 999px;
    background: var(--audit-border);
}

.t1631-audit-page .t1631-audit-form-frame .t1631-wizard__progress-bar {
    border-radius: 999px;
    background: var(--audit-accent);
}

.t1631-audit-page .t1631-audit-form-frame .t1631-wizard__step-label {
    font-size: 13px;
    color: var(--audit-text-muted);
    letter-spacing: 0.02em;
}

.t1631-audit-page .t1631-audit-form-frame .t1631-wizard__legend {
    font-size: 18px;
    font-weight: 600;
    color: var(--audit-text);
}

.t1631-audit-page .t1631-audit-form-frame .t1631-input {
    border-radius: 10px;
    min-height: 52px;
    border-color: var(--audit-border-strong);
    background: var(--audit-surface);
    font-size: 16px;
}

@media (min-width: 640px) {
    .t1631-audit-page .t1631-audit-form-frame .t1631-input {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-audit-page .t1631-audit-form-frame .t1631-input {
        font-size: 18px;
    }
}

.t1631-audit-page .t1631-audit-form-frame textarea.t1631-input {
    min-height: 6.5rem;
}

.t1631-audit-page .t1631-audit-form-frame .t1631-input:focus-visible {
    outline: 2px solid rgba(15, 110, 86, 0.3);
    outline-offset: 2px;
    border-color: var(--audit-accent);
}

.t1631-audit-page .t1631-audit-form-frame .t1631-btn[type="submit"] {
    min-height: 56px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    background: var(--audit-accent);
    border-color: var(--audit-accent);
    color: #fff;
    box-shadow: none;
}

.t1631-audit-page .t1631-audit-form-frame .t1631-btn[type="submit"]:hover {
    background: var(--audit-accent-hover);
    border-color: var(--audit-accent-hover);
    filter: none;
}

.t1631-audit-page .t1631-audit-form-frame .t1631-btn[data-t1631-next],
.t1631-audit-page .t1631-audit-form-frame .t1631-btn[data-t1631-prev] {
    min-height: 48px;
    border-radius: 10px;
    font-weight: 600;
}

.t1631-audit-page .t1631-audit-form-frame .t1631-btn[data-t1631-next]:not(.t1631-btn--ghost),
.t1631-audit-page .t1631-audit-form-frame .t1631-btn[data-t1631-prev]:not(.t1631-btn--ghost) {
    background: var(--audit-surface);
    border: 1px solid var(--audit-border-strong);
    color: var(--audit-text);
}

.t1631-audit-page .t1631-audit-form-frame .t1631-btn[data-t1631-next]:not(.t1631-btn--ghost):hover,
.t1631-audit-page .t1631-audit-form-frame .t1631-btn[data-t1631-prev]:not(.t1631-btn--ghost):hover {
    border-color: var(--audit-accent);
    color: var(--audit-accent);
    filter: none;
}

.t1631-audit-page .t1631-audit-form-frame .t1631-field__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--audit-text-sec);
}

.t1631-audit-page .t1631-audit-form-frame .t1631-check {
    color: var(--audit-text-sec);
    font-size: 14px;
}

.t1631-audit-page .t1631-audit-form-frame .t1631-btn--ghost {
    border-color: var(--audit-border-strong);
    color: var(--audit-text-sec);
}

.t1631-audit-page .t1631-audit-form-frame .t1631-btn--ghost:hover {
    border-color: var(--audit-text-muted);
    color: var(--audit-text);
    background: var(--audit-surface-2);
}

.t1631-audit-page .t1631-audit-item--tier-secondary p {
    color: var(--audit-text-sec);
}

/* =============================================================================
   Страница «Business Navigator» (.t1631-navigator-page) — тот же язык, мягче hero
   ============================================================================= */

.t1631-navigator-page {
    --nav-page-bg: #f8f8f6;
    --nav-bg-soft: #f3f1ec;
    --nav-surface: #ffffff;
    --nav-surface-warm: #fbfaf7;
    --nav-text: #1a1a18;
    --nav-text-sec: #5f5c55;
    --nav-text-muted: #888780;
    --nav-border: #e3ded3;
    --nav-border-strong: #d6d0c4;
    --nav-accent: #0f6e56;
    --nav-accent-hover: #0a5040;
    --nav-accent-soft: #f0f7f4;
    --nav-hero-band: #2b2924;
    --nav-shadow-soft: 0 8px 24px rgba(26, 26, 24, 0.04);
    --nav-shadow-medium: 0 12px 32px rgba(26, 26, 24, 0.05);

    background-color: var(--nav-page-bg);
    color: var(--nav-text);
}

.t1631-navigator-page .t1631-navigator-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 16px;
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-container {
        padding-inline: 24px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-container {
        padding-inline: 32px;
    }
}

.t1631-navigator-page .t1631-section,
.t1631-navigator-page .t1631-navigator-hero {
    padding-block: 56px;
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-section,
    .t1631-navigator-page .t1631-navigator-hero {
        padding-block: 72px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-section,
    .t1631-navigator-page .t1631-navigator-hero {
        padding-block: 96px;
    }
}

.t1631-navigator-page .t1631-section--alt {
    background: var(--nav-bg-soft);
    border-block-color: var(--nav-border);
}

.t1631-navigator-page .t1631-section__title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--nav-text);
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-section__title {
        font-size: 32px;
        margin-bottom: 24px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-section__title {
        font-size: 40px;
        margin-bottom: 28px;
    }
}

.t1631-navigator-page .t1631-section__lead {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.72;
    color: var(--nav-text-sec);
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-section__lead {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-section__lead {
        font-size: 18px;
    }
}

/* --- Hero --- */
.t1631-navigator-page .t1631-navigator-hero.t1631-hero {
    padding-block: 56px;
    background: var(--nav-hero-band);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-hero.t1631-hero {
        padding-block: 72px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-hero.t1631-hero {
        padding-block: 96px;
    }
}

.t1631-navigator-page .t1631-navigator-hero-surface {
    border-radius: 24px;
    border: 1px solid #e3ded6;
    background: #fdfcfa;
    box-shadow: 0 4px 18px rgba(43, 41, 36, 0.07);
    padding: 1.75rem 1.35rem 2rem;
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-hero-surface {
        padding: 2.25rem 2rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-hero-surface {
        padding: 2.75rem 2.75rem 3rem;
    }
}

.t1631-navigator-page .t1631-navigator-hero__grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 300px);
        gap: 2.75rem;
    }
}

.t1631-navigator-page .t1631-navigator-hero__copy {
    max-width: 44rem;
}

.t1631-navigator-page .t1631-navigator-hero .t1631-breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    color: var(--nav-text-muted);
}

.t1631-navigator-page .t1631-navigator-hero .t1631-breadcrumbs a {
    color: var(--nav-text-sec);
    text-decoration: none;
}

.t1631-navigator-page .t1631-navigator-hero .t1631-breadcrumbs a:hover {
    color: var(--nav-accent);
}

.t1631-navigator-page .t1631-navigator-hero .t1631-breadcrumbs span:last-child {
    color: var(--nav-text-muted);
}

.t1631-navigator-page .t1631-navigator-hero .t1631-hero__title {
    max-width: 720px;
    margin-bottom: 1rem;
    font-size: 34px;
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--nav-text);
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-hero .t1631-hero__title {
        font-size: 46px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-hero .t1631-hero__title {
        font-size: 60px;
    }
}

.t1631-navigator-page .t1631-navigator-hero .t1631-hero__lead {
    max-width: 40rem;
    margin-bottom: 1.65rem;
    font-size: 16px;
    line-height: 1.72;
    color: var(--nav-text-sec);
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-hero .t1631-hero__lead {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-hero .t1631-hero__lead {
        font-size: 18px;
    }
}

.t1631-navigator-page .t1631-navigator-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0.45rem;
}

@media (max-width: 639px) {
    .t1631-navigator-page .t1631-navigator-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .t1631-navigator-page .t1631-navigator-hero__actions .t1631-btn {
        width: 100%;
        justify-content: center;
    }
}

.t1631-navigator-page .t1631-navigator-hero__actions .t1631-btn {
    min-height: 54px;
    padding: 0 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: none;
}

.t1631-navigator-page .t1631-navigator-hero__actions .t1631-btn:not(.t1631-btn--ghost) {
    background: var(--nav-accent);
    border-color: var(--nav-accent);
    color: #fff;
}

.t1631-navigator-page .t1631-navigator-hero__actions .t1631-btn:not(.t1631-btn--ghost):hover {
    background: var(--nav-accent-hover);
    border-color: var(--nav-accent-hover);
    filter: none;
}

.t1631-navigator-page .t1631-navigator-hero__actions .t1631-btn--ghost {
    background: var(--nav-surface);
    border: 1px solid var(--nav-border-strong);
    color: var(--nav-text-sec);
}

.t1631-navigator-page .t1631-navigator-hero__actions .t1631-btn--ghost:hover {
    border-color: var(--nav-accent);
    color: var(--nav-accent);
    background: var(--nav-accent-soft);
}

.t1631-navigator-page .t1631-navigator-hero__trust {
    margin: 0;
    max-width: 34rem;
    font-size: 13px;
    line-height: 1.45;
    color: #9c9a94;
}

.t1631-navigator-page .t1631-navigator-hero__viz {
    position: relative;
    min-height: 150px;
    opacity: 0.66;
}

@media (max-width: 1023px) {
    .t1631-navigator-page .t1631-navigator-hero__viz {
        min-height: 132px;
        max-width: 260px;
        margin-inline: auto;
    }
}

.t1631-navigator-page .t1631-navigator-hero__map {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: grid;
    place-items: center;
}

.t1631-navigator-page .t1631-navigator-hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(15, 110, 86, 0.09);
    pointer-events: none;
}

.t1631-navigator-page .t1631-navigator-hero__ring--a {
    width: 88%;
    aspect-ratio: 1;
    max-width: 260px;
    border-color: rgba(15, 110, 86, 0.08);
    background: rgba(240, 247, 244, 0.16);
}

.t1631-navigator-page .t1631-navigator-hero__ring--b {
    width: 64%;
    aspect-ratio: 1;
    max-width: 190px;
    border-color: rgba(43, 41, 36, 0.08);
}

.t1631-navigator-page .t1631-navigator-hero__ring--c {
    width: 38%;
    aspect-ratio: 1;
    max-width: 112px;
    border-color: rgba(15, 110, 86, 0.1);
    background: rgba(255, 255, 255, 0.2);
}

/* --- Это для вас, если --- */
.t1631-navigator-page .t1631-navigator-fit.t1631-section {
    padding-block: 52px;
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-fit.t1631-section {
        padding-block: 68px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-fit.t1631-section {
        padding-block: 84px;
    }
}

.t1631-navigator-page .t1631-navigator-fit {
    background: var(--nav-page-bg);
}

.t1631-navigator-page .t1631-navigator-fit .t1631-section__title {
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-fit .t1631-section__title {
        margin-bottom: 28px;
    }
}

.t1631-navigator-page .t1631-navigator-fit__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-fit__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .t1631-navigator-page .t1631-navigator-fit__item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-fit__grid {
        gap: 20px;
    }
}

.t1631-navigator-page .t1631-navigator-fit__item {
    position: relative;
    box-sizing: border-box;
    align-self: stretch;
    min-height: 80px;
    padding: 20px 22px 20px 34px;
    border-radius: 20px;
    border: 1px solid #d6d0c4;
    background: #fbfaf7;
    box-shadow: none;
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-fit__item {
        min-height: 88px;
        padding: 24px 32px 24px 40px;
        border-radius: 24px;
    }
}

.t1631-navigator-page .t1631-navigator-fit__accent {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 32px;
    border-radius: 999px;
    background: rgba(15, 110, 86, 0.45);
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-fit__accent {
        left: 20px;
        height: 36px;
    }
}

.t1631-navigator-page .t1631-navigator-fit__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #1a1a18;
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-fit__text {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-fit__text {
        font-size: 18px;
    }
}

/* --- Пять блоков --- */
.t1631-navigator-page .t1631-navigator-blocks__grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-blocks__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-blocks__grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .t1631-navigator-page .t1631-navigator-block:nth-child(1) {
        grid-column: span 7;
    }

    .t1631-navigator-page .t1631-navigator-block:nth-child(2) {
        grid-column: span 5;
    }

    .t1631-navigator-page .t1631-navigator-block:nth-child(3),
    .t1631-navigator-page .t1631-navigator-block:nth-child(4),
    .t1631-navigator-page .t1631-navigator-block:nth-child(5) {
        grid-column: span 4;
    }
}

.t1631-navigator-page .t1631-navigator-block {
    position: relative;
    margin: 0;
    padding: 1.35rem 1.25rem 1.5rem;
    border-radius: 18px;
    border: 1px solid var(--nav-border);
    background: var(--nav-surface);
    box-shadow: var(--nav-shadow-soft);
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-block--lead {
        padding: 1.75rem 1.75rem 1.85rem;
        border-radius: 24px;
        border-color: var(--nav-border-strong);
        box-shadow: var(--nav-shadow-medium);
    }
}

.t1631-navigator-page .t1631-navigator-block__meta {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nav-text-muted);
}

.t1631-navigator-page .t1631-navigator-block .t1631-card__title {
    margin-bottom: 0.6rem;
    font-size: 19px;
    line-height: 1.22;
    font-weight: 600;
    color: var(--nav-text);
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-block .t1631-card__title {
        font-size: 21px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-block .t1631-card__title {
        font-size: 24px;
    }
}

.t1631-navigator-page .t1631-navigator-block--lead .t1631-card__title {
    font-size: 21px;
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-block--lead .t1631-card__title {
        font-size: 24px;
    }
}

.t1631-navigator-page .t1631-navigator-block p {
    margin: 0;
    font-size: 16px;
    line-height: 1.72;
    color: var(--nav-text-sec);
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-block p {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-block p {
        font-size: 18px;
    }
}

/* --- Что вы получаете --- */
.t1631-navigator-page .t1631-navigator-outcome {
    background: var(--nav-page-bg);
}

.t1631-navigator-page .t1631-navigator-outcome__surface {
    padding: 1.5rem 1.25rem;
    border-radius: 24px;
    border: 1px solid var(--nav-border);
    background: var(--nav-surface);
    box-shadow: var(--nav-shadow-soft);
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-outcome__surface {
        padding: 2rem 2rem 2.1rem;
    }
}

.t1631-navigator-page .t1631-navigator-outcome__item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--nav-border);
}

.t1631-navigator-page .t1631-navigator-outcome__item:first-child {
    padding-top: 0;
}

.t1631-navigator-page .t1631-navigator-outcome__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.t1631-navigator-page .t1631-navigator-outcome__mark {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 0.55rem;
    border-radius: 1px;
    background: var(--nav-accent);
    opacity: 0.65;
}

.t1631-navigator-page .t1631-navigator-outcome__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.72;
    color: var(--nav-text);
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-outcome__text {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-outcome__text {
        font-size: 18px;
    }
}

/* --- Цена и формат --- */
.t1631-navigator-page .t1631-navigator-price .t1631-section__title {
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-price .t1631-section__title {
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-price .t1631-section__title {
        margin-bottom: 28px;
    }
}

.t1631-navigator-page .t1631-navigator-price__layout {
    width: 100%;
    max-width: none;
}

.t1631-navigator-page .t1631-navigator-price__card {
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    padding: 22px 20px 24px;
    border-radius: 24px;
    border: 1px solid #d6d0c4;
    background: #fbfaf7;
    box-shadow: none;
    overflow: hidden;
    position: relative;
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-price__card {
        max-width: 780px;
        padding: 28px 32px 30px;
    }
}

.t1631-navigator-page .t1631-navigator-price__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #0f6e56;
}

.t1631-navigator-page .t1631-navigator-price__lead {
    margin-top: 0;
    margin-bottom: 0;
    color: #5f5c55;
    line-height: 1.7;
    font-size: 16px;
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-price__lead {
        font-size: 18px;
    }
}

.t1631-navigator-page .t1631-navigator-price__amount {
    margin: 20px 0 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #5f5c55;
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-price__amount {
        font-size: 18px;
    }
}

.t1631-navigator-page .t1631-navigator-price__amount strong {
    color: #1a1a18;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.15;
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-price__amount strong {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-price__amount strong {
        font-size: 34px;
    }
}

/* --- Форма --- */
.t1631-navigator-page .t1631-navigator-form-frame {
    padding-bottom: 56px;
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-form-frame {
        padding-bottom: 72px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-form-frame {
        padding-bottom: 96px;
    }
}

.t1631-navigator-page .t1631-navigator-form-frame--closing {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    background: var(--nav-bg-soft);
    border-top: 1px solid var(--nav-border);
}

.t1631-navigator-page .t1631-navigator-form-frame #navigator-request.t1631-section {
    padding-block: 0;
    margin: 0;
    background: transparent;
    border-block: none;
}

.t1631-navigator-page .t1631-navigator-form-frame #navigator-request .container--narrow {
    max-width: 720px;
    margin-inline: auto;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    border: 1px solid var(--nav-border);
    background: var(--nav-surface);
    box-shadow: var(--nav-shadow-soft);
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-form-frame #navigator-request .container--narrow {
        padding: 2.5rem 2.75rem 2.75rem;
    }
}

.t1631-navigator-page .t1631-navigator-form-frame #navigator-request .t1631-section__title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
    color: var(--nav-text);
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-form-frame #navigator-request .t1631-section__title {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-form-frame #navigator-request .t1631-section__title {
        font-size: 40px;
    }
}

.t1631-navigator-page .t1631-navigator-form-frame #navigator-request .t1631-section__lead {
    margin-bottom: 1.75rem;
    color: var(--nav-text-sec);
    line-height: 1.72;
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-wizard__progress {
    height: 4px;
    border-radius: 999px;
    background: var(--nav-border);
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-wizard__progress-bar {
    border-radius: 999px;
    background: var(--nav-accent);
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-wizard__step-label {
    font-size: 13px;
    color: var(--nav-text-muted);
    letter-spacing: 0.02em;
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-wizard__legend {
    font-size: 18px;
    font-weight: 600;
    color: var(--nav-text);
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-input {
    border-radius: 10px;
    min-height: 52px;
    border-color: var(--nav-border-strong);
    background: var(--nav-surface);
    font-size: 16px;
}

@media (min-width: 640px) {
    .t1631-navigator-page .t1631-navigator-form-frame .t1631-input {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .t1631-navigator-page .t1631-navigator-form-frame .t1631-input {
        font-size: 18px;
    }
}

.t1631-navigator-page .t1631-navigator-form-frame textarea.t1631-input {
    min-height: 6.5rem;
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-input:focus-visible {
    outline: 2px solid rgba(15, 110, 86, 0.3);
    outline-offset: 2px;
    border-color: var(--nav-accent);
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-field__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--nav-text-sec);
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-check {
    color: var(--nav-text-sec);
    font-size: 14px;
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-btn[type="submit"] {
    min-height: 56px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    background: var(--nav-accent);
    border-color: var(--nav-accent);
    color: #fff;
    box-shadow: none;
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-btn[type="submit"]:hover {
    background: var(--nav-accent-hover);
    border-color: var(--nav-accent-hover);
    filter: none;
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-btn[data-t1631-next],
.t1631-navigator-page .t1631-navigator-form-frame .t1631-btn[data-t1631-prev] {
    min-height: 48px;
    border-radius: 10px;
    font-weight: 600;
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-btn[data-t1631-next]:not(.t1631-btn--ghost),
.t1631-navigator-page .t1631-navigator-form-frame .t1631-btn[data-t1631-prev]:not(.t1631-btn--ghost) {
    background: var(--nav-surface);
    border: 1px solid var(--nav-border-strong);
    color: var(--nav-text);
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-btn[data-t1631-next]:not(.t1631-btn--ghost):hover,
.t1631-navigator-page .t1631-navigator-form-frame .t1631-btn[data-t1631-prev]:not(.t1631-btn--ghost):hover {
    border-color: var(--nav-accent);
    color: var(--nav-accent);
    filter: none;
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-btn--ghost {
    border-color: var(--nav-border-strong);
    color: var(--nav-text-sec);
}

.t1631-navigator-page .t1631-navigator-form-frame .t1631-btn--ghost:hover {
    border-color: var(--nav-text-muted);
    color: var(--nav-text);
    background: var(--nav-surface-warm);
}

/* SEO Sprint 1: вспомогательные блоки без смены визуальной системы */
.t1631-hero__brandline {
    margin: 0 0 var(--space-sm);
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
}

.t1631-seo-block__body p,
.t1631-seo-block__list {
    max-width: 42rem;
    color: var(--color-text-muted);
}

.t1631-seo-block__body p + p {
    margin-top: var(--space-md);
}

.t1631-seo-block__list {
    margin: 0;
    padding-left: 1.15rem;
}

.t1631-seo-block__list li + li {
    margin-top: var(--space-sm);
}

.t1631-seo-faq__item + .t1631-seo-faq__item {
    margin-top: var(--space-lg);
}

.t1631-seo-faq__item h3 {
    margin: 0 0 var(--space-xs);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.t1631-seo-faq__item p {
    margin: 0;
    color: var(--color-text-muted);
}


.t1631-hero--compact .t1631-hero__lead {
    margin-bottom: var(--space-sm);
}

/* ========================================
   Блок «С чем к нам обращаются» — карточки
   ======================================== */

.site-main--front .t1631-appeals .t1631-section__title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.t1631-appeals-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.t1631-appeal-card {
    margin: 0;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.t1631-appeal-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1);
}

.t1631-appeal-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.t1631-appeal-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

.t1631-appeal-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.t1631-appeal-card a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.t1631-appeal-card a:hover {
    border-bottom-color: var(--color-accent);
}

@media (max-width: 1024px) {
    .t1631-appeals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .t1631-appeals-grid {
        grid-template-columns: 1fr;
    }
}

/* --- О компании: блок команды (ТЗ 7tz) --- */
.t1631-team {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.t1631-team h2 {
    margin-bottom: var(--space-lg);
}

.t1631-team p {
    color: var(--color-text-muted);
    line-height: var(--line-height-body);
}

/* --- О компании: CTA (ТЗ апрель 2026) --- */
.t1631-about-cta {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid var(--color-border);
    margin-top: 60px;
}

.t1631-about-cta h2 {
    margin-bottom: 16px;
}

.t1631-about-cta p {
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.t1631-about-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Главная: цены продуктов, пояснение контура формы, контакт в футере (ТЗ апрель 2026) --- */
.product-price {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 0;
}

.form-contour-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    padding: 8px 12px;
    border-left: 3px solid var(--color-accent);
    background: rgba(15, 110, 86, 0.05);
}

.form-step__hint {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: var(--line-height-body);
    margin: 0 0 var(--space-md);
}

.footer-contact {
    margin: 0 0 var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-text);
}

.footer-contact a {
    color: var(--color-accent);
}

/* Админка WordPress: кнопки ревью лида (metabox) */
.t1631-lead-review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.t1631-optional {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.t1631-checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 10px 0 16px;
}

.t1631-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    cursor: pointer;
}

.t1631-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent);
    cursor: pointer;
}

.t1631-delivery-field {
    margin-top: 12px;
}

.t1631-delivery-block fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.t1631-delivery-block legend {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.t1631-maintenance-notice {
    padding: 32px;
    border: 1px solid #0F6E56;
    border-radius: 8px;
    text-align: center;
    margin: 24px 0;
}

.t1631-maintenance-title {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A18;
    margin-bottom: 8px;
}

.t1631-maintenance-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
