:root {
  --yes2-primary: #f24822;
  --yes2-primary-dark: #c92e19;
  --yes2-ink: #142329;
  --yes2-surface: #f3f7f6;
  --yes2-muted: #607176;
  --yes2-line: #dbe4e2;
  --yes2-white: #fff;
  --yes2-radius: 24px;
  --yes2-shadow: 0 24px 70px rgba(20, 35, 41, .1);
  --yes2-container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--yes2-ink);
  background: var(--yes2-white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-is-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--yes2-primary-dark); }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { margin: 0 0 .55em; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1.25em; }
ul, ol { margin-top: 0; }
:focus-visible { outline: 3px solid var(--yes2-primary); outline-offset: 4px; }

.container { width: min(calc(100% - 40px), var(--yes2-container)); margin-inline: auto; }
.content-narrow { max-width: 780px; }
.section { padding-block: clamp(76px, 10vw, 132px); }
.section--surface { background: var(--yes2-surface); }
.section--ink { color: var(--yes2-white); background: var(--yes2-ink); }
.site-main { min-height: 55vh; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  z-index: 100000; top: 12px; left: 12px; width: auto; height: auto; padding: 12px 18px;
  clip: auto; background: var(--yes2-white); color: var(--yes2-ink); font-weight: 700;
}

