:root {
  --bg: #f7f4ed;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #172033;
  --muted: #5b6472;
  --border: rgba(23, 32, 51, 0.1);
  --primary: #d97706;
  --primary-dark: #b45309;
  --secondary: #0f766e;
  --secondary-dark: #115e59;
  --shadow: 0 20px 50px rgba(23, 32, 51, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 119, 6, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.14), transparent 26%),
    linear-gradient(180deg, #faf7f0 0%, #f3efe6 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
}

main,
header,
footer,
.cookie-consent,
.modal {
  position: relative;
  z-index: 1;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-dark);
}

img {
  display: block;
  max-width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(247, 244, 237, 0.86);
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.header-container,
.footer-container,
.footer-bottom,
.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.header-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0;
}

.header-bar,
.header-actions,
.phone-group,
.header-nav,
.social-icons {
  display: flex;
  align-items: center;
}

.header-burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(23, 32, 51, 0.94);
  box-shadow: 0 12px 24px rgba(23, 32, 51, 0.12);
}

.header-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: #f8fafc;
  transition: transform 0.24s ease, opacity 0.2s ease;
}

.header-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-bar {
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--text);
}

.logo img {
  width: clamp(10.5rem, 18vw, 15rem);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(217, 119, 6, 0.18));
}

.logo-text {
  display: none;
}

.header-nav {
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(23, 32, 51, 0.08);
}

.header-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--text);
}

body.landing-page .header-container {
  width: min(1320px, calc(100% - 40px));
  gap: 10px;
  padding: 12px 0 10px;
}

body.landing-page .header-bar {
  flex-wrap: nowrap;
  gap: 18px;
}

body.landing-page .logo img {
  width: clamp(10rem, 17vw, 14rem);
  height: auto;
}

body.landing-page .logo-text {
  display: none;
}

body.landing-page .header-actions {
  flex: 1 1 auto;
  flex-wrap: nowrap;
  gap: 12px;
}

body.landing-page .header-contact-info {
  flex: 1 1 auto;
}

body.landing-page .phone-group {
  flex-wrap: nowrap;
  gap: 8px;
}

body.landing-page .contact-phone {
  padding: 8px 12px;
  font-size: 0.92rem;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.05);
}

body.landing-page .working-hours {
  font-size: 0.82rem;
  white-space: nowrap;
}

body.landing-page .social-icons {
  gap: 8px;
}

body.landing-page .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

body.landing-page .header-cta {
  min-width: 210px;
  padding: 10px 18px;
  box-shadow: 0 14px 24px rgba(217, 119, 6, 0.22);
}

body.landing-page .header-nav {
  gap: 8px;
  padding-top: 8px;
}

body.landing-page .header-nav a {
  padding: 7px 12px;
  font-size: 0.88rem;
}

.header-actions {
  gap: 16px;
  flex: 1 1 560px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  min-width: 0;
}

.header-contact-info {
  min-width: 0;
}

.phone-group {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 32, 51, 0.08);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(23, 32, 51, 0.06);
}

.phone-icon {
  color: var(--primary);
}

.phone-number {
  white-space: nowrap;
}

.working-hours {
  color: var(--muted);
  font-size: 0.9rem;
}

.social-icons {
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(23, 32, 51, 0.94);
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.1);
}

.social-icon img {
  width: 24px;
  height: 24px;
}

.social-icon-text {
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn,
.cta-button,
.cookie-btn {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
}

.btn:hover,
.cta-button:hover,
.cookie-btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.cta-button,
.cookie-btn-accept {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #f59e0b 100%);
  box-shadow: 0 18px 30px rgba(217, 119, 6, 0.28);
}

.btn-secondary,
.cookie-btn-settings {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 32, 51, 0.08);
}

.header-parts-link {
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(23, 32, 51, 0.08);
}

