:root {
  --red: #d71920;
  --red-dark: #a90f15;
  --ink: #111216;
  --ink-soft: #2a2d34;
  --muted: #696e78;
  --line: #e8e9ed;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --dark: #101114;
  --shadow: 0 24px 70px rgba(17, 18, 22, .13);
  --radius: 22px;
  --container: 1240px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: clip;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.quick-icon {
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  vertical-align: -0.18em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--wa {
  fill: currentColor;
  stroke: none;
}

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

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

:focus-visible {
  outline: 3px solid rgba(215, 25, 32, .35);
  outline-offset: 4px;
  border-radius: 10px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

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

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  letter-spacing: .02em;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar a { font-weight: 800; }
.topbar__trust { margin-left: auto; color: rgba(255,255,255,.74); }

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

.header__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

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

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.nav a {
  position: relative;
  padding: 30px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after { transform: scaleX(1); }

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 9px 16px 9px 12px;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 26px rgba(17, 18, 22, .18);
}

.header-call strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
}

.header-call small {
  display: block;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
}

.call-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  padding: 70px 0 0;
  background:
    radial-gradient(circle at 70% 34%, rgba(215,25,32,.08), transparent 30%),
    linear-gradient(105deg, #fff 0%, #fff 45%, #f2f3f5 45%, #eef0f3 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 86px;
  background: linear-gradient(90deg, var(--red), #b20f16);
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.17fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.eyebrow span {
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
}

.eyebrow--light { color: #fff; }

h1,
h2,
h3,
p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  font-size: clamp(50px, 4.6vw, 64px);
  line-height: .94;
  letter-spacing: -.055em;
  text-transform: uppercase;
  max-width: 620px;
}

h1 span {
  display: block;
  max-width: 100%;
}

.hero h1 {
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.hero h1::after {
  content: " ";
  display: block;
  width: 180px;
  height: 7px;
  margin-top: 18px;
  background: var(--red);
  border-radius: 99px;
}

.hero__lead {
  max-width: 590px;
  margin: 22px 0 24px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero__checks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 11px;
  max-width: 430px;
  font-weight: 800;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__checks li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 14px;
}

.hero__actions,
.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 15px 32px rgba(215,25,32,.25);
}

.btn--dark { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }

.hero__phone-card {
  margin-top: 22px;
  display: inline-flex;
  flex-direction: column;
  min-width: min(100%, 300px);
  padding: 16px 20px;
  border-radius: 17px;
  background: rgba(17,18,22,.92);
  color: #fff;
}

.hero__phone-card span {
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,.7);
}

.hero__phone-card strong {
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: .02em;
  line-height: 1;
}

.hero__visual {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  background: #eef0f3 url("assets/images/stock/day-roadside-sedan-transport.webp") center / cover no-repeat;
  border-radius: 26px;
}

.hero__visual > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17,18,22,.06);
}

.hero__badge {
  position: absolute;
  right: 20px;
  top: 14px;
  z-index: 2;
  width: 118px;
  height: 118px;
  border: 9px solid var(--red);
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.05;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(17,18,22,.16);
}

.hero__badge strong {
  display: block;
  color: var(--red);
  font-size: 30px;
}

.hero__badge span {
  display: block;
  font-size: 11px;
  font-weight: 900;
}

.hero__mini {
  position: absolute;
  left: -28px;
  bottom: 18px;
  width: 180px;
  margin: 0;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17,18,22,.24);
}

.hero__proof-card {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 150px;
  text-align: left;
}

.hero__proof-card .icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 12px;
  background: #fff0f1;
  color: var(--red);
}

.hero__proof-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero__proof-card strong {
  font-size: 14px;
  line-height: 1.1;
}

.hero__mini img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 78%;
  border-radius: 12px;
}

