:root {
    --green: #2c4633;
    --green-2: #37563f;
    --green-deep: #223829;
    --brass: #b58a4a;
    --brass-light: #c9a368;
    --cream: #f5f0e6;
    --paper: #fbf8f1;
    --ink: #23241f;
    --muted: #70705f;
    --line: rgba(35, 36, 31, .12);
    --line-light: rgba(255, 255, 255, .14);
    --serif: 'Lora', Georgia, serif;
    --sans: 'Golos Text', system-ui, sans-serif;
    --radius: 4px;
    --maxw: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.01em;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

@media (max-width: 480px) {
    .wrap {
        padding: 0 16px;
    }
}

.eyebrow {
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 600;
}

.btn,
.btn_primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--brass);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 30px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: .25s;
    font-family: var(--sans);
}


.btn:hover,
.btn_primary:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 19px 38px;
    font-size: 16px;
}

.btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .45);
    color: #fff;
}

.btn-ghost:hover {
    background: #fff;
    color: var(--green);
    border-color: #fff;
}

.btn-dark {
    background: var(--green);
}

.btn-dark:hover {
    background: var(--brass);
}

.btn_primary.form-submit {
    width: 100%;
    margin-top: 6px;
}

@media (max-width: 480px) {
    .btn,
    .btn_primary {
        width: 100%;
    }
    .btn,
    .btn_primary {
        padding: 16px 20px;
    }
    .btn-lg {
        padding: 19px 20px;
    }
}

.ph {
    position: relative;
    background: linear-gradient(135deg, #cdbf9f, #b09b73 55%, #8f7a52);
    overflow: hidden;
    border-radius: var(--radius);
}

.ph::after {
    content: attr(data-label);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(35, 36, 31, .5);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    padding: 10px;
}

.ph.dark {
    background: linear-gradient(135deg, #33503b, #26402d 60%, #1c3022);
}

.ph.dark::after {
    color: rgba(255, 255, 255, .3);
}

.rv {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.rv.in {
    opacity: 1;
    transform: none;
}

.topbar {
    background: var(--green-deep);
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    gap: 18px;
}

.topbar .l,
.topbar .r {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar a:hover {
    color: #fff;
}

.topbar .dot {
    color: var(--brass-light);
}

header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--green);
    box-shadow: 0 2px 18px -8px rgba(0, 0, 0, .4);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 10px;

    width: 200px;
}

@media (max-width: 980px) {
    .logo {
        width: 160px;
    }
}
@media (max-width: 480px) {
    .logo {
        width: 120px;
    }
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
}

.logo b {
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .06em;
}

.logo span {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .05em;
}

.nav-links {
    display: flex;
    gap: 26px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .82);
}

.nav-links a:hover {
    color: var(--brass-light);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    white-space: nowrap;
}

.btn-sm {
    padding: 11px 20px;
    font-size: 13px;
}

@media (max-width: 480px) {
    .btn-sm {
        padding: 11px 12px;
        font-size: 12px;
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.hero {
    position: relative;
    background: var(--green);
    color: #fff;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
    min-height: 600px;
}

.hero-text {
    padding: 78px 60px 78px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: rgba(181, 138, 74, .18);
    border: 1px solid rgba(201, 163, 104, .5);
    color: var(--brass-light);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(36px, 4.6vw, 58px);
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--brass-light);
}

.hero .lead {
    font-size: 19px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 18px;
    line-height: 1.5;
}

.hero .save {
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 32px;
}

.hero .save b {
    color: var(--brass-light);
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    margin-top: 38px;
    max-width: 520px;
}

.hero-chip {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .92);
}

.hero-chip .ic {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brass-light);
    font-size: 16px;
    font-weight: 700;
}

.hero-media {
    position: relative;
}
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 50%;
}

.hero-media .float {
    position: absolute;
    left: -46px;
    bottom: 48px;
    z-index: 3;
    background: var(--paper);
    color: var(--ink);
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .55);
    max-width: 230px;
}

.hero-media .float .big {
    font-family: var(--serif);
    font-size: 34px;
    color: var(--green);
    font-weight: 700;
    line-height: 1;
}

.hero-media .float .small {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

.stats {
    background: var(--green-deep);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--line-light);
}

.stat:last-child {
    border: none;
}