.cookie-consent {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.cookie-consent.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body:not(.landing-page) .header {
  backdrop-filter: blur(14px);
}

body:not(.landing-page) .header-container {
  gap: 8px;
  padding: 10px 0;
}

body:not(.landing-page) .header-bar {
  gap: 12px;
}

body:not(.landing-page) .logo img {
  width: clamp(9.5rem, 16vw, 13rem);
  height: auto;
}

body:not(.landing-page) .logo-text {
  display: none;
}

body:not(.landing-page) .header-actions {
  flex: 0 1 auto;
  gap: 10px;
}

body:not(.landing-page) .phone-group {
  gap: 8px;
}

body:not(.landing-page) .phone-group .contact-phone:nth-of-type(2),
body:not(.landing-page) .working-hours,
body:not(.landing-page) .social-icons {
  display: none;
}

body:not(.landing-page) .contact-phone {
  padding: 8px 12px;
  font-size: 0.95rem;
  box-shadow: none;
}

body:not(.landing-page) .header-cta {
  padding: 10px 16px;
  font-size: 0.92rem;
}

body:not(.landing-page) .header-nav {
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-top: 8px;
  scrollbar-width: none;
}

body:not(.landing-page) .header-nav::-webkit-scrollbar {
  display: none;
}

body:not(.landing-page) .header-nav a {
  padding: 6px 12px;
  font-size: 0.86rem;
}

.cookie-consent-content {
  width: min(980px, 100%);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(23, 32, 51, 0.96);
  color: #f8fafc;
  box-shadow: var(--shadow);
}

.cookie-text {
  font-size: 0.95rem;
}

.cookie-policy-link {
  color: #fbbf24;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  padding: 24px 16px;
  overflow-y: auto;
  background: rgba(10, 15, 30, 0.62);
}

.modal.show {
  display: block;
}

body.modal-open {
  overflow: hidden;
}

.modal-dialog {
  width: min(580px, 100%);
  margin: 48px auto;
}

.modal-content {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fffdf9 100%);
  box-shadow: 0 30px 60px rgba(10, 15, 30, 0.24);
  overflow: hidden;
}

