:root {
  --bg: #f6f5f1;
  --panel: #ffffff;
  --ink: #171717;
  --muted: #61605d;
  --line: #dedbd2;
  --brand: #d71920;
  --brand-dark: #a80f16;
  --dark: #111317;
  --dark-soft: #20242b;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(20, 24, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 245, 241, 0.94);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 24px;
  background: var(--dark);
  color: #f7f3ec;
  font-size: 14px;
}

.topbar a:hover,
.site-footer a:hover {
  color: #ffb3b6;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
}

.brand img {
  width: 142px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
}

.nav-links a {
  color: #2d2d2d;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 115px);
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 15, 0.93), rgba(10, 12, 15, 0.58) 48%, rgba(10, 12, 15, 0.18)),
    url("assets/reifenservice-korb-alo-auto-pflege-reifen.jpg") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  padding: clamp(72px, 11vw, 132px) 0 150px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.no-break {
  white-space: nowrap;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #ece8df;
  font-size: 19px;
}

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

.hero-patch {
  position: absolute;
  right: 18px;
  bottom: 172px;
  z-index: 3;
  display: inline-block;
  max-width: 410px;
  min-width: 380px;
  padding: 18px 118px 18px 20px;
  background: var(--brand);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.12;
  transform: rotate(-4deg);
  animation: patch-wiggle 4.8s ease-in-out infinite;
}

.hero-patch strong {
  display: block;
}

.hero-patch img {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 82px;
  height: 82px;
  padding: 5px;
  background: #fff;
  border-radius: 6px;
}

.hero-patch span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 4px 7px;
  background: #fff;
  color: var(--brand);
  border-radius: 6px;
  font-size: 12px;
  text-transform: uppercase;
}

.hero-patch:hover {
  transform: rotate(-2deg) translateY(-2px);
}