.hero__mini figcaption {
  padding: 8px 4px 2px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.quick-strip {
  position: relative;
  z-index: 2;
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-strip article {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.quick-strip article:last-child { border-right: 0; }
.quick-strip__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.quick-strip span { color: var(--red); font-weight: 950; font-size: 12px; }
.quick-icon {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 13px;
  background: #fff0f1;
  color: var(--red);
  stroke-width: 1.65;
}
.quick-strip strong { display: block; margin: 6px 0; text-transform: uppercase; }
.quick-strip p { margin: 0; color: var(--muted); font-size: 14px; }

.section { padding: 64px 0; }
.section--dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(215,25,32,.14), transparent 32%),
    linear-gradient(135deg, #101114 0%, #141519 58%, #0b0c0f 100%);
  color: #fff;
}
.section--dark p { color: rgba(255,255,255,.74); }

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

.section-head--row {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  align-items: end;
  gap: 30px;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.15;
}

.section-head p,
.about p,
.contact p,
.split p {
  color: var(--muted);
  font-size: 17px;
}

.trust-band {
  padding: 0;
  background: var(--red);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.trust-grid div {
  min-width: 0;
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 16px 22px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.trust-grid strong {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.trust-grid span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

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

.service-card {
  padding: 24px 22px;
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 42px rgba(17,18,22,.06);
  display: flex;
  flex-direction: column;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: #fff0f1;
  color: var(--red);
  display: grid;
  place-items: center;
}

.service-card__icon .icon {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  min-height: 46px;
  display: flex;
  align-items: flex-start;
}

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

.split,
.about__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: 48px;
  align-items: center;
}

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

.mini-list span {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  font-weight: 850;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-list .icon {
  color: var(--red);
  flex: 0 0 auto;
}

.why-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.feature-photo,
.about figure {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 78%;
}

.why-section .feature-photo {
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
}

.why-section .feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.74));
  pointer-events: none;
}

.feature-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
}

.feature-photo figcaption strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.feature-photo figcaption span {
  color: rgba(255,255,255,.76);
  font-weight: 750;
}

.about figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.showcase {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.show-card {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(17,18,22,.11);
}

.show-card--wide { min-height: 430px; }

.show-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.show-card--wide img { aspect-ratio: 16 / 10; }

.show-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.76));
}

.show-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
}

.show-card span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.show-card strong { display: block; font-size: 22px; line-height: 1.1; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery__item {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 12px 30px rgba(17,18,22,.08);
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  transition: transform .25s ease;
}

.gallery__item:hover img { transform: scale(1.035); }

.process {
  background:
    linear-gradient(180deg, #f3f4f6 0%, #fff 100%);
  position: relative;
  padding-top: 62px;
  padding-bottom: 64px;
}

.process::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), #111216, var(--red));
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(215,25,32,.15), rgba(215,25,32,.75), rgba(215,25,32,.15));
}