.modal-header,
.modal-body {
  padding: 28px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.modal-eyebrow {
  margin: 0 0 6px;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-title {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
}

.modal-description {
  margin: 0 0 20px;
  color: var(--muted);
}

.close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(23, 32, 51, 0.08);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label,
.form-check-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-control,
.consultation-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus,
.consultation-input:focus {
  border-color: rgba(15, 118, 110, 0.4);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check-input {
  margin-top: 4px;
}

.modal-submit {
  width: 100%;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

.gallery-content,
.privacy-policy-content,
.error-page {
  padding: 56px 0 72px;
}

.gallery-content h1,
.privacy-policy-content h1,
.error-content h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.privacy-policy-content .container,
.gallery-content .container {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 32px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.privacy-policy-content section {
  margin: 24px 0;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 32, 51, 0.06);
}

.privacy-policy-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.privacy-policy-content p,
.privacy-policy-content li {
  color: var(--muted);
  font-size: 1rem;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
  padding-left: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 26px;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.95) 46%);
  color: #f8fafc;
}

.gallery-item-overlay h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.repair-details,
.repair-details p,
.repair-details li {
  color: rgba(248, 250, 252, 0.88);
  font-size: 0.95rem;
}

.error-page .container {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 32px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.error-code {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  color: var(--primary);
}

footer {
  padding: 18px 0 26px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 26px;
  border-radius: 32px;
  background: rgba(16, 23, 37, 0.96);
  color: #f8fafc;
  box-shadow: var(--shadow);
}

.footer-block h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-nav ul,
.footer-links,
.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contacts,
.footer-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a,
.footer-link,
.footer-phone,
.social-link,
footer .working-hours {
  color: rgba(248, 250, 252, 0.82);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link img {
  width: 20px;
  height: 20px;
}

.social-link-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(23, 32, 51, 0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 16px 20px;
  border-radius: 24px;
  background: rgba(16, 23, 37, 0.9);
  color: rgba(248, 250, 252, 0.82);
  box-shadow: 0 18px 36px rgba(23, 32, 51, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .footer-links {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .footer-link {
  color: rgba(248, 250, 252, 0.78);
}

.footer-developer {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.82rem;
}

.footer-developer-label {
  color: rgba(248, 250, 252, 0.62);
}

.footer-developer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(232, 240, 252, 0.84);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-developer-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(79, 209, 255, 0.55);
  flex: 0 0 auto;
}

.footer-developer-link:hover,
.footer-developer-link:focus-visible {
  color: rgba(255, 255, 255, 0.98);
}

@media (max-width: 1080px) {
  .header-bar,
  .header-actions {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .phone-group {
    justify-content: flex-start;
  }

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

  body.landing-page .header-bar,
  body.landing-page .header-actions,
  body.landing-page .phone-group {
    flex-wrap: wrap;
  }

  body.landing-page .working-hours {
    display: none;
  }

  body.landing-page .header-cta {
    min-width: 0;
  }
}

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

  .logo-text {
    font-size: 1.5rem;
  }

  .header-nav {
    gap: 12px;
  }

  .cookie-consent-content,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-wrap: wrap;
  }

  .modal-header,
  .modal-body,
  .footer-container {
    padding: 22px;
  }

  .footer-bottom {
    padding: 18px 20px;
  }

  .gallery-content,
  .privacy-policy-content,
  .error-page {
    padding: 40px 0 56px;
  }

  body:not(.landing-page) .header-actions {
    width: auto;
  }

  body:not(.landing-page) .header-cta,
  body:not(.landing-page) .contact-phone {
    width: auto;
  }
}

@media (max-width: 560px) {
  .header-container,
  .container,
  .footer-bottom {
    width: calc(100% - 20px);
  }

  .header-bar {
    gap: 14px;
  }

  .phone-group,
  .header-actions,
  .social-icons {
    width: 100%;
  }

  .contact-phone,
  .btn,
  .cta-button {
    width: 100%;
  }

  .working-hours {
    width: 100%;
  }

  .footer-container {
    padding: 18px;
    gap: 18px;
    border-radius: 28px;
  }

  .footer-block h4 {
    margin-bottom: 10px;
    font-size: 0.96rem;
  }

  .footer-bottom {
    gap: 14px;
    margin-top: 12px;
    padding: 16px 18px;
    border-radius: 22px;
  }

  .footer-bottom .footer-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-developer {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .footer-phones {
    gap: 8px;
  }

  .footer-phone {
    gap: 6px;
  }

  body:not(.landing-page) .header-bar,
  body:not(.landing-page) .header-actions,
  body:not(.landing-page) .phone-group {
    width: 100%;
  }

  body:not(.landing-page) .header-actions {
    justify-content: space-between;
  }

  body:not(.landing-page) .header-cta {
    flex: 1 1 180px;
    text-align: center;
  }
}

body.landing-page .header {
  background: rgba(250, 247, 240, 0.72);
}

.landing-main {
  padding: 18px 0 72px;
}

.section-shell {
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading--actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px 18px;
  max-width: none;
}

.section-heading--actions .section-kicker,
.section-heading--actions .section-title {
  grid-column: 1;
}

.section-heading-actions {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.section-heading-actions .btn {
  min-height: 48px;
  padding-inline: 20px;
  white-space: nowrap;
}

.section-heading-left {
  margin-bottom: 18px;
}

.section-kicker,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(23, 32, 51, 0.08);
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title,
.hero-title {
  margin: 0;
  font-family: "Oswald", Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.hero {
  padding: 34px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-aside,
.service-card,
.advantage-card,
.problem-card,
.review-card,
.consultation-content,
.pricing-table-wrapper,
.pricing-note,
.cta-strip-content {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy {
  padding: clamp(24px, 3vw, 42px);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 248, 240, 0.88) 100%),
    url("/img/banner-stirkavrn.png") right bottom / cover no-repeat;
}

.hero-title {
  font-size: clamp(2.3rem, 4.2vw, 4.05rem);
  max-width: 10.5ch;
  line-height: 0.97;
}

.hero-description,
.section-description {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-description {
  max-width: 52ch;
  margin: 16px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-aside {
  display: grid;
  gap: 14px;
  padding: 16px;
  align-content: start;
  align-items: start;
  grid-auto-rows: min-content;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(23, 32, 51, 0.96) 100%);
  color: #f8fafc;
}

.hero-panel,
.stat-card,
.hero-badge {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel {
  padding: 20px;
  align-self: start;
}

.hero-panel-kicker {
  margin: 0 0 8px;
  color: #fbbf24;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  line-height: 1.08;
}

.hero-panel p,
.hero-badge span,
.stat-card span {
  color: rgba(248, 250, 252, 0.82);
}

.hero-stats {
  display: grid;
  gap: 10px;
  grid-auto-rows: min-content;
}

.stat-card {
  padding: 16px 18px;
  align-self: start;
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.28rem;
  color: #ffffff;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  align-self: start;
  color: #ffffff;
}

.hero-badge img {
  width: 40px;
  height: 40px;
}

.services-section,
.parts-transition-section,
.advantages-section,
.common-problems,
.consultation,
.reviews,
.pricing-section,
.cta-strip {
  padding: 22px 0;
}

.service-grid,
.advantages-grid,
.problems-grid,
.reviews-grid {
  display: grid;
  gap: 20px;
}

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

.service-card,
.advantage-card {
  padding: 24px;
}

.service-card h3,
.advantage-card h3,
.review-card h3,
.problem-info h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.service-card-accent {
  background: linear-gradient(140deg, rgba(15, 118, 110, 0.16) 0%, rgba(217, 119, 6, 0.16) 100%);
}

.parts-transition-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
  padding: clamp(24px, 4vw, 34px);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12) 0%, rgba(217, 119, 6, 0.16) 100%);
}

.parts-transition-copy .section-description {
  max-width: 56ch;
}

.parts-transition-grid {
  display: grid;
  gap: 14px;
}

.parts-transition-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 32, 51, 0.08);
}

.parts-transition-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.parts-transition-card p {
  margin: 0;
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(15, 118, 110, 0.1);
}

.service-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(22%) saturate(1035%) hue-rotate(184deg) brightness(92%) contrast(92%);
}

.service-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-list li + li {
  margin-top: 8px;
}

.advantages-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advantage-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
}

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

.problem-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 6, 0.28);
}

.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.12) 0%, rgba(15, 118, 110, 0.12) 100%);
}