@keyframes patch-wiggle {
  0%,
  88%,
  100% {
    transform: rotate(-4deg);
  }
  91% {
    transform: rotate(-2deg) translateY(-2px);
  }
  94% {
    transform: rotate(-5deg) translateY(1px);
  }
  97% {
    transform: rotate(-3deg);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

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

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}

.button.dark {
  background: var(--dark);
  color: #fff;
}

.hero-strip {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 0;
  left: max(20px, calc((100vw - 1180px) / 2));
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(246, 245, 241, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-strip div {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-size: 30px;
  line-height: 1.1;
}

.hero-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  padding: 82px 0 56px;
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.page-hero .button {
  margin-top: 28px;
}

.page-hero img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

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

.section-heading h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.intro-text {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}

.intro-text p {
  margin: 0;
}

.content-page h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.content-page > p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-page {
  max-width: 940px;
}

.legal-page h1 {
  margin: 0 0 28px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
}

.legal-page h2 {
  margin: 36px 0 12px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
}

.legal-page h3 {
  margin: 26px 0 8px;
  font-size: 22px;
}

.legal-page h4 {
  margin: 18px 0 8px;
  font-size: 18px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page a {
  color: var(--brand);
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

.service-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(20, 24, 31, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.18), transparent 23%),
    linear-gradient(135deg, #171717, #30343b);
}

.service-visual::before {
  position: absolute;
  inset: auto -16% -28% 18%;
  height: 58%;
  background: rgba(215, 25, 32, 0.88);
  border-radius: 50%;
  content: "";
  transform: rotate(-10deg);
}

.tire-ring {
  position: absolute;
  width: 112px;
  height: 112px;
  border: 13px solid #fff;
  border-radius: 50%;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.26);
}

.tire-ring::before {
  position: absolute;
  inset: 22px;
  border: 7px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  content: "";
}

.tire-ring-one {
  left: 23%;
  top: 20%;
}

.tire-ring-two {
  right: 21%;
  bottom: 17%;
  width: 96px;
  height: 96px;
  opacity: 0.82;
}

.tire-wrench {
  position: absolute;
  right: 26%;
  top: 28%;
  width: 92px;
  height: 13px;
  background: #fff;
  border-radius: 999px;
  transform: rotate(-36deg);
}

.tire-wrench::before {
  position: absolute;
  left: -16px;
  top: -11px;
  width: 28px;
  height: 28px;
  border: 7px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
}

.dashboard-line {
  position: absolute;
  left: 20%;
  right: 16%;
  top: 36%;
  height: 11px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 42px 0 rgba(255, 255, 255, 0.86);
}

.dashboard-line::before,
.dashboard-line::after {
  position: absolute;
  top: 24px;
  width: 44px;
  height: 44px;
  border: 8px solid #fff;
  border-radius: 50%;
  content: "";
}

.dashboard-line::before {
  left: 12%;
}

.dashboard-line::after {
  right: 18%;
}

.seat-shape {
  position: absolute;
  right: 20%;
  bottom: 17%;
  width: 82px;
  height: 76px;
  border: 9px solid #fff;
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 16px 0;
  transform: skewX(-10deg);
}

.spark {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.spark-one {
  top: 22%;
  left: 23%;
}

.spark-two {
  right: 25%;
  top: 22%;
  width: 14px;
  height: 14px;
  opacity: 0.86;
}

.car-shine {
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 30%;
  height: 62px;
  border: 9px solid #fff;
  border-top-left-radius: 68px;
  border-top-right-radius: 68px;
  border-bottom: 0;
}

.car-shine::before,
.car-shine::after {
  position: absolute;
  bottom: -27px;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  content: "";
}

.car-shine::before {
  left: 13%;
}

.car-shine::after {
  right: 13%;
}

.foam {
  position: absolute;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
}

.foam-one {
  top: 23%;
  left: 28%;
  box-shadow: 36px -13px 0 rgba(255, 255, 255, 0.78), 72px 0 0 rgba(255, 255, 255, 0.9);
}

.foam-two {
  top: 18%;
  right: 27%;
  width: 22px;
  height: 22px;
  opacity: 0.86;
}

.wash-cloth {
  position: absolute;
  right: 21%;
  top: 34%;
  width: 92px;
  height: 42px;
  background: #fff;
  border-radius: 12px;
  transform: rotate(-14deg);
}

.oil-drop {
  position: absolute;
  top: 22%;
  left: 26%;
  width: 58px;
  height: 76px;
  background: #fff;
  border-radius: 58% 58% 58% 10%;
  transform: rotate(45deg);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.oil-can {
  position: absolute;
  right: 24%;
  bottom: 22%;
  width: 92px;
  height: 62px;
  border: 8px solid #fff;
  border-radius: 8px;
  transform: rotate(-8deg);
}

.oil-can::before {
  position: absolute;
  top: -30px;
  left: 10px;
  width: 52px;
  height: 18px;
  background: #fff;
  border-radius: 6px 6px 0 0;
  content: "";
}

.oil-can::after {
  position: absolute;
  top: 4px;
  right: -42px;
  width: 46px;
  height: 18px;
  background: #fff;
  border-radius: 0 18px 18px 0;
  content: "";
}

.service-card div {
  padding: 24px;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.15;
}

.service-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 900;
}

.service-card li {
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--brand);
  content: "•";
  font-weight: 900;
}

.service-card.wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
}

.service-card.wide img {
  height: 100%;
  min-height: 260px;
  aspect-ratio: auto;
}

.service-card.wide p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.pricing-section {
  padding-top: 28px;
}

.pricing-marquee {
  width: 100vw;
  margin-top: 34px;
  margin-left: calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  overflow: hidden;
}

.pricing-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 max(20px, calc((100vw - 1180px) / 2)) 12px;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-marquee:hover .pricing-track {
  transition-duration: 240ms;
}

.pricing-card {
  position: relative;
  flex: 0 0 280px;
  min-height: 470px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(20, 24, 31, 0.06);
}

.pricing-card.featured {
  border-color: rgba(215, 25, 32, 0.45);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.pricing-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
}

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

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-note {
  max-width: 820px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.gallery {
  padding-top: 28px;
}

.local-seo {
  padding-top: 0;
}

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

.local-grid article {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(20, 24, 31, 0.06);
}

.local-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.local-grid p {
  margin: 0;
  color: var(--muted);
}

.reviews-section {
  padding-top: 0;
}

.reviews-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviews-box h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.reviews-box p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: #d9d4ca;
}

.fresh-kit-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding-top: 28px;
}

.fresh-kit-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fresh-kit-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fresh-kit-content {
  padding: 34px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(20, 24, 31, 0.06);
}

.fresh-kit-content h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.fresh-kit-content p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.fresh-kit-content ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: var(--muted);
}

