:root {
  color-scheme: light;
  --paper: #f7f6f3;
  --white: #fff;
  --ink: #24343b;
  --muted: #59696e;
  --line: #dce3e2;
  --soft: #edf3f4;
  --accent: #496e7c;
  --accent-hover: #3e6677;
  --footer: #20333c;
  --footer-text: #f3f6f5;
  --content: 1160px;
  --reading: 760px;
  --focus: #9a623b;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-size: 16px; line-height: 1.62; padding-bottom: 0; }
a { color: inherit; text-underline-offset: .2em; }
a:hover { color: var(--accent-hover); }
button, summary { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; z-index: 2000; top: 12px; left: 12px; padding: 10px 14px; background: var(--white); border: 2px solid var(--accent); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250,249,247,.96); border-bottom: 1px solid rgba(220,227,226,.85); backdrop-filter: blur(12px); }
.header-inner { min-height: 76px; max-width: var(--content); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); text-decoration: none; font-family: Manrope, sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -.035em; white-space: nowrap; }
.brand small { padding: 2px 7px; border-radius: 999px; background: var(--soft); color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 24px; flex: 1; }
.desktop-nav > a, .services-menu > summary { display: inline-flex; align-items: center; min-height: 44px; color: var(--muted); text-decoration: none; font-family: Manrope, sans-serif; font-size: 14px; font-weight: 650; cursor: pointer; list-style: none; }
.desktop-nav a[aria-current="page"], .services-menu > summary[aria-current="page"] { color: var(--accent); }
.services-menu { position: relative; }
.services-menu > summary::-webkit-details-marker { display: none; }
.services-menu > summary::after { content: ""; width: 7px; height: 7px; margin: -4px 0 0 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); }
.services-dropdown { position: absolute; top: 52px; left: -18px; min-width: 205px; display: grid; padding: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 14px 34px rgba(36,52,59,.12); }
.services-dropdown a { padding: 9px 11px; text-decoration: none; border-radius: 10px; font-size: 14px; }
.services-dropdown a:hover { background: var(--soft); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { color: var(--ink); white-space: nowrap; font-size: 14px; font-weight: 750; text-decoration: none; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid var(--accent); border-radius: 999px; background: var(--accent); color: white; font-size: 14px; font-weight: 750; text-align: center; text-decoration: none; transition: background .16s ease, border-color .16s ease, transform .16s ease; }
.button:hover { color: #fff; background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }
.button-small { min-height: 42px; padding-inline: 17px; }
.mobile-nav { display: none; position: relative; }
.mobile-nav > summary { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); cursor: pointer; list-style: none; }
.mobile-nav > summary::-webkit-details-marker { display: none; }
.menu-icon, .menu-icon::before, .menu-icon::after { display: block; width: 18px; height: 1.5px; background: currentColor; content: ""; }
.menu-icon { position: relative; }
.menu-icon::before { position: absolute; top: -6px; }
.menu-icon::after { position: absolute; top: 6px; }
.mobile-nav[open] > summary .menu-icon { background: transparent; }
.mobile-nav[open] > summary .menu-icon::before { top: 0; transform: rotate(45deg); }
.mobile-nav[open] > summary .menu-icon::after { top: 0; transform: rotate(-45deg); }
.mobile-nav nav { position: absolute; top: 55px; right: -6px; width: min(340px, calc(100vw - 28px)); display: grid; padding: 10px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 34px rgba(36,52,59,.14); }
.mobile-nav nav a { min-height: 46px; display: flex; align-items: center; padding: 8px 12px; text-decoration: none; font-weight: 650; }
.mobile-nav nav a[aria-current="page"] { color: var(--accent); background: var(--soft); }
.mobile-menu-phone { border-top: 1px solid var(--line); margin-top: 5px; color: var(--accent); }

main { overflow: clip; }
.hero { max-width: var(--content); min-height: 430px; margin: 0 auto; padding: 62px 28px 58px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr); gap: clamp(40px, 7vw, 92px); align-items: center; border-bottom: 1px solid var(--line); }
.hero-text-only { display: block; min-height: unset; padding-top: 42px; padding-bottom: 28px; }
.price-hero { padding-top: 32px; padding-bottom: 24px; }
.price-hero .eyebrow { margin-bottom: 12px; }
.price-hero .hero-lead { max-width: 900px; margin-bottom: 17px; font-size: 16px; }
.price-hero .hero-points { margin-top: 15px; }
.hero-copy { max-width: 610px; }
.eyebrow { margin: 0 0 19px; color: var(--accent); font-size: 12px; font-weight: 750; letter-spacing: .055em; }
.eyebrow span { padding: 0 8px; color: #9aadaa; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 18px; font-size: clamp(38px, 4.5vw, 60px); line-height: 1.06; letter-spacing: -.048em; font-weight: 730; }
.price-hero h1 { max-width: 900px; font-size: clamp(36px, 3.8vw, 50px); }
.hero-lead { max-width: 620px; margin-bottom: 27px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.quiet-link { color: var(--accent); font-size: 14px; font-weight: 750; text-decoration-thickness: 1px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 7px 17px; list-style: none; padding: 0; margin: 27px 0 0; color: var(--muted); font-size: 12px; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.hero-photo { position: relative; min-width: 0; margin: 0; }
.hero-photo img, .about-photo img { display: block; width: 100%; height: auto; aspect-ratio: 1.31; object-fit: cover; border-radius: 26px; box-shadow: 0 18px 42px rgba(39,57,63,.12); }
.hero-photo figcaption, .about-photo figcaption { margin-top: 8px; color: var(--muted); font-size: 11px; }

.page-content { max-width: var(--content); margin: 0 auto; padding: 0 28px; }
.content-section { padding: 58px 0 62px; border-bottom: 1px solid var(--line); }
.page-content-compact > .content-section { padding-block: 39px 42px; }
.page-content-compact > .service-details { margin: 20px 0 22px; padding: 27px 28px; }
.page-content-compact .section-heading { margin-bottom: 17px; }
.page-content-compact .comparison-grid { margin-top: 20px; }
.page-content-compact .service-price { border-radius: 19px; }
.page-content-compact .service-preparation .preparation-grid { margin-top: 18px; }
.page-content-compact .preparation-grid .service-card { padding: 18px 20px; }
.page-content-compact .preparation-grid .service-card p { min-height: 0; margin-bottom: 0; }
.page-content-compact .service-preparation .text-links { margin-top: 17px; }
.service-related-compact { margin-top: 2px; padding: 26px 28px 29px !important; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(130deg,rgba(237,243,244,.78),rgba(246,242,237,.8)); }
.service-related-compact .section-copy { max-width: 760px; margin-bottom: 10px; }
.service-related-compact .text-links { gap: 9px 22px; margin-top: 10px; }
.section-heading { display: grid; grid-template-columns: 28px minmax(0,1fr); gap: 15px; align-items: start; margin-bottom: 22px; }
.section-rule { display: block; width: 24px; height: 2px; margin-top: 17px; background: var(--accent); }
h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(26px, 3vw, 38px); line-height: 1.18; letter-spacing: -.035em; font-weight: 700; }
h3 { margin-bottom: 10px; font-size: 20px; line-height: 1.25; letter-spacing: -.02em; }
.section-copy, .content-section > p { max-width: var(--reading); margin: 0 0 18px 43px; color: var(--muted); }
.plain-list { max-width: var(--reading); padding-left: 22px; margin: 10px 0 22px 43px; color: var(--muted); }
.plain-list li { padding: 5px 0 5px 4px; }
.text-links { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 22px 0 0 43px; }
.text-links a { color: var(--accent); font-size: 14px; font-weight: 730; }
.text-links span, .service-card a span { padding-left: 3px; font-size: 11px; }
.service-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin: 29px 0 0 43px; }
.comparison-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin: 24px 0 0 43px; }
.preparation-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin: 24px 0 0 43px; }
.service-comparison, .service-preparation { scroll-margin-top: 100px; }
.service-comparison .service-card, .service-preparation .service-card { background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(236,242,241,.68)); }
.comparison-grid .service-card { padding: 23px 24px; }
.comparison-grid .service-card p, .preparation-grid .service-card p { min-height: 0; margin-bottom: 0; }
.service-comparison .section-copy, .service-preparation .section-copy { max-width: 760px; }
.trust-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin: 29px 0 0 43px; }
.service-card { padding: 23px 20px 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.7); box-shadow: 0 8px 22px rgba(39,57,63,.035); }
.resource-card { padding: 12px; overflow: hidden; }
.resource-card-image { display: block; width: 100%; height: auto; aspect-ratio: 1.5; object-fit: cover; margin-bottom: 16px; border-radius: 12px; }
.resource-card h3 { margin-top: 0; }
.service-card p { min-height: 82px; margin-bottom: 17px; color: var(--muted); font-size: 14px; }
.service-card a { color: var(--accent); font-size: 14px; font-weight: 750; }
.steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 32px; padding: 0; margin: 29px 0 0 43px; list-style: none; counter-reset: step; }
.steps li { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 13px; align-items: start; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.62); padding: 17px; }
.step-number { color: var(--accent); font-size: 12px; font-weight: 800; font-variant-numeric: tabular-nums; }
.steps p { max-width: 280px; margin: 0; color: var(--muted); }
.compact-links { border-bottom: 0; }

