:root {
  --page-bg: #f4f7f6;
  --surface: #ffffff;
  --surface-soft: #edf4f2;
  --ink: #102a2d;
  --ink-soft: #426064;
  --line: #d7e2df;
  --brand: #087f8c;
  --brand-dark: #075967;
  --green: #087a58;
  --amber: #c86808;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(16, 42, 45, 0.1);
  --container: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.page-cities {
  --brand: #11684f;
  --brand-dark: #0b4a39;
  --amber: #c87012;
}

body.page-contact {
  --brand: #176b87;
  --brand-dark: #104b60;
  --amber: #bc5b17;
}

body.page-services {
  --brand: #0b756b;
  --brand-dark: #07534d;
  --amber: #b96b0f;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

:focus-visible {
  outline: 3px solid rgba(8, 127, 140, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.support-bar {
  background: #102f33;
  color: #d8eeea;
  font-size: 13px;
}

.support-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.support-status,
.support-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.support-status strong {
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-row {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 204px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 15px;
}

.brand-copy span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 9px 11px;
  border-bottom: 2px solid transparent;
  color: #355256;
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand-dark);
  border-bottom-color: var(--brand);
  background: var(--surface-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(16, 42, 45, 0.14);
}

.button:active {
  transform: translateY(1px);
  box-shadow: none;
}

.button-primary {
  background: var(--brand);
  color: var(--white);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

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

.button-store {
  background: #f8faf9;
  border-color: var(--line);
  color: var(--ink);
}

.menu-button {
  display: none;
  min-width: 46px;
  padding-inline: 12px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-inner {
  padding-block: 10px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-nav a {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  font-weight: 700;
}

.breadcrumbs {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs ol {
  min-height: 42px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 13px;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: #91a5a8;
  content: "/";
}

.page-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.page-products .page-hero {
  background-image: url("/assets/img/marka/hero/melih-kapali-kasa-modern.webp");
}

.page-cities .page-hero {
  background-image: url("/assets/img/marka/ilce/maltepe-sehir-hero-v2.webp");
  background-position: center 42%;
}

.page-contact .page-hero {
  background-image: url("/assets/img/marka/hero/melih-teknik-servis-modern.webp");
}

.page-services .page-hero {
  background-image: url("/assets/img/marka/hero/melih-filtre-degisimi.webp");
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 27, 34, 0.96) 0%, rgba(5, 27, 34, 0.82) 43%, rgba(5, 27, 34, 0.18) 72%, rgba(5, 27, 34, 0.06) 100%);
  content: "";
}

.page-cities .page-hero::before {
  background: linear-gradient(90deg, rgba(7, 35, 29, 0.94) 0%, rgba(7, 35, 29, 0.76) 48%, rgba(7, 35, 29, 0.18) 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 66px;
}

.hero-copy {
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: #8de4d2;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: #e3f0ef;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points {
  margin: 25px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  color: #d4e9e5;
  font-size: 14px;
  font-weight: 700;
}

.hero-points li::before {
  margin-right: 8px;
  color: #7fe1b9;
  content: "✓";
}

.trust-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  min-height: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 18px 22px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 15px;
}

.trust-item span {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 13px;
}

.section {
  padding-block: 78px;
}

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

.section-tint {
  background: #eaf2f0;
  border-block: 1px solid var(--line);
}

.section-warm {
  background: #fbf6ed;
  border-block: 1px solid #eadbc2;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-label {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-head p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.choice-bar {
  margin-bottom: 30px;
  padding: 6px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.choice-button {
  min-height: 40px;
  padding: 8px 13px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 800;
}

.choice-button:hover,
.choice-button.is-active {
  background: var(--ink);
  color: var(--white);
}

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

.product-card,
.service-card,
.contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(16, 42, 45, 0.06);
}

.product-card[hidden] {
  display: none;
}

.product-media,
.service-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce8e5;
}

.product-media img,
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card:hover .product-media img,
.service-card:hover .service-media img {
  transform: scale(1.025);
}

.card-body {
  padding: 22px;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-body h3,
.contact-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.card-body p,
.contact-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.card-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: #304e52;
  font-size: 14px;
}

.card-list li {
  padding-block: 7px;
  border-top: 1px solid var(--line);
}

.card-list li::before {
  margin-right: 8px;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.card-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--brand-dark);
  font-weight: 900;
}

.text-link::after {
  margin-left: 8px;
  content: "→";
}

.selection-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.selection-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.selection-steps li {
  position: relative;
  padding: 0 0 26px 54px;
  counter-increment: steps;
}

.selection-steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--brand-dark);
  content: counter(steps, decimal-leading-zero);
  font-size: 12px;
  font-weight: 900;
}

.selection-steps strong {
  display: block;
  font-size: 17px;
}

.selection-steps span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
}

.spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.spec-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  background: #e8f1ef;
  color: var(--ink);
  font-size: 13px;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.store-band {
  display: grid;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px;
  border: 1px solid #dfccb1;
  border-radius: var(--radius);
  background: #fffaf1;
}

.store-band h2 {
  font-size: 28px;
}

.store-band p {
  margin: 8px 0 0;
  color: #6d5940;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.city-tool {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.city-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
}

.search-field {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid #b9ceca;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.search-field:focus {
  border-color: var(--brand);
}

.region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.region-tab {
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 800;
}

.region-tab:hover,
.region-tab.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.city-count {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.city-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.city-link {
  min-height: 54px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f9fbfa;
  font-weight: 800;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.city-link::after {
  color: #78908c;
  content: "→";
}

.city-link:hover {
  border-color: var(--brand);
  background: #eaf4f1;
  color: var(--brand-dark);
}

.city-link[hidden] {
  display: none;
}

.city-empty {
  display: none;
  margin: 18px 0 0;
  padding: 14px;
  border: 1px solid #e1c99e;
  background: #fff8e9;
  color: #6b4c18;
}

.city-empty.is-visible {
  display: block;
}

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

.route-item {
  padding: 24px;
  border-top: 3px solid var(--brand);
  background: var(--surface);
}

.route-item strong {
  display: block;
  font-size: 19px;
}

.route-item p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.contact-card {
  padding: 24px;
}

.contact-value {
  margin-top: 14px;
  display: block;
  color: var(--brand-dark);
  font-size: 19px;
  font-weight: 900;
  word-break: break-word;
}

.contact-card .button {
  width: 100%;
  margin-top: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.message-builder {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.message-builder h2 {
  font-size: 28px;
}

.field-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #b9ceca;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
}

.form-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.service-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--surface);
}

.process-step {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.process-step strong {
  display: block;
  margin-top: 14px;
}

.process-step p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-list {
  max-width: 900px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-list summary {
  padding: 19px 44px 19px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  margin-right: -34px;
  color: var(--brand);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -3px 0 20px;
  color: var(--ink-soft);
}

.cta-band {
  padding-block: 54px;
  background: #103b3f;
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.cta-band h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.cta-band p {
  max-width: 680px;
  margin: 9px 0 0;
  color: #c8dfdc;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.site-footer {
  padding-block: 50px 22px;
  background: #0a2427;
  color: #d7e7e5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 34px;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-brand .brand-copy span,
.footer-copy,
.footer-links a {
  color: #a9c4c1;
}

.footer-copy {
  max-width: 360px;
  margin: 16px 0 0;
  font-size: 14px;
}

.footer-column h2 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 15px;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  font-size: 14px;
}

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

.footer-bottom {
  margin-top: 38px;
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8eaaa7;
  font-size: 13px;
}

.mobile-actions {
  display: none;
}

.muted {
  color: var(--ink-soft);
}

.no-results {
  display: none;
}

@media (max-width: 1040px) {
  .main-nav,
  .nav-actions .button-secondary:not(.menu-button) {
    display: none;
  }

  .nav-row {
    grid-template-columns: 1fr auto;
  }

  .nav-actions {
    grid-column: 2;
  }

  .nav-actions .menu-button {
    display: inline-flex;
  }

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

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .container {
    width: calc(100% - 28px);
  }

  .support-inner {
    min-height: 34px;
  }

  .support-links a:not(:first-child),
  .support-status span {
    display: none;
  }

  .nav-row {
    min-height: 66px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-copy span {
    display: none;
  }

  .nav-actions .button-primary {
    display: none;
  }

  .breadcrumbs ol {
    min-height: 38px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .page-hero {
    min-height: 440px;
    background-position: 63% center;
  }

  .page-hero::before,
  .page-cities .page-hero::before {
    background: rgba(5, 27, 34, 0.75);
  }

  .hero-inner {
    padding-block: 48px;
  }

  .page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

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

  .hero-actions .button {
    flex: 1 1 180px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-block: 58px;
  }

  .section h2 {
    font-size: 30px;
  }

  .selection-grid,
  .contact-layout,
  .store-band,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .store-actions,
  .cta-actions {
    justify-content: flex-start;
  }

  .city-controls {
    grid-template-columns: 1fr;
  }

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

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

  .service-process {
    grid-template-columns: 1fr 1fr;
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
  }

  .site-footer {
    padding-bottom: 88px;
  }
}

@media (max-width: 560px) {
  .mobile-nav-inner {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .hero-points {
    display: grid;
  }

  .trust-grid,
  .product-grid,
  .service-grid,
  .contact-grid,
  .city-grid,
  .service-process,
  .footer-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .choice-bar {
    width: 100%;
  }

  .choice-button {
    flex: 1 1 44%;
  }

  .city-tool,
  .message-builder {
    padding: 18px;
  }

  .process-step,
  .process-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .footer-brand,
  .field-full {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