.fresh-kit-content li {
  position: relative;
  padding-left: 20px;
}

.fresh-kit-content li::before {
  position: absolute;
  left: 0;
  color: var(--brand);
  content: "•";
  font-weight: 900;
}

.fresh-kit-content .button {
  margin-top: 26px;
}

.compare-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.compare-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  background: var(--dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compare-card figure {
  position: relative;
  min-height: 420px;
  margin: 0;
}

.compare-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-card figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: var(--radius);
  background: rgba(17, 19, 23, 0.86);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.instagram-section {
  padding-top: 28px;
}

.instagram-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
}

.instagram-intro p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.instagram-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: 0 12px 30px rgba(20, 24, 31, 0.08);
}

.instagram-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 220ms ease, opacity 220ms ease;
}

.instagram-card:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.instagram-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(17, 19, 23, 0.86);
  color: #fff;
  font-weight: 900;
}

.faq-section {
  padding-top: 28px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.faq-grid article {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: min(1180px, calc(100% - 40px));
  margin: 26px auto 92px;
  padding: 42px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-band .eyebrow {
  color: #fff;
}

.contact-band h2 {
  max-width: 680px;
}

.contact-actions {
  justify-content: flex-end;
  min-width: 320px;
  margin-top: 0;
}

.contact-actions.inline {
  justify-content: flex-start;
  min-width: 0;
  margin-top: 24px;
}

.contact-copy {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  padding-top: 0;
}

.whatsapp-panel,
.map-panel {
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(20, 24, 31, 0.06);
}

.whatsapp-panel .section-heading h2,
.map-panel .section-heading h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.contact-modal-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-modal-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-modal-form input,
.contact-modal-form select,
.contact-modal-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
}

.contact-modal-form textarea {
  resize: vertical;
}

.form-hp {
  position: absolute;
  left: -9999px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.contact-modal.is-open {
  display: block;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 23, 0.72);
}

.contact-modal__dialog {
  position: relative;
  width: min(620px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  padding: 30px;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-modal__dialog h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
}

.contact-modal__lead {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.map-panel iframe {
  width: 100%;
  min-height: 385px;
  margin-top: 24px;
  border: 0;
  border-radius: var(--radius);
}

.map-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand);
  font-weight: 900;
}

.payment-section {
  padding-top: 0;
}

.payment-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.payment-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(20, 24, 31, 0.06);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.pay-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 22px;
  flex: 0 0 28px;
  border-radius: 5px;
  background: var(--dark);
}

.pay-icon.cash::before {
  width: 22px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 4px;
  content: "";
}

.pay-icon.cash::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
}

.pay-icon.invoice {
  background: #fff;
  border: 2px solid var(--dark);
}

.pay-icon.invoice::before {
  width: 14px;
  height: 2px;
  background: var(--dark);
  box-shadow: 0 5px 0 var(--dark), 0 10px 0 var(--dark);
  content: "";
}

.pay-icon.paypal {
  background: #003087;
}

.pay-icon.paypal::before {
  color: #fff;
  content: "P";
  font-weight: 900;
}

.pay-icon.apple {
  background: #111;
}

