:root {
  --bg: #070b0e;
  --panel: #10161a;
  --panel-soft: #171f24;
  --text: #f7f7f4;
  --muted: #c7cbc8;
  --line: rgba(255, 255, 255, 0.16);
  --red: #ef2b24;
  --red-dark: #bd1712;
  --paper: #f4f5f7;
  --ink: #121619;
  --steel: #69747a;
  --green: #6c8f5f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --soft-shadow: 0 18px 60px rgba(13, 18, 24, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: #070b0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  width: min(1200px, calc(100% - 32px));
  min-height: 90px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0;
}

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

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  margin: 0 18px;
  padding: 34px 0 31px;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--red);
}

.nav-cta {
  min-height: 52px;
  margin-left: 18px !important;
  padding: 0 28px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, #ff342d, #de1914);
  border-bottom: 0 !important;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.3);
  gap: 14px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--red-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 578px;
  padding-top: 90px;
  color: var(--text);
  background:
    linear-gradient(120deg, #03070a 0%, #071015 45%, rgba(160, 15, 15, 0.75) 100%),
    url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-bg {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 7, 10, 0.94), rgba(3, 7, 10, 0.66) 48%, rgba(3, 7, 10, 0.12));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, rgba(255, 0, 0, 0.25), transparent 35%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  min-height: 578px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 72px;
  padding: 64px 0 55px;
}

.hero-copy {
  min-width: 0;
}

.hero-copy,
.hero-card,
.service-strip article,
.contact-panel {
  overflow-wrap: anywhere;
}

.eyebrow {
  margin: 0 0 35px;
  color: #ff2b22;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 850px;
  margin-bottom: 30px;
  font-size: 70px;
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -3px;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 40px;
  color: #f0f1ed;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 6px 0;
  color: var(--text);
  background: transparent;
  border: 0;
  font-weight: 800;
}

.hero-badges strong {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: white;
  background: var(--red);
  border-radius: 50%;
  font-size: 0.9rem;
}

.hero-badges strong i {
  font-size: 0.78rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  gap: 10px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff342d, #df1914);
  box-shadow: 0 16px 34px rgba(239, 43, 36, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--red);
}

.hero-card {
  position: relative;
  padding: 28px;
  background: rgba(5, 7, 10, 0.7);
  border: 1px solid #ff2b22;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(255, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.hero-card::before {
  display: none;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card div {
  position: relative;
  display: grid;
  gap: 6px;
}

.hero-card span {
  color: var(--muted);
  font-weight: 800;
}

.hero-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow-wrap: anywhere;
  font-size: 1.05rem;
  font-weight: 900;
}

.hero-card a span {
  color: var(--red);
  font-weight: 950;
}

.hero-card a i {
  width: 18px;
  color: var(--red);
  font-size: 0.95rem;
  text-align: center;
}

.service-strip {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 20px 0 64px;
  background: transparent;
  box-shadow: none;
}

.mobile-quick,
.mobile-info,
.mobile-sticky-contact {
  display: none;
}

.info-strip {
  width: min(1200px, calc(100% - 32px));
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-strip article {
  padding: 26px 28px;
  background: white;
  border-left: 4px solid var(--red);
  box-shadow: 0 14px 40px rgba(15, 23, 28, 0.1);
}

.info-strip h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.info-strip p:not(.eyebrow) {
  margin-bottom: 0;
  color: #3c4549;
}

.service-strip article {
  position: relative;
  min-height: 130px;
  padding: 24px 54px 24px 28px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  text-align: left;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.service-strip article::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: radial-gradient(circle at top right, rgba(255, 43, 34, 0.12), transparent 35%);
  opacity: 0;
  transition: opacity 350ms ease;
  pointer-events: none;
}

.service-strip article::after {
  display: none;
}

.service-strip article:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
}

.service-strip article:hover::before {
  opacity: 1;
}