.problem-icon img {
  width: 32px;
  height: 32px;
}

.problem-info h3 {
  margin-bottom: 8px;
}

.problem-price {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.problem-time {
  color: var(--muted);
  font-size: 0.92rem;
}

.consultation-content {
  padding: clamp(24px, 4vw, 40px);
}

.consultation-form {
  display: grid;
  gap: 14px;
}

.form-inputs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
}

.privacy-policy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.privacy-policy-checkbox input {
  margin-top: 4px;
}

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

.review-card {
  padding: 24px;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--secondary-dark);
  font-weight: 700;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
}

.pricing-note,
.pricing-table-wrapper,
.cta-strip-content {
  padding: clamp(24px, 4vw, 34px);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  text-align: left;
}

.pricing-table td {
  font-weight: 700;
  white-space: nowrap;
}

.service-category h3 {
  margin: 12px 0 0;
  color: var(--secondary-dark);
}

.cta-strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.12) 0%, rgba(15, 118, 110, 0.12) 100%);
}

@media (max-width: 1080px) {
  .hero-grid,
  .pricing-layout,
  .parts-transition-content,
  .service-grid,
  .advantages-grid,
  .problems-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .pricing-layout,
  .parts-transition-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .landing-main {
    padding-top: 8px;
  }

  .section-heading--actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
  }

  .section-shell {
    width: calc(100% - 24px);
  }

  .service-grid,
  .advantages-grid,
  .problems-grid,
  .reviews-grid,
  .form-inputs {
    grid-template-columns: 1fr;
  }

  .cta-strip-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .problem-card {
    align-items: flex-start;
  }
}

/* Unified header across all pages */
body.landing-page .header,
body:not(.landing-page) .header {
  background: rgba(250, 247, 240, 0.78);
  backdrop-filter: blur(16px);
}

body.landing-page .header-container,
body:not(.landing-page) .header-container {
  width: min(1260px, calc(100% - 32px));
  gap: 10px;
  padding: 12px 0 10px;
}

body.landing-page .header-bar,
body:not(.landing-page) .header-bar {
  gap: 16px;
  align-items: center;
}

body.landing-page .logo img,
body:not(.landing-page) .logo img {
  width: clamp(9.5rem, 16vw, 14rem);
  height: auto;
}

body.landing-page .logo-text,
body:not(.landing-page) .logo-text {
  display: none;
}

body.landing-page .header-actions,
body:not(.landing-page) .header-actions {
  flex: 1 1 auto;
  gap: 12px;
  justify-content: flex-end;
}

