*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

:root {
    --c-primary: #1e5fc7;
    --c-primary-dark: #194fa3;
    --c-primary-light: #e8f0fc;
    --c-primary-soft: #f4f8ff;
    --c-accent: #0a3d91;
    --c-text: #1a2238;
    --c-text-muted: #5a6478;
    --c-text-light: #8a92a4;
    --c-border: #e2e8f0;
    --c-border-light: #f0f4fa;
    --c-bg-alt: #f8faff;
    --c-success: #16a34a;
    --c-error: #dc2626;
    --shadow-sm: 0 1px 3px rgba(15, 35, 80, 0.06);
    --shadow-md: 0 4px 16px rgba(15, 35, 80, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 35, 80, 0.10);
    --radius: 10px;
    --radius-lg: 16px;
    --container: 1180px;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--c-primary);
    color: #fff;
    padding: .5rem 1rem;
    z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.visually-hidden {
    position: absolute !important;
    width: 1px !important; height: 1px !important;
    padding: 0 !important; margin: -1px !important;
    overflow: hidden !important; clip: rect(0,0,0,0) !important;
    white-space: nowrap !important; border: 0 !important;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 { color: var(--c-text); margin: 0 0 .8rem; line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: var(--c-primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--c-primary-dark); }

.text-accent { color: var(--c-primary); }

/* 
	Header
*/
.header {
    background: #fff;
    border-bottom: 1px solid var(--c-border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,.92);
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 800;
    color: var(--c-text);
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}
.logo:hover { color: var(--c-text); }
.logo__mark {
    width: 38px; height: 38px;
    background: var(--c-primary);
    color: #fff;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    font-weight: 800;
}
.nav { flex: 1; }
.nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.nav__menu a {
    color: var(--c-text);
    font-size: .95rem;
    font-weight: 500;
}
.nav__menu a:hover { color: var(--c-primary); }
.nav__toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 36px; height: 36px;
    position: relative;
    padding: 0;
}
.nav__toggle-bar {
    display: block;
    width: 22px; height: 2px;
    background: var(--c-text);
    margin: 4px auto;
    transition: transform .2s, opacity .2s;
}

.header__phone {
    color: var(--c-text);
    font-weight: 600;
    font-size: .95rem;
    white-space: nowrap;
}
.header__phone:hover { color: var(--c-primary); }

/* 
	Buttons
*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all .15s ease;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}
.btn--primary {
    background: var(--c-primary);
    color: #fff !important;
    border-color: var(--c-primary);
}
.btn--primary:hover {
    background: var(--c-primary-dark);
    border-color: var(--c-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn--ghost {
    background: transparent;
    color: var(--c-primary) !important;
    border-color: var(--c-primary);
}
.btn--ghost:hover {
    background: var(--c-primary);
    color: #fff !important;
}
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; border-radius: 10px; }
.btn--block { display: flex; width: 100%; }

/* 
	Main / sections
*/
.main { min-height: 60vh; }
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--alt { background: var(--c-bg-alt); }
.section--cta { background: var(--c-primary-soft); }
.section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.section__header p { color: var(--c-text-muted); font-size: 1.1rem; margin: 0; }
.section__cta { text-align: center; margin-top: 3rem; }
.section__cta .btn + .btn { margin-left: 1rem; }

.content-narrow { max-width: 780px; margin: 0 auto; }
.content-narrow h2 { margin-top: 2.5rem; }
.content-narrow h2:first-child { margin-top: 0; }
.content-narrow p { color: var(--c-text); }

/* 
	Hero
*/
.hero {
    background: linear-gradient(180deg, var(--c-primary-soft) 0%, #fff 100%);
    padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(3rem, 5vw, 5rem);
    position: relative;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero__bg-shape {
    position: absolute;
    top: 0; right: 0;
    width: 60%;
    height: 100%;
    opacity: 0.7;
}
.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .9rem;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 99px;
    font-size: .85rem;
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
}
.hero__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-success);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, .15);
}
.hero__title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}
.hero__lead {
    font-size: 1.15rem;
    color: var(--c-text-muted);
    margin-bottom: 2rem;
    max-width: 540px;
}
.hero__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
    max-width: 540px;
}
.hero__features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--c-text);
    font-size: .95rem;
}
.hero__check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    display: grid; place-items: center;
    background: var(--c-primary-light);
    color: var(--c-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: .8rem;
}
.hero__cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__form-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 96px;
}
.hero__form-title {
    font-size: 1.35rem;
    margin-bottom: .35rem;
}
.hero__form-sub {
    color: var(--c-text-muted);
    font-size: .92rem;
    margin-bottom: 1.5rem;
}

/* 
	Trust bar
*/
.trust-bar {
    background: var(--c-primary);
    color: #fff;
    padding: 2rem 0;
}
.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.trust-bar__item strong {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2rem);
    letter-spacing: -0.02em;
}
.trust-bar__item span {
    color: rgba(255,255,255,.85);
    font-size: .9rem;
}

