:root {
  --ink: #101419;
  --ink-soft: #1a2028;
  --paper: #f7f7f5;
  --white: #ffffff;
  --muted: #69717b;
  --line: #dfe2e5;
  --accent: #ff8a00;
  --accent-2: #ffb000;
  --accent-pale: #fff2df;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(16, 20, 25, .10);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 20, 25, .92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  flex: 0 0 auto;
}

.logo img {
  width: 48px;
  height: 48px;
  padding: 3px;
  object-fit: contain;
  background: var(--accent);
  border-radius: 10px;
}

.logo-text {
  display: grid;
  line-height: 1;
}

.logo-text strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.logo-text small {
  margin-top: 5px;
  color: #ef2b2f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .24em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav .nav-cta {
  padding: 11px 17px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 50%, rgba(255,138,0,.13), transparent 35%),
    linear-gradient(135deg, #0d1115 0%, #151b22 58%, #101419 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  right: -130px;
  top: 120px;
  border: 90px solid rgba(255,138,0,.13);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  align-items: center;
  gap: 72px;
  padding-block: 90px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.eyebrow-dark {
  color: #69717b;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

h3 {
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -.02em;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 13px;
  color: #f2f4f6;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.58);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(255,138,0,.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ff981f, #ffba2e);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}

.button-ghost:hover {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.quick-links {
  display: flex;
  gap: 30px;
  margin-top: 26px;
}

.quick-links a {
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 700;
}

.quick-links a:hover {
  color: var(--white);
}

.rating-card {
  position: relative;
  padding: 36px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
}

.rating-platforms {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.rating-score-row {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 15px;
}

.rating-score-row .rating-value {
  margin-top: 0;
}

.rating-caption {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
}

.rating-platform {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 18px;
  padding: 18px;
  color: var(--white);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  transition: background .2s ease, transform .2s ease;
}

.rating-platform:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
}

.rating-platform strong {
  font-size: 15px;
}

.rating-platform > span:last-child {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  font-weight: 700;
}

.platform-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
}

.platform-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
}

.platform-icon.yandex {
  background: #fc3f1d;
}

.platform-icon.gis {
  color: #fff;
  background: #19a55a;
}

.rating-card::after {
  content: "";
  position: absolute;
  inset: auto 20px -10px 20px;
  height: 10px;
  background: var(--accent);
  border-radius: 0 0 18px 18px;
  opacity: .72;
}

.rating-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.rating-label {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 700;
}

.source-badge {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #fc3f1d;
  border-radius: 50%;
  font-weight: 800;
}

.rating-value {
  margin-top: 18px;
  font-size: 92px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.08em;
}

.stars {
  color: var(--accent-2);
  font-size: 22px;
  letter-spacing: .12em;
}

.stars.small {
  margin: 19px 0 12px;
  font-size: 14px;
}

.rating-card p {
  margin: 18px 0;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

.rating-card p strong {
  color: var(--white);
}

.rating-card > a {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.rating-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.rating-tags span {
  padding: 7px 10px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: #f1f2ef;
}

.answer-section {
  padding: 80px 0;
  background: var(--white);
}

.answer-card {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 75px;
  padding: 48px;
  background: #f4f5f2;
  border: 1px solid #e3e5e1;
  border-radius: 24px;
}

.answer-card h2 {
  margin-bottom: 0;
}

.answer-content p {
  color: #59616a;
}

.answer-content p:first-child {
  color: var(--ink);
  font-size: 18px;
}

.answer-content a {
  color: #a85600;
  font-weight: 800;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 18px;
}

.fact-strip > div {
  display: grid;
  gap: 4px;
  padding: 22px 25px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.fact-strip > div:last-child {
  border-right: 0;
}

.fact-strip span {
  color: rgba(255,255,255,.5);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.fact-strip strong,
.fact-strip a {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.split-heading-light h2 {
  color: var(--ink);
}

.split-heading-light > p {
  color: var(--muted);
}

.split-heading-light > p a {
  color: #a85600;
  font-weight: 800;
}

.contacts-section .split-heading h2 {
  color: var(--ink);
}

.contacts-section .split-heading > p {
  color: #555f69;
}

.contacts-section .eyebrow-dark {
  color: #69717b;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 275px;
  padding: 28px;
  background: var(--white);
  border: 1px solid #e0e2df;
  border-radius: 18px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #ffc477;
  box-shadow: var(--shadow);
}

.service-card > span {
  display: block;
  margin-bottom: 50px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 11px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-card {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.roof-category {
  background:
    linear-gradient(145deg, rgba(255,138,0,.08), transparent 60%),
    var(--white);
  border-color: #ffd5a1;
}

.category-card > span {
  display: inline-block;
  margin-bottom: 38px;
  padding: 6px 9px;
  color: #8f4e00;
  background: var(--accent-pale);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.category-card p {
  color: var(--muted);
  font-size: 11px;
}

.charging-section {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 25%, rgba(255,138,0,.13), transparent 28%),
    var(--ink);
}

.charging-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 75px;
}

.charging-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.58);
}

.diagnostic-table {
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
}

.diagnostic-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.diagnostic-row:last-child {
  border-bottom: 0;
}

.diagnostic-row span,
.diagnostic-row strong {
  font-size: 12px;
}

.diagnostic-row span {
  color: rgba(255,255,255,.55);
}

.diagnostic-row strong {
  color: var(--white);
}

.diagnostic-head {
  background: rgba(255,138,0,.13);
}

.diagnostic-head span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading p:not(.eyebrow),
.split-heading > p,
.history-copy p,
.faq-heading > p {
  color: var(--muted);
}

.review-summary {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 32px;
  padding: 28px 30px;
  background: var(--accent-pale);
  border: 1px solid #ffddad;
  border-radius: 18px;
}

.review-summary strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.review-summary p {
  margin: 0;
  color: #79634b;
  font-size: 13px;
}

.summary-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.summary-tags span {
  padding: 7px 10px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(150,100,40,.12);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  min-height: 295px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: #ffc77d;
  box-shadow: var(--shadow);
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #8d4c00;
  background: var(--accent-pale);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.review-meta div:last-child {
  display: grid;
}

.review-meta strong {
  font-size: 13px;
}

.review-meta span {
  color: var(--muted);
  font-size: 10px;
}

.review-card p {
  color: #404750;
  font-size: 13px;
}

.review-card a {
  margin-top: auto;
  color: #a55a00;
  font-size: 11px;
  font-weight: 800;
}

.extra-review {
  display: none;
}

.reviews-grid.show-all .extra-review {
  display: flex;
}

.reviews-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 34px;
}

.text-link {
  color: #a55a00;
  font-size: 12px;
  font-weight: 800;
}

.source-note {
  max-width: 720px;
  margin: 28px auto 0;
  color: #89909a;
  font-size: 10px;
  text-align: center;
}

.why-section {
  color: var(--white);
  background: var(--ink);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 6px;
  color: rgba(255,255,255,.55);
}

.feature-grid {
  display: grid;
  gap: 16px;
}

.feature-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  padding: 28px 25px;
  border-radius: 18px;
}

.feature-card.dark {
  min-height: 275px;
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,.08);
}

.feature-number {
  display: block;
  margin-bottom: 48px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 13px;
}

.feature-card p {
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

.cases-section {
  background: #f4f5f2;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.case-card {
  min-height: 285px;
  padding: 24px;
  background: var(--white);
  border: 1px solid #e0e2df;
  border-radius: 18px;
}

.case-card > span {
  display: block;
  margin-bottom: 48px;
  color: #a85600;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card h3 {
  margin-bottom: 12px;
  font-size: 17px;
}

.case-card p {
  color: var(--muted);
  font-size: 11px;
}

.history-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}

.history-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 108px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 36px minmax(0, 1fr);
  gap: 0;
  padding: 0 0 45px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 102px;
  width: 11px;
  height: 11px;
  background: var(--accent);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--accent);
}

.timeline-item > span {
  padding-top: 1px;
  padding-right: 16px;
  color: #a55a00;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.timeline-item > div {
  grid-column: 3;
}

.timeline-item h3 {
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--muted);
  font-size: 13px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.advantage-card {
  min-height: 250px;
  padding: 25px;
  background: var(--white);
  border: 1px solid #e1e3df;
  border-radius: 18px;
  transition: transform .2s ease, border-color .2s ease;
}

.advantage-card:hover {
  transform: translateY(-4px);
  border-color: #ffc77d;
}

.advantage-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  color: #8f4e00;
  background: var(--accent-pale);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.advantage-card h3 {
  margin-bottom: 11px;
}

.advantage-card p {
  color: var(--muted);
  font-size: 12px;
}

.bonus-section {
  color: var(--white);
  background: linear-gradient(135deg, #151a20, #0c1014);
}

.bonus-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 65px;
  background:
    linear-gradient(135deg, rgba(255,138,0,.08), transparent 55%),
    #181e25;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
}

.bonus-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.56);
}

