:root {
  --navy:#082445;
  --navy-deep:#061a32;
  --gold:#c99a34;
  --gold-soft:#ead9b5;
  --warm:#f8f5ef;
  --white:#fff;
  --text:#0b2749;
  --muted:#52616c;
  --line:#ded7cb;
  --shadow:0 14px 34px rgba(8,36,69,.09);
  --radius:16px;
  --container:1180px;
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  overflow-x:clip
}
body {
  margin:0;
  background:var(--white);
  color:var(--text);
  font-family:"Rubik",Arial,sans-serif;
  font-size:17px;
  line-height:1.65;
  overflow-x:clip
}
a {
  color:inherit;
  text-decoration:none
}
a:hover {
  color:var(--gold)
}
img {
  display:block;
  max-width:100%;
  height:auto
}
button,input,textarea,select {
  font:inherit
}
.container {
  width:min(var(--container),calc(100% - 40px));
  margin-inline:auto
}
.skip-link {
  position:fixed;
  inset-inline-start:16px;
  top:-90px;
  z-index:9999;
  background:var(--gold);
  color:var(--navy);
  padding:10px 16px;
  border-radius:10px;
  font-weight:800
}
.skip-link:focus {
  top:12px
}
.site-header {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid rgba(222,215,203,.8);
  backdrop-filter:blur(12px)
}
.header-inner {
  min-height:72px;
  display:flex;
  align-items:center;
  gap:26px
}
.brand {
  display:inline-flex;
  align-items:baseline;
  white-space:nowrap;
  letter-spacing:.02em;
  font-size:25px;
  font-weight:900;
  color:var(--navy)
}
.brand b {
  color:#947126
}
.main-nav {
  display:flex;
  align-items:center;
  gap:24px;
  margin-inline-start:auto
}
.main-nav a {
  font-size:15px;
  font-weight:700;
  color:var(--text);
  padding:23px 0 19px;
  border-bottom:3px solid transparent
}
.main-nav a:hover,.main-nav a[aria-current="page"] {
  color:var(--navy);
  border-color:var(--gold)
}
.header-language-switch {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:800
}
.header-language-switch .active {
  color:#947126
}
.menu-toggle {
  display:none;
  width:44px;
  height:44px;
  border:0;
  border-radius:12px;
  background:var(--warm);
  color:var(--navy);
  font-size:24px;
  cursor:pointer
}
.split-hero,.page-hero {
  background:var(--navy);
  color:var(--white)
}
.split-hero-grid {
  min-height:520px;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(430px,.95fr);
  max-width:1440px;
  margin:auto
}
.split-hero-copy {
  display:flex;
  align-items:stretch
}
.split-hero-copy-inner {
  width:min(680px,100%);
  padding:56px 44px 48px max(40px,calc((100vw - var(--container))/2));
  display:flex;
  flex-direction:column;
  justify-content:center
}
html[dir="rtl"] .split-hero-copy-inner {
  padding:56px max(40px,calc((100vw - var(--container))/2)) 48px 44px
}
.split-hero-media {
  min-height:520px;
  overflow:hidden;
  clip-path:polygon(12% 0,100% 0,100% 100%,0 100%)
}
html[dir="rtl"] .split-hero-media {
  clip-path:polygon(0 0,88% 0,100% 100%,0 100%)
}
.split-hero-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center
}
.home-split-hero .split-hero-media img {
  object-position:center 34%
}
.breadcrumbs {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  color:rgba(255,255,255,.78);
  font-size:14px
}
.breadcrumbs a {
  color:rgba(255,255,255,.88)
}
.breadcrumbs a:hover {
  color:var(--gold)
}
.breadcrumbs b {
  font-weight:400;
  opacity:.55
}
h1,h2,h3 {
  margin:0 0 .55em;
  line-height:1.17;
  color:var(--text)
}
.split-hero h1,.page-hero h1,.cta-band h2,.contact-section h2 {
  color:var(--white)
}
h1 {
  font-size:clamp(38px,4vw,48px);
  letter-spacing:-.025em
}
h2 {
  font-size:clamp(28px,3vw,34px);
  letter-spacing:-.018em
}
h3 {
  font-size:21px
}
.split-hero h2 {
  font-size:23px;
  color:var(--gold-soft);
  font-weight:600;
  margin-bottom:20px
}
p {
  margin:0 0 1em
}
.split-hero p {
  color:rgba(255,255,255,.84)
}
.hero-benefits {
  list-style:none;
  margin:8px 0 0;
  padding:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 24px
}
.hero-benefits li {
  position:relative;
  padding:10px 0 10px 31px;
  border-bottom:1px solid rgba(255,255,255,.18);
  font-size:16px;
  font-weight:600;
  color:#fff
}
html[dir="rtl"] .hero-benefits li {
  padding:10px 31px 10px 0
}
.hero-benefits li::before {
  content:"✓";
  position:absolute;
  inset-inline-start:0;
  top:10px;
  width:21px;
  height:21px;
  border:1.5px solid var(--gold);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--gold);
  font-size:13px;
  font-weight:900
}
.hero-actions {
  display:flex;
  gap:12px;
  margin-top:26px;
  flex-wrap:wrap
}
.hero-actions a,.cta-actions a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:10px 22px;
  border-radius:12px;
  font-weight:800;
  border:1px solid transparent
}
.hero-actions .call,.cta-actions .call {
  background:var(--gold);
  color:var(--navy)
}
.hero-actions .wa,.cta-actions .wa {
  border-color:rgba(255,255,255,.45);
  color:#fff;
  background:rgba(255,255,255,.07)
}
.page-hero {
  padding:58px 0 54px
}
.page-hero-copy {
  max-width:820px
}
.page-hero-copy p {
  color:rgba(255,255,255,.82);
  font-size:19px
}
.section,.home-section {
  padding:72px 0;
  background:var(--white)
}
.section.alt,.home-section-alt {
  background:var(--warm)
}
.section.compact {
  padding:58px 0
}
.section-head,.section-heading {
  text-align:center;
  max-width:800px;
  margin:0 auto 34px
}
.section-head p,.section-note {
  color:var(--muted);
  font-size:18px
}
.section-copy p {
  font-size:18px;
  color:var(--muted)
}
.home-two-column {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:48px;
  align-items:center
}
.fact-grid,.prep-grid,.related-grid,.simple-service-grid,.process-grid,.trust-strip,.issue-grid,.city-scan-grid {
  display:grid;
  gap:18px
}
.fact-grid {
  grid-template-columns:repeat(2,1fr)
}
.fact-item,.prep-item,.mini-card,.simple-service,.process-card,.trust-item,.region,.sidebar-card {
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 5px 18px rgba(8,36,69,.04)
}
.fact-item {
  padding:24px;
  text-align:center
}
.fact-item>span {
  display:block;
  color:var(--gold);
  font-size:24px
}
.fact-item strong {
  display:block;
  font-size:23px
}
.fact-item small {
  color:var(--muted)
}
.choice-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px
}
.choice-panel {
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  overflow:hidden
}
.choice-panel summary {
  list-style:none;
  cursor:pointer;
  padding:22px 24px;
  font-size:22px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:12px
}
.choice-panel summary::-webkit-details-marker {
  display:none
}
.choice-panel[open] summary {
  background:var(--navy);
  color:#fff
}
.choice-signal {
  color:var(--gold);
  font-size:22px
}
.scan-links {
  display:grid;
  padding:8px 22px 22px
}
.scan-links a {
  padding:11px 2px;
  border-bottom:1px solid var(--line);
  font-weight:600
}
.scan-links a:last-child {
  border-bottom:0
}
.prep-grid {
  grid-template-columns:repeat(4,1fr)
}
.prep-item {
  padding:22px;
  display:flex;
  gap:14px
}
.prep-item>span {
  color:var(--gold);
  font-size:25px
}
.prep-item p {
  margin:0;
  color:var(--muted);
  font-size:15px
}
.prep-result,.safety-note,.notice,.action-note {
  border-radius:14px;
  padding:18px 20px
}
.prep-result,.action-note {
  background:var(--navy);
  color:#fff
}
.safety-note,.notice {
  background:#fff8e7;
  border:1px solid #ead5a5;
  color:#604c22
}
.price-accordion,.faq {
  display:grid;
  gap:12px
}
.price-accordion details,.faq details {
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden
}
.price-accordion summary,.faq summary {
  list-style:none;
  cursor:pointer;
  padding:18px 22px;
  font-weight:800;
  position:relative
}
.price-accordion summary::-webkit-details-marker,.faq summary::-webkit-details-marker {
  display:none
}
.price-accordion summary::after,.faq summary::after {
  content:"+";
  position:absolute;
  inset-inline-end:20px;
  color:var(--gold);
  font-size:24px;
  line-height:1
}
.price-accordion details[open] summary::after,.faq details[open] summary::after {
  content:"−"
}
.price-accordion details>div,.faq details>p {
  padding:0 22px 20px
}
.section-link-row {
  text-align:center;
  margin-top:24px
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--navy);
  font-weight:800;
  text-decoration:underline;
  text-decoration-color:var(--gold);
  text-underline-offset:4px
}
.city-scan-grid {
  grid-template-columns:repeat(4,1fr)
}
.city-scan-grid a,.city-list a {
  display:block;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:13px 16px;
  font-weight:700;
  text-align:center
}
.city-help {
  text-align:center;
  color:var(--muted)
}
.contact-section,.cta-band {
  background:var(--navy);
  color:#fff;
  text-align:center;
  padding:62px 0
}
.contact-section p,.cta-band p {
  max-width:760px;
  margin:0 auto 22px;
  color:rgba(255,255,255,.82);
  font-size:18px
}
.contact-number {
  display:inline-block;
  font-size:30px;
  font-weight:900;
  color:var(--gold);
  margin-bottom:14px
}
.contact-text-links {
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap
}
.contact-text-links a {
  color:#fff;
  font-weight:700
}
.cta-actions {
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:24px;
  flex-wrap:wrap
}
.related-grid {
  grid-template-columns:repeat(3,1fr)
}
.mini-card {
  padding:22px
}
.mini-card p {
  color:var(--muted);
  font-size:15px
}
.mini-card a {
  font-weight:800;
  color:var(--navy)
}
.simple-service-grid {
  grid-template-columns:repeat(3,1fr)
}
.simple-service {
  padding:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:138px
}
.simple-service h3 {
  padding:22px 22px 10px;
  margin:0
}
.simple-service p {
  padding:0 22px;
  color:var(--muted);
  font-size:15px
}
.simple-service a {
  margin-top:auto;
  padding:14px 22px;
  background:var(--warm);
  font-weight:800;
  border-top:1px solid var(--line)
}
.issue-grid {
  grid-template-columns:repeat(3,1fr)
}
.issue-link {
  display:flex;
  align-items:center;
  min-height:58px;
  padding:14px 18px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  font-weight:700
}
.issue-link::before {
  content:"";
  width:8px;
  height:8px;
  background:var(--gold);
  border-radius:50%;
  margin-inline-end:11px;
  flex:0 0 auto
}
.price-preview {
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow)
}
.price-table {
  width:100%;
  border-collapse:collapse
}
.price-table th,.price-table td {
  padding:16px 18px;
  border-bottom:1px solid var(--line);
  text-align:start;
  vertical-align:top
}
.price-table th {
  width:40%;
  font-weight:700
}
.price-table td:last-child {
  color:var(--muted)
}
.price-table tr:last-child th,.price-table tr:last-child td {
  border-bottom:0
}
.price {
  white-space:nowrap;
  font-weight:900;
  color:var(--navy)
}
.price-more {
  padding:14px 18px;
  background:var(--warm);
  text-align:center
}
.process-grid {
  grid-template-columns:repeat(4,1fr)
}
.process-card {
  padding:22px;
  position:relative
}
.process-card>span {
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--gold);
  color:var(--navy);
  font-weight:900;
  margin-bottom:14px
}
.process-card p {
  color:var(--muted);
  font-size:15px;
  margin:0
}
.trust-strip {
  grid-template-columns:repeat(3,1fr)
}
.trust-item {
  padding:22px
}
.trust-item strong {
  display:block;
  font-size:19px;
  margin-bottom:7px
}
.trust-item p {
  margin:0;
  color:var(--muted);
  font-size:15px
}
.city-list {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px
}
.content-wrap {
  display:grid;
  grid-template-columns:minmax(0,1fr) 290px;
  gap:36px;
  align-items:start
}
.article {
  min-width:0
}
.article>h2,.article>.service-need h2 {
  margin-top:46px
}
.article>h2:first-child,.service-need h2 {
  margin-top:0
}
.article>p {
  color:var(--muted)
}
.service-need {
  background:var(--warm);
  border-radius:var(--radius);
  padding:26px;
  border:1px solid var(--line)
}
.check-list {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 24px;
  padding:0;
  margin:20px 0 0;
  list-style:none
}
.check-list li {
  position:relative;
  padding-inline-start:25px
}
.check-list li::before {
  content:"✓";
  position:absolute;
  inset-inline-start:0;
  color:var(--gold);
  font-weight:900
}
.sidebar {
  display:grid;
  gap:18px;
  position:sticky;
  top:98px
}
.sidebar-card {
  padding:20px
}
.sidebar-card h3 {
  font-size:18px
}
.sidebar-card a {
  display:block;
  padding:9px 0;
  border-bottom:1px solid var(--line);
  font-size:14px;
  font-weight:700
}
.sidebar-card a:last-child {
  border-bottom:0
}
.region {
  padding:25px;
  margin-bottom:20px
}
.region h2 {
  font-size:26px
}
.region .city-list {
  margin-top:16px
}
.site-footer {
  background:var(--navy-deep);
  color:#fff;
  padding:54px 0 30px
}
.footer-grid {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr .55fr;
  gap:34px
}
.footer-brand {
  color:#fff;
  margin-bottom:10px
}
.site-footer p {
  color:rgba(255,255,255,.7);
  font-size:14px
}
.footer-links {
  display:grid;
  align-content:start;
  gap:10px
}
.footer-links a,.language-link a {
  color:#fff;
  font-weight:700
}
.license-line {
  font-size:14px;
  color:rgba(255,255,255,.78);
  margin-bottom:10px
}
.site-footer .text-link {
  color:var(--gold-soft)
}
.desktop-contact {
  display:none
}
.mobile-contact {
  display:none
}
@media(max-width:980px) {
  .main-nav {
    gap:14px
  }
  .main-nav a {
    font-size:14px
  }
  .split-hero-grid {
    grid-template-columns:1fr 42%;
  }
  .split-hero-copy-inner {
    padding-inline:32px
  }
  .home-two-column {
    grid-template-columns:1fr
  }
  .prep-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .simple-service-grid,.related-grid,.issue-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .process-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .city-scan-grid,.city-list {
    grid-template-columns:repeat(3,1fr)
  }
  .content-wrap {
    grid-template-columns:1fr
  }
  .sidebar {
    position:static;
    grid-template-columns:repeat(2,1fr)
  }
  .footer-grid {
    grid-template-columns:1.4fr 1fr 1fr
  }
}
@media(max-width:760px) {
  body {
    font-size:17px;
    padding-bottom:58px
  }
  .container {
    width:min(100% - 28px,var(--container))
  }
  .header-inner {
    min-height:64px;
    gap:12px
  }
  .brand {
    font-size:22px
  }
  .menu-toggle {
    display:grid;
    place-items:center;
    margin-inline-start:auto
  }
  .header-language-switch {
    margin-inline-start:0
  }
  .main-nav {
    display:none;
    position:absolute;
    top:64px;
    inset-inline:0;
    background:#fff;
    border-bottom:1px solid var(--line);
    padding:12px 20px 18px;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  .main-nav.open {
    display:flex
  }
  .main-nav a {
    padding:13px 6px;
    border-bottom:1px solid var(--line)
  }
  .split-hero-grid {
    min-height:auto;
    grid-template-columns:1fr
  }
  .split-hero-copy-inner,html[dir="rtl"] .split-hero-copy-inner {
    padding:32px 22px 34px;
    width:100%
  }
  .city-split-hero .split-hero-media,.service-split-hero .split-hero-media {
    display:none
  }
  .home-split-hero .split-hero-grid {
    grid-template-columns:minmax(0,64%) minmax(0,36%);
    min-height:510px
  }
  .home-split-hero .split-hero-copy-inner,html[dir="rtl"] .home-split-hero .split-hero-copy-inner {
    padding:26px 14px 26px 18px
  }
  .home-split-hero .split-hero-media {
    display:block;
    min-height:510px;
    clip-path:polygon(20% 0,100% 0,100% 100%,0 100%)
  }
  html[dir="rtl"] .home-split-hero .split-hero-media {
    clip-path:polygon(0 0,80% 0,100% 100%,0 100%)
  }
  .home-split-hero h1 {
    font-size:30px
  }
  .home-split-hero .hero-benefits {
    grid-template-columns:1fr;
    gap:0
  }
  .home-split-hero .hero-benefits li {
    font-size:14px;
    padding-top:7px;
    padding-bottom:7px;
    padding-inline-start:26px
  }
  .home-split-hero .hero-benefits li::before {
    top:7px;
    width:18px;
    height:18px;
    font-size:11px
  }
  h1 {
    font-size:32px
  }
  h2 {
    font-size:26px
  }
  h3 {
    font-size:20px
  }
  .split-hero h2 {
    font-size:20px
  }
  .hero-benefits {
    grid-template-columns:1fr
  }
  .hero-actions {
    display:none
  }
  .page-hero {
    padding:42px 0 40px
  }
  .section,.home-section {
    padding:50px 0
  }
  .section.compact {
    padding:44px 0
  }
  .section-head,.section-heading {
    margin-bottom:26px
  }
  .home-two-column,.choice-grid {
    grid-template-columns:1fr
  }
  .fact-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .prep-grid,.simple-service-grid,.related-grid,.issue-grid,.process-grid,.trust-strip,.city-scan-grid,.city-list,.sidebar {
    grid-template-columns:1fr
  }
  .prep-item {
    padding:18px
  }
  .simple-service {
    min-height:0
  }
  .check-list {
    grid-template-columns:1fr
  }
  .price-preview,.price-accordion details {
    overflow:visible
  }
  .price-table,.price-table tbody,.price-table tr,.price-table th,.price-table td {
    display:block;
    width:100%
  }
  .price-table tr {
    padding:14px 16px;
    border-bottom:1px solid var(--line)
  }
  .price-table th,.price-table td {
    border:0;
    padding:2px 0
  }
  .price-table .price {
    font-size:18px;
    margin:3px 0
  }
  .footer-grid {
    grid-template-columns:1fr;
    gap:24px
  }
  .site-footer {
    padding:44px 0 82px
  }
  .contact-section,.cta-band {
    padding:52px 0
  }
  .contact-number {
    font-size:26px
  }
  .mobile-contact {
    position:fixed;
    display:grid;
    grid-template-columns:1fr 1fr;
    inset-inline:0;
    bottom:0;
    z-index:1200;
    height:58px;
    background:#fff;
    border-top:1px solid var(--line);
    box-shadow:0 -8px 26px rgba(8,36,69,.14)
  }
  .mobile-contact a {
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:17px
  }
  .mobile-phone {
    background:var(--gold);
    color:var(--navy)
  }
  .mobile-wa {
    background:var(--navy);
    color:#fff
  }
}
@media(max-width:420px) {
  .home-split-hero .split-hero-grid {
    grid-template-columns:minmax(0,68%) minmax(0,32%)
  }
  .home-split-hero h1 {
    font-size:27px
  }
  .home-split-hero .hero-benefits li {
    font-size:13px
  }
  .fact-grid {
    grid-template-columns:1fr 1fr
  }
  .fact-item {
    padding:17px 10px
  }
  .header-language-switch {
    gap:5px;
    font-size:13px
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  * {
    transition:none!important;
    animation:none!important
  }
}
.local-note {
  max-width:980px;
  margin:0 auto 28px;
  padding:25px 28px;
  border:1px solid var(--line);
  border-inline-start:5px solid var(--gold);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 8px 24px rgba(8,36,69,.06)
}
.local-note h3 {
  font-size:23px;
  margin-bottom:12px
}
.local-note p {
  color:var(--muted);
  margin-bottom:10px
}
.local-note p:last-child {
  margin-bottom:0
}
@media(max-width:760px) {
  .local-note {
    padding:20px;
    margin-bottom:24px
  }
  .local-note h3 {
    font-size:21px
  }
}
@media(max-width:900px) and (min-width:761px) {
  .header-inner {
    min-height:64px
  }
  .menu-toggle {
    display:grid;
    place-items:center;
    margin-inline-start:auto
  }
  .main-nav {
    display:none;
    position:absolute;
    top:64px;
    inset-inline:0;
    background:#fff;
    border-bottom:1px solid var(--line);
    padding:12px 28px 18px;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  .main-nav.open {
    display:flex
  }
  .main-nav a {
    padding:13px 6px;
    border-bottom:1px solid var(--line)
  }
}

/* Russian boiler-short page: scoped spacing and compact layout */
.boiler-short-page .article>.boiler-section {
  margin-top:58px
}
.boiler-short-page .article>.boiler-section:first-child {
  margin-top:0
}
.boiler-short-page .boiler-section>h2 {
  margin:0 0 18px
}
.boiler-short-page .boiler-section>p {
  color:var(--muted)
}
.boiler-short-page .boiler-section>.related-grid,
.boiler-short-page .boiler-section>.process-grid,
.boiler-short-page .boiler-section>.trust-strip,
.boiler-short-page .boiler-section>.faq,
.boiler-short-page .boiler-section>.price-preview {
  margin-top:24px
}
.boiler-short-page .boiler-section>.action-note {
  margin-top:24px
}
.boiler-short-page .boiler-summary {
  margin:22px 0 0;
  padding:18px 20px;
  border-inline-start:4px solid var(--gold);
  border-radius:0 12px 12px 0;
  background:var(--warm)
}
.boiler-short-page .boiler-two-columns {
  grid-template-columns:repeat(2,1fr)
}
.boiler-short-page .boiler-price-notes {
  margin-top:24px
}
.boiler-short-page .service-need.boiler-section>h2 {
  margin-top:0
}
.boiler-short-page .mini-card h3,
.boiler-short-page .process-card h3,
.boiler-short-page .trust-item h3 {
  margin-bottom:10px
}
.boiler-short-page .mini-card p:last-child,
.boiler-short-page .process-card p:last-child,
.boiler-short-page .trust-item p:last-child {
  margin-bottom:0
}
.boiler-short-page .local-note {
  max-width:none;
  margin:0
}
@media(max-width:760px) {
  .boiler-short-page .article>.boiler-section {
    margin-top:42px
  }
  .boiler-short-page .boiler-section>h2 {
    margin-bottom:15px
  }
  .boiler-short-page .boiler-section>.related-grid,
  .boiler-short-page .boiler-section>.process-grid,
  .boiler-short-page .boiler-section>.trust-strip,
  .boiler-short-page .boiler-section>.faq,
  .boiler-short-page .boiler-section>.price-preview {
    margin-top:20px
  }
  .boiler-short-page .boiler-two-columns {
    grid-template-columns:1fr
  }
  .boiler-short-page .service-need {
    padding:22px 20px
  }
  .boiler-short-page .boiler-summary {
    margin-top:18px;
    padding:16px 18px
  }
}

/* Mobile header alignment across the entire site */
@media(max-width:900px) {
  .header-inner {
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:0;
    padding-inline:8px
  }
  .header-inner>.brand {
    grid-column:2;
    grid-row:1;
    justify-self:center;
    margin:0;
    position:relative;
    z-index:2
  }
  .header-inner>.menu-toggle {
    grid-column:3;
    grid-row:1;
    justify-self:end;
    margin:0
  }
  .header-inner>.header-language-switch {
    grid-column:1;
    grid-row:1;
    justify-self:start;
    margin:0
  }
}

/* Russian services directory page */
.services-directory-hero .split-hero-copy-inner {
  width:min(720px,100%)
}
.services-directory-hero .split-hero-copy-inner>p {
  max-width:650px;
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:20px;
  line-height:1.6
}
.services-directory-hero .split-hero-media img {
  object-position:58% center
}
.services-directory-section {
  background:var(--warm);
  padding:58px 0 66px
}
.services-directory-accordion {
  display:grid;
  gap:16px;
  max-width:1040px;
  margin:0 auto
}
.services-directory-group {
  overflow:hidden;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 8px 24px rgba(8,36,69,.07)
}
.services-directory-group>summary {
  list-style:none;
  cursor:pointer;
  display:grid;
  grid-template-columns:54px minmax(0,1fr) 26px;
  gap:18px;
  align-items:center;
  padding:22px 24px;
  background:var(--white);
  transition:background-color .18s ease,color .18s ease
}
.services-directory-group>summary::-webkit-details-marker {
  display:none
}
.services-directory-group>summary:hover {
  background:#fcfaf5
}
.services-directory-group[open]>summary {
  background:var(--navy);
  color:var(--white)
}
.services-directory-icon {
  display:grid;
  place-items:center;
  width:50px;
  height:50px;
  border-radius:50%;
  background:var(--gold);
  color:var(--navy);
  font-size:25px;
  font-weight:900;
  line-height:1
}
.services-directory-summary-copy {
  display:grid;
  gap:5px;
  min-width:0
}
.services-directory-title {
  font-size:24px;
  font-weight:900;
  line-height:1.2;
  color:var(--text)
}
.services-directory-description {
  color:var(--muted);
  font-size:16px;
  line-height:1.5
}
.services-directory-group[open] .services-directory-title {
  color:var(--white)
}
.services-directory-group[open] .services-directory-description {
  color:rgba(255,255,255,.8)
}
.services-directory-chevron {
  width:15px;
  height:15px;
  border-inline-end:3px solid currentColor;
  border-bottom:3px solid currentColor;
  transform:rotate(45deg) translateY(-3px);
  transition:transform .18s ease;
  justify-self:center
}
.services-directory-group[open] .services-directory-chevron {
  transform:rotate(225deg) translate(-2px,-2px)
}
.services-directory-content {
  padding:22px 24px 26px;
  border-top:1px solid var(--line)
}
.services-directory-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px
}
.service-choice-card {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-height:76px;
  padding:16px 17px;
  border:2px solid #e0d9cc;
  border-radius:14px;
  background:var(--white);
  color:var(--navy);
  box-shadow:0 5px 14px rgba(8,36,69,.05);
  font-size:17px;
  font-weight:800;
  line-height:1.35;
  transition:transform .16s ease,border-color .16s ease,box-shadow .16s ease,background-color .16s ease
}
.service-choice-card:hover {
  color:var(--navy);
  border-color:var(--gold);
  background:#fffaf0;
  box-shadow:0 9px 20px rgba(8,36,69,.1);
  transform:translateY(-2px)
}
.service-choice-card:focus-visible {
  outline:3px solid rgba(201,154,52,.45);
  outline-offset:3px
}
.service-choice-card:active {
  transform:translateY(0) scale(.99)
}
.service-choice-hand {
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--gold);
  color:var(--navy);
  font-family:"Segoe UI Symbol",Arial,sans-serif;
  font-size:19px;
  line-height:1
}
.services-directory-help {
  max-width:1040px;
  margin:24px auto 0;
  padding:24px 26px;
  border:1px solid #d5dee7;
  border-radius:var(--radius);
  background:#edf3f8
}
.services-directory-help h2 {
  margin-bottom:8px;
  font-size:25px
}
.services-directory-help p {
  margin:0;
  color:var(--muted);
  font-size:17px
}
@media(max-width:980px) {
  .services-directory-grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
}
@media(max-width:760px) {
  .services-directory-hero .split-hero-grid {
    grid-template-columns:minmax(0,64%) minmax(0,36%);
    min-height:510px
  }
  .services-directory-hero .split-hero-copy-inner,
  html[dir="rtl"] .services-directory-hero .split-hero-copy-inner {
    width:100%;
    padding:26px 14px 26px 18px
  }
  .services-directory-hero .split-hero-media {
    display:block;
    min-height:510px;
    clip-path:polygon(20% 0,100% 0,100% 100%,0 100%)
  }
  .services-directory-hero h1 {
    margin-bottom:16px;
    font-size:27px
  }
  .services-directory-hero .split-hero-copy-inner>p {
    font-size:15px;
    line-height:1.5
  }
  .services-directory-section {
    padding:34px 0 48px
  }
  .services-directory-accordion {
    gap:12px
  }
  .services-directory-group>summary {
    grid-template-columns:44px minmax(0,1fr) 22px;
    gap:12px;
    padding:17px 15px
  }
  .services-directory-icon {
    width:42px;
    height:42px;
    font-size:21px
  }
  .services-directory-title {
    font-size:20px
  }
  .services-directory-description {
    font-size:15px;
    line-height:1.42
  }
  .services-directory-content {
    padding:14px
  }
  .services-directory-grid {
    grid-template-columns:1fr;
    gap:10px
  }
  .service-choice-card {
    min-height:64px;
    padding:13px 14px;
    font-size:16px
  }
  .service-choice-hand {
    width:31px;
    height:31px;
    font-size:17px
  }
  .services-directory-help {
    margin-top:18px;
    padding:20px
  }
  .services-directory-help h2 {
    font-size:22px
  }
  .services-directory-help p {
    font-size:16px
  }
}
@media(max-width:420px) {
  .services-directory-hero .split-hero-grid {
    grid-template-columns:minmax(0,68%) minmax(0,32%);
    min-height:510px
  }
  .services-directory-hero .split-hero-media {
    min-height:510px
  }
  .services-directory-hero h1 {
    font-size:26px
  }
}



/* 2026 city pages and centered header update */
.header-inner {
  position:relative;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:0;
  min-height:72px;
  padding-inline:10px;
}
.header-inner>.brand {
  grid-column:2;
  grid-row:1;
  justify-self:center;
  margin:0;
  position:relative;
  z-index:2;
}
.header-inner>.header-language-switch {
  grid-column:1;
  grid-row:1;
  justify-self:start;
  margin:0;
}
.header-inner>.menu-toggle {
  grid-column:3;
  grid-row:1;
  justify-self:end;
  display:grid;
  place-items:center;
  margin:0;
}
.header-inner>.main-nav {
  display:none;
  position:absolute;
  top:100%;
  inset-inline:10px;
  z-index:1001;
  background:#fff;
  border:1px solid var(--line);
  border-top:0;
  border-radius:0 0 14px 14px;
  padding:10px 20px 16px;
  box-shadow:var(--shadow);
  flex-direction:column;
  align-items:stretch;
  gap:0;
}
.header-inner>.main-nav.open {
  display:flex;
}
.header-inner>.main-nav a {
  padding:12px 6px;
  border-bottom:1px solid var(--line);
}
.header-inner>.main-nav a:last-child {
  border-bottom:0;
}
.city-page .city-split-hero .split-hero-copy-inner {
  justify-content:flex-start;
  min-height:520px;
}
.city-page .city-split-hero .hero-actions {
  margin-top:auto;
  padding-top:24px;
}
.scan-intro {
  margin:0;
  padding:11px 2px;
  border-bottom:1px solid var(--line);
  color:var(--muted);
  font-weight:600;
}
.direct-contact-link {
  color:var(--navy);
}
.prep-result {
  margin-top:24px;
  margin-bottom:0;
}
.safety-note {
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-top:16px;
}
.safety-note p {
  margin:0;
}
.price-static-row {
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px 22px;
  font-weight:800;
  cursor:default;
}
.city-arrival-copy {
  max-width:900px;
  margin:-10px auto 28px;
  text-align:center;
  color:var(--muted);
  font-size:18px;
}
.city-arrival-copy p {
  margin:0;
}
.city-arrival-grid {
  margin-top:0;
}
.city-arrival-item>span {
  min-width:28px;
  text-align:center;
}
@media(max-width:900px) {
  .header-inner {
    min-height:64px;
    padding-inline:10px;
  }
  .header-inner>.main-nav {
    inset-inline:10px;
  }
}
@media(max-width:760px) {
  .city-page .city-split-hero .split-hero-copy-inner {
    min-height:auto;
    justify-content:center;
  }
  .city-arrival-copy {
    margin-top:-4px;
    margin-bottom:24px;
    font-size:17px;
    text-align:left;
  }
  .prep-result {
    margin-top:20px;
  }
  .price-static-row {
    padding:16px 18px;
  }
}

/* Keep the desktop city hero and its contact buttons at one stable height. */
@media(min-width:981px) {
  .city-page .city-split-hero .split-hero-grid,
  .city-page .city-split-hero .split-hero-media,
  .city-page .city-split-hero .split-hero-copy-inner {
    height:680px;
    min-height:680px;
  }
}
.price-accordion summary,
.faq summary {
  padding-inline-end:54px;
}


/* STRICT GLOBAL HEADER ALIGNMENT */
.site-header .header-inner {
  position:relative;
  width:calc(100% - 20px);
  max-width:none;
  min-height:72px;
  margin-inline:auto;
  padding:0;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:0;
}
.site-header .header-inner>.brand {
  grid-column:2;
  grid-row:1;
  justify-self:center;
  margin:0;
  position:relative;
  z-index:2;
}
.site-header .header-inner>.header-language-switch {
  grid-column:1;
  grid-row:1;
  justify-self:start;
  margin:0;
}
.site-header .header-inner>.menu-toggle {
  grid-column:3;
  grid-row:1;
  justify-self:end;
  margin:0;
  display:grid;
  place-items:center;
}
.site-header .header-inner>.main-nav {
  display:none;
  position:absolute;
  top:100%;
  inset-inline:0;
  z-index:5;
  margin:0;
  padding:12px 20px 18px;
  background:#fff;
  border:1px solid var(--line);
  border-top:0;
  border-radius:0 0 14px 14px;
  box-shadow:var(--shadow);
  flex-direction:column;
  align-items:stretch;
  gap:0;
}
.site-header .header-inner>.main-nav.open {
  display:flex;
}
.site-header .header-inner>.main-nav a {
  padding:13px 6px;
  border-bottom:1px solid var(--line);
}
.site-header .header-inner>.main-nav a:last-child {
  border-bottom:0;
}
.price-service-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.price-service-row b {
  flex:0 0 auto;
  color:var(--navy);
}
@media(max-width:900px) {
  .site-header .header-inner {
    width:calc(100% - 20px);
    min-height:64px;
    padding:0;
  }
}
@media(max-width:560px) {
  .price-service-row {
    align-items:flex-start;
    gap:12px;
  }
}

/* Russian EV charger page only */
.ev-charger-page .ev-hero-intro {
  max-width:660px;
  margin:0 0 14px;
  font-size:18px;
  line-height:1.65
}
.ev-charger-page .ev-section {
  overflow:hidden
}
.ev-charger-page .ev-section-soft {
  background:var(--warm)
}
.ev-charger-page .ev-section-head {
  max-width:860px;
  margin:0 auto 34px;
  text-align:center
}
.ev-charger-page .ev-section-head p {
  margin:0;
  color:var(--muted);
  font-size:18px
}
.ev-charger-page .ev-section-intro {
  max-width:900px;
  margin:-10px auto 30px;
  color:var(--muted);
  font-size:18px;
  text-align:center
}
.ev-charger-page .ev-trust-section {
  background:linear-gradient(135deg,#f5f8fc 0%,#fff 62%)
}
.ev-charger-page .ev-trust-grid {
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(460px,1.1fr);
  gap:48px;
  align-items:center
}
.ev-charger-page .ev-section-copy {
  max-width:620px
}
.ev-charger-page .ev-section-copy p {
  color:var(--muted);
  font-size:18px;
  line-height:1.75
}
.ev-charger-page .ev-trust-image {
  margin:0;
  min-height:360px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow)
}
.ev-charger-page .ev-trust-image img {
  display:block;
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  object-position:center
}
.ev-charger-page .ev-card-grid {
  display:grid;
  gap:18px
}
.ev-charger-page .ev-card-grid-five {
  grid-template-columns:repeat(5,minmax(0,1fr))
}
.ev-charger-page .ev-check-grid {
  grid-template-columns:repeat(3,minmax(0,1fr))
}
.ev-charger-page .ev-card,
.ev-charger-page .ev-location-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 5px 18px rgba(8,36,69,.04)
}
.ev-charger-page .ev-card {
  padding:24px
}
.ev-charger-page .ev-card h3,
.ev-charger-page .ev-location-card h3 {
  font-size:20px
}
.ev-charger-page .ev-card p,
.ev-charger-page .ev-location-card p {
  color:var(--muted)
}
.ev-charger-page .ev-card p:last-child,
.ev-charger-page .ev-location-card p:last-child {
  margin-bottom:0
}
.ev-charger-page .ev-card-accent {
  background:var(--navy);
  border-color:var(--navy)
}
.ev-charger-page .ev-card-accent h3,
.ev-charger-page .ev-card-accent p {
  color:#fff
}
.ev-charger-page .ev-process-grid {
  grid-template-columns:repeat(4,minmax(0,1fr))
}
.ev-charger-page .ev-process-grid .process-card {
  height:100%
}
.ev-charger-page .ev-location-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px
}
.ev-charger-page .ev-location-card {
  padding:28px
}
.ev-charger-page .ev-location-card .check-list {
  grid-template-columns:1fr;
  margin:18px 0 22px
}
.ev-charger-page .ev-narrow-container {
  max-width:980px
}
.ev-charger-page .ev-content-accordion {
  width:100%;
  max-width:980px;
  margin:0 auto
}
.ev-charger-page .ev-content-accordion details {
  box-shadow:0 5px 18px rgba(8,36,69,.04)
}
.ev-charger-page .ev-content-accordion summary {
  min-height:64px;
  display:flex;
  align-items:center;
  gap:14px;
  padding-inline-end:58px;
  color:var(--navy);
  font-size:18px;
  line-height:1.35
}
.ev-charger-page .ev-content-accordion details>div p {
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.75
}
.ev-charger-page .ev-step-number {
  display:inline-flex;
  flex:0 0 38px;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--gold);
  color:var(--navy);
  font-weight:900
}
.ev-charger-page .ev-content-accordion .ev-accordion-accent {
  background:var(--navy);
  border-color:var(--navy)
}
.ev-charger-page .ev-content-accordion .ev-accordion-accent summary,
.ev-charger-page .ev-content-accordion .ev-accordion-accent details,
.ev-charger-page .ev-content-accordion .ev-accordion-accent p {
  color:#fff
}
.ev-charger-page .ev-content-accordion .ev-accordion-accent summary::after {
  color:var(--gold)
}
.ev-charger-page .ev-price-accordion summary,
.ev-charger-page .ev-faq summary {
  padding-inline-end:58px;
  font-size:17px
}
.ev-charger-page .ev-price-accordion details>div p,
.ev-charger-page .ev-faq details>p {
  margin:0;
  color:var(--muted);
  line-height:1.7
}
.ev-charger-page .ev-contact-line {
  margin:24px 0 0;
  padding:18px 22px;
  border-radius:14px;
  background:var(--navy);
  color:#fff;
  text-align:center;
  font-weight:800
}
.ev-charger-page .ev-final-cta p {
  max-width:820px;
  margin-left:auto;
  margin-right:auto
}