.price-intro { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.price-intro p { max-width: 720px; margin: 0; color: var(--muted); }
.price-jumps { display: flex; flex-wrap: wrap; gap: 8px 23px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.price-jumps a { color: var(--accent); font-size: 13px; font-weight: 700; }
.price-group { padding-top: 40px; padding-bottom: 44px; }
.price-note { margin: -8px 0 17px 43px; color: var(--muted); font-size: 14px; }
.table-wrap { margin-left: 43px; overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 8px 24px rgba(39,57,63,.04); }
table { width: 100%; border-collapse: collapse; text-align: left; font-size: 14px; }
th, td { padding: 13px 17px; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { color: var(--muted); font-size: 12px; font-weight: 750; background: var(--soft); }
tbody th { width: 53%; font-weight: 580; }
tbody td { font-weight: 720; font-variant-numeric: tabular-nums; white-space: nowrap; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
.price-groups + .content-section { margin-top: 8px; }

.review-list { padding: 25px 0 12px; }
.review-item { padding: 21px 0; border-bottom: 1px solid var(--line); }
.review-item h2 { margin-bottom: 12px; font-size: 17px; letter-spacing: 0; }
.review-item iframe { display: block; width: 100%; height: 120px; border: 0; background: var(--soft); }
.review-fallback { display: inline-block; margin-top: 9px; color: var(--accent); font-size: 13px; font-weight: 700; }
.service-details { margin: 28px 0 36px; padding: 30px 28px; border: 1px solid #dce6e5; border-radius: 22px; background: linear-gradient(125deg,rgba(237,243,244,.78),rgba(240,242,237,.72)); }
.service-details .section-heading { margin-bottom: 16px; }
.detail-prose { max-width: 870px; margin-left: 43px; color: var(--muted); }
.detail-prose p { margin: 0 0 13px; }
.detail-prose p:last-child { margin-bottom: 0; }
.faq-list { margin-left: 43px; max-width: 870px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 16px 34px 16px 0; color: var(--ink); font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; color: var(--accent); font-size: 20px; font-weight: 500; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 750px; margin: 0; padding: 0 28px 17px 0; color: var(--muted); }
.contact-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.72fr); gap: clamp(40px,8vw,112px); padding: 44px 0 10px; }
.contact-details { display: grid; align-content: start; }
.contact-line { display: grid; gap: 4px; padding: 14px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-line span { color: var(--muted); font-size: 12px; }
.contact-line strong { font-size: 19px; font-weight: 700; }
.editor-note { margin: 13px 0 0; color: #705234; font-size: 12px; }
.contact-aside { padding: 25px 0 0 26px; border-left: 2px solid var(--accent); }
.contact-aside p { max-width: 370px; color: var(--muted); }
.contact-aside .button { margin-top: 8px; }
.about-lead { display: grid; grid-template-columns: minmax(280px,.85fr) minmax(0,1fr); gap: 50px; align-items: center; padding: 34px 0 0; }
.about-lead > p { max-width: 600px; margin: 0; color: var(--muted); font-size: 19px; }
.about-photo { margin: 0; }

.before-order { max-width: var(--content); margin: 38px auto 62px; padding: 36px 40px; display: flex; justify-content: space-between; align-items: center; gap: 28px; background: linear-gradient(120deg,#edf3f4 0%,#f0f2ed 100%); border: 1px solid #dce6e5; border-radius: 24px; box-shadow: 0 12px 34px rgba(39,57,63,.055); }
.before-order > div { max-width: 760px; }
.before-order .eyebrow { margin-bottom: 8px; }
.before-order h2 { margin-bottom: 10px; font-size: 25px; }
.before-order p:last-child { margin-bottom: 0; color: var(--muted); }
.before-order .button { flex: 0 0 auto; }
.site-footer { background: var(--footer); color: var(--footer-text); }
.footer-inner { max-width: var(--content); margin: 0 auto; padding: 49px 28px 40px; display: grid; grid-template-columns: 1.15fr .8fr 1.05fr .95fr 1.15fr; gap: 27px; }
.brand-light { color: var(--footer-text); }
.brand-light small { color: var(--footer-text); background: rgba(255,255,255,.12); }
.footer-brand p { max-width: 330px; margin: 16px 0 0; color: #c4d1cf; font-size: 14px; }
.footer-inner h2 { margin: 0 0 14px; font-size: 14px; letter-spacing: .01em; }
.footer-inner ul { display: grid; gap: 8px; padding: 0; margin: 0; list-style: none; color: #e0e9e7; font-size: 14px; }
.footer-inner a { color: #edf4f2; text-decoration-color: #8ca19e; }
.footer-inner a:hover { color: #fff; }
.footer-inner address { font-style: normal; line-height: 1.55; }
.breadcrumbs { max-width: var(--content); margin: 0 auto; padding: 17px 28px 0; color: var(--muted); font-size: 12px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; padding: 0; margin: 0; list-style: none; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 7px; }
.breadcrumbs a { color: var(--accent); text-decoration-thickness: 1px; }
.breadcrumbs [aria-current="page"] { color: var(--ink); }
.breadcrumb-separator { color: #9aadaa; }
.editorial-note { max-width: var(--reading); margin: 28px 0 8px 43px; padding: 17px 20px; border: 1px solid #d9c6a7; border-radius: 16px; background: #f5efe4; color: var(--ink); }
.editorial-note strong { display: block; margin-bottom: 4px; font-size: 14px; }
.editorial-note p { margin: 0; color: var(--muted); font-size: 14px; }
.privacy-link { display: inline-block; margin-top: 17px; color: #c4d1cf !important; font-size: 12px; }
.footer-bottom { max-width: calc(var(--content) - 56px); margin: 0 auto; padding: 16px 0 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(235,245,242,.22); color: #c4d1cf; font-size: 12px; }
.footer-bottom a { color: #e7f0ee; }
.mobile-call { display: none; }
.scenario-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-top: 24px; }
.scenario-grid .service-card { display: flex; flex-direction: column; padding: 24px 25px 22px; background: linear-gradient(145deg,rgba(255,255,255,.9),rgba(237,243,242,.72)); }
.scenario-grid .service-card h3 { margin-bottom: 9px; }
.scenario-grid .service-card p { min-height: 0; margin: 0 0 16px; }
.scenario-grid .service-card a { align-self: flex-start; margin-top: auto; }
.service-price, .service-additional { padding: 28px 30px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(135deg,#f1f5f3,#f6f2ed); }
.service-price .section-heading, .service-additional .section-heading { margin-bottom: 14px; }
.service-price .section-copy, .service-additional .section-copy { max-width: 800px; margin: 0 0 0 31px; }
.service-price .text-links, .service-additional .text-links { margin-top: 20px; }
.service-reviews-link { display: flex; flex-wrap: wrap; align-items: baseline; gap: 5px 9px; margin: 8px 0 16px 43px; padding: 14px 18px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.62); color: var(--muted); font-size: 14px; }
.service-reviews-link a { color: var(--accent); font-weight: 750; text-decoration-thickness: 1px; }

@media (max-width: 980px) {
  .footer-inner { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 30px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .header-inner { gap: 20px; padding-inline: 20px; }
  .desktop-nav { gap: 16px; }
  .header-actions { gap: 9px; }
  .header-phone { font-size: 12px; }
  .hero { grid-template-columns: minmax(0,1fr) minmax(300px,.8fr); gap: 36px; padding-inline: 22px; }
  .page-content { padding-inline: 22px; }
  .before-order { margin-inline: 22px; }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 74px; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); font-size: 16px; }
  .header-inner { min-height: 64px; padding-inline: 16px; justify-content: space-between; gap: 10px; }
  .brand { font-size: 17px; }
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .header-phone, .header-actions .button { display: none; }
  .mobile-nav { display: block; }
  .hero { min-height: unset; grid-template-columns: 1fr; gap: 25px; padding: 38px 18px 31px; }
  .hero-text-only { padding-bottom: 22px; }
  .price-hero { padding-top: 28px; padding-bottom: 21px; }
  .eyebrow { margin-bottom: 12px; font-size: 11px; }
  h1 { margin-bottom: 13px; font-size: clamp(35px, 9vw, 46px); line-height: 1.04; }
  .price-hero h1 { font-size: clamp(34px, 8.2vw, 42px); }
  .hero-lead { margin-bottom: 18px; font-size: 16px; line-height: 1.6; }
  .hero-actions { gap: 14px; }
  .hero-points { gap: 6px 13px; margin-top: 19px; }
  .hero-photo img { aspect-ratio: 1.45; }
  .page-content { padding-inline: 18px; }
  .content-section { padding: 40px 0 42px; }
  .breadcrumbs { padding: 12px 18px 0; font-size: 11px; }
  .editorial-note { margin: 19px 0 6px 31px; padding: 15px 16px; }
  .section-heading { grid-template-columns: 20px minmax(0,1fr); gap: 11px; margin-bottom: 17px; }
  .section-rule { width: 18px; margin-top: 14px; }
  h2 { font-size: 27px; }
  h3 { font-size: 18px; }
  .section-copy, .content-section > p { margin-left: 31px; }
  .service-details { margin: 20px 0 24px; padding: 23px 17px; border-radius: 18px; }
  .page-content-compact > .content-section { padding-block: 29px 32px; }
  .page-content-compact > .service-details { margin: 15px 0 17px; padding: 21px 17px; }
  .service-related-compact { padding: 20px 17px 22px !important; }
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario-grid { gap: 12px; margin-top: 18px; }
  .scenario-grid .service-card { padding: 20px 19px; }
  .service-price, .service-additional { padding: 22px 17px; border-radius: 18px; }
  .service-price .section-copy, .service-additional .section-copy { margin-left: 31px; }
  .service-reviews-link { margin-left: 31px; padding: 13px 15px; }
  .service-details .section-heading { margin-bottom: 13px; }
  .detail-prose { margin-left: 31px; font-size: 15px; }
  .faq-list { margin-left: 31px; }
  .plain-list, .text-links, .service-grid, .steps, .price-note, .table-wrap { margin-left: 31px; }
  .comparison-grid, .preparation-grid { grid-template-columns: 1fr; gap: 10px; margin: 19px 0 0 31px; }
  .service-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
  .trust-grid { grid-template-columns: repeat(2,minmax(0,1fr)); margin: 20px 0 0 31px; }
  .service-card { padding: 18px 0; }
  .comparison-grid .service-card, .preparation-grid .service-card { padding: 17px 18px; }
  .resource-card { padding: 12px; }
  .service-card p { min-height: unset; margin-bottom: 11px; }
  .steps { grid-template-columns: 1fr; gap: 10px; margin-top: 19px; }
  .steps li { grid-template-columns: 32px 1fr; padding: 15px 0; }
  .steps p { max-width: none; }
  .text-links { gap: 12px 18px; }
  .price-intro { align-items: stretch; flex-direction: column; gap: 17px; padding: 24px 0; }
  .price-intro .button { align-self: flex-start; }
  .price-jumps { flex-wrap: nowrap; overflow-x: auto; padding: 14px 0; white-space: nowrap; scrollbar-width: thin; }
  .price-jumps a { flex: 0 0 auto; }
  .price-group { padding-top: 30px; padding-bottom: 33px; }
  .price-note { margin-top: -5px; }
  .table-wrap { overflow-x: visible; }
  table { font-size: 13px; }
  th, td { padding: 12px 10px; }
  tbody th { width: 48%; }
  tbody td { white-space: normal; }
  .contact-layout { grid-template-columns: 1fr; gap: 30px; padding-top: 25px; }
  .contact-line strong { font-size: 17px; }
  .contact-aside { padding: 19px 0 0 18px; }
  .about-lead { grid-template-columns: 1fr; gap: 20px; padding-top: 20px; }
  .about-lead > p { font-size: 17px; }
  .before-order { margin: 26px 18px 40px; padding: 24px 21px; align-items: stretch; flex-direction: column; gap: 19px; }
  .before-order h2 { font-size: 23px; }
  .before-order .button { align-self: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 29px 22px; padding: 35px 18px 27px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-inner h2 { font-size: 13px; }
  .footer-inner ul { gap: 7px; font-size: 13px; }
  .footer-bottom { margin-inline: 18px; }
  .mobile-call { position: fixed; z-index: 40; display: block; left: 0; right: 0; bottom: 0; padding: 9px 16px calc(9px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.97); border-top: 1px solid var(--line); }
  .mobile-call a { min-height: 48px; display: grid; place-items: center; border-radius: 999px; background: var(--accent); color: #fff; text-decoration: none; font-weight: 750; }
}
@media (max-width: 380px) {
  .hero { padding-inline: 15px; }
  .page-content { padding-inline: 15px; }
  .before-order { margin-inline: 15px; }
  .service-card { padding-right: 5px; }
  th, td { padding-inline: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