.service-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--red);
  background: #fff1ef;
  border: 1px solid #ffc7bf;
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  min-width: 72px;
  margin: 0;
  color: #fff;
  background: linear-gradient(135deg, #ff2b22, #b80000);
  border: 0;
  border-radius: 20px;
  box-shadow:
    0 18px 35px rgba(255, 43, 34, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  transition: transform 600ms ease;
}

.service-icon i {
  position: relative;
  z-index: 2;
  font-size: 30px;
  color: #fff;
  line-height: 1;
  transition: transform 350ms ease;
}

.service-strip article:hover .service-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 25px 55px rgba(255, 43, 34, 0.5),
    0 0 25px rgba(255, 43, 34, 0.35);
}

.service-strip article:hover .service-icon::before {
  transform: translateX(100%);
}

.service-strip article:hover .service-icon i {
  transform: scale(1.15) rotate(-4deg);
}

.service-strip h2,
.price-grid h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 950;
}

.service-strip h2 {
  padding-top: 0;
}

.service-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #0f171b;
  background: #eef1f3;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.service-arrow:hover,
.service-arrow:focus-visible {
  color: white;
  background: var(--red);
}

.service-strip p,
.benefit-grid p,
.split-section p,
.price-section p,
.faq-list p,
.contact-panel p {
  color: #3c4549;
}

.service-strip p {
  font-size: 14px;
  line-height: 1.5;
}

.dark-band {
  margin-top: 72px;
  padding: 82px 0;
  color: var(--text);
  background: var(--bg);
}

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

.section-heading h2,
.split-section h2,
.contact-panel h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.dark-band .section-heading p:not(.eyebrow),
.dark-band .benefit-grid p {
  color: var(--muted);
}

.benefit-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-grid div {
  padding: 28px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 950;
}

.benefit-grid h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.process-section {
  padding: 74px 0 0;
}

.process-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  position: relative;
  padding: 28px;
  min-height: 190px;
  background: white;
  border: 1px solid #dde3e2;
  box-shadow: 0 14px 40px rgba(15, 23, 28, 0.08);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  color: white;
  background: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
}

.process-grid h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.process-grid p {
  margin-bottom: 0;
  color: #3c4549;
}

.split-section {
  width: min(1200px, calc(100% - 32px));
  margin: 90px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 56px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.stats span {
  padding: 18px;
  background: white;
  border-left: 4px solid var(--red);
  box-shadow: 0 10px 34px rgba(12, 18, 22, 0.08);
  font-weight: 800;
}

.stats strong {
  display: block;
  color: var(--red);
  font-size: 1.7rem;
  line-height: 1;
}

.logo-showcase,
.team-showcase {
  margin: 0;
  padding: 18px;
  background: var(--bg);
  box-shadow: var(--shadow);
}

.logo-showcase img,
.team-showcase img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.team-showcase {
  max-width: 360px;
  justify-self: end;
  padding: 14px;
  border: 1px solid rgba(233, 41, 28, 0.42);
}

.team-showcase img {
  aspect-ratio: 4 / 5;
  object-position: center 28%;
}

.team-showcase figcaption {
  display: grid;
  gap: 2px;
  padding: 14px 4px 2px;
  color: var(--text);
}

.team-showcase strong {
  font-size: 1.1rem;
  line-height: 1.1;
}

.team-showcase span {
  color: var(--muted);
  font-weight: 800;
}

.price-section {
  padding: 86px 0;
  background: #fff;
}

.price-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-grid article {
  padding: 30px;
  border: 1px solid #dde3e2;
  background: #fff;
}

.price-grid .featured {
  color: var(--text);
  background: linear-gradient(145deg, var(--red), #8f170f);
  border-color: transparent;
  box-shadow: 0 24px 52px rgba(185, 29, 20, 0.22);
}

.price-grid .featured p {
  color: #ffe9e6;
}

.price-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red);
  font-weight: 950;
}

.price-grid .featured a {
  color: white;
}

.faq-section {
  padding: 84px 0;
}