.ev-charger-page .ev-service-cities {
  background:var(--navy);
  color:#fff
}
.ev-charger-page .ev-service-cities .ev-section-head h2 {
  color:#fff
}
.ev-charger-page .ev-service-cities .ev-section-head p {
  color:rgba(255,255,255,.78)
}
.ev-charger-page .ev-cities-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px
}
.ev-charger-page .ev-cities-grid a {
  display:flex;
  min-height:52px;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-weight:700;
  text-align:center;
  transition:background .2s ease,border-color .2s ease,transform .2s ease
}
.ev-charger-page .ev-cities-grid a:hover,
.ev-charger-page .ev-cities-grid a:focus-visible {
  border-color:var(--gold);
  background:rgba(255,255,255,.15);
  transform:translateY(-1px)
}
.ev-charger-page .ev-cities-more {
  margin:24px 0 0;
  text-align:center
}
.ev-charger-page .ev-cities-more a {
  color:#fff;
  font-weight:800;
  text-decoration:underline;
  text-decoration-color:var(--gold);
  text-underline-offset:4px
}

@media (max-width:1180px) {
  .ev-charger-page .ev-card-grid-five {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
  .ev-charger-page .ev-card-grid-five .ev-card:last-child {
    grid-column:1 / -1
  }
}

@media (max-width:900px) {
  .ev-charger-page .ev-cities-grid {
    grid-template-columns:repeat(3,minmax(0,1fr))
  }
  .ev-charger-page .ev-trust-grid,
  .ev-charger-page .ev-location-grid {
    grid-template-columns:1fr
  }
  .ev-charger-page .ev-trust-grid {
    gap:28px
  }
  .ev-charger-page .ev-section-copy {
    max-width:none
  }
  .ev-charger-page .ev-trust-image,
  .ev-charger-page .ev-trust-image img {
    min-height:320px
  }
  .ev-charger-page .ev-check-grid,
  .ev-charger-page .ev-process-grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
}

@media (max-width:700px) {
  .ev-charger-page .ev-cities-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px
  }
  .ev-charger-page .ev-cities-grid a {
    min-height:48px;
    padding:10px 9px;
    font-size:14px;
    line-height:1.25
  }
  .ev-charger-page .ev-hero-intro {
    font-size:16px;
    line-height:1.55
  }
  .ev-charger-page .ev-section-head {
    margin-bottom:24px;
    text-align:left
  }
  .ev-charger-page .ev-section-head p,
  .ev-charger-page .ev-section-intro,
  .ev-charger-page .ev-section-copy p {
    font-size:16px
  }
  .ev-charger-page .ev-section-intro {
    margin:-4px 0 24px;
    text-align:left
  }
  .ev-charger-page .ev-card-grid-five,
  .ev-charger-page .ev-check-grid,
  .ev-charger-page .ev-process-grid {
    grid-template-columns:1fr
  }
  .ev-charger-page .ev-card-grid-five .ev-card:last-child {
    grid-column:auto
  }
  .ev-charger-page .ev-card,
  .ev-charger-page .ev-location-card {
    padding:20px
  }
  .ev-charger-page .ev-card h3,
  .ev-charger-page .ev-location-card h3 {
    font-size:19px
  }
  .ev-charger-page .ev-trust-image,
  .ev-charger-page .ev-trust-image img {
    min-height:250px
  }
  .ev-charger-page .ev-trust-image img {
    object-position:52% center
  }
  .ev-charger-page .ev-price-accordion summary,
  .ev-charger-page .ev-faq summary {
    padding:16px 48px 16px 17px;
    font-size:16px;
    line-height:1.4
  }
  .ev-charger-page .ev-content-accordion summary {
    min-height:58px;
    gap:11px
  }
  .ev-charger-page .ev-content-accordion details>div p {
    font-size:16px;
    line-height:1.65
  }
  .ev-charger-page .ev-step-number {
    flex-basis:32px;
    width:32px;
    height:32px;
    font-size:15px
  }
  .ev-charger-page .ev-price-accordion details>div,
  .ev-charger-page .ev-faq details>p {
    padding-left:17px;
    padding-right:17px
  }
}