.stat .num {
    font-family: var(--serif);
    font-size: 42px;
    color: var(--brass-light);
    line-height: 1;
    font-weight: 700;
}

.stat .lbl {
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    margin-top: 9px;
}

section.block {
    padding: 92px 0;
}

.head {
    max-width: 700px;
    margin-bottom: 48px;
}

.head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.head h2 {
    font-size: clamp(30px, 3.4vw, 44px);
    margin: 14px 0;
}

.head p {
    color: var(--muted);
    font-size: 17px;
}

.quiz {
    background: var(--cream);
}

.quiz-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 80px -46px rgba(34, 56, 41, .55);
}

.quiz-info {
    background: var(--green);
    color: #fff;
    padding: 54px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-info h2 {
    color: #fff;
    font-size: 32px;
    margin: 14px 0 18px;
}

.quiz-info p {
    color: rgba(255, 255, 255, .78);
    margin-bottom: 26px;
}

.quiz-info ul,
.form-left ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.quiz-info li,
.form-left li {
    display: flex;
    gap: 11px;
    font-size: 15px;
}

.quiz-info li {
    color: rgba(255, 255, 255, .92);
}

.quiz-info li::before {
    content: "";
    flex: none;
    width: 7px;
    height: 7px;
    margin-top: 9px;
    background: var(--brass-light);
    border-radius: 50%;
}

.quiz-info .btn {
    margin-top: 12px;
}

.quiz-embed {
    background: var(--paper);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.quiz-mock {
    width: 100%;
    max-width: 380px;
    text-align: center;
}

.quiz-mock .step-no {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.quiz-mock h3 {
    font-size: 22px;
    margin: 8px 0 22px;
}

.quiz-mock .opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.quiz-mock .opt {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: .2s;
    background: #fff;
}

.quiz-mock .opt:hover {
    border-color: var(--brass);
    color: var(--brass);
    transform: translateY(-2px);
}

.quiz-mock .opt.is-selected {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
    transform: none;
}

.quiz-mock .prog {
    height: 5px;
    background: var(--line);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 18px;
}

.quiz-mock .prog i {
    display: block;
    height: 100%;
    width: 20%;
    background: var(--brass);
}

.quiz-step {
    display: none;
}

.quiz-step.is-active {
    display: block;
}

.quiz-step_form {
    text-align: left;
}

.quiz-form-note {
    font-size: 14px;
    color: var(--muted);
    margin: -6px 0 18px;
}

.quiz-summary {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.quiz-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 13px;
    background: #fff;
}

.quiz-summary-item span {
    color: var(--muted);
}

.quiz-summary-item strong {
    color: var(--green);
    text-align: right;
}

.quiz-nav {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.quiz-nav .btn {
    flex: 1;
}

.quiz-nav .btn[disabled] {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

.quiz-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px;
}

.why {
    background: var(--paper);
}

.why-grid,
.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.why-item {
    background: var(--cream);
    border-radius: 6px;
    padding: 34px 30px;
    transition: .3s;
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px -30px rgba(34, 56, 41, .4);
}

.why-item .ic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--green);
    color: var(--brass-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    font-family: var(--serif);
}

.why-item h3 {
    font-size: 21px;
    margin: 18px 0 9px;
}

.why-item p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.plan {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

.plan img {
    height: 240px;
    transition: .5s;
}

.plan:hover img {
    transform: scale(1.05);
}

.plan .cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 20px;
    background: linear-gradient(transparent, rgba(34, 56, 41, .9));
    color: #fff;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
}

.gal {
    background: var(--green);
    color: #fff;
}

.gal .head h2 {
    color: #fff;
}

.gal .head p {
    color: rgba(255, 255, 255, .7);
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* grid-auto-rows: 210px; */
    gap: 14px;
}

.gal-grid img {
    height: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}

.g-tall {
    grid-row: span 2;
}

.g-wide {
    grid-column: span 2;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.step {
    position: relative;
    padding-right: 22px;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 27px;
    left: 56px;
    right: 14px;
    height: 2px;
    background: var(--line);
}

.step .dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: var(--brass-light);
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step h3 {
    font-size: 19px;
    margin: 22px 0 8px;
}

.step p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.rev {
    background: var(--cream);
}

.rev-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 30px;
}

.rev-card .stars {
    color: var(--brass);
    letter-spacing: 2px;
    font-size: 15px;
    margin-bottom: 14px;
}

.rev-card p {
    font-size: 15px;
    color: #3a3a30;
    line-height: 1.55;
    margin-bottom: 20px;
}

.rev-card .who {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rev-card .av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green);
    color: var(--brass-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--serif);
    font-size: 18px;
}

.rev-card .nm {
    font-weight: 600;
    font-size: 15px;
}

.rev-card .ct {
    font-size: 13px;
    color: var(--muted);
}

.show {
    position: relative;
    background: var(--green-deep);
    color: #fff;
    overflow: hidden;
}

.show img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .28;
    border-radius: 0;
}

.show .wrap {
    position: relative;
    z-index: 2;
    padding: 78px 28px;
    text-align: center;
}

.show .gift {
    font-family: var(--serif);
    font-size: clamp(30px, 3.6vw, 46px);
    color: #fff;
    margin: 14px 0 16px;
}

.show .gift em {
    color: var(--brass-light);
    font-style: normal;
}

.show p {
    color: rgba(255, 255, 255, .8);
    max-width: 620px;
    margin: 0 auto 30px;
    font-size: 17px;
}

.show-addr {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
}

.show-addr b {
    color: #fff;
    display: block;
    font-weight: 600;
    font-family: var(--serif);
    font-size: 16px;
}

.inst {
    background: var(--cream);
    padding: 56px 0;
}

.inst-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
}