/* 
	Cards
*/
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all .2s;
}
.card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--c-primary-light);
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
}
.card__icon img {
    width: 32px;
    height: 32px;
}
.card--featured .card__icon {
    background: rgba(255,255,255,0.18);
}
.card--featured .card__icon img {
    filter: brightness(0) invert(1);
}
.card:hover {
    border-color: var(--c-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.card h3 { margin-bottom: .6rem; color: var(--c-accent); }
.card p { color: var(--c-text-muted); font-size: .95rem; }
.card__meta {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--c-border-light);
    color: var(--c-primary);
    font-size: .85rem;
    font-weight: 600;
}
.card--featured {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}
.card--featured h3 { color: #fff; }
.card--featured p { color: rgba(255,255,255,.9); }
.card--featured .card__meta {
    color: #fff;
    border-top-color: rgba(255,255,255,.2);
}

/* 
	Steps
*/
.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    counter-reset: step;
}
.step { padding: 1.5rem 0; position: relative; }
.step__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--c-primary-light);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}
.step__icon img {
    width: 32px;
    height: 32px;
}
.step__num {
    color: var(--c-primary);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: .35rem;
    opacity: 0.6;
}
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--c-text-muted); font-size: .95rem; }

/* 
	Testimonials
*/
.testimonial {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.75rem;
}
.testimonial__text {
    color: var(--c-text);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testimonial__author {
    color: var(--c-text-muted);
    font-size: .9rem;
    font-style: normal;
}
.testimonial__author strong { color: var(--c-text); }

/* 
	Final CTA
*/
.final-cta {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem;
}
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p {
    color: var(--c-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* 
	Page hero
*/
.page-hero {
    background: var(--c-primary-soft);
    padding: 3rem 0 2.5rem;
}
.page-hero h1 { margin-bottom: .8rem; }
.page-hero__lead {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    max-width: 720px;
    margin: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: .9rem;
    color: var(--c-text-muted);
    margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-primary); }
.breadcrumbs span { margin: 0 .35rem; }

/* 
	Form
*/
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-field { margin-bottom: 1.1rem; }
.form-field label {
    display: block;
    margin-bottom: .4rem;
    font-weight: 500;
    font-size: .92rem;
    color: var(--c-text);
}
.form-field__hint {
    color: var(--c-text-muted);
    font-weight: 400;
    font-size: .85rem;
}
.req { color: var(--c-primary); }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: .7rem .9rem;
    border: 1.5px solid var(--c-border);
    border-radius: 8px;
    font-size: .95rem;
    font-family: inherit;
    color: var(--c-text);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(30, 95, 199, .12);
}

.form-field--check {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
.form-field--check label {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    cursor: pointer;
    font-weight: 400;
    color: var(--c-text-muted);
    font-size: .9rem;
}
.form-field--check input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--c-primary);
    width: 16px; height: 16px;
}
.form-field--check a { text-decoration: underline; }

.form-field__counter {
    text-align: right;
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-top: .25rem;
}
.form-error {
    margin-top: .35rem;
    color: var(--c-error);
    font-size: .85rem;
}
.form-alert {
    padding: .8rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: .92rem;
}
.form-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.order-form__note {
    text-align: center;
    color: var(--c-text-muted);
    font-size: .85rem;
    margin-top: 1rem;
}

/* 
	Footer
*/
.footer {
    background: var(--c-text);
    color: rgba(255,255,255,.7);
    padding-top: 3.5rem;
    margin-top: 4rem;
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    margin-bottom: .8rem;
    font-size: 1.1rem;
}
.footer__desc { color: rgba(255,255,255,.6); font-size: .9rem; max-width: 320px; }
.footer__title {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: .02em;
}
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: .5rem; }
.footer__list a {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
}
.footer__list a:hover { color: #fff; }
.footer__col a { color: rgba(255,255,255,.7); }
.footer__col a:hover { color: #fff; }
.footer__small { color: rgba(255,255,255,.5); font-size: .85rem; }

.footer__social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer__social a {
    display: grid;
    place-items: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 8px;
    color: #fff !important;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
}
.footer__social a:hover { background: var(--c-primary); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.5rem 0;
    color: rgba(255,255,255,.5);
    font-size: .85rem;
}
.footer__bottom p { margin: 0 0 .35rem; }
.footer__disclaimer { color: rgba(255,255,255,.4); }

/* 
	Bullets list
*/
.bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.bullets li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: .5rem;
    color: var(--c-text);
}
.bullets li::before {
    content: "";
    position: absolute;
    left: 0; top: .65rem;
    width: 6px; height: 6px;
    background: var(--c-primary);
    border-radius: 50%;
}

/* 
	Price table
*/
.price-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    margin-bottom: 3rem;
    background: #fff;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table th,
.price-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--c-border-light);
}
.price-table th {
    background: var(--c-primary-soft);
    color: var(--c-text);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .02em;
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: var(--c-bg-alt); }
.price-table td:last-child { font-weight: 600; color: var(--c-primary); white-space: nowrap; }