/* Emergency electrician approved page */
.emergency-page .hero-lead {
  color:var(--gold-soft);
  font-size:23px;
  font-weight:600;
  margin-bottom:20px
}
.emergency-page .emergency-article {
  max-width:1120px;
  margin:0 auto
}
.emergency-page .section-cta {
  margin-top:22px;
  margin-bottom:0;
  color:var(--text)
}
.emergency-page .emergency-call-list {
  margin-bottom:22px
}
.emergency-page .emergency-price-grid {
  margin:22px 0
}
.emergency-page .emergency-price-grid .price {
  display:block;
  font-size:22px;
  margin:4px 0 12px
}
@media(max-width:760px) {
  .emergency-page .hero-lead {
    font-size:20px
  }
}

/* FINAL 2026 CONSISTENCY AND RESPONSIVE CONTACT UPDATE */

/* Header: physical 20 px edge spacing on every language and viewport width. */
.site-header .header-inner {
  width:100%;
  max-width:none;
  min-height:72px;
  margin:0;
  padding:0 20px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.site-header .header-inner>.brand {
  position:absolute;
  left:50%;
  right:auto;
  top:50%;
  transform:translate(-50%,-50%);
  margin:0;
  z-index:2;
}
.site-header .header-inner>.menu-toggle {
  position:absolute;
  left:20px;
  right:auto;
  top:50%;
  transform:translateY(-50%);
  margin:0;
  display:grid;
  place-items:center;
}
.site-header .header-inner>.header-language-switch {
  position:absolute;
  right:20px;
  left:auto;
  top:50%;
  transform:translateY(-50%);
  margin:0;
}
.site-header .header-inner>.main-nav {
  left:20px;
  right:20px;
  inset-inline:auto;
}

/* Desktop fixed contact controls. */
@media(min-width:901px) {
  body {
    padding-bottom:108px;
  }
  .desktop-contact {
    position:fixed;
    left:50%;
    right:auto;
    bottom:18px;
    transform:translateX(-50%);
    z-index:1200;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    padding:10px;
    border-radius:18px;
    background:rgba(8,36,69,.97);
    box-shadow:0 12px 34px rgba(6,26,50,.28);
  }
  .desktop-contact a {
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:176px;
    height:62px;
    padding:8px 22px;
    border-radius:16px;
    font-weight:900;
    line-height:1.12;
    text-align:center;
  }
  .desktop-phone {
    flex-direction:column;
    background:var(--gold);
    color:var(--navy);
  }
  .desktop-phone small {
    font-size:12px;
    font-weight:700;
  }
  .desktop-phone strong {
    font-size:20px;
    letter-spacing:.01em;
  }
  .desktop-wa {
    border:1px solid rgba(255,255,255,.5);
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:18px;
  }
  .mobile-contact {
    display:none;
  }
}

/* The existing mobile controls now cover every viewport up to 900 px. */
@media(max-width:900px) {
  body {
    padding-bottom:58px;
  }
  .site-header .header-inner {
    min-height:64px;
  }
  .desktop-contact {
    display:none;
  }
  .mobile-contact {
    position:fixed;
    display:grid;
    grid-template-columns:1fr 1fr;
    left:0;
    right:0;
    bottom:0;
    z-index:1200;
    height:58px;
    background:#fff;
    border-top:1px solid var(--line);
    box-shadow:0 -8px 26px rgba(8,36,69,.14);
  }
  .mobile-contact a {
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:17px;
  }
  .mobile-phone {
    background:var(--gold);
    color:var(--navy);
  }
  .mobile-wa {
    background:var(--navy);
    color:#fff;
  }
  .hero-actions {
    display:none;
  }
}

/* Russian pages: one font family and black text on light backgrounds. */
html[lang="ru"] {
  --text:#000;
  --muted:#000;
}
html[lang="ru"] body,
html[lang="ru"] button,
html[lang="ru"] input,
html[lang="ru"] textarea,
html[lang="ru"] select,
html[lang="ru"] .service-choice-hand {
  font-family:"Rubik",Arial,sans-serif;
}
html[lang="ru"] body,
html[lang="ru"] main :where(h1,h2,h3,p,li,span,strong,small,summary,th,td,a),
html[lang="ru"] .site-header :where(a,span,button),
html[lang="ru"] .notice,
html[lang="ru"] .safety-note,
html[lang="ru"] .text-link,
html[lang="ru"] .price,
html[lang="ru"] .price-service-row b,
html[lang="ru"] .direct-contact-link {
  color:#000;
}

/* Preserve the visual logo and readable button contrast. */
html[lang="ru"] .brand,
html[lang="ru"] .brand span {
  color:var(--navy);
}
html[lang="ru"] .brand b {
  color:#947126;
}
html[lang="ru"] :where(.hero-actions .call,.cta-actions .call,.mobile-phone,.desktop-phone),
html[lang="ru"] :where(.hero-actions .call,.cta-actions .call,.mobile-phone,.desktop-phone) :where(small,strong,span) {
  color:var(--navy);
}
html[lang="ru"] :where(.hero-actions .wa,.cta-actions .wa,.mobile-wa,.desktop-wa),
html[lang="ru"] :where(.hero-actions .wa,.cta-actions .wa,.mobile-wa,.desktop-wa) :where(small,strong,span) {
  color:#fff;
}

/* White text on dark backgrounds. */
html[lang="ru"] :where(
  .split-hero,
  .page-hero,
  .contact-section,
  .cta-band,
  .site-footer,
  .prep-result,
  .action-note,
  .ev-card-accent,
  .ev-service-cities,
  .ev-contact-line
) :where(h1,h2,h3,p,li,span,strong,small,summary,th,td,a) {
  color:#fff;
}
html[lang="ru"] .choice-panel[open]>summary,
html[lang="ru"] .choice-panel[open]>summary :where(span,strong) {
  color:#fff;
}


/* Final contrast correction: dark surfaces always use white text on Russian pages. */
html[lang="ru"] main :where(
  .split-hero,
  .page-hero,
  .contact-section,
  .cta-band,
  .prep-result,
  .action-note,
  .ev-card-accent,
  .ev-service-cities,
  .ev-contact-line
) :where(h1,h2,h3,p,li,span,strong,small,summary,th,td,a),
html[lang="ru"] .site-footer :where(h1,h2,h3,p,li,span,strong,small,summary,th,td,a),
html[lang="ru"] .choice-panel[open]>summary,
html[lang="ru"] .choice-panel[open]>summary :where(span,strong) {
  color:#fff !important;
}
html[lang="ru"] :where(.hero-actions .call,.cta-actions .call,.mobile-phone,.desktop-phone),
html[lang="ru"] :where(.hero-actions .call,.cta-actions .call,.mobile-phone,.desktop-phone) :where(small,strong,span) {
  color:var(--navy) !important;
}
html[lang="ru"] :where(.hero-actions .wa,.cta-actions .wa,.mobile-wa,.desktop-wa),
html[lang="ru"] :where(.hero-actions .wa,.cta-actions .wa,.mobile-wa,.desktop-wa) :where(small,strong,span) {
  color:#fff !important;
}

/* Authoritative Russian content colors: black on light, pure white on dark. */
html[lang="ru"] main :where(h1,h2,h3,p,li,span,strong,b,small,summary,th,td,a,div) {
  color:#000 !important;
}
html[lang="ru"] main :where(
  .split-hero,
  .page-hero,
  .contact-section,
  .cta-band,
  .prep-result,
  .action-note,
  .ev-card-accent,
  .ev-service-cities,
  .ev-contact-line
) :where(h1,h2,h3,p,li,span,strong,b,small,summary,th,td,a,div),
html[lang="ru"] .site-footer :where(h1,h2,h3,p,li,span,strong,b,small,summary,th,td,a,div),
html[lang="ru"] .choice-panel[open]>summary,
html[lang="ru"] .choice-panel[open]>summary :where(span,strong,b,small,div) {
  color:#fff !important;
}
html[lang="ru"] :where(.hero-actions .call,.cta-actions .call,.mobile-phone,.desktop-phone),
html[lang="ru"] :where(.hero-actions .call,.cta-actions .call,.mobile-phone,.desktop-phone) :where(small,strong,b,span,div) {
  color:var(--navy) !important;
}
html[lang="ru"] :where(.hero-actions .wa,.cta-actions .wa,.mobile-wa,.desktop-wa),
html[lang="ru"] :where(.hero-actions .wa,.cta-actions .wa,.mobile-wa,.desktop-wa) :where(small,strong,b,span,div) {
  color:#fff !important;
}

/* Dark components whose text is placed directly on the component itself. */
html[lang="ru"] main :where(.prep-result,.action-note,.ev-contact-line,.ev-accordion-accent),
html[lang="ru"] main :where(.prep-result,.action-note,.ev-contact-line,.ev-accordion-accent) :where(h1,h2,h3,p,li,span,strong,b,small,summary,th,td,a,div) {
  color:#fff !important;
}

/* 2026-08-04 requested desktop header, hero buttons, and RU services accordion fixes */

/* Desktop and large screens: keep the logo exactly centered, with the menu
   button 30 px to its left and the language switch 30 px to its right. */
@media (min-width:901px) {
  .site-header .header-inner {
    direction:ltr;
    display:grid;
    grid-template-columns:minmax(0,1fr) max-content minmax(0,1fr);
    align-items:center;
    justify-content:stretch;
    min-height:72px;
    padding:0 20px;
  }
  .site-header .header-inner>.brand {
    position:static;
    grid-column:2;
    grid-row:1;
    justify-self:center;
    transform:none;
    margin:0;
  }
  .site-header .header-inner>.menu-toggle {
    position:static;
    grid-column:1;
    grid-row:1;
    justify-self:end;
    transform:none;
    margin:0 30px 0 0;
  }
  .site-header .header-inner>.header-language-switch {
    position:static;
    grid-column:3;
    grid-row:1;
    justify-self:start;
    transform:none;
    margin:0 0 0 30px;
    direction:ltr;
  }
  html[dir="rtl"] .site-header .header-inner>.main-nav {
    direction:rtl;
  }

  /* Hide only the contact buttons inside the first hero section on desktop.
     The fixed desktop contact panel and all mobile rules remain unchanged. */
  main>section:first-of-type .hero-actions {
    display:none !important;
  }
}

/* Russian services directory only: an opened accordion heading stays light
   with black text instead of changing to a dark-blue background. */
html[lang="ru"] body.services-directory-page .services-directory-group[open]>summary {
  background:#fff;
  color:#000 !important;
}
html[lang="ru"] body.services-directory-page .services-directory-group[open]>summary .services-directory-title,
html[lang="ru"] body.services-directory-page .services-directory-group[open]>summary .services-directory-description,
html[lang="ru"] body.services-directory-page .services-directory-group[open]>summary .services-directory-chevron {
  color:#000 !important;
}

/* 2026-08-05 user-approved targeted fixes */

/* Active language indicator: the current language is gold in both versions. */
html[lang="he"] .header-language-switch a.active,
html[lang="ru"] .header-language-switch a.active {
  color:#947126 !important;
}
html[lang="he"] .header-language-switch a:not(.active),
html[lang="ru"] .header-language-switch a:not(.active),
html[lang="he"] .header-language-switch > span,
html[lang="ru"] .header-language-switch > span {
  color:var(--navy) !important;
}

/* WhatsApp buttons use the official green throughout the site. */
html[lang] :is(.hero-actions .wa,.cta-actions .wa,.desktop-wa,.mobile-wa) {
  background:#25D366 !important;
  border-color:#25D366 !important;
  color:#fff !important;
}
html[lang] :is(.hero-actions .wa,.cta-actions .wa,.desktop-wa,.mobile-wa) :where(small,strong,b,span,div) {
  color:#fff !important;
}
html[lang] :is(.hero-actions .wa,.cta-actions .wa,.desktop-wa,.mobile-wa):hover,
html[lang] :is(.hero-actions .wa,.cta-actions .wa,.desktop-wa,.mobile-wa):focus-visible,
html[lang] :is(.hero-actions .wa,.cta-actions .wa,.desktop-wa,.mobile-wa):active {
  background:#1FAF58 !important;
  border-color:#1FAF58 !important;
  color:#fff !important;
}

/* One paragraph standard across page content; headings remain unchanged. */
main p {
  font-size:19px !important;
}

/* Hebrew split heroes: text area on the right, natural RTL alignment. */
html[lang="he"] .split-hero-grid {
  direction:rtl;
}
html[lang="he"] .split-hero-copy,
html[lang="he"] .split-hero-copy-inner,
html[lang="he"] .page-hero-copy,
html[lang="he"] .breadcrumbs,
html[lang="he"] .hero-benefits {
  direction:rtl;
  text-align:right;
}

/* Hebrew benefit/check lists: keep the gold mark visually to the left,
   after the RTL phrase, with reserved space and no text overlap. */
html[lang="he"] .hero-benefits li {
  direction:rtl;
  text-align:right;
  padding-left:31px !important;
  padding-right:0 !important;
  padding-inline-start:0 !important;
  padding-inline-end:0 !important;
}
html[lang="he"] .hero-benefits li::before {
  inset-inline-start:auto !important;
  inset-inline-end:auto !important;
  left:0 !important;
  right:auto !important;
  top:50% !important;
  transform:translateY(-50%);
}
html[lang="he"] .check-list li {
  direction:rtl;
  text-align:right;
  padding-left:25px !important;
  padding-right:0 !important;
  padding-inline-start:0 !important;
  padding-inline-end:0 !important;
}
html[lang="he"] .check-list li::before {
  inset-inline-start:auto !important;
  inset-inline-end:auto !important;
  left:0 !important;
  right:auto !important;
}

/* Hebrew home hero only: remove the photograph and let the copy use the full area. */
html[lang="he"] .home-split-hero .split-hero-grid {
  grid-template-columns:1fr !important;
  min-height:auto !important;
}
html[lang="he"] .home-split-hero .split-hero-media {
  display:none !important;
}
html[lang="he"] .home-split-hero .split-hero-copy {
  width:100%;
}
html[lang="he"] .home-split-hero .split-hero-copy-inner {
  width:min(var(--container),calc(100% - 40px)) !important;
  max-width:none !important;
  margin-inline:auto !important;
  padding:56px 0 48px !important;
}

@media(max-width:760px) {
  html[lang="he"] .home-split-hero .split-hero-copy-inner {
    width:calc(100% - 28px) !important;
    padding:34px 0 36px !important;
  }
}



/* NO-PHOTO BASELINE: image files and media columns intentionally removed. */
.split-hero-grid,
.home-split-hero .split-hero-grid,
.services-directory-hero .split-hero-grid,
html[lang="he"] .home-split-hero .split-hero-grid {
  grid-template-columns:1fr !important;
  min-height:auto !important;
  height:auto !important;
}
.split-hero-copy,
.home-split-hero .split-hero-copy,
.services-directory-hero .split-hero-copy {
  width:100% !important;
}
.split-hero-copy-inner,
html[dir="rtl"] .split-hero-copy-inner,
.home-split-hero .split-hero-copy-inner,
html[dir="rtl"] .home-split-hero .split-hero-copy-inner,
.services-directory-hero .split-hero-copy-inner,
html[dir="rtl"] .services-directory-hero .split-hero-copy-inner,
html[lang="he"] .home-split-hero .split-hero-copy-inner {
  width:min(920px,calc(100% - 40px)) !important;
  max-width:none !important;
  min-height:auto !important;
  height:auto !important;
  margin-inline:auto !important;
  padding:52px 0 46px !important;
}
.split-hero-media,
.home-split-hero .split-hero-media,
.services-directory-hero .split-hero-media {
  display:none !important;
  width:0 !important;
  min-width:0 !important;
  height:0 !important;
  min-height:0 !important;
  overflow:hidden !important;
}
.city-page .city-split-hero .split-hero-grid,
.city-page .city-split-hero .split-hero-copy,
.city-page .city-split-hero .split-hero-copy-inner,
.city-page .city-split-hero .split-hero-media {
  height:auto !important;
  min-height:auto !important;
}
.city-page .city-split-hero .hero-actions {
  margin-top:20px !important;
  padding-top:0 !important;
}
.ev-charger-page .ev-trust-grid {
  grid-template-columns:1fr !important;
  gap:0 !important;
}
.ev-charger-page .ev-section-copy {
  max-width:900px !important;
}
@media(max-width:760px) {
  .split-hero-copy-inner,
  html[dir="rtl"] .split-hero-copy-inner,
  .home-split-hero .split-hero-copy-inner,
  html[dir="rtl"] .home-split-hero .split-hero-copy-inner,
  .services-directory-hero .split-hero-copy-inner,
  html[dir="rtl"] .services-directory-hero .split-hero-copy-inner,
  html[lang="he"] .home-split-hero .split-hero-copy-inner {
    width:calc(100% - 28px) !important;
    padding:34px 0 36px !important;
  }
}

/* 2026-08-06 desktop hero preparation for future images.
   Keep copy in 56% of the first screen and reserve the remaining 44%. */
@media (min-width:981px) {
  h1 {
    font-size:42px !important;
  }

  .split-hero-grid,
  .home-split-hero .split-hero-grid,
  .services-directory-hero .split-hero-grid,
  html[lang="he"] .home-split-hero .split-hero-grid {
    display:grid !important;
    grid-template-columns:minmax(0,56%) minmax(0,44%) !important;
    min-height:auto !important;
    height:auto !important;
    max-width:1440px;
    margin-inline:auto;
  }

  .split-hero-copy,
  .home-split-hero .split-hero-copy,
  .services-directory-hero .split-hero-copy,
  html[lang="he"] .home-split-hero .split-hero-copy {
    grid-column:1 !important;
    width:100% !important;
    min-width:0;
  }

  .split-hero-copy-inner,
  html[dir="rtl"] .split-hero-copy-inner,
  .home-split-hero .split-hero-copy-inner,
  html[dir="rtl"] .home-split-hero .split-hero-copy-inner,
  .services-directory-hero .split-hero-copy-inner,
  html[dir="rtl"] .services-directory-hero .split-hero-copy-inner,
  html[lang="he"] .home-split-hero .split-hero-copy-inner {
    width:100% !important;
    max-width:none !important;
    min-height:auto !important;
    height:auto !important;
    margin:0 !important;
    padding:52px 40px 46px !important;
  }

  html[lang="ru"] .split-hero-copy-inner {
    direction:ltr;
    text-align:left;
  }

  html[lang="he"] .split-hero-grid {
    direction:rtl;
  }

  html[lang="he"] .split-hero-copy-inner {
    direction:rtl;
    text-align:right;
  }

  .hero-benefits,
  .home-split-hero .hero-benefits {
    grid-template-columns:minmax(0,1fr) !important;
    gap:0 !important;
    width:100%;
  }

  /* Full-width navy heroes used by Prices and Cities directory pages. */
  .page-hero > .container:not(.page-hero-copy) {
    width:min(1440px,calc(100% - 40px));
  }

  html[lang="ru"] .page-hero > .container:not(.page-hero-copy) > .breadcrumbs,
  html[lang="ru"] .page-hero > .container:not(.page-hero-copy) > .page-hero-copy {
    width:56%;
    max-width:none;
    margin-left:0;
    margin-right:auto;
    text-align:left;
  }

  html[lang="he"] .page-hero > .container:not(.page-hero-copy) > .breadcrumbs,
  html[lang="he"] .page-hero > .container:not(.page-hero-copy) > .page-hero-copy {
    width:56%;
    max-width:none;
    margin-right:0;
    margin-left:auto;
    direction:rtl;
    text-align:right;
  }
}


/* 2026-08-06 approved desktop hero alignment.
   Scope: RU/HE home, Services directory, Cities directory, and all city pages. */
@media (min-width:981px) {
  .home-split-hero h1,
  .services-directory-hero h1,
  .cities-directory-page .page-hero h1,
  .city-page .city-split-hero h1 {
    font-size:38px !important;
  }

  .home-split-hero .split-hero-grid,
  .home-split-hero .split-hero-copy,
  .home-split-hero .split-hero-copy-inner {
    min-height:520px !important;
  }

  .services-directory-hero .split-hero-grid,
  .services-directory-hero .split-hero-copy,
  .services-directory-hero .split-hero-copy-inner {
    min-height:460px !important;
  }

  .home-split-hero .split-hero-copy-inner,
  html[dir="rtl"] .home-split-hero .split-hero-copy-inner,
  .services-directory-hero .split-hero-copy-inner,
  html[dir="rtl"] .services-directory-hero .split-hero-copy-inner {
    padding:36px 40px !important;
    justify-content:flex-start !important;
  }

  .home-split-hero .hero-benefits li,
  .services-directory-hero .hero-benefits li,
  .cities-directory-page .hero-benefits li {
    font-size:16px !important;
    padding-top:10px !important;
    padding-bottom:10px !important;
  }

  .services-directory-hero .directory-benefits,
  .cities-directory-page .directory-benefits {
    margin-top:18px !important;
  }

  .cities-directory-page .page-hero {
    min-height:460px;
    padding:36px 0 !important;
  }

  .cities-directory-page .page-hero-copy {
    max-width:none;
  }

  .city-page .city-split-hero .split-hero-copy-inner,
  html[dir="rtl"] .city-page .city-split-hero .split-hero-copy-inner {
    padding-top:36px !important;
  }
}

/* 2026-08-06 temporary desktop test photograph in every first hero section.
   One shared image is used only at desktop widths; existing text and mobile layouts are unchanged. */
@media (min-width:981px) {
  .split-hero-grid::after {
    content:"";
    display:block;
    grid-column:2;
    grid-row:1;
    align-self:stretch;
    width:100%;
    min-width:0;
    min-height:100%;
    background-image:url("../images/test-electrician-hero.webp");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
  }

  .page-hero {
    position:relative;
    overflow:hidden;
    isolation:isolate;
  }

  .page-hero::after {
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    width:44%;
    background-image:url("../images/test-electrician-hero.webp");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
    z-index:0;
    pointer-events:none;
  }

  html[lang="ru"] .page-hero::after {
    right:0;
    left:auto;
  }

  html[lang="he"] .page-hero::after {
    left:0;
    right:auto;
  }

  .page-hero > * {
    position:relative;
    z-index:1;
  }
}


/* 2026-08-07 final approved hero photographs and responsive placement. */
.mobile-content-photo {
  display:none;
}

@media (min-width:981px) {
  .split-hero-grid::after,
  .page-hero::after {
    content:none !important;
    display:none !important;
    background-image:none !important;
  }

  .split-hero-media,
  .home-split-hero .split-hero-media,
  .services-directory-hero .split-hero-media,
  html[lang="he"] .home-split-hero .split-hero-media {
    display:block !important;
    grid-column:2 !important;
    grid-row:1 !important;
    align-self:stretch !important;
    width:100% !important;
    min-width:0 !important;
    height:auto !important;
    min-height:0 !important;
    overflow:hidden !important;
    clip-path:none !important;
  }

  .split-hero-media img,
  .page-hero-media img {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
  }

  .page-hero {
    position:relative;
    overflow:hidden;
    isolation:isolate;
  }

  .page-hero-media {
    display:block;
    position:absolute;
    top:0;
    bottom:0;
    width:44%;
    z-index:0;
    overflow:hidden;
    pointer-events:none;
  }

  html[lang="ru"] .page-hero-media {
    right:0;
    left:auto;
  }

  html[lang="he"] .page-hero-media {
    left:0;
    right:auto;
  }

  .page-hero > .container {
    position:relative;
    z-index:1;
  }
}

@media (max-width:980px) {
  .split-hero-media,
  .page-hero-media {
    display:none !important;
  }

  .mobile-content-photo {
    display:block;
    margin-top:28px;
    margin-bottom:28px;
  }

  .mobile-content-photo img {
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:4 / 3;
    object-fit:cover;
    object-position:center;
  }
}

/* Only the two home pages: match mobile hero text sizes used on the other pages. */
@media (max-width:760px) {
  .home-split-hero h1 {
    font-size:32px !important;
  }

  .home-split-hero .hero-benefits li {
    font-size:16px !important;
  }
}


/* 2026-08-26 RU city funnel refinement + decorative-card cleanup */

/* Decorative glyphs were removed from card markup site-wide. Reclaim their space. */
.services-directory-group>summary {
  grid-template-columns:minmax(0,1fr) 26px;
  gap:14px;
}
.service-choice-card {
  justify-content:flex-start;
}
.prep-item {
  gap:0;
}

/* Functional accordion cue: a clean symmetric chevron, not a decorative icon. */
.choice-panel summary {
  position:relative;
  padding-inline-end:58px;
}
.choice-panel summary::after {
  content:"";
  position:absolute;
  inset-inline-end:25px;
  top:50%;
  width:12px;
  height:12px;
  border-inline-end:2.5px solid currentColor;
  border-bottom:2.5px solid currentColor;
  transform:translateY(-68%) rotate(45deg);
  transition:transform .18s ease;
}
.choice-panel[open] summary::after {
  transform:translateY(-28%) rotate(225deg);
}

/* Russian city pages: compact, scan-first funnel. */
.city-page-ru .section-heading {
  max-width:860px;
}
.city-page-ru .choice-grid {
  max-width:980px;
  margin-inline:auto;
}
.city-page-ru .choice-panel summary {
  min-height:82px;
  justify-content:flex-start;
}
.city-page-ru .scan-links a {
  font-weight:700;
}

.city-page-ru .city-about > .container > h2 {
  max-width:1040px;
  margin-inline:auto;
  margin-bottom:24px;
}
.city-about-grid {
  max-width:1040px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:34px;
  align-items:center;
}
.city-about-photo {
  margin:0;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--line);
  box-shadow:0 8px 24px rgba(8,36,69,.08);
}
.city-about-photo img {
  display:block;
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  object-position:center;
}
.city-about-copy p {
  margin:0 0 16px;
  font-size:18px;
  line-height:1.65;
}
.city-about-copy p:last-child {
  margin-bottom:0;
}