body.landing-page .header-contact-info,
body:not(.landing-page) .header-contact-info {
  flex: 1 1 auto;
}

body.landing-page .phone-group,
body:not(.landing-page) .phone-group {
  gap: 8px;
  justify-content: flex-end;
}

body.landing-page .contact-phone,
body:not(.landing-page) .contact-phone {
  padding: 8px 12px;
  font-size: 0.92rem;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.05);
}

body.landing-page .working-hours,
body:not(.landing-page) .working-hours {
  display: inline;
  width: auto;
  font-size: 0.82rem;
  white-space: nowrap;
}

body.landing-page .social-icons,
body:not(.landing-page) .social-icons {
  display: flex;
  gap: 8px;
  width: auto;
}

body:not(.landing-page) .phone-group .contact-phone:nth-of-type(2) {
  display: inline-flex;
}

body.landing-page .social-icon,
body:not(.landing-page) .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

body.landing-page .header-cta,
body:not(.landing-page) .header-cta {
  min-width: 198px;
  padding: 10px 18px;
  font-size: 0.94rem;
  box-shadow: 0 14px 24px rgba(217, 119, 6, 0.22);
}

body.landing-page .header-nav,
body:not(.landing-page) .header-nav {
  gap: 8px;
  padding-top: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

body.landing-page .header-nav::-webkit-scrollbar,
body:not(.landing-page) .header-nav::-webkit-scrollbar {
  display: none;
}

body.landing-page .header-nav a,
body:not(.landing-page) .header-nav a {
  padding: 7px 12px;
  font-size: 0.88rem;
}

@media (max-width: 1180px) {
  body.landing-page .header-bar,
  body.landing-page .header-actions,
  body.landing-page .phone-group,
  body:not(.landing-page) .header-bar,
  body:not(.landing-page) .header-actions,
  body:not(.landing-page) .phone-group {
    flex-wrap: wrap;
  }

  body.landing-page .working-hours,
  body:not(.landing-page) .working-hours {
    display: none;
  }

  body.landing-page .header-cta,
  body:not(.landing-page) .header-cta {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  body.landing-page .header-container,
  body:not(.landing-page) .header-container {
    width: calc(100% - 24px);
  }

  body.landing-page .header-bar,
  body:not(.landing-page) .header-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .header-burger {
    display: inline-flex;
    justify-self: end;
  }

  body.landing-page .header-actions,
  body:not(.landing-page) .header-actions {
    grid-column: 1 / -1;
  }

  body.landing-page .header-nav,
  body:not(.landing-page) .header-nav {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-top: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 12px 24px rgba(23, 32, 51, 0.08);
    backdrop-filter: blur(12px);
  }

  body.landing-page .header-nav.is-open,
  body:not(.landing-page) .header-nav.is-open {
    display: grid;
  }

  body.landing-page .header-nav a,
  body:not(.landing-page) .header-nav a {
    width: 100%;
    min-height: 40px;
    padding: 7px 10px;
    font-size: 0.84rem;
  }
}

@media (max-width: 560px) {
  body.landing-page .header-container,
  body:not(.landing-page) .header-container {
    width: calc(100% - 20px);
    gap: 6px;
    padding: 8px 0 6px;
  }

  body.landing-page .header-bar,
  body.landing-page .header-actions,
  body.landing-page .phone-group,
  body:not(.landing-page) .header-bar,
  body:not(.landing-page) .header-actions,
  body:not(.landing-page) .phone-group {
    width: 100%;
  }

  body.landing-page .header-bar,
  body:not(.landing-page) .header-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 8px;
  }

  body.landing-page .logo img,
  body:not(.landing-page) .logo img {
    width: clamp(6.9rem, 30vw, 8.2rem);
  }

  body.landing-page .header-actions,
  body:not(.landing-page) .header-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    gap: 8px;
  }

  body.landing-page .header-contact-info,
  body:not(.landing-page) .header-contact-info {
    grid-column: 1 / -1;
    width: 100%;
  }

  body.landing-page .phone-group,
  body:not(.landing-page) .phone-group {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  body.landing-page .phone-group::-webkit-scrollbar,
  body:not(.landing-page) .phone-group::-webkit-scrollbar {
    display: none;
  }

  body.landing-page .contact-phone,
  body:not(.landing-page) .contact-phone {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
    justify-content: center;
    padding: 6px 10px;
    font-size: 0.8rem;
    line-height: 1.1;
    border-radius: 16px;
  }

  body.landing-page .phone-number,
  body:not(.landing-page) .phone-number {
    white-space: nowrap;
  }

  body.landing-page .phone-icon,
  body:not(.landing-page) .phone-icon {
    font-size: 0.88rem;
  }

  body.landing-page .social-icons,
  body:not(.landing-page) .social-icons {
    gap: 6px;
    width: auto;
    justify-self: start;
  }

  body.landing-page .social-icon,
  body:not(.landing-page) .social-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  body.landing-page .social-icon img,
  body:not(.landing-page) .social-icon img {
    width: 17px;
    height: 17px;
  }

  body.landing-page .header-parts-link,
  body.landing-page .header-cta,
  body:not(.landing-page) .header-parts-link,
  body:not(.landing-page) .header-cta {
    min-width: 0;
    width: 100%;
    min-height: 38px;
    padding: 7px 10px;
    font-size: 0.8rem;
    line-height: 1.15;
    justify-content: center;
    text-align: center;
    border-radius: 18px;
  }

  body.landing-page .header-nav,
  body:not(.landing-page) .header-nav {
    gap: 6px;
    padding: 10px;
    border-radius: 20px;
  }

  body.landing-page .header-nav a,
  body:not(.landing-page) .header-nav a {
    min-height: 36px;
    padding: 5px 9px;
    font-size: 0.78rem;
  }
}

/* Final shared header parity across all live pages */
body .site-header {
  background: rgba(250, 247, 240, 0.78);
  backdrop-filter: blur(16px);
}

body .site-header .header-container {
  width: min(1260px, calc(100% - 32px));
  gap: 10px;
  padding: 12px 0 10px;
}

body .site-header .header-bar {
  gap: 16px;
  align-items: center;
}

body .site-header .logo img {
  width: clamp(9.5rem, 16vw, 14rem);
  height: auto;
}

body .site-header .logo-text {
  display: none;
}

body .site-header .header-actions {
  flex: 1 1 auto;
  gap: 12px;
  flex-direction: row;
  justify-content: flex-end;
}

body .site-header .header-contact-info {
  flex: 1 1 auto;
}

body .site-header .phone-group {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: flex-end;
}

body .site-header .phone-group .contact-phone:first-of-type {
  order: 1;
}

body .site-header .phone-group .contact-phone:nth-of-type(2) {
  order: 2;
  display: inline-flex;
}

body .site-header .contact-phone {
  padding: 8px 12px;
  font-size: 0.92rem;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.05);
}

