:root {
  --primary: #ffffff;
  --secondary: #030b1b;
  --text: #868686;
  --accent: #144bad;
  --accent-2: #1e63d6;
  --surface: #f7f8fb;
  --line: #e4e4e4;
  --dark-card: #071225;
  --green: #19a75b;
  --radius: 9px;
  --container: 1380px;
  --shadow: 0 20px 60px rgba(3, 11, 27, 0.12);
  font-family: "Inter", "Inter Tight", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--secondary);
  background: var(--primary);
  font-size: 17px;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3 {
  font-family: "Inter Tight", "Inter", Arial, Helvetica, sans-serif;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

p {
  color: var(--text);
  line-height: 1.5;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.emergency-strip {
  position: absolute;
  left: 50%;
  top: 22px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(calc(100% - 56px), 980px);
  min-height: 62px;
  padding: 8px;
  color: var(--primary);
  background: rgba(3, 11, 27, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.emergency-strip span,
.emergency-strip a {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 46px;
  padding: 7px 18px;
  color: var(--primary);
  line-height: 1.05;
}

.emergency-strip small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.emergency-strip a {
  min-width: 255px;
  color: var(--primary);
  background: var(--accent);
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(20, 75, 173, 0.35);
  font-size: 24px;
  font-weight: 900;
}

.site-header {
  position: absolute;
  top: 104px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(calc(100% - 56px), var(--container));
  min-height: 78px;
  padding: 10px 18px;
  color: var(--primary);
  background: rgba(3, 11, 27, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  padding: 11px 15px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}

.main-nav a:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.12);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  color: var(--secondary);
  background: var(--primary);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 760px;
  padding: 215px max(28px, calc((100vw - var(--container)) / 2)) 110px;
  overflow: hidden;
  background: var(--secondary);
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 27, 0.92) 0%, rgba(3, 11, 27, 0.76) 34%, rgba(3, 11, 27, 0.22) 72%, rgba(3, 11, 27, 0.5) 100%),
    linear-gradient(180deg, rgba(3, 11, 27, 0.15), rgba(3, 11, 27, 0.55));
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.price-card {
  position: absolute;
  right: max(28px, calc((100vw - var(--container)) / 2));
  top: 185px;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: 226px;
  padding: 20px 22px;
  color: var(--primary);
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(20, 75, 173, 0.35);
}

.price-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.price-card strong {
  color: var(--primary);
  font-size: 28px;
  line-height: 1.05;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-copy .eyebrow {
  color: #83a8ff;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .check-list li {
  color: var(--primary);
}

.hero-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.check-list,
.simple-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.check-list li,
.simple-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before,
.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.check-list li::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 0.72em;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  transform: translateY(-56%);
}

.simple-list li::before {
  width: 10px;
  height: 10px;
}

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

.button,
.compact-form button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 40px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.button-yellow,
.compact-form button,
.contact-form button {
  color: var(--primary);
  background: var(--accent);
}

.button-green {
  color: var(--primary);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button:hover,
.compact-form button:hover,
.contact-form button:hover {
  color: var(--secondary);
  background: var(--primary);
  border-color: var(--accent);
}

.section {
  padding: clamp(80px, 9vw, 135px) max(28px, calc((100vw - var(--container)) / 2));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.services {
  background: var(--primary);
}

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

.service-card {
  min-height: 282px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--primary);
  box-shadow: 0 18px 55px rgba(3, 11, 27, 0.06);
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.service-card strong,
.service-card span {
  display: block;
  padding-inline: 24px;
}

.service-card strong {
  padding-top: 24px;
  color: var(--secondary);
  font-size: 22px;
  line-height: 1.1;
}

.service-card span {
  padding-top: 11px;
  padding-bottom: 24px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
  gap: clamp(34px, 5vw, 90px);
  align-items: start;
  background: var(--surface);
}

.text-flow {
  max-width: 860px;
}

.trust-box {
  position: relative;
  padding: 34px;
  overflow: hidden;
  color: var(--primary);
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-box::after {
  content: "95%";
  position: absolute;
  right: -12px;
  bottom: -28px;
  color: rgba(255, 255, 255, 0.13);
  font-size: 112px;
  font-weight: 900;
  line-height: 1;
}

.trust-box .eyebrow,
.trust-box h2,
.trust-box strong,
.trust-box span {
  position: relative;
  z-index: 1;
  color: var(--primary);
}

.trust-box .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.trust-box h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.trust-box article {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

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

.trust-box span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.area-section {
  text-align: center;
  background: var(--primary);
}

.area-section p {
  max-width: 780px;
  margin-inline: auto;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.area-grid a {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 12px;
  color: var(--secondary);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.area-grid a:hover {
  color: var(--primary);
  background: var(--accent);
  border-color: var(--accent);
}

.city-strip {
  width: 100%;
  height: clamp(220px, 31vw, 430px);
  margin-top: 34px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-request {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(78px, 9vw, 126px) max(28px, calc((100vw - var(--container)) / 2));
  color: var(--primary);
  background:
    linear-gradient(90deg, rgba(3, 11, 27, 0.92), rgba(3, 11, 27, 0.72)),
    url("./assets/locksmith-repair.jpg") center / cover;
}

.quick-request h2,
.quick-request h3,
.quick-request p {
  color: var(--primary);
}

.quick-request > div {
  max-width: 660px;
}

.service-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.service-pills span {
  padding: 18px 20px;
  color: var(--secondary);
  background: var(--primary);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 850;
}

.compact-form,
.contact-form {
  display: grid;
  gap: 14px;
  padding: 34px;
  background: var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compact-form h3 {
  color: var(--secondary);
}

.compact-form input,
.compact-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 15px 14px;
  background: var(--primary);
  font: inherit;
}

.detail-section {
  background: var(--primary);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(330px, 0.48fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 90px);
  align-items: center;
}

.feature-row img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing {
  background: var(--primary);
}

.price-table {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  border: 0;
  box-shadow: none;
}

.price-card-item {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--primary);
  box-shadow: 0 18px 55px rgba(3, 11, 27, 0.06);
}

.price-card-item.featured {
  color: var(--primary);
  background: var(--accent);
  border-color: var(--accent);
}

.price-card-item span {
  color: inherit;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.price-card-item strong {
  color: inherit;
  font-size: clamp(34px, 3.3vw, 44px);
  line-height: 1;
}

.price-card-item p {
  margin: 0;
  color: inherit;
  opacity: 0.72;
  font-size: 15px;
  line-height: 1.5;
}

.pricing > h3,
.pricing > p {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.pricing > h3 {
  margin-top: 52px;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.payment-grid span {
  display: grid;
  place-items: center;
  min-width: 180px;
  min-height: 82px;
  padding: 16px;
  color: var(--secondary);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.cost-section {
  align-items: center;
  background: var(--surface);
}

.side-photo {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 90px);
  background: var(--primary);
}

.why-section > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviews {
  background: var(--primary);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--primary);
  box-shadow: 0 18px 55px rgba(3, 11, 27, 0.06);
}

.review-grid article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--primary);
  background: var(--accent);
  border-radius: 50%;
  font-weight: 950;
}

.review-grid strong,
.review-grid small {
  display: block;
}

.review-grid small {
  margin: 6px 0 16px;
  color: var(--text);
}

.review-grid p {
  margin-bottom: 0;
}

.mini-cta {
  padding: clamp(70px, 8vw, 104px) max(28px, calc((100vw - var(--container)) / 2));
  color: var(--primary);
  background:
    linear-gradient(90deg, rgba(3, 11, 27, 0.92), rgba(3, 11, 27, 0.74)),
    url("./assets/duesseldorf-skyline.jpg") center / cover;
}

.mini-cta h2,
.mini-cta p,
.mini-cta .check-list li {
  color: var(--primary);
}

.mini-cta .check-list {
  grid-template-columns: repeat(2, max-content);
}

.faq {
  background: var(--primary);
}

details {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--primary);
}

summary {
  padding: 22px 24px;
  color: var(--secondary);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  max-width: 980px;
  padding: 0 24px 24px;
}

.tips {
  background: var(--surface);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tips-grid article {
  overflow: hidden;
  background: var(--primary);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(3, 11, 27, 0.06);
}

.tips-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.tips-grid strong,
.tips-grid p {
  display: block;
  padding-inline: 24px;
}

.tips-grid strong {
  padding-top: 24px;
  color: var(--secondary);
  font-size: 22px;
  line-height: 1.2;
}

.tips-grid p {
  padding-bottom: 24px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  color: var(--primary);
  background:
    linear-gradient(90deg, rgba(3, 11, 27, 0.92), rgba(3, 11, 27, 0.78)),
    url("./assets/door-handle-install.jpg") center / cover;
}

.contact h2,
.contact p {
  color: var(--primary);
}

.contact > div {
  max-width: 560px;
  padding: 34px;
  background: var(--accent);
  border-radius: var(--radius);
}

address {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.75;
}

address a {
  color: var(--primary);
  font-weight: 850;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 850;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--secondary);
  font-weight: 850;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 0.9fr 0.9fr minmax(260px, 1fr);
  gap: 40px;
  padding: 72px max(28px, calc((100vw - var(--container)) / 2)) 104px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(90deg, rgba(3, 11, 27, 0.96), rgba(3, 11, 27, 0.9)),
    url("./assets/key-wall.jpg") center / cover;
}

.site-footer::after {
  content: "Adler";
  position: absolute;
  right: 5vw;
  bottom: -42px;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(110px, 17vw, 260px);
  font-weight: 900;
  line-height: 1;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer .brand {
  align-self: start;
}

.site-footer .brand img {
  width: 160px;
  height: auto;
}

.site-footer p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav,
.footer-services,
.footer-support {
  display: grid;
  align-content: start;
  gap: 12px;
  font-weight: 800;
}

.site-footer nav::before {
  content: "Schnellzugriff";
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
}

.footer-services strong,
.footer-support strong {
  color: var(--accent-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-services a,
.site-footer nav a,
.footer-support a,
.site-footer p a {
  color: var(--primary);
}

.footer-support span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 600;
}

.footer-support a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 46px;
  padding: 0 18px;
  color: var(--primary);
  background: var(--green);
  border-radius: 999px;
  font-weight: 900;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: 14px;
  padding-top: 34px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  max-width: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-bottom nav::before {
  content: none;
}

.support-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 85;
  display: grid;
  gap: 3px;
  min-width: 150px;
  padding: 14px 18px;
  color: var(--primary);
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(3, 11, 27, 0.3);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.legal-page {
  min-height: 100vh;
  background: var(--surface);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px max(22px, calc((100vw - var(--container)) / 2));
  background: var(--secondary);
}

.legal-header .brand img {
  width: 150px;
  height: auto;
}

.legal-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.legal-main {
  width: min(calc(100% - 44px), 1040px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.legal-main h1 {
  margin-bottom: 32px;
  color: var(--secondary);
  font-size: clamp(42px, 7vw, 76px);
}

.legal-card {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--primary);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 20px 0 0;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 0;
}

.legal-card a {
  color: var(--accent);
  font-weight: 800;
}

.sticky-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr 1fr;
  width: calc(100% - 36px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(3, 11, 27, 0.28);
}

.sticky-contact a {
  display: grid;
  place-items: center;
  min-height: 56px;
  color: var(--primary);
  font-weight: 950;
}

.sticky-contact a:first-child {
  background: var(--accent);
}

.sticky-contact a:last-child {
  background: var(--green);
}

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .emergency-strip {
    width: min(calc(100% - 36px), 860px);
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
    font-size: 14px;
  }

  .emergency-strip a {
    min-width: 220px;
    font-size: 21px;
  }

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

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

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .emergency-strip {
    display: none;
  }

  .site-header {
    top: 18px;
    width: calc(100% - 32px);
  }

  .brand img {
    width: 118px;
    height: 62px;
  }

  .header-phone {
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    min-height: 720px;
    padding-top: 128px;
  }

  .price-card {
    top: auto;
    right: 20px;
    bottom: 24px;
    width: 188px;
  }

  .split-section,
  .quick-request,
  .feature-row,
  .why-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .review-grid,
  .tips-grid,
  .area-grid,
  .price-table {
    grid-template-columns: 1fr;
  }

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

  .feature-row img,
  .side-photo {
    min-height: 320px;
  }

  .mini-cta .check-list {
    grid-template-columns: 1fr;
  }

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

  .sticky-contact {
    display: grid;
  }

  .support-whatsapp {
    display: none;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 40px;
  }

  .site-header {
    gap: 10px;
  }

  .brand img {
    width: 96px;
    height: 52px;
  }

  .header-phone {
    padding-inline: 11px;
    font-size: 13px;
  }

  .hero,
  .section,
  .quick-request,
  .mini-cta,
  .site-footer {
    padding-inline: 18px;
  }

  .hero {
    min-height: 760px;
  }

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

  .price-card {
    left: 18px;
    right: auto;
  }

  .compact-form,
  .contact-form,
  .trust-box,
  .contact > div {
    padding: 24px;
  }
}