.city-process-compact {
  padding-top:38px;
  padding-bottom:38px;
  text-align:center;
}
.city-process-compact h2 {
  margin-bottom:18px;
}
.city-process-line {
  max-width:1020px;
  margin-inline:auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  font-size:20px;
  line-height:1.45;
  font-weight:800;
}
.city-process-line span {
  white-space:nowrap;
}
.city-process-line span + span::before {
  content:"→";
  margin-inline-end:24px;
  color:var(--gold);
}

.city-page-ru #before-call .city-prep-grid {
  grid-template-columns:repeat(2,minmax(0,1fr));
  max-width:980px;
  margin-inline:auto;
  gap:14px;
}
.city-page-ru #before-call .prep-item {
  padding:18px 20px;
  min-height:116px;
}
.city-page-ru #before-call .prep-item h3 {
  margin-bottom:7px;
  font-size:19px;
}
.city-page-ru #before-call .prep-item p {
  font-size:16px;
  line-height:1.45;
}
.city-page-ru #before-call .safety-note {
  max-width:980px;
  margin-inline:auto;
  margin-top:16px;
}

.city-page-ru .home-price-list {
  max-width:980px;
  margin-inline:auto;
}
.city-page-ru .home-price-list summary {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:18px;
  min-height:92px;
  padding-top:16px;
  padding-bottom:16px;
}
.city-price-title {
  display:grid;
  gap:2px;
  min-width:0;
  font-size:19px;
  line-height:1.34;
}
.city-price-title > span {
  display:block;
}
.city-price-value {
  white-space:nowrap;
  font-size:19px;
}
.city-page-ru .home-price-list details>div p {
  margin:0;
  line-height:1.55;
}