body .site-header .working-hours {
  display: inline;
  width: auto;
  font-size: 0.82rem;
  white-space: nowrap;
}

body .site-header .social-icons {
  display: flex;
  gap: 8px;
  width: auto;
}

body .site-header .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

body .site-header .header-cta {
  min-width: 198px;
  padding: 10px 18px;
  font-size: 0.94rem;
  box-shadow: 0 14px 24px rgba(217, 119, 6, 0.22);
}

body .site-header .header-nav {
  gap: 8px;
  padding-top: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

body .site-header .header-nav::-webkit-scrollbar {
  display: none;
}

body .site-header .header-nav a {
  padding: 7px 12px;
  font-size: 0.88rem;
}

@media (max-width: 1180px) {
  body .site-header .header-bar,
  body .site-header .header-actions,
  body .site-header .phone-group {
    flex-wrap: wrap;
  }

  body .site-header .working-hours {
    display: none;
  }

  body .site-header .header-cta {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  body .site-header .header-container {
    width: calc(100% - 24px);
  }

  body .site-header .header-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  body .site-header .header-burger {
    display: inline-flex;
    justify-self: end;
  }

  body .site-header .header-actions {
    grid-column: 1 / -1;
  }

  body .site-header .header-nav {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-top: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 12px 24px rgba(23, 32, 51, 0.08);
    backdrop-filter: blur(12px);
  }

  body .site-header .header-nav.is-open {
    display: grid;
  }

  body .site-header .header-nav a {
    width: 100%;
    min-height: 40px;
    padding: 7px 10px;
    font-size: 0.84rem;
  }
}

@media (max-width: 560px) {
  body .site-header .header-container {
    width: calc(100% - 20px);
    gap: 6px;
    padding: 8px 0 6px;
  }

  body .site-header .header-bar,
  body .site-header .header-actions,
  body .site-header .phone-group {
    width: 100%;
  }

  body .site-header .header-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 8px;
  }

  body .site-header .logo img {
    width: clamp(6.9rem, 30vw, 8.2rem);
  }

  body .site-header .header-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    gap: 8px;
  }

  body .site-header .header-contact-info {
    grid-column: 1 / -1;
    width: 100%;
  }

  body .site-header .phone-group {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  body .site-header .phone-group::-webkit-scrollbar {
    display: none;
  }

  body .site-header .contact-phone {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
    justify-content: center;
    padding: 6px 10px;
    font-size: 0.8rem;
    line-height: 1.1;
    border-radius: 16px;
  }

  body .site-header .phone-number {
    white-space: nowrap;
  }

  body .site-header .phone-icon {
    font-size: 0.88rem;
  }

  body .site-header .social-icons {
    gap: 6px;
    width: auto;
    justify-self: start;
  }

  body .site-header .social-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  body .site-header .social-icon img {
    width: 17px;
    height: 17px;
  }

  body .site-header .header-parts-link,
  body .site-header .header-cta {
    min-width: 0;
    width: 100%;
    min-height: 38px;
    padding: 7px 10px;
    font-size: 0.8rem;
    line-height: 1.15;
    justify-content: center;
    text-align: center;
    border-radius: 18px;
  }

  body .site-header .header-nav {
    gap: 6px;
    padding: 10px;
    border-radius: 20px;
  }

  body .site-header .header-nav a {
    min-height: 36px;
    padding: 5px 9px;
    font-size: 0.78rem;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  body .site-header .header-container {
    width: min(1260px, calc(100% - 40px));
    gap: 8px;
    padding: 10px 0 8px;
  }

  body .site-header .header-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 12px 18px;
  }

  body .site-header .header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    align-items: start;
    gap: 10px;
    width: 100%;
  }

  body .site-header .header-contact-info {
    width: 100%;
  }

  body .site-header .phone-group {
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 8px;
  }

  body .site-header .contact-phone {
    min-height: 40px;
  }

  body .site-header .social-icons {
    justify-self: start;
  }

  body .site-header .header-parts-link,
  body .site-header .header-cta {
    width: auto;
    min-width: 182px;
  }

  body .site-header .header-nav {
    padding-top: 10px;
    gap: 8px;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  body .site-header .header-nav a {
    min-height: 40px;
    padding: 8px 14px;
  }
}

@media (min-width: 769px) and (max-width: 1080px) {
  body .site-header .header-bar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }

  body .site-header .header-burger {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  body .site-header .header-actions {
    grid-column: 2 / 3;
    grid-row: 1;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
  }

  body .site-header .social-icons,
  body .site-header .header-parts-link {
    display: none;
  }

  body .site-header .header-contact-info {
    width: auto;
    flex: 0 1 auto;
  }

  body .site-header .phone-group {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 8px;
    overflow: visible;
  }

  body .site-header .contact-phone {
    min-height: 38px;
    padding: 6px 10px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  body .site-header .header-cta {
    order: 1;
    min-width: 166px;
    width: auto;
    min-height: 38px;
    padding: 7px 14px;
    font-size: 0.83rem;
    white-space: nowrap;
  }

  body .site-header .header-nav {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 12px 24px rgba(23, 32, 51, 0.08);
    backdrop-filter: blur(12px);
  }

  body .site-header .header-nav.is-open {
    display: grid;
  }

  body .site-header .header-nav a {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    text-align: center;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .hero-grid,
  .pricing-layout,
  .parts-transition-content,
  .service-grid,
  .advantages-grid,
  .problems-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    max-width: none;
  }

  .hero-card,
  .parts-transition-card,
  .pricing-aside {
    min-height: 100%;
  }

  .cta-strip-content {
    flex-wrap: wrap;
  }
}