.faq-list {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

details {
  background: white;
  border: 1px solid #dde3e2;
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 950;
}

details p {
  padding: 0 22px 20px;
}

.contact-section {
  padding: 0 0 92px;
}

.contact-panel {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 42px;
  color: var(--text);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.contact-panel p {
  color: var(--muted);
}

.contact-actions {
  justify-content: flex-end;
  max-width: 410px;
}

.contact-actions .btn-secondary {
  color: var(--text);
}

.mail-link {
  display: block;
  width: 100%;
  color: var(--muted);
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.map-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 0;
  min-height: 260px;
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--panel);
}

.map-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(233, 41, 28, 0.26), transparent 7%),
    linear-gradient(34deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 42% 44%, transparent 44%),
    linear-gradient(146deg, transparent 0 52%, rgba(255, 255, 255, 0.14) 52% 54%, transparent 54%),
    linear-gradient(90deg, transparent 0 32%, rgba(255, 255, 255, 0.09) 32% 33%, transparent 33%),
    linear-gradient(0deg, transparent 0 58%, rgba(255, 255, 255, 0.09) 58% 59%, transparent 59%),
    #11191c;
}

.map-visual::after {
  content: "Rentrischer Weg 48";
  position: absolute;
  left: 50%;
  top: calc(50% + 28px);
  transform: translateX(-50%);
  padding: 8px 12px;
  color: var(--text);
  background: rgba(7, 11, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
  pointer-events: none;
}

.map-visual iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  opacity: 0.82;
  filter: grayscale(0.25) contrast(1.02) brightness(0.96);
}

.map-pin {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -70%) rotate(45deg);
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 0 10px rgba(233, 41, 28, 0.16);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: white;
  border-radius: 50%;
}

.map-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  color: var(--text);
  background: linear-gradient(145deg, rgba(233, 41, 28, 0.2), rgba(16, 22, 26, 0.96));
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.map-info span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.map-info strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.map-info a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 6px;
  padding: 0 18px;
  color: white;
  background: var(--red);
  font-weight: 950;
}

.map-info a:hover,
.map-info a:focus-visible {
  background: var(--red-dark);
}

.footer {
  min-height: 72px;
  padding: 24px max(16px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  background: #050809;
}

.footer a {
  overflow-wrap: anywhere;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.mobile-sticky-contact {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 10px 12px;
  background: rgba(7, 11, 14, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.mobile-sticky-contact a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
}

.sticky-whatsapp {
  color: white;
  background: var(--red);
}

.sticky-call {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 12%, rgba(239, 43, 36, 0.09), transparent 28%),
    var(--paper);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 186px max(16px, calc((100vw - 1000px) / 2)) 64px;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 0%, rgba(239, 43, 36, 0.45), transparent 34%),
    linear-gradient(112deg, #030608 0 54%, rgba(7, 11, 14, 0.82) 54% 61%, rgba(95, 17, 15, 0.62) 61% 100%),
    #05090c;
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: max(18px, calc((100vw - 1000px) / 2));
  top: 50%;
  width: 210px;
  height: 210px;
  transform: translateY(-50%);
  background: url("assets/logo-transparent.png") center / contain no-repeat;
  opacity: 0.12;
  filter: drop-shadow(0 18px 38px rgba(239, 43, 36, 0.32));
}

.legal-hero h1 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 5rem);
  overflow-wrap: normal;
}

.legal-hero h1 span {
  display: block;
}

.legal-content {
  width: min(1000px, calc(100% - 32px));
  margin: -28px auto 92px;
  position: relative;
  z-index: 2;
  padding: 46px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(221, 227, 226, 0.82);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.legal-content h2 {
  margin: 32px 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

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

.legal-content p {
  color: #344046;
}

.legal-content a {
  color: var(--red);
  font-weight: 800;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 90px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #070b0e;
    border: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    min-height: 44px;
    margin-top: 8px;
  }

  .hero-inner,
  .split-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 28px;
  }

  .hero-card {
    max-width: 430px;
  }

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

  .service-strip article:nth-child(3n) {
    border-right: 0;
  }

  .benefit-grid,
  .price-grid,
  .process-grid,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
    max-width: none;
  }

  .mail-link {
    text-align: left;
  }

  .map-panel {
    grid-template-columns: 1fr;
  }

  .map-info {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service-strip p,
  .benefit-grid p,
  .price-section p,
  .faq-list p,
  .contact-panel p,
  .process-grid p,
  .info-strip p,
  .legal-content p {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }

  .benefit-grid p,
  .contact-panel p,
  .process-grid p,
  .info-strip p,
  .legal-content p {
    margin-left: 0;
  }

  .section-heading h2,
  .split-section h2,
  .contact-panel h2 {
    max-width: 18ch;
  }

  .legal-hero h1 {
    max-width: 14ch;
    font-size: clamp(1.65rem, 8vw, 2.05rem);
    overflow-wrap: normal;
  }
}

