:root {
  --primary: #3C6FF4;
  --primary-hover: #2B58D8;
  --accent: #20BFA9;
  --headline: #1D263A;
  --body: rgba(29, 38, 58, 0.8);
  --dark: #1D263A;
  --light: #F9FAFB;
  --white: #FFFFFF;
  --line: #E1ECF0;
  --font: "Montserrat", sans-serif;
  --radius: 12px;
  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--headline);
  margin: 0 0 0.6em;
  font-weight: 600;
  line-height: 1.25;
}
button, input, textarea, select { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(100% - 30px, var(--container));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius);
  padding: 14.4px 26px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: var(--primary-hover); color: #fff; }
.btn-hero { padding: 22px 45px; }
.btn-icon { flex-shrink: 0; }

/* Header */
.site-header {
  position: fixed;
  inset: 10px 0 auto;
  z-index: 80;
  pointer-events: none;
}
.header-bar {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 20px), 1236px);
  margin: 0 auto;
  min-height: 100px;
  padding: 0 10px;
  background: transparent;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.41, 0.61, 0.36, 1.08), opacity 0.2s ease;
}
.site-header.is-solid .header-bar {
  background: #fff;
  box-shadow: 0 0 0 1px #e6e9ec, -2px 3px 90px -20px rgba(0, 0, 0, 0.25);
}
.site-header.is-hidden .header-bar {
  transform: translate3d(0, -35px, 0);
  opacity: 0;
  pointer-events: none;
}
.logo {
  flex-shrink: 0;
  display: grid;
  padding: 15px 8px;
}
.logo img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}
.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-list {
  display: flex;
  align-items: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--headline);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0 25px;
  line-height: 100px;
}
.nav-link[aria-current="page"],
.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  color: var(--primary);
}
.caret {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.nav-item { position: relative; }
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #1c2538;
  border-radius: 6px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.18s ease;
  z-index: 20;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 2px 35px rgba(0, 0, 0, 0.04);
}
.nav-item:hover > .sub-menu,
.nav-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.sub-menu a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.sub-menu a:hover { background: rgba(255, 255, 255, 0.08); }
.header-cta {
  padding: 12px 22px;
  font-size: 16px;
  border-radius: 12px;
  white-space: nowrap;
  justify-self: end;
  min-height: 48px;
}
.header-cta .btn-icon,
.mobile-cta .btn-icon,
.mobile-drawer-cta .btn-icon {
  width: 18px;
  height: 18px;
}
.header-mobile { display: none; }

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 0 20px 28px;
}
.mobile-drawer[hidden] { display: none; }
.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  margin: 0 -10px 8px;
  padding: 0 10px;
}
.mobile-drawer-top .logo {
  padding: 8px 0;
}
.mobile-drawer-top .logo img {
  width: 40px;
  height: 40px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
}
.mobile-nav > li > a,
.mobile-sub-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--headline);
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  padding: 15px 10px;
}
.mobile-nav .chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #c5ccd6;
  border-bottom: 1.5px solid #c5ccd6;
  transform: rotate(-45deg);
  margin-top: -1px;
}
.has-sub.is-open .chevron { transform: rotate(45deg); }
.mobile-sub {
  display: none;
  padding: 0 0 8px 20px;
}
.has-sub.is-open > .mobile-sub { display: block; }
.mobile-sub a {
  display: block;
  padding: 10px;
  color: var(--headline);
  font-weight: 600;
  font-size: 15px;
}
.mobile-drawer-cta {
  margin: auto 0 8px;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  border-radius: 12px;
}
.mobile-drawer-cta .btn-icon {
  width: 20px;
  height: 20px;
}
.menu-toggle {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  justify-self: end;
  appearance: none;
}
.menu-toggle .bars {
  position: relative;
  width: 20px;
  height: 15px;
}
.menu-toggle .bars span {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 50em;
  background: var(--headline);
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-toggle .bars span:nth-child(1) { top: 0; }
.menu-toggle .bars span:nth-child(2) { top: 6.5px; }
.menu-toggle .bars span:nth-child(3) { top: 13px; }
.menu-toggle.is-open .bars span:nth-child(1),
.menu-toggle.is-open .bars span:nth-child(3) {
  opacity: 0;
}
.menu-toggle.is-open .bars span:nth-child(2) {
  transform: rotate(45deg);
}
.menu-toggle.is-open .bars span:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  transform: rotate(-90deg);
}