.eyebrow {
  margin-bottom: 18px; color: var(--yes2-primary); font-size: .76rem; font-weight: 800;
  letter-spacing: .17em; line-height: 1.2; text-transform: uppercase;
}
.eyebrow--light { color: #ffb8a7; }
.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 25px; border: 2px solid var(--yes2-primary); border-radius: 999px;
  color: var(--yes2-white); background: var(--yes2-primary); font-size: .91rem; font-weight: 800;
  line-height: 1.2; text-align: center; text-decoration: none; transition: .2s ease;
}
.button:hover { color: var(--yes2-white); border-color: var(--yes2-primary-dark); background: var(--yes2-primary-dark); transform: translateY(-2px); }
.button--small { min-height: 44px; padding: 10px 19px; font-size: .83rem; }
.button--ghost, .button--outline { color: var(--yes2-ink); background: transparent; }
.button--light { color: var(--yes2-ink); border-color: var(--yes2-white); background: var(--yes2-white); }
.button--light:hover { color: var(--yes2-white); border-color: var(--yes2-primary); background: var(--yes2-primary); }
.text-link { color: var(--yes2-primary-dark); font-size: .9rem; font-weight: 800; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.site-header { position: relative; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--yes2-line); }
.header-meta { color: #dce8e5; background: var(--yes2-ink); font-size: .74rem; }
.header-meta__inner { display: flex; min-height: 32px; align-items: center; justify-content: flex-end; gap: 28px; }
.header-main { display: flex; min-height: 84px; align-items: center; gap: clamp(22px, 3vw, 42px); }
.site-branding { flex: 0 0 auto; }
.site-logo-link { display: block; line-height: 0; }
.site-logo { width: 132px; max-height: 62px; object-fit: contain; }
.custom-logo-link img { width: auto; max-width: 150px; max-height: 64px; }
.primary-navigation { margin-left: auto; }
.primary-navigation ul { display: flex; align-items: center; gap: clamp(17px, 2vw, 30px); margin: 0; padding: 0; list-style: none; }
.primary-navigation li { position: relative; }
.primary-navigation a { display: block; padding-block: 28px; font-size: .85rem; font-weight: 750; text-decoration: none; }
.primary-navigation .sub-menu {
  position: absolute; top: calc(100% - 8px); left: -18px; display: none; width: 230px; padding: 12px 18px;
  border: 1px solid var(--yes2-line); border-radius: 15px; background: var(--yes2-white); box-shadow: var(--yes2-shadow);
}
.primary-navigation li:hover > .sub-menu, .primary-navigation li:focus-within > .sub-menu { display: block; }
.primary-navigation .sub-menu a { padding: 8px 0; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { font-size: .84rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; border-radius: 50%; background: var(--yes2-surface); cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--yes2-ink); transition: .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; padding-block: clamp(72px, 10vw, 135px); background: linear-gradient(130deg, #f7faf9 0%, #fff 58%, #fff0ec 100%); }
.hero::before { position: absolute; inset: 0; content: ""; opacity: .42; background-image: radial-gradient(#a8b9b5 1px, transparent 1px); background-size: 25px 25px; mask-image: linear-gradient(90deg, #000, transparent 55%); }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); align-items: center; gap: clamp(46px, 8vw, 112px); }
.hero__content { position: relative; z-index: 2; }
.hero h1 { max-width: 820px; }
.hero__lead { max-width: 700px; color: var(--yes2-muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 35px 0 44px; }
.hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 690px; margin: 0; padding: 0; list-style: none; }
.hero__facts li { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; min-height: 54px; padding-right: 18px; border-right: 1px solid var(--yes2-line); }
.hero__facts li + li { padding-left: 18px; }
.hero__facts li:last-child { border: 0; }
.hero__facts strong { color: var(--yes2-primary); font-size: .75rem; }
.hero__facts span { font-size: .78rem; font-weight: 700; line-height: 1.35; }
.hero__visual { position: relative; min-height: 520px; }
.hero-ear { position: absolute; z-index: 2; inset: 45px 20px 55px 30px; display: grid; place-items: center; border-radius: 49% 51% 48% 52% / 55% 45% 55% 45%; background: var(--yes2-primary); box-shadow: 0 35px 80px rgba(242,72,34,.27); transform: rotate(5deg); }
.hero-ear svg { width: 72%; max-height: 78%; fill: none; stroke: #fff; stroke-linecap: round; stroke-width: 10; transform: rotate(-5deg); }
.hero-orbit { position: absolute; border: 1px solid rgba(242,72,34,.27); border-radius: 50%; }
.hero-orbit--one { inset: 10px 2px 25px 0; }
.hero-orbit--two { inset: 65px -35px 75px 48px; }
.hero-note { position: absolute; z-index: 3; right: -20px; bottom: 22px; max-width: 220px; padding: 17px 20px; border: 1px solid var(--yes2-line); border-radius: 16px; background: rgba(255,255,255,.93); box-shadow: var(--yes2-shadow); font-size: .76rem; font-weight: 750; line-height: 1.45; }
.hero-note span { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--yes2-primary); }

.trust-strip { color: #e8f0ee; background: var(--yes2-ink); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 14px; min-height: 126px; padding: 24px 22px; border-right: 1px solid rgba(255,255,255,.13); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { padding-right: 0; border-right: 0; }
.trust-grid p { margin: 0; font-size: .76rem; line-height: 1.45; }
.trust-grid strong { color: var(--yes2-white); font-size: .84rem; }
.trust-icon { display: grid; width: 35px; height: 35px; place-items: center; color: #ff9d86; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }

.section-heading { max-width: 780px; margin-bottom: clamp(38px, 6vw, 65px); }
.section-heading h2 { margin-bottom: 17px; }
.section-heading__text { max-width: 610px; color: var(--yes2-muted); font-size: 1.08rem; }
.card-grid { display: grid; gap: 22px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.service-card { position: relative; display: flex; min-height: 325px; flex-direction: column; padding: clamp(29px, 4vw, 43px); overflow: hidden; border: 1px solid var(--yes2-line); border-radius: var(--yes2-radius); background: var(--yes2-white); transition: .25s ease; }
.service-card::after { position: absolute; right: -35px; bottom: -55px; width: 130px; height: 130px; border: 22px solid var(--yes2-surface); border-radius: 50%; content: ""; transition: .3s; }
.service-card:hover { border-color: transparent; box-shadow: var(--yes2-shadow); transform: translateY(-6px); }
.service-card:hover::after { border-color: #fee2db; transform: scale(1.2); }
.service-card h2, .service-card h3 { position: relative; z-index: 1; margin-top: auto; }
.service-card h2 { font-size: 1.55rem; }
.service-card h2 a, .service-card h3 a { text-decoration: none; }
.service-card p { position: relative; z-index: 1; color: var(--yes2-muted); font-size: .91rem; }
.service-card .text-link { position: relative; z-index: 1; margin-top: 7px; }
.card-index { color: var(--yes2-primary); font-size: .74rem; font-weight: 900; letter-spacing: .13em; }
.section-action { margin-top: 42px; text-align: center; }

.devices-section { position: relative; overflow: hidden; }
.devices-section::after { position: absolute; top: -30%; right: -12%; width: 630px; height: 630px; border: 80px solid rgba(255,255,255,.035); border-radius: 50%; content: ""; }
.devices-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(52px, 9vw, 125px); }
.devices-grid > div:first-child p:not(.eyebrow) { color: #bdcbc8; }
.need-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.need-card { min-height: 205px; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.05); }
.need-card:first-child { grid-column: 1 / -1; }
.need-card span { color: #ff9d86; font-size: .7rem; font-weight: 900; }
.need-card h3 { margin: 42px 0 9px; }
.need-card p { margin: 0; color: #adbfbb; font-size: .84rem; }

.steps-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps-list li { position: relative; min-height: 260px; padding: 0 27px 25px; border-left: 1px solid var(--yes2-line); }
.steps-list li:first-child { padding-left: 0; border-left: 0; }
.steps-list li::before { position: absolute; top: 21px; left: 0; right: 0; height: 1px; background: var(--yes2-line); content: ""; }
.steps-list li:first-child::before { left: 0; }
.steps-list li span { position: relative; z-index: 1; display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 70px; border: 1px solid var(--yes2-primary); border-radius: 50%; color: var(--yes2-primary); background: var(--yes2-white); font-size: .7rem; font-weight: 900; }
.steps-list h3 { font-size: 1.25rem; }
.steps-list p { color: var(--yes2-muted); font-size: .86rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { min-height: 285px; margin: 0; padding: 34px; border-radius: var(--yes2-radius); background: var(--yes2-white); box-shadow: 0 12px 35px rgba(20,35,41,.055); }
.quote-mark { height: 50px; color: var(--yes2-primary); font: 700 4.5rem/.9 Georgia, serif; }
.review-card > p { color: #3d5156; font-size: .95rem; }
.review-card footer { margin-top: 25px; font-size: .85rem; }
.empty-state { grid-column: 1 / -1; padding: 40px; border: 1px dashed #bdcac7; border-radius: var(--yes2-radius); text-align: center; }
.empty-state__icon { display: block; color: var(--yes2-primary); font: 700 4rem/1 Georgia, serif; }
.needs-content { display: inline-flex; padding: 5px 9px; border-radius: 5px; color: #785522; background: #fff1c9; font-size: .7rem; font-weight: 800; line-height: 1.3; }
.needs-content--dark { color: #ffe5a0; background: rgba(255,229,160,.1); }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: clamp(52px, 9vw, 120px); }
.faq-layout .section-heading { position: sticky; top: 40px; }
.faq-item { border-top: 1px solid var(--yes2-line); }
.faq-item:last-child { border-bottom: 1px solid var(--yes2-line); }
.faq-item summary { position: relative; padding: 25px 48px 25px 0; font-weight: 800; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span::before, .faq-item summary span::after { position: absolute; top: 50%; right: 8px; width: 16px; height: 2px; background: var(--yes2-primary); content: ""; transition: .2s; }
.faq-item summary span::after { transform: rotate(90deg); }
.faq-item[open] summary span::after { transform: rotate(0); }
.faq-answer { padding: 0 45px 22px 0; color: var(--yes2-muted); font-size: .92rem; }
.faq-answer > :last-child { margin-bottom: 0; }

.appointment-section { position: relative; color: var(--yes2-white); background: var(--yes2-primary); }
.appointment-section::before { position: absolute; inset: 0; opacity: .16; background: radial-gradient(circle at 80% 40%, #fff 0 2px, transparent 3px); background-size: 32px 32px; content: ""; }
.appointment-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 10vw, 130px); }
.appointment-copy > p:not(.eyebrow) { color: #ffe3dd; }
.appointment-phone { display: inline-block; margin-top: 15px; color: var(--yes2-white); font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 850; text-decoration: none; }
.appointment-form-wrap { padding: clamp(27px, 5vw, 48px); border-radius: var(--yes2-radius); color: var(--yes2-ink); background: var(--yes2-white); box-shadow: 0 30px 80px rgba(109,21,0,.19); }
.yes2-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.yes2-form__field { margin: 0; }
.yes2-form__field--wide, .yes2-form__consent, .yes2-form__status, .yes2-form .button { grid-column: 1 / -1; }
.yes2-form label { display: block; margin-bottom: 7px; font-size: .78rem; font-weight: 800; }
.yes2-form input, .yes2-form textarea, .yes2-form select, .search-form input[type="search"] {
  width: 100%; min-height: 52px; padding: 12px 15px; border: 1px solid #cdd9d6; border-radius: 10px; color: var(--yes2-ink); background: #fff;
}
.yes2-form textarea { min-height: 110px; resize: vertical; }
.yes2-form__consent { display: grid; grid-template-columns: 20px 1fr; gap: 9px; align-items: start; color: var(--yes2-muted); font-size: .71rem; }
.yes2-form__consent input { width: 17px; min-height: 17px; margin-top: 3px; }
.yes2-form__status { margin: 0; font-size: .82rem; font-weight: 700; }
.yes2-form__status.is-error { color: #a5220c; }
.yes2-form__status.is-success { color: #176b47; }
.plugin-required { padding: 28px; border: 1px dashed #bbc8c5; border-radius: 15px; text-align: center; }
.plugin-required p { margin-bottom: 0; color: var(--yes2-muted); font-size: .88rem; }

.contacts-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: stretch; gap: clamp(50px, 9vw, 110px); }
.contact-list { margin: 40px 0; }
.contact-list > div { display: grid; grid-template-columns: 90px 1fr; gap: 15px; padding: 18px 0; border-top: 1px solid var(--yes2-line); }
.contact-list > div:last-child { border-bottom: 1px solid var(--yes2-line); }
.contact-list dt { color: var(--yes2-muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.contact-list dd { margin: 0; font-weight: 750; }
.map-placeholder { position: relative; display: grid; min-height: 430px; place-items: center; overflow: hidden; border-radius: var(--yes2-radius); background: #e8eeec; text-align: center; }
.map-placeholder p { position: relative; z-index: 2; max-width: 300px; margin: 115px 25px 0; padding: 11px 15px; border-radius: 9px; background: rgba(255,255,255,.9); font-size: .78rem; font-weight: 750; }
.map-lines, .map-lines::before, .map-lines::after { position: absolute; inset: 0; content: ""; }
.map-lines { opacity: .65; background: linear-gradient(28deg, transparent 46%, #c4cfcc 47% 49%, transparent 50%), linear-gradient(145deg, transparent 33%, #ced7d5 34% 37%, transparent 38%); }
.map-lines::before { transform: rotate(18deg); border: 28px solid transparent; border-top-color: #f4f6f5; border-radius: 50%; }
.map-pin { position: absolute; z-index: 2; top: 42%; left: 50%; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50% 50% 50% 0; color: #fff; background: var(--yes2-primary); font-weight: 900; transform: translate(-50%,-50%) rotate(-45deg); box-shadow: 0 13px 25px rgba(242,72,34,.26); }
.map-pin::first-letter { transform: rotate(45deg); }

.page-hero { padding-block: clamp(75px, 11vw, 135px); background: linear-gradient(135deg, var(--yes2-surface), #fff); }
.page-hero .container { max-width: var(--yes2-container); }
.page-hero h1 { max-width: 920px; font-size: clamp(2.5rem, 6vw, 5rem); }
.page-hero p:not(.eyebrow), .archive-description { max-width: 700px; color: var(--yes2-muted); font-size: 1.08rem; }
.page-hero--article .container { max-width: 780px; }
.content-section { padding-block: clamp(60px, 9vw, 110px); }
.entry-content > * { max-width: 100%; }
.entry-content > :first-child { margin-top: 0; }
.entry-content h2 { margin-top: 1.5em; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.entry-content h3 { margin-top: 1.5em; }
.entry-content blockquote { margin: 2em 0; padding: 25px 32px; border-left: 4px solid var(--yes2-primary); background: var(--yes2-surface); }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 12px; border: 1px solid var(--yes2-line); text-align: left; }
.featured-image { margin: 0 0 45px; overflow: hidden; border-radius: var(--yes2-radius); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { overflow: hidden; border: 1px solid var(--yes2-line); border-radius: var(--yes2-radius); background: #fff; }
.post-card__image { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-card__image img { transform: scale(1.035); }
.post-card__content { padding: 29px; }
.post-card__content h2 { font-size: 1.4rem; }
.post-card__content h2 a { text-decoration: none; }
.post-card__content > p:not(.post-card__meta) { color: var(--yes2-muted); font-size: .88rem; }
.post-card__meta { margin-bottom: 12px; color: var(--yes2-primary); font-size: .68rem; font-weight: 850; text-transform: uppercase; }
.navigation.pagination { margin-top: 48px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: grid; min-width: 42px; min-height: 42px; place-items: center; padding: 7px; border: 1px solid var(--yes2-line); border-radius: 50%; text-decoration: none; }
.page-numbers.current { color: #fff; border-color: var(--yes2-primary); background: var(--yes2-primary); }
.not-found { display: grid; min-height: 62vh; align-items: center; padding-block: 80px; text-align: center; }
.not-found .content-narrow { margin-inline: auto; }
.not-found p:not(.eyebrow) { color: var(--yes2-muted); }

.site-footer { padding-top: clamp(62px, 8vw, 100px); color: #c3d0cd; background: #0c171b; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr; gap: clamp(38px, 7vw, 95px); }
.footer-brand p { max-width: 350px; margin-top: 25px; color: #899c98; font-size: .8rem; }
.footer-title, .footer-widget__title { margin-bottom: 22px; color: #fff; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #c3d0cd; font-size: .82rem; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-contacts { font-size: .82rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.social-links a { color: #ff9d86; font-weight: 800; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 70px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p, .footer-bottom a { margin: 0; color: #70827e; font-size: .67rem; }

.has-reveal .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.has-reveal .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .header-phone { display: none; }
  .hero__grid { grid-template-columns: 1.1fr .9fr; gap: 45px; }
  .hero__visual { min-height: 430px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:first-child, .trust-grid > div:nth-child(3) { padding-left: 0; }
  .card-grid--3, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-list { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
}

@media (max-width: 959px) {
  .header-main { min-height: 76px; }
  .menu-toggle { display: block; margin-left: auto; }
  .primary-navigation { position: fixed; z-index: 40; inset: 76px 0 0; display: none; margin: 0; padding: 25px 20px 45px; overflow-y: auto; background: #fff; }
  .header-meta + .header-main + .primary-navigation { top: 108px; }
  .primary-navigation.is-open { display: block; }
  .primary-navigation ul { display: block; }
  .primary-navigation a { padding: 14px 4px; border-bottom: 1px solid var(--yes2-line); font-size: 1.05rem; }
  .primary-navigation .sub-menu { position: static; display: block; width: auto; padding: 0 0 0 18px; border: 0; box-shadow: none; }
  .header-actions .button { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 780px; }
  .hero__visual { width: min(100%, 500px); min-height: 470px; margin-inline: auto; }
  .devices-grid, .appointment-grid, .contacts-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 0; }
  .faq-layout .section-heading { position: static; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--yes2-container)); }
  .header-meta__inner { justify-content: center; }
  .header-meta__inner span:nth-child(2) { display: none; }
  .site-logo { width: 112px; }
  .hero { padding-top: 60px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__facts { grid-template-columns: 1fr; gap: 0; }
  .hero__facts li, .hero__facts li + li { padding: 11px 0; border-right: 0; border-bottom: 1px solid var(--yes2-line); }
  .hero__facts li:last-child { border-bottom: 0; }
  .hero__visual { min-height: 390px; }
  .hero-ear { inset: 40px 15px 50px; }
  .hero-note { right: 0; }
  .trust-grid, .card-grid--3, .post-grid, .reviews-grid, .need-cards, .steps-list, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 96px; padding: 19px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .need-card:first-child { grid-column: auto; }
  .steps-list { gap: 0; }
  .steps-list li, .steps-list li:first-child { display: grid; grid-template-columns: 45px 1fr; gap: 17px; min-height: 0; padding: 0 0 35px; border: 0; }
  .steps-list li::before { top: 44px; right: auto; bottom: 0; left: 21px !important; width: 1px; height: auto; }
  .steps-list li:last-child::before { display: none; }
  .steps-list li span { margin: 0; }
  .appointment-form-wrap { padding: 24px 18px; }
  .yes2-form { grid-template-columns: 1fr; }
  .yes2-form__field--wide, .yes2-form__consent, .yes2-form__status, .yes2-form .button { grid-column: auto; }
  .map-placeholder { min-height: 350px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 45px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