/* 
	FAQ accordion
*/
.faq {
    max-width: 820px;
    margin: 0 auto;
}
.faq__item {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    margin-bottom: .75rem;
    overflow: hidden;
}
.faq__item[open] { border-color: var(--c-primary); }
.faq__question {
    cursor: pointer;
    padding: 1.2rem 1.4rem;
    font-weight: 600;
    color: var(--c-text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__icon {
    width: 22px; height: 22px;
    flex-shrink: 0;
    position: relative;
}
.faq__icon::before, .faq__icon::after {
    content: "";
    position: absolute;
    background: var(--c-primary);
    transition: transform .2s;
}
.faq__icon::before {
    left: 50%; top: 50%;
    width: 12px; height: 2px;
    transform: translate(-50%, -50%);
}
.faq__icon::after {
    left: 50%; top: 50%;
    width: 2px; height: 12px;
    transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__answer { padding: 0 1.4rem 1.4rem; color: var(--c-text-muted); }
.faq__answer p { margin: 0; }

/* 
	Contacts
*/
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.contact-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.contact-card h3 {
    color: var(--c-text-muted);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    margin-bottom: .6rem;
}
.contact-card__main {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 0 0 .35rem;
}
.contact-card__main a { color: var(--c-text); }
.contact-card__main a:hover { color: var(--c-primary); }
.contact-card__sub { color: var(--c-text-muted); font-size: .9rem; margin: 0; }

/* 
	Order page
*/
.order-page {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}
.order-page__form {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}
.order-page__sidebar h3 { margin-bottom: 1rem; }
.order-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    counter-reset: step;
}
.order-steps li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.25rem;
    counter-increment: step;
}
.order-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0; top: 0;
    width: 28px; height: 28px;
    background: var(--c-primary-light);
    color: var(--c-primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .85rem;
}
.order-page__contact {
    background: var(--c-primary-soft);
    padding: 1.5rem;
    border-radius: var(--radius);
}
.order-page__contact h4 { margin: 0 0 .5rem; }

/* 
	Articles / Blog
*/
.articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1080px;
    margin: 0 auto;
}
.article-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .2s;
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    border-color: var(--c-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.article-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--c-primary-soft);
}
.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.article-card:hover .article-card__image img {
    transform: scale(1.03);
}
.article-card__body {
    padding: 1.75rem;
}
.article-card__meta {
    color: var(--c-text-muted);
    font-size: .85rem;
    margin-bottom: .8rem;
}
.article-card__title { margin-bottom: .8rem; }
.article-card__title a { color: var(--c-text); }
.article-card__title a:hover { color: var(--c-primary); }
.article-card__excerpt {
    color: var(--c-text-muted);
    font-size: .95rem;
    margin-bottom: 1rem;
}
.article-card__link {
    color: var(--c-primary);
    font-weight: 600;
    font-size: .95rem;
}

/* Обложка отдельной статьи */
.article-cover {
    margin: 0 auto 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--c-primary-soft);
}
.article-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.article__meta {
    color: var(--c-text-muted);
    font-size: .9rem;
    margin-bottom: 0;
}
.article-content { font-size: 1.05rem; line-height: 1.75; }
.article-content h2 { margin-top: 2.2rem; }
.article-content h3 { margin-top: 1.8rem; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--c-primary);
    background: var(--c-primary-soft);
    color: var(--c-text);
    font-style: italic;
}
.article__tags {
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.tag {
    background: var(--c-primary-light);
    color: var(--c-primary);
    padding: .25rem .75rem;
    border-radius: 99px;
    font-size: .85rem;
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--c-text-muted);
}
.empty-state__illustration {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
}
.empty-state h2 { color: var(--c-text); }

/* Legal pages */
.legal h2 { margin-top: 2rem; font-size: 1.35rem; }
.legal h2:first-child { margin-top: 0; }

/* 
	Thanks page
*/
.thanks { padding: 5rem 0; }
.thanks__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.thanks__icon {
    width: 80px; height: 80px;
    background: var(--c-success);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}
.thanks__order {
    color: var(--c-text-muted);
    font-size: .95rem;
    margin-bottom: 1rem;
}
.thanks__lead { font-size: 1.15rem; color: var(--c-text); }
.thanks__actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 
	Error page
*/
.error-page {
    padding: 5rem 0;
    text-align: center;
}
.error-page__inner { max-width: 520px; margin: 0 auto; }
.error-page__illustration {
    max-width: 240px;
    width: 100%;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
}
.error-page__code {
    font-size: 4rem;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}
.error-page__actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 
	Responsive
*/
@media (max-width: 960px) {
    .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero__form-card { position: static; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .order-page { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header__inner { gap: .75rem; height: 64px; }
    .header__phone { display: none; }
    .header__cta { display: none; }
    .nav__toggle { display: block; order: 2; margin-left: auto; }
    .nav__menu {
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--c-border);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s;
    }
    .nav__menu.is-open { max-height: 400px; }
    .nav__menu li {
        padding: .8rem 0;
        border-bottom: 1px solid var(--c-border-light);
    }

    .trust-bar__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .hero__features { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__form-card { padding: 1.5rem; }
    .order-page__form { padding: 1.5rem; }
    .price-table th, .price-table td { padding: .8rem; font-size: .9rem; }
}