.steps article {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(17,18,22,.07);
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.steps span {
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(17,18,22,.18);
}

.steps span .icon {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.steps h3 {
  min-height: 46px;
  display: flex;
  align-items: flex-start;
}

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

.faq { background: #fff; }

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.cta-section {
  padding: 30px 0;
  background: linear-gradient(90deg, #b90f16, var(--red));
}

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

.cta-card h2 { max-width: 650px; }
.cta-card p { max-width: 690px; color: rgba(255,255,255,.82); }

.contact {
  background:
    radial-gradient(circle at 82% 18%, rgba(215,25,32,.07), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
  padding-top: 62px;
  padding-bottom: 64px;
}

.contact-action-panel {
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(17,18,22,.96), rgba(17,18,22,.90)),
    radial-gradient(circle at 100% 0%, rgba(215,25,32,.34), transparent 40%);
  color: #fff;
  box-shadow: 0 22px 60px rgba(17,18,22,.16);
  overflow: hidden;
}

.contact-action-panel > span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-action-panel > strong {
  display: block;
  margin: 8px 0 18px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.contact-action-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-cards a,
.contact-cards div {
  min-height: 124px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  display: grid;
  align-content: center;
  gap: 7px;
  box-shadow: 0 16px 38px rgba(17,18,22,.06);
}

.contact-cards .icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 12px;
  background: #fff0f1;
  color: var(--red);
  margin-bottom: 6px;
}

.contact-cards span {
  color: var(--muted);
  font-weight: 850;
}

.contact-cards strong {
  font-size: 18px;
  line-height: 1.2;
}

.footer {
  background:
    radial-gradient(circle at 12% 20%, rgba(215,25,32,.20), transparent 28%),
    linear-gradient(135deg, #0c0d10 0%, #15161b 100%);
  color: #fff;
  padding: 42px 0 20px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) .72fr .82fr minmax(250px, .9fr);
  gap: 24px;
  align-items: start;
}

.footer-brand img {
  width: auto;
  height: 74px;
  filter: drop-shadow(0 2px 0 rgba(255,255,255,.2));
}

.footer__brand-block p {
  max-width: 360px;
  color: rgba(255,255,255,.74);
  margin: 10px 0 14px;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 850;
  font-size: 13px;
}

.footer__badges .icon {
  color: var(--red);
}

.footer__col h2,
.footer__cta h2 {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.footer nav {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,.78);
  font-weight: 750;
}

.footer__col li,
.footer nav a {
  position: relative;
  padding-left: 15px;
}

.footer__col li::before,
.footer nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.footer__cta {
  display: grid;
  gap: 10px;
}

.footer-call,
.footer-wa {
  display: grid;
  gap: 4px;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  font-weight: 900;
}

.footer-call span {
  color: rgba(255,255,255,.66);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-call strong {
  font-size: 24px;
  line-height: 1;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: #1fb855;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.footer__bottom {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.72);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1fb855;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}

.floating-wa .icon--wa {
  width: 30px;
  height: 30px;
}

.mobile-cta { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 70px 18px 26px;
  background: rgba(0,0,0,.86);
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-height: min(78vh, 850px);
  width: auto;
  max-width: min(94vw, 780px);
  border-radius: 18px;
  object-fit: contain;
  background: #111;
}

.lightbox p {
  color: #fff;
  margin: 14px 0 0;
  text-align: center;
  font-weight: 800;
}

.lightbox__close {
  position: fixed;
  right: 20px;
  top: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .header__inner {
    grid-template-columns: 148px 1fr auto;
    gap: 18px;
  }

  .brand img { height: 66px; }
  .nav { gap: 16px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: auto; }
  .hero__mini { left: 18px; }
  .service-cards,
  .trust-grid,
  .steps { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: 1fr 1fr; }
  .show-card--wide { grid-column: 1 / -1; }
  .footer__top {
    grid-template-columns: minmax(240px, 1.1fr) minmax(160px, .8fr) minmax(190px, .9fr);
    gap: 24px;
  }
  .footer__cta { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 82px; }

  body.menu-open { overflow: hidden; }

  .container { width: min(calc(100% - 32px), var(--container)); }

  .topbar { display: none; }

  .header__inner {
    min-height: 68px;
    grid-template-columns: 116px 1fr 48px;
  }

  .brand img {
    height: 58px;
  }

  .header-call { display: none; }

  .menu-toggle {
    justify-self: end;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 99px;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav {
    position: fixed;
    inset: 68px 12px auto;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    justify-content: stretch;
    gap: 2px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .nav a:hover { background: var(--soft); }
  .nav a::after { display: none; }

  .hero {
    min-height: 0;
    padding: 42px 0 0;
    background: linear-gradient(180deg, #fff 0%, #f1f2f4 100%);
  }

  h1 {
    font-size: clamp(34px, 8.8vw, 42px);
    letter-spacing: -.045em;
  }

  .hero__lead { font-size: 16.5px; }

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

  .hero__actions .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
  }

  .hero__visual > img { border-radius: 20px; }
  .hero__visual {
    margin-top: 8px;
    background: #eef0f3 url("assets/images/stock/day-roadside-sedan-transport.webp") center / cover no-repeat;
    border-radius: 20px;
  }
  .hero__badge {
    width: 92px;
    height: 92px;
    border-width: 7px;
    right: 12px;
  }

  .hero__badge strong { font-size: 23px; }
  .hero__badge span { font-size: 9px; }
  .hero__mini { display: none; }

  .quick-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
  }

  .quick-strip article {
    padding: 17px;
    border-bottom: 1px solid var(--line);
  }

  .section { padding: 48px 0; }
  .section-head { margin-bottom: 24px; }
  #hizmetler .service-cards { margin-top: 14px; }
  .process,
  .contact {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  h2 { font-size: clamp(28px, 7.6vw, 36px); }

  .section-head--row,
  .split,
  .about__grid,
  .contact__grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .gallery { grid-template-columns: repeat(3, 1fr); }
  .floating-wa { display: none; }

  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(8px, var(--safe-bottom));
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 5px;
    border-radius: 15px;
    background: rgba(17,18,22,.93);
    box-shadow: 0 16px 44px rgba(0,0,0,.28);
  }

  .mobile-cta a {
    min-height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff;
    font-weight: 950;
    letter-spacing: .05em;
    font-size: 12px;
  }

  .mobile-cta a:first-child { background: var(--red); }
  .mobile-cta a:last-child { background: #1fb855; }

  body { padding-bottom: calc(86px + var(--safe-bottom)); }
  main > section:last-of-type,
  .footer {
    margin-bottom: 12px;
  }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 26px), 390px); }

  .header__inner {
    gap: 10px;
    grid-template-columns: 112px 1fr 44px;
  }

  .brand img { height: 52px; }
  .hero__actions { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .header__inner { grid-template-columns: 110px 1fr 46px; }
  .brand img { height: 54px; }

  .hero { padding-top: 34px; }
  .hero__checks { font-size: 15px; }
  .hero__phone-card { width: 100%; }
  .hero__phone-card strong { font-size: 25px; }
  .hero__actions { grid-template-columns: 1fr; }

  .quick-strip,
  .service-cards,
  .trust-grid,
  .steps,
  .showcase,
  .gallery,
  .contact-cards,
  .mini-list {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
    padding: 14px 0;
    min-height: auto;
  }

  .trust-grid div:first-child { border-top: 0; }

  .service-card,
  .steps article {
    min-height: auto;
  }
  .service-card h3,
  .steps h3 {
    min-height: 0;
  }
  .show-card,
  .show-card--wide { min-height: 330px; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer {
    padding-top: 34px;
    padding-bottom: 18px;
  }
  .footer__bottom {
    margin-top: 20px;
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 26px), 390px);
    margin-left: 13px;
    margin-right: auto;
  }
  .header__inner {
    gap: 10px;
    grid-template-columns: 112px 1fr 44px;
  }
  .brand img { height: 52px; }
  .mobile-cta {
    width: min(calc(100% - 20px), 390px);
    left: 10px;
    right: auto;
  }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .header__inner {
    min-height: 64px;
    grid-template-columns: 100px 1fr 42px;
  }
  .brand img { height: 50px; }
  .menu-toggle { width: 42px; height: 42px; }
  .nav { inset: 64px 10px auto; }

  h1 { font-size: clamp(32px, 10vw, 37px); }
  .hero__lead { font-size: 15.8px; }
  .hero__actions { grid-template-columns: 1fr; }
  .btn { width: 100%; min-height: 50px; padding-inline: 14px; }
  .hero__badge { width: 78px; height: 78px; border-width: 6px; }
  .hero__badge strong { font-size: 20px; }

  .quick-strip article,
  .service-card,
  .steps article,
  .contact-cards a,
  .contact-cards div {
    padding: 18px;
  }

  .mobile-cta {
    width: calc(100% - 16px);
    left: 8px;
    right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