.city-local-section .city-local-heading {
  max-width:900px;
}
.city-local-list {
  list-style:none;
  margin:0 auto;
  padding:0;
  max-width:980px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.city-local-list li {
  background:var(--white);
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px 20px;
  font-weight:700;
  line-height:1.45;
}
.city-final-cta {
  padding-top:54px;
  padding-bottom:54px;
}
.city-final-cta h2 {
  margin-bottom:12px;
}

@media(max-width:760px) {
  /* Let hero height follow its content; tune typography/spacing so it fills the first screen cleanly without a long tail. */
  .city-page-ru .city-split-hero .split-hero-copy-inner {
    padding-top:30px !important;
    padding-bottom:30px !important;
  }
  .city-page-ru .city-split-hero h1 {
    font-size:34px !important;
    margin-bottom:14px;
  }
  .city-page-ru .city-split-hero h2 {
    font-size:21px !important;
    line-height:1.32;
    margin-bottom:14px;
  }
  .city-page-ru .city-split-hero .hero-benefits {
    margin-top:2px;
  }
  .city-page-ru .city-split-hero .hero-benefits li {
    font-size:17px !important;
    line-height:1.34;
    padding-top:11px;
    padding-bottom:11px;
    padding-inline-start:31px;
  }
  .city-page-ru .city-split-hero .hero-benefits li::before {
    top:11px;
  }

  .city-page-ru .section,
  .city-page-ru .home-section {
    padding-top:44px;
    padding-bottom:44px;
  }
  .city-page-ru .section-heading {
    margin-bottom:22px;
  }
  .city-page-ru .section-note {
    font-size:17px;
    line-height:1.5;
  }

  .city-page-ru .choice-panel summary {
    min-height:74px;
    padding:18px 56px 18px 20px;
    font-size:20px;
  }
  .city-page-ru .choice-panel summary::after {
    inset-inline-end:23px;
    width:11px;
    height:11px;
  }
  .city-page-ru .scan-links {
    padding:4px 18px 12px;
  }
  .city-page-ru .scan-links a {
    padding:10px 2px;
    font-size:16px;
    line-height:1.35;
  }
  .city-page-ru .scan-intro {
    padding:9px 2px;
    font-size:15px;
  }

  .city-page-ru .city-about > .container > h2 {
    margin-bottom:18px;
  }
  .city-about-grid {
    grid-template-columns:1fr;
    gap:20px;
  }
  .city-about-photo {
    border-radius:14px;
  }
  .city-about-copy p {
    font-size:17px;
    line-height:1.58;
    margin-bottom:13px;
  }

  .city-process-compact {
    padding-top:32px !important;
    padding-bottom:32px !important;
  }
  .city-process-compact h2 {
    margin-bottom:14px;
  }
  .city-process-line {
    display:grid;
    grid-template-columns:1fr;
    gap:7px;
    font-size:17px;
    line-height:1.42;
  }
  .city-process-line span {
    white-space:normal;
  }
  .city-process-line span + span::before {
    content:none;
  }

  .city-page-ru #before-call .city-prep-grid {
    grid-template-columns:1fr;
    gap:10px;
  }
  .city-page-ru #before-call .prep-item {
    min-height:0;
    padding:15px 17px;
  }
  .city-page-ru #before-call .prep-item h3 {
    font-size:18px;
    margin-bottom:5px;
  }
  .city-page-ru #before-call .prep-item p {
    font-size:15.5px;
  }

  .city-page-ru .home-price-list {
    gap:10px;
  }
  .city-page-ru .home-price-list summary {
    min-height:98px;
    gap:10px;
    padding:14px 52px 14px 17px;
  }
  .city-price-title {
    font-size:17px;
    line-height:1.3;
  }
  .city-price-value {
    font-size:17px;
  }
  .city-page-ru .home-price-list summary::after {
    inset-inline-end:18px;
  }
  .city-page-ru .home-price-list details>div {
    padding:0 17px 17px;
  }
  .city-page-ru .home-price-list details>div p {
    font-size:15.5px;
  }

  .city-local-list {
    grid-template-columns:1fr;
    gap:10px;
  }
  .city-local-list li {
    padding:15px 17px;
    font-size:16px;
  }
  .city-final-cta {
    padding-top:44px;
    padding-bottom:44px;
  }
}