.pay-icon.apple::before {
  color: #fff;
  content: "";
  font-size: 17px;
  line-height: 1;
}

.pay-icon.google {
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
}

.pay-icon.google::before {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  content: "";
}

.pay-icon.card,
.pay-icon.visa {
  background: #1a4fb6;
}

.pay-icon.card::before,
.pay-icon.visa::before {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  height: 3px;
  background: #fff;
  content: "";
}

.pay-icon.master {
  background: transparent;
}

.pay-icon.master::before,
.pay-icon.master::after {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  content: "";
}

.pay-icon.master::before {
  left: 2px;
  background: #e21b2d;
}

.pay-icon.master::after {
  right: 2px;
  background: rgba(247, 158, 27, 0.92);
}

.site-footer {
  background: var(--dark);
  color: #f7f3ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 34px;
  width: min(1180px, calc(100% - 40px));
  padding: 58px 0;
  margin: 0 auto;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  color: #cbc7bd;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  padding: 18px 0;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbc7bd;
}

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

  .navbar {
    width: min(100% - 28px, 1180px);
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-grid;
    grid-template-columns: 18px auto;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(10, 12, 15, 0.9), rgba(10, 12, 15, 0.68)),
      url("assets/reifenservice-korb-alo-auto-pflege-reifen.jpg") center / cover;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 72px 0 240px;
  }

  .hero-patch {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin-top: 18px;
    padding: 16px 18px;
    background: var(--brand);
    font-size: 18px;
    transform: none;
    animation: none;
  }

  .hero-patch img {
    display: none;
  }

  .hero-patch::after {
    display: block;
    margin-top: 9px;
    padding: 10px 12px;
    background: #fff;
    color: var(--ink);
    border-radius: 6px;
    content: "Preischeck per WhatsApp";
    font-size: 18px;
    line-height: 1.1;
  }

  .hero-patch br {
    display: none;
  }

  .hero-patch:hover {
    transform: translateY(-2px);
  }

  .hero-strip {
    right: 14px;
    left: 14px;
    grid-template-columns: 1fr;
  }

  .hero-strip div {
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .page-hero,
  .contact-band,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .page-hero,
  .intro,
  .service-grid,
  .instagram-grid,
  .faq-grid,
  .local-grid,
  .service-card.wide,
  .contact-layout,
  .contact-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro,
  .page-hero,
  .fresh-kit-section,
  .reviews-box,
  .contact-band {
    gap: 24px;
  }

  .page-hero {
    padding-top: 56px;
  }

  .pricing-marquee {
    margin-left: 0;
    width: 100%;
    overflow: hidden;
  }

  .pricing-track {
    gap: 12px;
    width: 100%;
    padding: 0 0 10px;
  }

  .pricing-card {
    flex-basis: calc((100% - 12px) / 2);
    min-width: 0;
    min-height: 430px;
    padding: 20px;
  }

  .pricing-card h3 {
    font-size: 19px;
    hyphens: auto;
    overflow-wrap: normal;
    word-break: normal;
  }

  .pricing-card strong {
    font-size: 27px;
  }

  .pricing-card .text-link {
    font-size: 17px;
  }
  }

  .service-card.wide {
    display: block;
  }

  .fresh-kit-section {
    grid-template-columns: 1fr;
  }

  .contact-band {
    display: grid;
    padding: 28px;
  }

  .reviews-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .contact-actions {
    justify-content: flex-start;
    min-width: 0;
  }

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

@media (max-width: 620px) {
  .brand img {
    width: 118px;
  }

  .hero-content {
    padding-bottom: 300px;
  }

  .hero p:not(.eyebrow),
  .intro-text,
  .service-card.wide p {
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .no-break {
    white-space: normal;
  }

  .section {
    padding: 64px 0;
  }

  .compare-card {
    grid-template-columns: 1fr;
  }

  .compare-card figure {
    min-height: 330px;
  }

  .button {
    width: 100%;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