@media (max-width: 640px) {
  body {
    width: 100%;
    max-width: 100%;
    padding-bottom: 74px;
  }

  main,
  section {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0 12px;
    min-height: 64px;
  }

  .brand span {
    max-width: 160px;
    white-space: normal;
    line-height: 1.05;
  }

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

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    background:
      linear-gradient(120deg, #03070a 0%, #071015 45%, rgba(160, 15, 15, 0.72) 100%),
      url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
  }

  .hero-bg {
    display: none;
  }

  .hero::before,
  .hero::after {
    display: block;
  }

  .hero-inner {
    width: calc(100% - 22px);
    max-width: 368px;
    margin-left: 11px;
    margin-right: 11px;
    padding: 54px 0 34px;
    gap: 18px;
  }

  .hero-text {
    max-width: 30ch;
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero .eyebrow {
    max-width: 30ch;
    margin-bottom: 20px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  h1 {
    max-width: 10.5ch;
    margin-bottom: 14px;
    font-size: 52px;
    line-height: 0.95;
    letter-spacing: -2px;
  }

  .hero-badges {
    gap: 8px;
    margin-bottom: 0;
  }

  .hero-badges span {
    min-height: 34px;
    padding: 5px 0;
    font-size: 0.9rem;
  }

  .hero-badges strong {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }

  .hero-actions,
  .hero-card {
    display: none;
  }

  .mobile-quick {
    width: calc(100% - 22px);
    max-width: 368px;
    margin: -1px 11px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 0 16px;
    background: transparent;
  }

  .mobile-quick a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--red);
    font-weight: 950;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  }

  .mobile-quick a:last-child {
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: #11191c;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .service-strip {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 12px 44px;
    background: transparent;
    box-shadow: none;
  }

  .service-strip article {
    min-width: 0;
    min-height: 0;
    padding: 16px 44px 16px 14px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    background: white;
    border: 1px solid #dfe4e3;
    border-radius: 7px;
    box-shadow: 0 10px 26px rgba(15, 23, 28, 0.08);
  }

  .service-strip article::before {
    opacity: 0;
  }

  .service-strip article::after {
    width: 74px;
    height: 74px;
    right: 0;
    bottom: 0;
  }

  .service-strip article:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(15, 23, 28, 0.08);
  }

  .service-mark {
    min-width: 34px;
    height: 26px;
    margin-bottom: 12px;
    font-size: 0.76rem;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 15px;
    box-shadow:
      0 12px 24px rgba(255, 43, 34, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }

  .service-icon i {
    font-size: 22px;
  }

  .service-strip h2 {
    min-height: 0;
    margin-bottom: 5px;
    font-size: 0.98rem;
  }

  .service-strip p {
    max-width: 31ch;
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .service-arrow {
    right: 12px;
    bottom: 50%;
    width: 26px;
    height: 26px;
    transform: translateY(50%);
    font-size: 1.35rem;
  }

  .mobile-info {
    width: calc(100% - 22px);
    max-width: 368px;
    margin: 18px 11px 0;
    display: grid;
    gap: 8px;
  }

  .mobile-info article {
    padding: 18px;
    background: white;
    border-left: 4px solid var(--red);
    box-shadow: 0 12px 28px rgba(15, 23, 28, 0.08);
  }

  .mobile-info h2 {
    margin-bottom: 6px;
    font-size: 1.15rem;
    line-height: 1.1;
  }

  .mobile-info p:not(.eyebrow) {
    margin: 0;
    color: #3c4549;
    font-size: 0.94rem;
  }

  .dark-band {
    margin-top: 36px;
  }

  .process-section {
    padding: 34px 0 0;
  }

  .process-grid {
    width: calc(100% - 22px);
    max-width: 368px;
    margin-left: 11px;
    margin-right: 11px;
    gap: 8px;
  }

  .process-grid article {
    min-height: auto;
    padding: 18px;
  }

  .process-grid span {
    width: auto;
    height: auto;
    margin-bottom: 12px;
    place-items: start;
    color: var(--red);
    background: transparent;
  }

  .process-grid h3 {
    font-size: 1.08rem;
  }

  .benefit-grid div,
  .price-grid article {
    padding: 22px;
  }

  .benefit-grid span {
    margin-bottom: 18px;
  }

  .team-showcase {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    justify-self: center;
    width: 100%;
    max-width: 260px;
    margin: -4px auto 0;
    padding: 20px 18px 18px;
    background: white;
    border: 1px solid #dde3e2;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(15, 23, 28, 0.12);
  }

  .team-showcase img {
    width: 132px;
    height: 132px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 16px 34px rgba(15, 23, 28, 0.18);
  }

  .team-showcase figcaption {
    padding: 0;
    color: var(--ink);
    text-align: center;
  }

  .team-showcase strong {
    font-size: 1.08rem;
    line-height: 1.1;
  }

  .team-showcase span {
    color: #586166;
    font-size: 0.9rem;
    font-weight: 800;
  }

  .stats span {
    padding: 14px 16px;
  }

  .stats strong {
    font-size: 1.35rem;
  }

  .faq-list summary {
    padding: 17px 18px;
    font-size: 0.95rem;
  }

  .contact-panel h2 {
    max-width: 12ch;
  }

  .contact-actions {
    display: none;
  }

  .mail-link {
    text-align: left;
  }

  .map-visual {
    display: none;
  }

  .map-info {
    padding: 18px;
  }

  .mobile-sticky-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .footer {
    padding-bottom: 88px;
  }

  .service-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #dfe4e3;
  }

  .section-heading,
  .benefit-grid,
  .split-section,
  .price-grid,
  .faq-list,
  .contact-panel,
  .process-grid {
    width: calc(100% - 22px);
    max-width: 368px;
    margin-left: 11px;
    margin-right: 11px;
  }

  .section-heading,
  .benefit-grid,
  .split-section,
  .price-grid,
  .faq-list {
    max-width: 368px;
  }

  .dark-band,
  .price-section,
  .faq-section {
    padding: 58px 0;
  }

  .price-section {
    padding-top: 48px;
  }

  .price-section .section-heading {
    margin-bottom: 20px;
  }

  .price-section .section-heading h2 {
    max-width: 11.5ch;
    margin-bottom: 14px;
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.03;
  }

  .price-section .section-heading p:not(.eyebrow) {
    max-width: 27ch;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .price-grid {
    gap: 10px;
  }

  .price-grid article {
    padding: 22px 20px;
  }

  .price-grid h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
  }

  .price-grid p {
    max-width: 28ch;
    margin-left: 0;
    margin-right: 0;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .split-section {
    margin-top: 62px;
    margin-bottom: 36px;
    gap: 28px;
  }

  .team-showcase {
    justify-self: start;
    max-width: min(320px, 100%);
  }

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

  .contact-panel {
    padding: 28px 20px;
  }

  .map-panel {
    min-height: auto;
  }

  .map-panel iframe {
    min-height: 230px;
  }

  .map-visual {
    min-height: 230px;
  }

  .map-info {
    padding: 22px;
  }

  .map-info a {
    width: 100%;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .legal-content {
    width: calc(100% - 22px);
    max-width: calc(100% - 22px);
    padding: 28px 20px;
    margin-top: -22px;
    margin-bottom: 62px;
  }

  .legal-content p,
  .legal-content a {
    overflow-wrap: anywhere;
  }

  .legal-hero {
    padding-top: 126px;
    padding-bottom: 48px;
  }

  .legal-hero::after {
    width: 150px;
    height: 150px;
    right: 8px;
    opacity: 0.08;
  }

  .legal-hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(1.95rem, 9.8vw, 2.55rem);
  }

  .section-heading h2,
  .split-section h2,
  .contact-panel h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.25rem);
  }

  .legal-hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.05rem);
  }
}