body.menu-open { overflow: hidden; }

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 150px 0 125px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.hero-media,
.hero-overlay { position: absolute; inset: 0; }
.hero-media {
  background-color: #181818;
  background-image: url("../images/back1-1-scaled-2.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-overlay {
  background: rgba(16, 20, 28, 0.38);
  opacity: 1;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #fff;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 18px;
}
.hero-accent {
  color: var(--accent);
  font-size: 30px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 6px;
  margin-bottom: 18px;
}
.hero-areas {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  max-width: 920px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Intro */
.intro-band {
  background: var(--light);
  padding: 120px 0;
  text-align: center;
}
.intro-band h2 {
  font-size: 36px;
  font-weight: 600;
}
.intro-line {
  width: 100%;
  height: 1px;
  background: #000;
  margin: 15px 0 30px;
}
.intro-copy {
  max-width: 860px;
  margin: 0 auto;
}
.intro-copy strong { color: var(--headline); }

/* Services */
.services-head {
  padding: 80px 0;
  text-align: center;
}
.services-head h2 {
  font-size: 36px;
  max-width: 750px;
  margin: 0 auto;
}
.services-row { padding: 0 0 20px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.svc-img { overflow: hidden; border-radius: 20px 20px 0 0; }
.svc-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.svc-body {
  padding: 0 50px 50px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-body h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0;
}
.svc-body p {
  flex: 1;
  margin-bottom: 30px;
}
.svc-btn { align-self: flex-start; padding: 20px 50px; }

.extra-band { padding: 120px 0; }
.extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  font-weight: 700;
  color: var(--headline);
}
.check-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 6px;
  flex-shrink: 0;
  background: var(--primary);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='black' d='M173.9 439.4L7.5 273c-10-10-10-26.2 0-36.2l36.2-36.2c10-10 26.2-10 36.2 0L192 312.7 432.1 72.6c10-10 26.2-10 36.2 0l36.2 36.2c10 10 10 26.2 0 36.2L210.1 439.4c-10 10-26.2 10-36.2 0z'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='black' d='M173.9 439.4L7.5 273c-10-10-10-26.2 0-36.2l36.2-36.2c10-10 26.2-10 36.2 0L192 312.7 432.1 72.6c10-10 26.2-10 36.2 0l36.2 36.2c10 10 10 26.2 0 36.2L210.1 439.4c-10 10-26.2 10-36.2 0z'/></svg>") center / contain no-repeat;
}

/* Brands */
.brands-band { padding: 0 0 40px; text-align: center; }
.brands-band h2 { font-size: 36px; padding-bottom: 40px; }
.brands-lead {
  max-width: 820px;
  margin: 0 auto 36px;
  font-size: 18px;
  font-weight: 500;
  color: var(--headline);
}
.brands-slider { overflow: hidden; }
.brands-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: brands 28s linear infinite;
}
.brands-track img {
  height: 70px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}
@keyframes brands { to { transform: translateX(-50%); } }

/* Why */
.why-band { padding: 120px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.why-copy { padding-right: 40px; }
.why-copy h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}
.why-copy h2 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 22px;
}
.why-copy .btn { margin-top: 8px; padding: 16px 32px; }
.why-photo img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Process */
.process-band {
  background: var(--light);
  padding: 120px 0;
}
.process-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.process-wrap h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.step {
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 25px;
  padding: 40px 0;
}
.step-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ACACAC29;
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.step h3 { margin-bottom: 10px; font-size: 22px; }
.step p { margin: 0; }
.process-cta { margin-top: 10px; }

/* Reviews */
.quotes-band {
  background: var(--light);
  padding: 80px 0;
}
.quotes-band h2 {
  font-size: 36px;
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote-card {
  background: #fff;
  border: 1px solid #E1ECF0;
  border-radius: 16px;
  padding: 70px 30px 30px;
}
.quote-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}
.reviewer {
  margin-top: 18px;
  color: var(--headline);
  font-weight: 600;
}
.review-loc {
  font-size: 13px;
  font-weight: 600;
}