.inst h2 {
    font-size: clamp(26px, 3vw, 38px);
    max-width: 460px;
    color: var(--green);
}

.inst-pts {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.inst-pt b {
    font-family: var(--serif);
    color: var(--brass);
    font-size: 32px;
    display: block;
    line-height: 1;
}

.inst-pt span {
    font-size: 14px;
    color: var(--muted);
}

.form-sec {
    background: var(--paper);
    padding: 92px 0;
}

.form-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 80px -44px rgba(34, 56, 41, .55);
}

.form-left {
    background: var(--green);
    color: #fff;
    padding: 56px 50px;
}

.form-left h2 {
    color: #fff;
    font-size: 33px;
    margin: 14px 0 16px;
}

.form-left p {
    color: rgba(255, 255, 255, .78);
    margin-bottom: 26px;
}

.form-left li {
    color: rgba(255, 255, 255, .92);
}

.form-left li::before {
    content: "✓";
    color: var(--brass-light);
    font-weight: 700;
}

.form-right {
    background: var(--paper);
    padding: 56px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group,
.field {
    margin-bottom: 18px;
    position: relative;
}

.field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    display: block;
    margin-bottom: 7px;
}

.form-input,
.field input {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 16px;
    background: #fff;
    transition: .2s;
}

.form-input:focus,
.field input:focus {
    outline: none;
    border-color: var(--brass);
}

.form-input.is-invalid {
    border-color: #b64e4e;
}

.form-input.is-valid {
    border-color: var(--green);
}

.field-error {
    min-height: 18px;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
    color: #b64e4e;
}

.field-error:empty {
    display: none;
}

.form-status {
    min-height: 22px;
    margin-top: 12px;
    font-size: 13px;
}

.form-status.is-success {
    color: var(--green);
}

.form-status.is-error {
    color: #b64e4e;
}

.form-agreement,
.consent {
    font-size: 12px;
    color: var(--muted);
    margin-top: 13px;
    line-height: 1.4;
}

.faq {
    background: var(--cream);
}

.faq-list {
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 24px 0;
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-q .pm {
    flex: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--brass);
    color: var(--brass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .3s;
}

.faq-item.open .pm {
    background: var(--brass);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.6;
}

.faq-a div {
    padding-bottom: 24px;
}

footer {
    background: var(--green-deep);
    color: rgba(255, 255, 255, .7);
    padding: 60px 0 28px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.4fr;
    gap: 46px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line-light);
}

.foot-logo b {
    font-family: var(--serif);
    font-size: 26px;
    color: #fff;
    font-weight: 700;
    letter-spacing: .06em;
}

footer h4 {
    color: #fff;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 700;
}

footer a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

footer a:hover {
    color: var(--brass-light);
}

