:root {
  --blue: #0757d8;
  --blue-dark: #0649b5;
  --ink: #171d27;
  --muted: #7c8492;
  --line: #e2e6ec;
  --soft: #f7f9fc;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(24, 54, 96, .05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  overflow-x: hidden;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: min(1274px, calc(100% - 64px)); margin-inline: auto; }
.site-header { height: 94px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); position: relative; z-index: 20; }
.header-inner { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 44px; }
.brand { display: inline-flex; align-items: center; white-space: nowrap; }
.brand-logo { width: 212px; height: 64px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(24px, 3vw, 46px); color: #283040; }
.main-nav a { position: relative; padding: 36px 0 33px; font-size: 14px; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 27px; height: 2px; background: var(--blue); transition: .2s; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 24px; }
.phone { display: grid; grid-template-columns: 18px auto; column-gap: 8px; align-items: center; white-space: nowrap; }
.phone img { width: 24px; height: 24px; object-fit: contain; grid-row: 1/3; }
.phone strong { font-size: 16px; }
.phone small { color: var(--muted); font-size: 10px; }
.btn { border: 1px solid var(--blue); border-radius: 7px; min-height: 54px; padding: 0 33px; background: white; color: var(--blue); font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: transform .18s, box-shadow .18s, background .18s; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(7,87,216,.16); }
.btn-primary { background: linear-gradient(135deg, #0963e7, #064fc8); color: white; border-color: transparent; box-shadow: 0 6px 18px rgba(7,87,216,.18); }
.btn-small { min-height: 50px; padding-inline: 23px; font-size: 13px; }
.mobile-menu { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.mobile-menu span { width: 24px; height: 2px; display: block; margin: 5px; background: var(--ink); }

.section-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.section-title { margin: 0 0 12px; font-size: clamp(25px, 2.25vw, 34px); line-height: 1.1; letter-spacing: -.035em; }
.subtle { color: var(--muted); }
.icon { width: 34px; height: 34px; object-fit: contain; }
.icon-lg { width: 45px; height: 45px; }

/* Home */
.hero { height: 548px; position: relative; overflow: hidden; background: #fafafa; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #fff 0%, #fff 35%, rgba(255,255,255,.8) 45%, rgba(255,255,255,0) 67%); pointer-events: none; }
.hero-photo { position: absolute; inset: 0 0 0 31%; width: 69%; height: 100%; object-fit: cover; object-position: 59% center; }
.hero-content { position: relative; z-index: 2; width: min(1274px, calc(100% - 64px)); padding-top: 116px; }
.hero-content > * { max-width: 52%; }
.hero h1 { margin: 0 0 24px; font-size: clamp(44px, 4vw, 61px); line-height: .98; letter-spacing: -.045em; }
.hero-lead { max-width: 630px; margin: 0 0 40px; font-size: 23px; line-height: 1.6; color: #838a95; }
.hero-buttons { display: flex; gap: 21px; margin-bottom: 43px; }
.hero-buttons .btn { min-width: 225px; }
.hero-points { display: flex; gap: 37px; }
.hero-point { display: flex; align-items: center; gap: 14px; max-width: 175px; font-size: 13px; }
.hero-point img { flex: 0 0 42px; width: 42px; height: 42px; object-fit: contain; }

.calc-wrap { padding: 28px 0 25px; }
.calculator { padding: 34px 38px; min-height: 605px; }
.calculator h2 { font-size: 27px; margin: 0 0 27px; }
.calc-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 27px 33px; }
.calc-grid > :nth-child(1), .calc-grid > :nth-child(2) { grid-column: span 4; }
.calc-grid > :nth-child(3) { grid-column: span 4; }
.calc-grid > :nth-child(4) { grid-column: span 4; }
.calc-grid > :nth-child(5), .calc-grid > :nth-child(6) { grid-column: span 2; }
.calc-grid > :nth-child(7) { grid-column: span 4; }
.field label, .field-label { display: block; font-weight: 600; margin-bottom: 10px; font-size: 13px; }
.control { height: 54px; width: 100%; border: 1px solid #d9dee6; border-radius: 7px; padding: 0 16px; color: var(--ink); background: #fff; outline: none; }
.control::placeholder { color: #a3aab5; }
.control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(7,87,216,.08); }
.input-icon { position: relative; }
.input-icon .control { padding-right: 44px; }
.input-icon svg { position: absolute; width: 20px; height: 20px; right: 14px; top: 17px; color: #7f8793; pointer-events: none; }
.counter { display: grid; grid-template-columns: 1fr 1fr 1fr; height: 54px; border: 1px solid #d9dee6; border-radius: 7px; overflow: hidden; }
.counter button { border: 0; background: #fff; font-size: 24px; color: #3e4653; cursor: pointer; }
.counter output { display: grid; place-items: center; }
.volume { width: calc(33.33% - 28px); margin-top: 27px; }
.calc-bottom { margin-top: 33px; display: grid; grid-template-columns: 1fr 337px; gap: 48px; align-items: end; }
.extras-title { font-weight: 600; margin-bottom: 16px; }
.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.extra { min-height: 77px; border: 1px solid var(--line); border-radius: 7px; padding: 14px 14px 13px 46px; position: relative; cursor: pointer; }
.extra input { position: absolute; opacity: 0; }
.extra .check { position: absolute; left: 17px; top: 18px; width: 19px; height: 19px; border: 1px solid #cbd1da; border-radius: 3px; }
.extra input:checked + .check { background: var(--blue); border-color: var(--blue); }
.extra input:checked + .check::after { content: "✓"; color: white; display: grid; place-items: center; font-size: 13px; }
.extra small { display: block; color: #969da8; margin-top: 2px; font-size: 11px; }
.privacy-note { margin-top: 29px; color: #8a929f; font-size: 12px; display: flex; gap: 8px; align-items: center; }
.price-box { padding: 27px 27px 28px; background: linear-gradient(145deg,#fff,#fbfcff); }
.price-box strong { display: block; font-size: 13px; margin-bottom: 10px; }
.price { display: block; color: var(--blue); font-size: 31px; font-weight: 750; margin-bottom: 12px; }
.price-box p { color: #69717d; font-size: 12px; margin: 0 0 27px; }
.price-box .btn { width: 100%; }
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 39px; }
.benefit { padding: 32px 32px 30px; min-height: 216px; }
.benefit h3 { font-size: 17px; margin: 24px 0 12px; }
.benefit p { color: #6f7783; margin: 0; line-height: 1.45; }

/* Services */
.page-main { padding: 34px 0 16px; }
.service-intro { min-height: 145px; padding: 0 33px 0 248px; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(100deg,#f5f8fd,#fff); }
.service-intro::before { content: ""; position: absolute; left: 0; width: 205px; height: 100%; background: url("assets/services-intro.webp") center / contain no-repeat; }
.service-intro h1, .service-intro h2 { font-size: 28px; margin: 0 0 6px; }
.service-intro p { margin: 0; color: #6f7784; }
.quiz { margin-top: 24px; padding: 31px 35px 35px; }
.quiz-head { display: flex; justify-content: space-between; align-items: start; }
.quiz-head h2 { font-size: 27px; margin: 0 0 7px; }
.quiz-head p { color: #747c88; margin: 0; }
.progress { display: flex; align-items: center; gap: 12px; }
.progress i { font-style: normal; width: 28px; height: 28px; border-radius: 50%; border: 1px solid #d4dae2; display: grid; place-items: center; font-size: 12px; color: #7d8591; }
.progress i.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.progress span { width: 17px; height: 1px; background: #d4dae2; }
.quiz-body { display: grid; grid-template-columns: 1.15fr .85fr; margin-top: 17px; }
.quiz-stage { display: none; margin-top: 24px; min-height: 235px; }
.quiz-stage.active { display: block; }
.quiz-types { padding-right: 47px; border-right: 1px solid var(--line); }
.quiz-question { font-weight: 600; margin: 0 0 18px; }
.type-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 17px; }
.type-card { min-height: 214px; border: 1px solid var(--line); border-radius: 8px; padding: 8px; cursor: pointer; position: relative; text-align: center; }
.type-card.selected { border: 1.5px solid var(--blue); }
.type-card::after { content: ""; position: absolute; right: 10px; top: 10px; width: 17px; height: 17px; border-radius: 50%; border: 1px solid #cfd6df; background: #fff; }
.type-card.selected::after { content: "✓"; display: grid; place-items: center; color: white; background: var(--blue); border-color: var(--blue); font-size: 11px; }
.type-img { width: 100%; height: 140px; border-radius: 6px; object-fit: contain; background: #fff; }
.type-card span { display: block; line-height: 1.25; margin-top: 10px; }
.items-quiz { padding-left: 47px; }
.item-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 29px; margin: 29px 0 36px; }
.simple-check { display: flex; gap: 14px; align-items: center; cursor: pointer; color: #5e6673; }
.simple-check input { appearance: none; width: 19px; height: 19px; border: 1px solid #ccd3dd; border-radius: 3px; margin: 0; }
.simple-check input:checked { border-color: var(--blue); background: var(--blue); box-shadow: inset 0 0 0 4px #fff; }
.mini-icon { width: 22px; height: 22px; object-fit: contain; flex: 0 0 auto; }
.items-quiz .btn { width: 100%; min-height: 46px; }
.quiz-volume-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quiz-choice { min-height: 100px; border: 1px solid var(--line); border-radius: 9px; padding: 21px; cursor: pointer; position: relative; transition: .18s; }
.quiz-choice:hover, .quiz-choice.selected { border-color: var(--blue); box-shadow: 0 7px 18px rgba(7,87,216,.08); }
.quiz-choice input { position: absolute; opacity: 0; }
.quiz-choice strong, .quiz-choice small { display: block; }
.quiz-choice small { color: var(--muted); margin-top: 5px; }
.quiz-floor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 620px; margin-top: 25px; }
.quiz-extra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.quiz-extra { min-height: 82px; border: 1px solid var(--line); border-radius: 9px; padding: 15px 18px; }
.quiz-extra input { flex: 0 0 19px; }
.quiz-extra strong, .quiz-extra small { display: block; }
.quiz-extra small { color: var(--muted); margin-top: 4px; }
.quiz-result { text-align: center; padding: 15px 0 4px; }
.result-kicker { display: block; color: var(--muted); }
.quiz-result output { display: block; color: var(--blue); font-size: 42px; font-weight: 760; margin: 8px 0; }
.quiz-result p { color: #657080; margin: 0 0 22px; }
.quiz-result .btn { min-width: 260px; }
.quiz-restart { display: block; border: 0; background: transparent; color: var(--blue); cursor: pointer; margin: 16px auto 0; }
.quiz-nav { display: flex; justify-content: flex-end; gap: 12px; margin-top: 20px; }
.quiz-nav .btn { min-width: 170px; min-height: 46px; }
.packing { margin-top: 24px; padding: 26px 27px 19px; }
.packing h2, .process h2 { font-size: 22px; margin: 0 0 6px; }
.packing > p { color: #747c88; margin: 0 0 20px; }
.packing-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 23px; }
.packing-card { min-height: 253px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; padding-bottom: 16px; }
.packing-photo { width: 100%; height: 148px; object-fit: contain; background: #fff; }
.packing-card h3 { font-size: 15px; margin: 8px 17px 5px; }
.packing-card p { margin: 0 17px; color: #6f7783; font-size: 12px; line-height: 1.4; }
.assembly { margin-top: 22px; min-height: 260px; padding: 35px 38px; position: relative; overflow: hidden; background: #f8f8f7; }
.assembly::after { content:""; position:absolute; inset:0 0 0 42%; background: linear-gradient(90deg,#f8f8f7 0%,transparent 30%), url("assets/furniture-assembly.webp") 67% center / cover no-repeat; }
.assembly-copy { position: relative; z-index: 1; width: 47%; }
.assembly h2 { font-size: 21px; margin: 0 0 10px; }
.assembly p { color: #68717c; font-size: 13px; max-width: 500px; margin: 0 0 16px; }
.assembly-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; width: 75%; color: #626b77; }
.assembly-list span::before { content:"✓"; color:var(--blue); border:1px solid var(--blue); border-radius:50%; display:inline-grid; place-items:center; width:15px; height:15px; margin-right:12px; font-size:9px; }
.process { margin-top: 26px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 52px; margin-top: 17px; }
.step { min-height: 179px; padding: 24px 23px; position: relative; }
.step:not(:last-child)::after { content:"→"; position:absolute; right:-39px; top:76px; font-size:31px; color:#9ca8ba; }
.step-top { display:flex; gap:25px; align-items:center; }
.step-no { width:29px; height:29px; display:grid; place-items:center; border-radius:50%; background:var(--blue); color:white; font-weight:700; }
.step h3 { margin:17px 0 6px; font-size:16px; }
.step p { margin:0; color:#69727e; font-size:12px; }

/* Tariffs */
.insurance { min-height: 345px; padding: 28px 31px; position: relative; overflow: hidden; margin-top: 2px; }
.insurance::after { content:""; position:absolute; inset:0 0 0 65%; background:linear-gradient(90deg,#fff 0,transparent 22%),url("assets/insurance-boxes.webp") center / cover no-repeat; }
.insurance-copy { width: 64%; position:relative; z-index:1; }
.insurance h1 { font-size:34px; margin:0 0 7px; }
.insurance > .insurance-copy > p { color:#7a8290; margin:0 0 34px; }
.insurance-columns { display:grid; grid-template-columns: 1fr 244px; gap:34px; }
.insurance-benefits { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.insurance-benefit h3 { font-size:12px; margin:13px 0 8px; line-height:1.3; }
.insurance-benefit p { font-size:11px; color:#7a8290; margin:0; }
.conditions { border:1px solid var(--line); border-radius:10px; padding:20px; background:rgba(255,255,255,.92); }
.conditions h3 { margin:0 0 19px; font-size:13px; }
.conditions p { position:relative; margin:0 0 16px; padding-left:16px; font-size:10px; color:#636b77; }
.conditions p::before { content:""; position:absolute; left:0; top:6px; width:4px; height:4px; border-radius:50%; background:var(--blue); }
.tariff-layout { display:block; margin-top:31px; }
.tariffs, .faq { padding:31px 33px 29px; }
.tariffs h2 { margin:0 0 26px; font-size:26px; }
.tariff-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.tariff-card { min-height:420px; border:1px solid var(--line); border-radius:9px; padding:24px; display:flex; flex-direction:column; position:relative; }
.tariff-card.popular { border-color:var(--blue); padding-top:48px; }
.tariff-card.popular::before { content:"Популярный"; position:absolute; left:-1px; right:-1px; top:-1px; height:31px; display:grid; place-items:center; color:white; background:linear-gradient(120deg,#0962e6,#064fc8); border-radius:8px 8px 0 0; font-size:10px; }
.tariff-card h3 { font-size:18px; margin:0 0 8px; }
.tariff-card > small { color:#89919e; }
.tariff-card ul { list-style:none; padding:0; margin:20px 0; color:#56606e; font-size:11px; line-height:1.9; }
.tariff-card li::before { content:"✓"; color:var(--blue); margin-right:12px; }
.tariff-price { margin-top:auto; font-size:20px; font-weight:750; }
.tariff-card .caption { color:#8b93a0; font-size:10px; margin:3px 0 17px; }
.tariff-card .btn { min-height:43px; padding:0 10px; font-size:11px; width:100%; }
.order-grid { display:grid; grid-template-columns:1fr 1fr; gap:17px 22px; }
.order-grid .span-2 { grid-column:1/-1; }
.services-checks { display:grid; grid-template-columns:1fr 1fr; gap:13px 31px; margin:9px 0 23px; }
.services-checks .simple-check { font-size:11px; }
.form-note { text-align:center; color:#8d95a1; font-size:10px; margin-top:13px; }
.faq { margin-top:24px; }
.faq h2 { font-size:20px; margin:0 0 12px; }
.faq-item { border:1px solid var(--line); border-bottom:0; }
.faq-item:first-of-type { border-radius:7px 7px 0 0; }
.faq-item:last-child { border-bottom:1px solid var(--line); border-radius:0 0 7px 7px; }
.faq-q { width:100%; min-height:35px; border:0; background:#fff; text-align:left; padding:0 35px 0 11px; color:#536071; font-size:11px; position:relative; cursor:pointer; }
.faq-q::after { content:"⌄"; position:absolute; right:14px; }
.faq-a { display:none; padding:0 30px 13px 11px; color:#7d8591; font-size:11px; }
.faq-item.open .faq-a { display:block; }
.faq-item.open .faq-q::after { transform:rotate(180deg); }
.ready { min-height:220px; margin-top:28px; padding:34px 40px; display:flex; align-items:center; position:relative; overflow:hidden; }
.ready-copy { width:48%; position:relative; z-index:1; }
.ready h2 { font-size:31px; margin:0 0 4px; }
.ready p { margin:0; color:#7b8390; }
.ready .ready-copy .btn { margin-top:22px; min-height:51px; }
.ready img { position:absolute; right:0; top:0; width:52%; height:100%; object-fit:cover; object-position:center; }

/* Footer and modal */
.site-footer { margin-top:14px; padding-bottom:27px; }
.footer-card { padding:25px 31px; display:grid; grid-template-columns:1.5fr .9fr .8fr 1.2fr .95fr; gap:40px; }
.footer-brand p, .footer-card li, .callback small { color:#7c8491; font-size:11px; }
.footer-brand .brand-logo { width: 185px; height: 58px; }
.footer-brand p { max-width:190px; }
.footer-card h3 { font-size:12px; margin:0 0 12px; }
.footer-card ul { list-style:none; padding:0; margin:0; line-height:1.8; }
.footer-card a:hover { color:var(--blue); }
.footer-contact strong { display:block; margin:0 0 9px; }
.footer-contact p { font-size:11px; color:#6e7784; margin:6px 0; }
.callback .btn { width:100%; min-height:41px; padding:0 12px; font-size:11px; margin-bottom:13px; }
.footer-bottom { display:flex; justify-content:space-between; padding:24px 31px 0; color:#8b93a0; font-size:10px; }
.legal { display:flex; gap:78px; }

.toast { position:fixed; z-index:200; right:24px; bottom:24px; padding:15px 20px; border-radius:8px; color:white; background:#17243a; box-shadow:0 12px 30px rgba(0,0,0,.2); transform:translateY(120px); opacity:0; transition:.25s; }
.toast.show { transform:translateY(0); opacity:1; }
.modal { position:fixed; inset:0; z-index:100; display:none; place-items:center; padding:20px; background:rgba(18,27,43,.48); backdrop-filter:blur(4px); }
.modal.open { display:grid; }
.modal-card { width:min(820px,calc(100vw - 40px)); max-height:calc(100vh - 40px); overflow:auto; border-radius:16px; background:#fff; padding:32px; box-shadow:0 24px 70px rgba(10,28,58,.24); position:relative; }
.modal-close { position:absolute; right:18px; top:14px; border:0; background:none; font-size:30px; cursor:pointer; color:#667080; }
.modal h2 { font-size:29px; margin:0 0 7px; }
.modal-lead { color:#77808d; margin:0 0 25px; }
.modal-form { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.modal-form .span-2 { grid-column:1/-1; }
.modal-form .btn { grid-column:1/-1; }
.success-state { display:none; text-align:center; padding:45px 0; }
.success-state .success-icon { width:64px; height:64px; display:grid; place-items:center; border-radius:50%; background:#e9f8ef; color:#1d9b50; font-size:32px; margin:0 auto 17px; }

@media (max-width: 1100px) {
  .container { width:min(100% - 40px, 960px); }
  .main-nav { gap:20px; }
  .main-nav a { font-size:12px; }
  .header-actions .phone { display:none; }
  .hero-photo { inset-left:28%; width:72%; }
  .hero-content { width:min(100% - 40px, 960px); }
  .hero-content > * { max-width:58%; }
  .hero-lead { font-size:20px; }
  .calc-grid { grid-template-columns:1fr 1fr; }
  .calc-grid > * { grid-column:auto !important; }
  .volume { width:calc(50% - 22px); }
  .calc-bottom { grid-template-columns:1fr 270px; }
  .extras-grid { grid-template-columns:1fr 1fr; }
  .benefits { grid-template-columns:1fr 1fr; }
  .quiz-body { grid-template-columns:1fr; }
  .quiz-types { border-right:0; padding-right:0; }
  .items-quiz { padding:30px 0 0; }
  .packing-grid { grid-template-columns:repeat(3,1fr); }
  .process-grid { grid-template-columns:1fr 1fr; }
  .step:nth-child(2)::after { display:none; }
  .insurance::after { inset-left:58%; opacity:.78; }
  .insurance-copy { width:72%; }
  .tariff-layout { display:block; }
}

@media (max-width: 790px) {
  body { font-size:14px; }
  .container { width:calc(100% - 28px); }
  .site-header { height:72px; position:sticky; top:0; }
  .header-inner { grid-template-columns:1fr auto; gap:10px; }
  .brand-logo { width: 172px; height: 52px; }
  .header-actions { display:none; }
  .mobile-menu { display:block; }
  .main-nav { display:none; position:absolute; left:0; right:0; top:72px; background:white; box-shadow:0 14px 30px rgba(18,35,64,.12); padding:12px 20px 20px; }
  .main-nav.open { display:grid; }
  .main-nav a { padding:10px 0; font-size:15px; }
  .main-nav a::after { display:none; }
  .hero { height:auto; padding-bottom:28px; display:flex; flex-direction:column-reverse; }
  .hero::after { display:none; }
  .hero-photo { position:relative; inset:auto; width:100%; height:285px; object-position:62% center; }
  .hero-content { width:calc(100% - 28px); padding-top:28px; }
  .hero-content > * { max-width:none; }
  .hero h1 { font-size:40px; }
  .hero-lead { font-size:18px; line-height:1.5; }
  .hero-buttons { flex-direction:column; gap:11px; margin-bottom:28px; }
  .hero-buttons .btn { width:100%; }
  .hero-points { display:grid; grid-template-columns:1fr; gap:14px; }
  .hero-point { max-width:none; }
  .calculator { padding:25px 18px; }
  .calc-grid { grid-template-columns:1fr; gap:18px; }
  .volume { width:100%; margin-top:18px; }
  .calc-bottom { grid-template-columns:1fr; gap:25px; }
  .extras-grid { grid-template-columns:1fr; }
  .benefits { grid-template-columns:1fr; gap:14px; }
  .benefit { min-height:auto; }
  .page-main { padding-top:18px; }
  .service-intro { padding:26px 20px; min-height:170px; }
  .service-intro::before { opacity:.12; left:auto; right:0; }
  .service-intro h1 { font-size:24px; }
  .quiz { padding:24px 16px; }
  .quiz-head { display:block; }
  .progress { margin-top:18px; }
  .type-grid { grid-template-columns:1fr 1fr; }
  .type-card { min-height:185px; }
  .type-img { height:118px; }
  .quiz-volume-grid, .quiz-floor-grid, .quiz-extra-grid { grid-template-columns:1fr; }
  .quiz-stage { min-height: 0; }
  .quiz-nav { justify-content:stretch; }
  .quiz-nav .btn { flex:1; min-width:0; }
  .item-checks { grid-template-columns:1fr; }
  .packing { padding:23px 16px; }
  .packing-grid { grid-template-columns:1fr; }
  .packing-photo { height:200px; }
  .assembly { padding:27px 20px 250px; }
  .assembly::after { inset:45% 0 0; background:linear-gradient(#f8f8f7,transparent 25%),url("assets/furniture-assembly.webp") 68% center/cover no-repeat; }
  .assembly-copy { width:100%; }
  .assembly-list { width:100%; }
  .process-grid { grid-template-columns:1fr; gap:14px; }
  .step::after { display:none; }
  .insurance { padding:23px 18px 240px; }
  .insurance::after { inset:55% 0 0; background:linear-gradient(#fff,transparent 25%),url("assets/insurance-boxes.webp") 70% center/cover no-repeat; opacity:1; }
  .insurance-copy { width:100%; }
  .insurance h1 { font-size:29px; }
  .insurance-columns { grid-template-columns:1fr; }
  .insurance-benefits { grid-template-columns:1fr 1fr; }
  .tariff-grid { grid-template-columns:1fr; }
  .tariff-card { min-height:360px; }
  .order-grid { grid-template-columns:1fr; }
  .order-grid .span-2 { grid-column:auto; }
  .services-checks { grid-template-columns:1fr; }
  .ready { padding:25px 20px 250px; display:block; }
  .ready-copy { width:100%; }
  .ready h2 { font-size:27px; }
  .ready .ready-copy .btn { width:100%; }
  .ready img { width:100%; height:230px; top:auto; bottom:0; object-position:center; }
  .footer-card { grid-template-columns:1fr 1fr; padding:24px 20px; gap:28px; }
  .footer-brand, .callback { grid-column:1/-1; }
  .footer-bottom { display:block; padding:18px 6px 0; line-height:1.8; }
  .legal { gap:15px; flex-direction:column; margin-top:10px; }
  .modal-card { padding:26px 18px; }
  .modal-form { grid-template-columns:1fr; }
  .modal-form .span-2, .modal-form .btn { grid-column:auto; }
}

@media (max-width: 380px) {
  .brand-logo { width: 154px; }
  .type-grid, .insurance-benefits, .footer-card { grid-template-columns:1fr; }
  .footer-brand, .callback { grid-column:auto; }
  .hero h1 { font-size:35px; }
}