/* Contact */
.book-band {
  background: var(--dark);
  color: #FFFFFFC2;
  padding: 150px 0;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.book-copy h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 18px;
}
.book-copy strong { color: #fff; }
.book-points { margin-top: 18px; }
.book-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 0;
}
.book-points li::before {
  content: "";
  width: 21px;
  height: 21px;
  margin-top: 2px;
  flex-shrink: 0;
  background: var(--accent);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='black' d='M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM227.3 387.3l184-184c6.2-6.2 6.2-16.4 0-22.6l-22.6-22.6c-6.2-6.3-16.4-6.3-22.6 0L216 308.1l-70.1-70.1c-6.2-6.2-16.4-6.2-22.6 0l-22.6 22.6c-6.2 6.2-6.2 16.4 0 22.6l104 104c6.2 6.3 16.4 6.3 22.6 0z'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='black' d='M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM227.3 387.3l184-184c6.2-6.2 6.2-16.4 0-22.6l-22.6-22.6c-6.2-6.3-16.4-6.3-22.6 0L216 308.1l-70.1-70.1c-6.2-6.2-16.4-6.2-22.6 0l-22.6 22.6c-6.2 6.2-6.2 16.4 0 22.6l104 104c6.2 6.3 16.4 6.3 22.6 0z'/></svg>") center / contain no-repeat;
}