.foot-phone {
    font-family: var(--serif);
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.foot-addr {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.foot-addr b {
    color: #fff;
    font-weight: 600;
}

.msgs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.msgs a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.msgs a:hover {
    background: var(--brass);
}

.foot-bottom {
    padding-top: 22px;
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.mobile-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    background: var(--green);
    padding: 10px 14px;
    gap: 10px;
    box-shadow: 0 -4px 20px -6px rgba(0, 0, 0, .4);
}

.mobile-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
}

.mobile-cta .call {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.mobile-cta .calc {
    background: var(--brass);
    color: #fff;
}

.note {
    background: #fff6e0;
    border-bottom: 1px dashed var(--brass);
    color: #6b5a2e;
    font-size: 13px;
    text-align: center;
    padding: 11px;
    font-weight: 600;
}

.policy-page {
    padding: 92px 0;
}

.policy-page .content {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.policy-page h1 {
    margin-bottom: 24px;
}

.policy-page p + p {
    margin-top: 16px;
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-text {
        padding: 60px 0;
        max-width: none;
    }

    .hero-media {
        min-height: 340px;
    }

    .hero-media .float {
        left: auto;
        right: 20px;
        bottom: 20px;
    }

    .stats-grid,
    .why-grid,
    .plan-grid,
    .gal-grid,
    .rev-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        border-bottom: 1px solid var(--line-light);
    }

    .quiz-card,
    .form-card {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .step::after {
        display: none;
    }

    .foot-grid {
        grid-template-columns: 1fr;
    }

    .g-tall,
    .g-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .nav-links,
    .topbar {
        display: none;
    }

    .nav-links.is-open {
        display: flex;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--green);
        padding: 18px 28px 24px;
        flex-direction: column;
        gap: 14px;
        box-shadow: 0 16px 32px -20px rgba(0, 0, 0, .6);
    }

    .nav-phone {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-cta {
        display: flex;
    }

    body {
        padding-bottom: 72px;
    }
}

@media (max-width: 560px) {
    .stats-grid,
    .why-grid,
    .plan-grid,
    .rev-grid,
    .steps,
    .gal-grid {
        grid-template-columns: 1fr;
    }

    .hero-chips {
        grid-template-columns: 1fr;
    }

    .form-left,
    .form-right {
        padding: 36px 24px;
    }

    .policy-page .content {
        padding: 24px;
    }
}

.callback-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brass);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px -8px rgba(34, 56, 41, .5);
    transition: all .25s ease;
}
.callback-btn:hover {
    background: var(--green);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px -10px rgba(34, 56, 41, .6);
}
.callback-btn:active {
    transform: translateY(-1px) scale(1.02);
}
@media (max-width: 980px) {
    .callback-btn {
        right: 16px;
        bottom: 84px; /* выше мобильной панели CTA */
        width: 54px;
        height: 54px;
    }
    
    .callback-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Стили модальных окон */
.modal-content {
  background: var(--paper);
  padding: 40px;
  border-radius: 6px;
  text-align: center;
}

.modal-title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--green);
  margin-bottom: 12px;
}

.modal-subtitle {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.callback-form {
  text-align: left;
}

.callback-form .field {
  margin-bottom: 18px;
}

.callback-form .form-submit {
  width: 100%;
  margin-top: 8px;
}

.callback-form .form-agreement {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.4;
  text-align: center;
}

.callback-form .form-agreement a {
  color: var(--brass);
  text-decoration: underline;
}

.callback-form .form-status {
  min-height: 20px;
  margin-top: 12px;
  font-size: 13px;
  text-align: center;
}

.callback-form .form-status.is-success {
  color: var(--green);
}

.callback-form .form-status.is-error {
  color: #b64e4e;
}

/* Стили окна "Спасибо" */
.modal-thanks {
  padding: 50px 40px;
}

.thanks-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--green);
  color: var(--brass-light);
  font-size: 36px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--serif);
}

.modal-thanks .btn {
  margin-top: 24px;
  min-width: 160px;
}

.fancybox-bg {
  background: rgba(34, 56, 41, 0.85);
  backdrop-filter: blur(4px);
}

.fancybox-button {
  color: var(--brass-light);
}

.fancybox-button:hover {
  color: #fff;
}

@media (max-width: 560px) {
  .modal-content {
    padding: 32px 24px;
  }
  
  .modal-title {
    font-size: 24px;
  }
}