.bonus-list {
  display: grid;
}

.bonus-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.bonus-item:first-child {
  padding-top: 0;
}

.bonus-item:last-child {
  border-bottom: 0;
}

.bonus-item > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.bonus-item h3 {
  margin-bottom: 7px;
}

.bonus-item p {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 12px;
}

.audience-block {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
  margin-top: 22px;
  padding: 42px 48px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 22px;
}

.mini-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.audience-block h3 {
  margin: 8px 0 0;
  font-size: 25px;
}

.audience-block ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-block li {
  position: relative;
  padding-left: 17px;
  font-size: 11px;
  font-weight: 700;
}

.audience-block li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.location-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid #e0e2df;
  border-radius: 19px;
}

.location-number {
  margin-bottom: 48px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.location-card h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.location-card p {
  color: var(--muted);
  font-size: 12px;
}

.location-card strong {
  color: #476052;
  font-size: 11px;
}

.location-card a {
  margin-top: auto;
  padding-top: 25px;
  color: #a85600;
  font-size: 11px;
  font-weight: 800;
}

.contact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 16px;
}

.contact-bar > div {
  display: grid;
  gap: 4px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.contact-bar > div:last-child {
  border-right: 0;
}

.contact-bar span {
  color: rgba(255,255,255,.47);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-bar a {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 800;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  transition: transform .2s ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 720px;
  padding: 0 50px 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.final-cta {
  color: var(--white);
  background: var(--ink);
}

.final-cta-inner {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-block: 70px;
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 12px;
}

.final-cta p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255,255,255,.55);
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 70px 0 25px;
  color: rgba(255,255,255,.56);
  background: #090c0f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr .7fr .9fr;
  gap: 70px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-grid p {
  max-width: 490px;
  font-size: 12px;
}

.footer-grid h3 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 12px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a:not(.logo) {
  font-size: 11px;
}

.footer-grid a:not(.logo):hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {
  max-width: 780px;
  margin: 0;
  font-size: 9px;
}

.footer-cookie-settings {
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 200;
  width: min(calc(100% - 44px), 1040px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-inline: auto;
  padding: 22px 24px;
  color: var(--white);
  background: rgba(16,20,25,.98);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy {
  max-width: 690px;
}

.cookie-copy strong {
  font-size: 14px;
}

.cookie-copy p {
  margin: 5px 0 4px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  line-height: 1.55;
}

.cookie-policy-link {
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 10px 17px;
}

.cookie-reject {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,.25);
}

.cookie-policy {
  width: min(calc(100% - 32px), 720px);
  max-height: min(85vh, 760px);
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 30px 100px rgba(0,0,0,.38);
}

.cookie-policy::backdrop {
  background: rgba(4,7,9,.7);
  backdrop-filter: blur(5px);
}

.cookie-policy-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px 20px;
  border-bottom: 1px solid var(--line);
}

.cookie-policy-head span {
  color: #a85600;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cookie-policy-head h2 {
  margin: 5px 0 0;
  font-size: 28px;
}

.cookie-policy-head button {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--ink);
  background: #f0f1ef;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.cookie-policy-body {
  max-height: 50vh;
  overflow-y: auto;
  padding: 24px 30px;
}

.cookie-policy-body p {
  color: #59616a;
  font-size: 12px;
}

.cookie-policy-body a {
  color: #a85600;
  font-weight: 700;
}

.cookie-policy-footer {
  display: flex;
  justify-content: flex-end;
  padding: 18px 30px 25px;
  border-top: 1px solid var(--line);
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 190;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(0,0,0,.25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.scroll-top span {
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.scroll-top:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body:has(.cookie-banner:not([hidden])) .scroll-top {
  bottom: 150px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .review-card,
  .advantage-card {
    transition: none;
  }
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .hero-grid {
    grid-template-columns: 1fr .65fr;
    gap: 40px;
  }

  .rating-card {
    padding: 28px;
  }

  .rating-value {
    font-size: 76px;
  }

  .reviews-grid,
  .advantages-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.dark {
    min-height: 230px;
  }
}

@media (max-width: 820px) {
  .site-header {
    backdrop-filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .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);
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
    min-height: 0;
    padding: max(28px, env(safe-area-inset-top)) 24px max(28px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(10,13,16,.98);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: min(100%, 440px);
    margin-inline: auto;
    padding: 14px 16px;
    text-align: center;
    font-size: 18px;
    border-radius: 10px;
  }

  .main-nav a:not(.nav-cta):hover {
    background: rgba(255,255,255,.06);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 75px;
  }

  .answer-card,
  .charging-grid {
    grid-template-columns: 1fr;
  }

  .answer-card,
  .charging-grid {
    gap: 40px;
  }

  .fact-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-strip > div:nth-child(2) {
    border-right: 0;
  }

  .fact-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .rating-card {
    max-width: 480px;
  }

  .review-summary,
  .split-heading,
  .history-grid,
  .bonus-shell,
  .audience-block,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .summary-tags {
    justify-content: flex-start;
  }

  .split-heading,
  .history-grid,
  .faq-grid {
    gap: 40px;
  }

  .history-copy,
  .faq-heading {
    position: static;
  }

  .bonus-shell {
    gap: 40px;
    padding: 42px;
  }

  .audience-block {
    gap: 30px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 60px 70px;
  }

  h1 {
    font-size: 41px;
  }

  h2 {
    font-size: 35px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .quick-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .rating-card {
    padding: 26px;
  }

  .rating-score-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 19px;
  }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }

  .cookie-actions {
    flex-direction: column-reverse;
  }

  .cookie-policy-head,
  .cookie-policy-body,
  .cookie-policy-footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .scroll-top {
    right: 15px;
    bottom: 15px;
    width: 44px;
    height: 44px;
  }

  body:has(.cookie-banner:not([hidden])) .scroll-top {
    bottom: 245px;
  }

  .section {
    padding: 76px 0;
  }

  .reviews-grid,
  .advantages-grid,
  .feature-grid.four,
  .service-grid,
  .category-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .answer-card {
    padding: 30px 24px;
  }

  .fact-strip,
  .contact-bar {
    grid-template-columns: 1fr;
  }

  .fact-strip > div,
  .contact-bar > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .fact-strip > div:last-child,
  .contact-bar > div:last-child {
    border-bottom: 0;
  }

  .diagnostic-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .review-card {
    min-height: 265px;
  }

  .reviews-actions {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .feature-card.dark {
    min-height: 215px;
  }

  .timeline::before {
    left: 91px;
  }

  .timeline-item {
    grid-template-columns: 74px 34px minmax(0, 1fr);
    gap: 0;
  }

  .timeline-item::before {
    left: 85px;
  }

  .bonus-shell {
    padding: 30px 24px;
  }

  .audience-block {
    padding: 30px 24px;
  }

  .audience-block ul {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