.form-card {
  background: #fff;
  color: var(--body);
  border-radius: 8px;
  padding: 28px 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { margin-bottom: 16px; }
.field label,
.field-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--headline);
  font-size: 14px;
}
.req { color: #e11d48; }
.field input,
.field textarea,
.multi-toggle {
  width: 100%;
  border: 1px solid #d9e2ea;
  border-radius: 4px;
  background: #fff;
  padding: 12px 14px;
  min-height: 48px;
  color: var(--headline);
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.multi-toggle:focus {
  outline: none;
  border-color: #A4C2F4;
  box-shadow: 0 0 0 1px #A4C2F4;
}
.multi { position: relative; }
.multi-toggle {
  text-align: left;
  cursor: pointer;
  color: #8a94a6;
  border-radius: 6px;
}
.multi-toggle.has-value { color: var(--headline); }
.multi-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid #d9e2ea;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(29, 38, 58, 0.12);
  z-index: 5;
  padding: 6px 0;
  max-height: min(320px, 60vh);
  overflow: auto;
}
.multi-menu[hidden] { display: none; }
.multi-menu label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 14px;
  min-height: 44px;
  font-weight: 500;
  margin: 0;
  cursor: pointer;
  color: var(--headline);
  line-height: 1.35;
}
.multi-menu input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--primary);
}
.multi-menu label:hover { background: #f3f4f6; }
.form-submit { padding: 14px 36px; }
.form-status {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
}
.form-status.is-error { color: #c81e1e; }
.form-submit:disabled { opacity: 0.7; cursor: wait; }
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

/* Map */
.map-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--headline);
  color: #fff;
  padding: 40px 0 50px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0 30px;
}
.footer-brand img {
  width: 140px;
  height: auto;
}
.footer-brand h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 6px;
}
.footer-brand p { color: #fff; margin: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 40px;
}
.footer-item { text-align: center; }
.footer-icon {
  display: inline-flex;
  color: var(--primary);
  margin-bottom: 10px;
}
.footer-item h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}
.footer-item p,
.footer-item a { color: #fff; font-size: 14px; }
.footer-copy {
  text-align: center;
}
.footer-copy p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

/* Inner pages */
.page-dark-hero .site-header:not(.is-solid) .nav-link,
.page-dark-hero .site-header:not(.is-solid) .caret {
  color: #fff;
}
.page-dark-hero .site-header:not(.is-solid) .nav-link[aria-current="page"],
.page-dark-hero .site-header:not(.is-solid) .nav-link:hover,
.page-dark-hero .site-header:not(.is-solid) .nav-item:hover > .nav-link {
  color: #fff;
}

.page-hero {
  position: relative;
  padding: 200px 0 120px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.page-hero-media,
.page-hero-overlay { position: absolute; inset: 0; }
.page-hero-media {
  background-color: #181818;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero-dryer .page-hero-media,
.page-hero-dishwasher .page-hero-media {
  background-image: url("../images/vstavkiTattybayRepair-1-scaled.png");
}
.page-hero-washer .page-hero-media {
  background-image: url("../images/vstavkiTattybayRepair-2-1-scaled.png");
}
.page-hero-refrigerator .page-hero-media {
  background-image: url("../images/vstavkiTattybayRepair-3-1-scaled.png");
}
.page-hero-oven .page-hero-media {
  background-image: url("../images/vstavkiTattybayRepair-4-1-scaled.png");
}
.page-hero-vent .page-hero-media {
  background-image: url("../images/vstavkiTattybayRepair-5-1-scaled.png");
}
.page-hero-overlay {
  background: rgba(16, 20, 28, 0.42);
  opacity: 1;
}
.page-hero-copy { position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 22px;
}
.page-hero p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  color: #fff;
}
.page-hero strong { color: #fff; }

.choose-band { padding: 80px 0 70px; text-align: center; }
.choose-band h2 {
  font-size: 36px;
  margin-bottom: 40px;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.choose-card {
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 36px 28px 32px;
  text-align: center;
}
.choose-card svg { margin: 0 auto 18px; display: block; }
.choose-card h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.choose-card p { color: #fff; margin: 0; font-size: 17px; }

.problems-band { padding: 40px 0 80px; }
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.problems-copy h2 {
  font-size: 32px;
  margin-bottom: 22px;
}
.problems-list { margin: 0 0 28px; }
.problems-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--body);
}
.problems-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.problems-list strong { color: var(--headline); }
.problems-photo img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.about-hero { padding: 150px 0 60px; }
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.about-kicker {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}
.about-photos { display: grid; gap: 16px; }
.about-photos img,
.about-hero-grid > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.about-hero-grid > img { min-height: 420px; }

.about-why {
  background: var(--light);
  padding: 90px 0;
  text-align: center;
}
.about-why h5 {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.about-why h2 {
  font-size: 32px;
  max-width: 640px;
  margin: 0 auto 40px;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: left;
  padding: 8px 4px 20px;
  overflow: visible;
}
.about-features .feature-card:nth-child(-n + 3) {
  grid-column: span 2;
}
.about-features .feature-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.about-features .feature-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.feature-card {
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  position: relative;
  box-shadow: 0 8px 30px rgba(29, 38, 58, 0.04);
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.feature-card svg {
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
  transition: color 0.28s ease;
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transition: color 0.28s ease;
}
.feature-card p {
  margin: 0;
  font-size: 15px;
  color: var(--body);
  transition: color 0.28s ease;
}
@media (hover: hover) and (pointer: fine) {
  .feature-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 22px 44px rgba(60, 111, 244, 0.28);
    z-index: 1;
  }
  .feature-card:hover svg,
  .feature-card:hover h3,
  .feature-card:hover p {
    color: #fff;
  }
}

.about-years { padding: 80px 0; }
.about-years-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-years img { width: 100%; border-radius: 8px; }
.about-years h2 { font-size: 36px; }
.about-note { padding: 0 0 70px; }
.about-note .container { max-width: 900px; }

.cta-banner {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}
.cta-banner h2 { color: #fff; font-size: 36px; margin: 0; }

.photo-banner {
  min-height: 420px;
  background: #1d263a center / cover no-repeat;
}
.photo-banner-1 { background-image: url("../images/vstavkiTattybayRepair-1-scaled.png"); }
.photo-banner-3 { background-image: url("../images/vstavkiTattybayRepair-3-1-scaled.png"); }
.photo-banner-4 { background-image: url("../images/vstavkiTattybayRepair-4-1-scaled.png"); }
.photo-banner-5 { background-image: url("../images/vstavkiTattybayRepair-5-1-scaled.png"); }
.photo-banner-service { background-image: url("../images/vstavkiTattybayRepair-5-1-scaled.png"); }

.contact-top {
  padding: 150px 0 60px;
  text-align: center;
}
.contact-top h5 {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-top h1 {
  font-size: 28px;
  max-width: 760px;
  margin: 0 auto 40px;
  font-weight: 600;
  line-height: 1.45;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--light);
  border-radius: 12px;
  padding: 32px 22px;
}
.contact-card svg { color: var(--primary); margin: 0 auto 16px; display: block; }
.contact-card h3 { font-size: 20px; margin-bottom: 8px; }
.contact-card p,
.contact-card a { margin: 0; color: var(--body); }
.contact-form-band {
  background: var(--dark);
  padding: 90px 0 110px;
  text-align: center;
}
.contact-form-band h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-form-band h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 36px;
}
.contact-form-band .form-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 1024px) {
  html { scroll-padding-top: 72px; }
  .site-header {
    position: sticky;
    inset: auto;
    top: 0;
    pointer-events: auto;
    background: #fff;
    box-shadow: 0 0 0 1px #e6e9ec;
  }
  .header-bar {
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    min-height: 56px;
    padding: 0 12px 0 10px;
  }
  .site-header.is-solid .header-bar,
  .site-header.is-hidden .header-bar {
    background: #fff;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .logo { padding: 8px 0; }
  .logo img {
    width: 40px;
    height: 40px;
  }
  .nav-desktop,
  .header-cta { display: none; }
  .header-mobile { display: contents; }
  .mobile-cta {
    grid-column: 2;
    justify-self: center;
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
    min-height: 40px;
    gap: 8px;
  }
  .mobile-cta .btn-icon {
    width: 16px;
    height: 16px;
  }
  .menu-toggle { grid-column: 3; }
  .hero { padding: 50px 0 80px; }
  .hero h1 { padding: 0 40px; }
  .hero-areas { padding: 0 40px; }
  .intro-band,
  .why-band,
  .process-band { padding: 90px 0; }
  .services-head { padding: 60px 0; }
  .svc-body { padding: 0 20px 30px; }
  .svc-btn { padding: 19px 50px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-copy { padding-right: 0; }
  .book-band { padding: 100px 0; }
  .book-grid { grid-template-columns: 1fr; }
  .book-copy { text-align: center; }
  .book-points { text-align: left; max-width: 550px; margin-inline: auto; }
  .page-hero { padding: 140px 0 80px; }
  .page-hero h1 { font-size: 32px; }
  .choose-grid,
  .problems-grid,
  .about-hero-grid,
  .about-years-grid,
  .contact-cards { grid-template-columns: 1fr; }
  .about-features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about-features .feature-card:nth-child(n) { grid-column: auto; }
  .about-features .feature-card:nth-child(5) { grid-column: 1 / -1; }
  .about-hero,
  .contact-top { padding-top: 40px; }
  .page-dark-hero .site-header:not(.is-solid) .nav-link,
  .page-dark-hero .site-header:not(.is-solid) .caret { color: var(--headline); }
}

@media (max-width: 900px) {
  body.menu-open { overflow: hidden; }
}

@media (max-width: 767px) {
  .hero { padding: 40px 0 50px; min-height: 0; }
  .mobile-cta { font-size: 14px; padding: 8px 14px; }
  .about-features { grid-template-columns: 1fr; gap: 16px; }
  .about-features .feature-card:nth-child(n) { grid-column: auto; }
  .hero h1 { font-size: 24px; padding: 0; }
  .hero-accent { font-size: 16px; }
  .hero-areas { font-size: 16px; padding: 0; }
  .btn-hero { width: 100%; max-width: 360px; padding: 16px 24px; }
  .intro-band,
  .process-band,
  .quotes-band { padding: 50px 0; }
  .intro-band h2,
  .services-head h2,
  .brands-band h2,
  .process-wrap h2,
  .quotes-band h2 { font-size: 22px; }
  .services-head { padding: 40px 0; }
  .svc-grid,
  .extra-grid,
  .quotes-grid,
  .form-row,
  .footer-grid { grid-template-columns: 1fr; }
  .svc-card { border-radius: 14px; }
  .svc-img { border-radius: 12px 12px 0 0; }
  .extra-band { padding: 20px 0 40px; }
  .brands-band { padding: 50px 0; }
  .brands-lead { font-size: 16px; }
  .why-band { padding: 70px 0; }
  .why-copy { text-align: center; }
  .why-copy h2 { font-size: 16px; }
  .step { padding: 20px 0 20px 75px; position: relative; }
  .step-icon {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
  }
  .step-icon svg { width: 30px; height: 30px; }
  .quote-card { padding: 50px 25px 25px; }
  .book-band { padding: 50px 0; }
  .book-copy { text-align: left; }
  .book-copy h2 { font-size: 28px; }
  .map-wrap iframe { height: 300px; }
  .photo-banner { min-height: 220px; }
  .cta-banner { padding: 56px 16px; }
  .cta-banner h2 { font-size: 24px; }
  .footer-brand { flex-direction: column; text-align: center; }
  .footer-copy p { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .brands-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    padding: 0 20px;
  }
  .brands-track img[aria-hidden="true"] { display: none; }
}
