:root {
  --ink: #111318;
  --ink-soft: #252930;
  --paper: #f5f5f2;
  --white: #ffffff;
  --muted: #686d76;
  --line: #dedfda;
  --accent: #f04a24;
  --accent-dark: #c93313;
  --accent-pale: #fff0eb;
  --lime: #c7ff35;
  --container: 1180px;
  --shadow: 0 20px 50px rgba(14, 17, 23, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(10, 12, 16, 0.08);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.topbar {
  color: #c4c7cd;
  background: var(--ink);
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease;
}

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

.topbar__links svg {
  width: 14px;
  height: 14px;
}

.nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links > a:not(.button) {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav__links > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav__links > a:hover::after,
.nav__links > a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--accent);
  color: var(--white);
  background: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button--small {
  min-height: 42px;
  padding-inline: 20px;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  color: var(--white);
  background: #111318;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("assets/realizacja-nevo-sky.webp");
  background-position: center 43%;
  background-size: cover;
  transform: scale(1.01);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.96) 0%, rgba(10, 12, 16, 0.78) 45%, rgba(10, 12, 16, 0.24) 78%),
    linear-gradient(0deg, rgba(10, 12, 16, 0.7) 0%, transparent 45%);
}

.hero__content {
  position: relative;
  display: flex;
  min-height: 710px;
  padding-block: 92px 38px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 11px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 7.1vw, 92px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.76);
}

.hero__lead {
  max-width: 630px;
  margin: 28px 0 34px;
  color: #d7d9dd;
  font-size: 19px;
  line-height: 1.6;
}

.hero__location {
  margin: -20px 0 26px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

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

.hero__trust {
  display: grid;
  width: min(100%, 760px);
  margin-top: 64px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__trust div {
  display: flex;
  padding: 21px 26px 0 0;
  flex-direction: column;
}

.hero__trust strong {
  color: var(--white);
  font-size: 21px;
  font-weight: 900;
}

.hero__trust span {
  color: #aeb2ba;
  font-size: 12px;
}

.section {
  padding-block: 110px;
}

.section-heading {
  display: grid;
  margin-bottom: 50px;
  align-items: end;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 80px;
}

.section-heading h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  min-height: 355px;
  padding: 32px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  z-index: 2;
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card--featured {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.service-card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #e3e4df;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.service-card--featured .service-card__number {
  color: #2d3037;
}

.icon-box {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 52px;
  place-items: center;
  color: var(--accent);
  background: var(--accent-pale);
}

.icon-box svg {
  width: 28px;
  height: 28px;
}

.service-card--featured .icon-box {
  color: var(--ink);
  background: var(--lime);
}

.service-card h3 {
  margin: 0 0 13px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card--featured p {
  color: #acb0b8;
}

.service-card a {
  position: absolute;
  bottom: 28px;
  left: 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.service-card--featured a {
  color: var(--lime);
}

.service-card a span,
.text-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.service-card a:hover span,
.text-link:hover span {
  transform: translateX(5px);
}

.recommendation {
  padding-block: 0 20px;
  background: var(--paper);
}

.recommendation__card {
  display: grid;
  min-height: 190px;
  padding: 34px 40px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  border-top: 4px solid var(--lime);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.recommendation__mark {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
}

.recommendation__mark svg {
  width: 42px;
  height: 42px;
}

.recommendation__content .eyebrow {
  margin-bottom: 7px;
  color: var(--lime);
}

.recommendation__content h2 {
  margin: 0 0 4px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.recommendation__content > p:not(.eyebrow) {
  margin: 0;
  color: #b8bbc2;
  font-size: 14px;
}

.about {
  overflow: hidden;
  background: var(--white);
}

.about__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.86fr;
  gap: 100px;
}

.about__visual {
  position: relative;
}

.about__visual::before {
  position: absolute;
  z-index: 0;
  top: -34px;
  left: -36px;
  width: 150px;
  height: 150px;
  content: "";
  background-image: radial-gradient(var(--accent) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
}

.about__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 490px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about__badge {
  position: absolute;
  z-index: 2;
  right: -34px;
  bottom: -34px;
  display: flex;
  width: 190px;
  height: 130px;
  padding: 22px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  background: var(--lime);
}

.about__badge span {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
}

.about__badge p {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.about__content > p:not(.eyebrow) {
  margin: 25px 0 27px;
  color: var(--muted);
  font-size: 17px;
}

.about__content .about__proof {
  margin: 18px 0 5px;
  font-size: 14px;
}

.check-list {
  display: grid;
  margin: 0 0 28px;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.check-list span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  font-size: 12px;
}

.text-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.brands {
  background: var(--paper);
}

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

.brand-card {
  position: relative;
  display: grid;
  min-height: 120px;
  padding: 22px 24px;
  align-items: center;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.brand-card:hover {
  border-color: transparent;
  box-shadow: 0 14px 35px rgba(14, 17, 23, 0.1);
  transform: translateY(-4px);
}

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

.brand-card img.brand-card__logo--tall {
  width: 82px;
  height: 58px;
}

.brand-card span {
  font-size: 15px;
  font-weight: 900;
}

.brand-card > svg {
  width: 17px;
  height: 17px;
  color: #a0a4ab;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.brand-card:hover > svg {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.brands__note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.chip-tuning {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 20%, rgba(199, 255, 53, 0.13), transparent 30%),
    #171a20;
}

.chip-tuning__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 80px;
}

.chip-tuning h2 {
  margin: 10px 0 22px;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.chip-tuning p {
  color: #b7bbc2;
}

.chip-tuning .check-list {
  margin-top: 28px;
}

.chip-tuning__card {
  padding: 38px;
  border-top: 4px solid var(--lime);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.chip-tuning__card strong {
  font-size: 25px;
}

.chip-tuning__card p {
  margin: 12px 0 25px;
  color: var(--muted);
}

.pricing {
  color: var(--white);
  background:
    linear-gradient(rgba(17, 19, 24, 0.97), rgba(17, 19, 24, 0.97)),
    url("assets/warsztat-1.jpg") center / cover;
}

.section-heading--light > p {
  color: #aeb2ba;
}

.pricing__notice {
  display: flex;
  margin: -22px 0 28px;
  padding: 15px 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #c8cbd1;
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
}

.pricing__notice svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--lime);
}

.pricing__notice p {
  margin: 0;
}

.pricing__notice a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pricing-group {
  padding-block: 35px;
  border-top: 1px solid #333740;
}

.pricing-group:first-of-type {
  border-top: 0;
}

.pricing-group__title {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 18px;
}

.pricing-group__title > span {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-size: 14px;
  font-weight: 900;
}

.pricing-group__title small {
  display: block;
  color: #858a93;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pricing-group__title h3 {
  margin: 2px 0 0;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.pricing-group__footnote {
  margin: 14px 0 0;
  color: #888d96;
  font-size: 11px;
}

.price-card {
  overflow: hidden;
  border: 1px solid #333740;
  background: #181b21;
}

.price-card__head {
  display: flex;
  min-height: 80px;
  padding: 0 28px;
  align-items: center;
  justify-content: space-between;
  background: #202329;
}

.price-card__head span {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.price-card__head svg {
  width: 30px;
  height: 30px;
  color: var(--accent);
}

.price-list {
  padding: 8px 28px 17px;
}

.price-list > div {
  display: flex;
  min-height: 47px;
  padding-block: 11px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid #30333a;
}

.price-list > div:last-child {
  border-bottom: 0;
}

.price-list span {
  color: #c3c6cb;
  font-size: 14px;
}

.price-list strong {
  flex: 0 0 auto;
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
}

.price-card__subhead {
  margin: 0 28px;
  padding: 18px 0 3px;
  border-top: 1px solid #3b3e45;
  color: #878c94;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pricing__cta {
  display: flex;
  margin-top: 22px;
  padding: 25px 28px;
  align-items: center;
  justify-content: space-between;
  border-left: 4px solid var(--accent);
  background: #202329;
}

.pricing__cta > div {
  display: grid;
  gap: 2px;
}

.pricing__cta strong {
  font-size: 17px;
}

.pricing__cta p {
  margin: 0;
  color: #9da1a9;
  font-size: 16px;
}

.vehicle-scope {
  margin-top: 36px;
  padding: 45px;
  border: 1px solid #383c44;
  background: #202329;
}

.vehicle-scope__heading {
  display: grid;
  max-width: 760px;
}

.vehicle-scope__heading h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.vehicle-scope__heading > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #aeb2ba;
}

.vehicle-grid {
  display: grid;
  margin-top: 35px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #3b3f47;
}

.vehicle-grid article {
  display: flex;
  min-height: 125px;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  background: #181b21;
}

.vehicle-grid strong {
  color: var(--lime);
  font-size: 17px;
}

.vehicle-grid span {
  margin-top: 5px;
  color: #aeb2ba;
  font-size: 12px;
}

.vehicle-scope__systems {
  display: flex;
  margin-top: 28px;
  padding-top: 24px;
  align-items: baseline;
  gap: 14px;
  border-top: 1px solid #3b3f47;
}

.vehicle-scope__systems span {
  flex: 0 0 auto;
  color: #858a93;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vehicle-scope__systems p {
  margin: 0;
  color: #d6d8dc;
  font-size: 13px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 290px;
  gap: 16px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.gallery__large {
  grid-row: auto;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(11, 13, 17, 0.78);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

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

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.faq-item {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.faq-item[open] {
  border-color: #c9cbc5;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(14, 17, 23, 0.07);
}

.faq-item summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "+";
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item p a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq__cta {
  display: flex;
  margin-top: 28px;
  padding: 24px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--ink);
}

.faq__cta p {
  margin: 0;
}

.media-section {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(240, 74, 36, 0.13), transparent 27%),
    #111318;
}

.featured-media {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 55px;
}

.media-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050607;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.35);
}

.media-player > img,
.media-player > iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.media-player::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(0deg, rgba(5, 6, 7, 0.62), transparent 55%);
}

.media-player:has(iframe)::after {
  display: none;
}

.media-player__play {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 104px;
  padding: 18px 22px 18px 92px;
  align-content: center;
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.media-player__play-icon {
  position: absolute;
  top: 50%;
  left: 24px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.media-player__play:hover .media-player__play-icon,
.media-player__play:focus-visible .media-player__play-icon {
  transform: translateY(-50%) scale(1.08);
}

.media-player__play-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.media-player__play strong {
  font-size: 15px;
}

.media-player__play small {
  color: #c2c5ca;
  font-size: 10px;
}

.featured-media__provider {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.featured-media__content h3 {
  margin: 12px 0 20px;
  font-size: clamp(30px, 3.5vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.featured-media__content > p {
  margin: 0;
  color: #aeb2ba;
}

.featured-media__actions {
  display: flex;
  margin-top: 28px;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.featured-media__actions .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.featured-media__actions .text-link svg {
  width: 16px;
  height: 16px;
}

.external-profiles {
  margin-top: 85px;
  padding-top: 45px;
  border-top: 1px solid #333740;
}

.external-profiles__heading {
  display: flex;
  margin-bottom: 28px;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.external-profiles__heading h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.03em;
}

.external-profiles__heading p {
  max-width: 480px;
  margin: 0;
  color: #878c95;
  font-size: 13px;
}

.external-profiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.external-profile-card {
  position: relative;
  display: flex;
  min-height: 180px;
  padding: 27px;
  flex-direction: column;
  border: 1px solid #343840;
  background: #191c22;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.external-profile-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.external-profile-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.external-profile-card p {
  margin: 0;
  color: #8f949d;
  font-size: 12px;
}

.external-profile-card a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 22px;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.external-profile-card a svg {
  width: 15px;
  height: 15px;
}

.contact {
  padding-block: 110px;
  color: var(--white);
  background: var(--ink);
}

.contact__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 90px;
}

.contact__lead {
  max-width: 560px;
  margin: 25px 0 32px;
  color: #aeb2ba;
  font-size: 17px;
}

.contact__items {
  display: grid;
  gap: 11px;
}

.contact__items a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact__items a:hover strong {
  color: var(--lime);
}

.contact__icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  color: var(--accent);
  background: #262930;
}

.contact__icon svg {
  width: 21px;
  height: 21px;
}

.contact__items small,
.location-card small {
  display: block;
  color: #7e838c;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact__items strong {
  font-size: 16px;
  transition: color 0.2s ease;
}

.opening-hours {
  display: grid;
  margin-top: 32px;
  padding-top: 26px;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  border-top: 1px solid #30343b;
  font-size: 13px;
}

.opening-hours strong {
  margin-bottom: 8px;
  grid-column: 1 / -1;
  color: #7e838c;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.opening-hours span {
  color: #b8bbc1;
}

.opening-hours b {
  color: var(--white);
}

.location-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-card__map {
  position: relative;
  height: 330px;
  overflow: hidden;
  background:
    linear-gradient(29deg, transparent 47%, rgba(19, 24, 31, 0.08) 48%, rgba(19, 24, 31, 0.08) 52%, transparent 53%),
    linear-gradient(118deg, transparent 46%, rgba(19, 24, 31, 0.09) 47%, rgba(19, 24, 31, 0.09) 51%, transparent 52%),
    #e5e5df;
}

.location-card__map::before,
.location-card__map::after {
  position: absolute;
  width: 140%;
  height: 28px;
  content: "";
  background: #fff;
  box-shadow: 0 0 0 1px #d3d4ce;
  transform-origin: center;
}

.location-card__map::before {
  top: 44%;
  left: -17%;
  transform: rotate(-14deg);
}

.location-card__map::after {
  top: 31%;
  left: -20%;
  transform: rotate(48deg);
}

.map-lines {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(90deg, transparent 48%, #c8c9c3 49%, #c8c9c3 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, #d3d4ce 49%, #d3d4ce 51%, transparent 52%);
  background-size: 82px 82px;
}

.map-pin {
  position: absolute;
  z-index: 4;
  top: 45%;
  left: 52%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 25px rgba(240, 74, 36, 0.4);
  transform: translate(-50%, -50%);
}

.map-pin svg {
  width: 29px;
  height: 29px;
}

.map-label {
  position: absolute;
  z-index: 4;
  top: calc(45% + 40px);
  left: 52%;
  padding: 4px 9px;
  color: var(--ink);
  background: var(--white);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
}

.location-card__body {
  display: flex;
  padding: 28px 30px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
}

.location-card__body h3 {
  margin: 6px 0 0;
  font-size: 20px;
  line-height: 1.35;
}

.footer {
  color: #979ba4;
  background: #0a0c0f;
}

.footer__main {
  display: grid;
  min-height: 150px;
  align-items: center;
  grid-template-columns: 220px 1fr auto;
  gap: 50px;
}

.brand--footer {
  padding: 9px;
  background: var(--white);
}

.brand--footer img {
  width: 210px;
}

.footer__main p {
  max-width: 450px;
  font-size: 13px;
}

.footer__main nav {
  display: flex;
  gap: 22px;
  color: #c7c9cd;
  font-size: 13px;
  font-weight: 700;
}

.footer__main nav a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #22252b;
  font-size: 11px;
}

.floating-call {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  display: none;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 10px 25px rgba(240, 74, 36, 0.38);
}

.floating-call svg {
  width: 24px;
  height: 24px;
}

.chat-widget {
  position: fixed;
  z-index: 110;
  right: 22px;
  bottom: 22px;
}

.chat-toggle {
  display: flex;
  min-height: 54px;
  padding: 0 20px;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.24);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.chat-toggle span {
  color: var(--lime);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(390px, calc(100vw - 28px));
  max-height: calc(100vh - 110px);
  max-height: calc(100dvh - 110px);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #d8dadd;
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.28);
}

.chat-panel[hidden] {
  display: none;
}

.chat-header {
  display: grid;
  min-height: 70px;
  padding: 12px 13px;
  align-items: center;
  grid-template-columns: 82px 1fr auto auto;
  gap: 9px;
  color: var(--white);
  background: var(--ink);
}

.chat-header img {
  width: 82px;
  height: 24px;
  padding: 3px;
  object-fit: contain;
  background: var(--white);
}

.chat-header strong,
.chat-header span {
  display: block;
  line-height: 1.25;
}

.chat-header strong {
  font-size: 13px;
}

.chat-header span {
  color: #aeb2ba;
  font-size: 10px;
}

.chat-header button {
  border: 0;
  color: #d5d7dc;
  background: transparent;
  cursor: pointer;
}

.chat-new {
  font-size: 11px;
}

.chat-close {
  font-size: 25px;
}

.chat-privacy {
  margin: 0;
  padding: 10px 14px;
  border-bottom: 1px solid #ececea;
  color: #666b73;
  background: #f6f6f3;
  font-size: 10px;
  line-height: 1.45;
}

.chat-privacy a {
  color: #155f9d;
  font-weight: 700;
  text-decoration: underline;
}

.chat-messages {
  display: flex;
  height: min(330px, 42vh);
  padding: 14px;
  overflow-y: auto;
  flex-direction: column;
  gap: 10px;
  background: #fafaf8;
}

.chat-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 12px;
  background: #eceeea;
  font-size: 12px;
}

.chat-message--user {
  align-self: flex-end;
  color: var(--white);
  background: var(--ink-soft);
}

.chat-message strong {
  display: block;
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 10px;
  text-transform: uppercase;
}

.chat-message p {
  margin: 0;
  white-space: pre-wrap;
}

.chat-message ul {
  margin: 8px 0 0;
  padding-left: 17px;
}

.chat-message a {
  color: #1765a8;
  text-decoration: underline;
}

.chat-prompts {
  display: flex;
  padding: 9px 12px 2px;
  overflow-x: auto;
  gap: 6px;
}

.chat-prompts button,
.chat-actions button,
.chat-actions a {
  flex: 0 0 auto;
  border: 1px solid #d8dadd;
  border-radius: 999px;
  color: #353941;
  background: var(--white);
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}

.chat-prompts button {
  padding: 6px 9px;
}

.chat-typing {
  padding: 5px 14px 0;
  color: var(--muted);
  font-size: 10px;
}

.chat-form {
  display: grid;
  padding: 10px 12px;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.chat-form textarea {
  min-height: 50px;
  max-height: 110px;
  padding: 9px 10px;
  resize: vertical;
  border: 1px solid #d6d8da;
  border-radius: 9px;
  font: inherit;
  font-size: 12px;
}

.chat-form button {
  padding: 0 13px;
  border: 0;
  border-radius: 9px;
  color: var(--white);
  background: var(--accent);
  font-weight: 900;
  cursor: pointer;
}

.chat-form button:disabled {
  opacity: 0.55;
}

.chat-actions {
  display: flex;
  padding: 0 12px 12px;
  gap: 6px;
}

.chat-actions button,
.chat-actions a {
  padding: 5px 8px;
}

.chat-summary {
  margin: 0 12px 8px;
  font-size: 11px;
}

.chat-summary summary {
  color: #41464e;
  font-weight: 800;
  cursor: pointer;
}

.chat-summary-form {
  display: grid;
  margin-top: 8px;
  gap: 8px;
}

.chat-summary-form label {
  display: grid;
  gap: 3px;
}

.chat-summary-form input[type="email"] {
  min-height: 34px;
  padding-inline: 8px;
  border: 1px solid #d6d8da;
  border-radius: 7px;
}

.chat-summary-form .chat-consent {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
}

.chat-summary-form button {
  min-height: 34px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.chat-send-note {
  margin: 0;
  padding: 0 12px 12px;
  color: #777c84;
  font-size: 9px;
  line-height: 1.4;
}

/* Preparation and appointment */
.preparation {
  background: #eceee9;
}

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

.preparation-card {
  overflow: hidden;
  border: 1px solid #d7dad3;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 19, 24, 0.05);
}

.preparation-card summary {
  display: flex;
  min-height: 76px;
  padding: 18px 20px;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  list-style: none;
}

.preparation-card summary::-webkit-details-marker {
  display: none;
}

.preparation-card summary::after {
  margin-left: auto;
  color: var(--accent);
  content: "+";
  font-size: 24px;
  font-weight: 500;
}

.preparation-card[open] summary::after {
  content: "−";
}

.preparation-card summary span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.preparation-card summary span svg {
  width: 19px;
  height: 19px;
}

.preparation-card summary strong {
  line-height: 1.25;
}

.preparation-card__body {
  padding: 0 20px 20px 72px;
  color: #4f555e;
  font-size: 14px;
}

.preparation-card__body p,
.preparation-card__body ul {
  margin: 0 0 12px;
}

.preparation-card__body ul {
  padding-left: 18px;
}

.preparation-note,
.safety-alert {
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: var(--accent-pale);
}

.preparation-card--warning {
  border-color: #f0a18d;
}

.safety-alert {
  color: #69210f;
  font-weight: 800;
}

.preparation-cta {
  display: flex;
  margin-top: 20px;
  padding: 22px 26px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 14px;
  color: var(--white);
  background: var(--ink);
}

.preparation-cta strong {
  font-size: 18px;
}

.preparation-cta p {
  margin: 2px 0 0;
  color: #bfc3ca;
  font-size: 13px;
}

.appointment {
  scroll-margin-top: 100px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(240, 74, 36, 0.18), transparent 32%),
    var(--ink);
}

.appointment__layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.55fr);
  gap: 64px;
  align-items: start;
}

.appointment__intro {
  position: sticky;
  top: 110px;
}

.appointment__intro h2 {
  margin: 8px 0 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.appointment__intro > p:not(.eyebrow) {
  color: #c6c9ce;
}

.appointment__contact {
  display: grid;
  margin-top: 28px;
  gap: 2px;
  color: #b7bbc2;
  font-size: 13px;
}

.appointment__contact a {
  color: var(--lime);
  font-size: 24px;
  font-weight: 900;
}

.appointment-form {
  position: relative;
  padding: 30px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.appointment-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.appointment-form label {
  display: grid;
  min-width: 0;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
}

.appointment-form label > span,
.appointment-form label > small {
  color: var(--accent);
}

.appointment-form label > small {
  display: inline;
  font-weight: 500;
}

.appointment-form input:not([type="checkbox"]),
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #cfd2d5;
  border-radius: 8px;
  color: var(--ink);
  background: #fbfbf9;
  font: inherit;
  font-size: 14px;
}

.appointment-form input:not([type="checkbox"]),
.appointment-form select {
  min-height: 46px;
}

.appointment-form textarea {
  resize: vertical;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(240, 74, 36, 0.14);
}

.appointment-form__wide {
  grid-column: 1 / -1;
}

.appointment-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.appointment-consent {
  display: flex !important;
  margin-top: 22px;
  align-items: flex-start;
  grid-template-columns: none;
  gap: 10px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.appointment-consent label {
  display: inline;
  color: #454a52;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.appointment-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 18px;
  accent-color: var(--accent);
}

.appointment-consent input:focus-visible {
  outline: 3px solid rgba(240, 74, 36, 0.32);
  outline-offset: 3px;
}

.appointment-consent span {
  color: #454a52 !important;
}

.appointment-consent a,
.appointment-clause a {
  color: #155f9d;
  text-decoration: underline;
}

.appointment-clause {
  margin: 10px 0 20px;
  color: #71767e;
  font-size: 11px;
  line-height: 1.5;
}

.appointment-turnstile {
  min-height: 66px;
  margin: 16px 0;
  overflow: hidden;
}

.appointment-turnstile[hidden] {
  display: none;
}

.appointment-submit[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.appointment-status {
  margin-top: 14px;
  padding: 0;
  font-size: 13px;
  font-weight: 750;
}

.appointment-status.is-success,
.appointment-status.is-error {
  padding: 12px 14px;
  border-radius: 8px;
}

.appointment-status.is-success {
  color: #16592b;
  background: #e6f6e9;
}

.appointment-status.is-error {
  color: #7a2512;
  background: var(--accent-pale);
}

.appointment-fallback {
  display: flex;
  margin-top: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.appointment-fallback[hidden] {
  display: none;
}

.appointment-fallback a,
.appointment-fallback button {
  padding: 8px 11px;
  border: 1px solid #cfd2d5;
  border-radius: 999px;
  color: #333840;
  background: var(--white);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

/* Legal pages */
.legal-page {
  background: #f5f5f2;
}

.service-header,
.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-header {
  position: relative;
  z-index: 20;
}

.service-header__inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.service-header__inner .brand img {
  width: 280px;
}

.service-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.service-header__nav > a:not(.button) {
  font-size: 13px;
  font-weight: 800;
}

.service-hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.service-hero__media,
.service-hero__overlay {
  position: absolute;
  inset: 0;
}

.service-hero__media {
  background-image: url("assets/realizacja-nevo-sky.webp");
  background-position: center 44%;
  background-size: cover;
  transform: scale(1.01);
}

.service-hero__overlay {
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.97) 0%, rgba(10, 12, 16, 0.86) 54%, rgba(10, 12, 16, 0.35) 100%),
    linear-gradient(0deg, rgba(10, 12, 16, 0.55), transparent 50%);
}

.service-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 580px;
  padding-block: 62px 76px;
  flex-direction: column;
  justify-content: center;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 42px;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: #bfc2c8;
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--white);
  font-weight: 800;
}

.service-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.service-hero__lead {
  max-width: 750px;
  margin: 28px 0 32px;
  color: #d5d7dc;
  font-size: 18px;
  line-height: 1.7;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-overview {
  padding-block: 92px;
  background: var(--white);
}

.service-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  align-items: start;
  gap: 90px;
}

.service-overview h2,
.service-detail h2,
.service-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.1;
  text-wrap: balance;
}

.service-highlights {
  display: grid;
  margin: 35px 0 0;
  padding: 0;
  gap: 17px;
  list-style: none;
}

.service-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 750;
}

.service-highlights span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  font-size: 12px;
}

.service-contact-card {
  display: flex;
  padding: 34px;
  flex-direction: column;
  border-top: 4px solid var(--lime);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.service-contact-card > span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-contact-card h2 {
  margin: 8px 0 16px;
  font-size: 27px;
}

.service-contact-card address {
  margin-bottom: 22px;
  color: #c4c7cd;
  font-style: normal;
}

.service-contact-card > a:not(.text-link) {
  margin-top: 5px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.service-contact-card .text-link {
  margin-top: 24px;
  color: var(--lime);
  font-size: 12px;
}

.service-detail {
  padding-block: 86px;
  background: var(--paper);
}

.service-detail--tinted {
  background: #eaeae5;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 110px minmax(0, 790px);
  justify-content: center;
  gap: 38px;
}

.service-detail__number {
  color: #d2d3ce;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.service-detail--tinted .service-detail__number {
  color: #c3c5be;
}

.service-detail p {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.service-faq {
  background: var(--white);
}

.related-services {
  color: var(--white);
  background: var(--ink);
}

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

.related-service {
  display: flex;
  min-height: 195px;
  padding: 26px;
  flex-direction: column;
  border: 1px solid #383b42;
  background: #171a20;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.related-service:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
}

.related-service span {
  color: #9599a2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-service strong {
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.25;
}

.related-service small {
  margin-top: auto;
  color: var(--lime);
  font-weight: 850;
}

.service-cta {
  padding-block: 76px;
  color: var(--white);
  background: var(--accent);
}

.service-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
}

.service-cta .eyebrow {
  color: var(--lime);
}

.service-cta p:not(.eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
}

.service-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-cta .button {
  border-color: var(--ink);
  background: var(--ink);
}

.service-cta .button--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.service-directory {
  padding-block: 25px;
  border-bottom: 1px solid #30333a;
  color: #b7bac1;
  background: var(--ink);
}

.service-directory .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 12px;
}

.service-directory strong {
  color: var(--white);
}

.service-directory a:hover,
.service-directory a[aria-current="page"] {
  color: var(--lime);
}

.legal-header__inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header .brand img {
  width: min(310px, 55vw);
}

.legal-content {
  max-width: 860px;
  padding-block: 70px;
}

.legal-content h1 {
  margin: 8px 0 18px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.legal-lead {
  color: var(--muted);
  font-size: 18px;
}

.legal-content section {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.legal-content h2,
.legal-content h3 {
  line-height: 1.2;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 25px;
}

.legal-content h3 {
  margin: 22px 0 6px;
  font-size: 17px;
}

.legal-content a {
  color: #155f9d;
  text-decoration: underline;
}

.legal-footer {
  padding: 24px 0;
  color: #c7c9cd;
  background: var(--ink);
}

.legal-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

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

@media (max-width: 820px) {
  .preparation-grid,
  .appointment__layout {
    grid-template-columns: 1fr;
  }

  .appointment__layout {
    gap: 30px;
  }

  .appointment__intro {
    position: static;
  }
}

@media (max-width: 560px) {
  .preparation-card__body {
    padding: 0 16px 16px;
  }

  .preparation-card summary {
    padding: 15px 16px;
  }

  .preparation-cta,
  .legal-header__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .preparation-cta .button,
  .legal-header .button {
    width: 100%;
  }

  .appointment-form {
    padding: 20px 16px;
  }

  .appointment-form__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .appointment-form__wide {
    grid-column: auto;
  }

  .legal-header__inner {
    padding-block: 18px;
  }

  .legal-content {
    padding-block: 45px;
  }
}

@media (max-width: 1000px) {
  .service-header__nav {
    gap: 14px;
  }

  .service-header__nav > a:not(.button) {
    display: none;
  }

  .service-overview__grid {
    gap: 48px;
  }

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

  .nav__links {
    gap: 14px;
  }

  .nav__links > a:not(.button) {
    font-size: 13px;
  }

  .brand img {
    width: 235px;
  }

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

  .about__grid {
    gap: 55px;
  }

  .contact__grid {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .service-header__inner {
    min-height: 74px;
  }

  .service-header__inner .brand img {
    width: 220px;
  }

  .service-hero,
  .service-hero__content {
    min-height: 540px;
  }

  .service-hero__content {
    padding-block: 48px 60px;
  }

  .breadcrumbs {
    margin-bottom: 32px;
  }

  .service-overview__grid,
  .service-cta__inner {
    grid-template-columns: 1fr;
  }

  .service-overview__grid {
    gap: 55px;
  }

  .service-detail__grid {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 24px;
  }

  .service-detail__number {
    font-size: 52px;
  }

  .service-cta__inner {
    gap: 34px;
  }

  .service-cta__actions {
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .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__links {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 72px);
    padding: 38px 30px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    color: var(--white);
    background: var(--ink);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links > a:not(.button) {
    padding: 15px 0;
    border-bottom: 1px solid #2f3238;
    font-size: 18px;
  }

  .nav__links > a:not(.button)::after {
    display: none;
  }

  .nav__links .button {
    margin-top: 26px;
  }

  .hero,
  .hero__content {
    min-height: 680px;
  }

  .hero__content {
    padding-top: 70px;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(10, 12, 16, 0.94), rgba(10, 12, 16, 0.55));
  }

  .hero__trust {
    margin-top: 50px;
  }

  .section {
    padding-block: 80px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .recommendation__card .button {
    grid-column: 1 / -1;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .about__visual img {
    min-height: 400px;
  }

  .about__badge {
    right: 20px;
  }

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

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

  .price-columns,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .featured-media {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .chip-tuning__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .contact__grid {
    gap: 60px;
  }

  .footer__main {
    padding-block: 40px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer__main nav {
    margin-top: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .service-header__inner .brand img {
    width: 190px;
  }

  .service-header__nav .button {
    min-height: 42px;
    padding-inline: 15px;
  }

  .service-hero,
  .service-hero__content {
    min-height: 570px;
  }

  .service-hero__media {
    background-position: 60% center;
  }

  .service-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
    overflow-wrap: anywhere;
  }

  .service-hero__lead {
    font-size: 16px;
  }

  .service-hero__actions {
    display: grid;
  }

  .service-hero__actions .button,
  .service-cta__actions .button {
    width: 100%;
  }

  .service-overview,
  .service-detail {
    padding-block: 65px;
  }

  .service-detail__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-detail__number {
    font-size: 42px;
  }

  .service-detail p {
    font-size: 16px;
  }

  .service-contact-card {
    padding: 28px 24px;
  }

  .related-services__grid {
    grid-template-columns: 1fr;
  }

  .related-service {
    min-height: 165px;
  }

  .service-cta__actions {
    flex-direction: column;
  }

  .service-directory .container {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .brand img {
    width: 205px;
  }

  .hero,
  .hero__content {
    min-height: 700px;
  }

  .hero__media {
    background-position: 59% center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(35px, 10.2vw, 41px);
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .hero h1 span {
    display: block;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .hero__trust div:nth-child(3) {
    display: none;
  }

  .hero__trust div {
    padding-right: 12px;
  }

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

  .recommendation__card {
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }

  .recommendation__mark {
    width: 64px;
    height: 64px;
  }

  .recommendation__card .button {
    grid-column: auto;
  }

  .service-card {
    min-height: 330px;
  }

  .section-heading h2,
  .about h2,
  .contact h2 {
    font-size: 38px;
  }

  .about__visual img {
    min-height: 330px;
  }

  .about__badge {
    right: 12px;
    bottom: -45px;
    width: 170px;
    height: 112px;
  }

  .about__badge span {
    font-size: 48px;
  }

  .price-card__head,
  .price-list {
    padding-right: 18px;
    padding-left: 18px;
  }

  .price-card__subhead {
    margin-inline: 18px;
  }

  .price-list > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .pricing__cta {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .vehicle-scope {
    padding: 30px 22px;
  }

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

  .vehicle-scope__systems {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 240px;
  }

  .gallery__large {
    grid-row: auto;
  }

  .faq__cta {
    align-items: stretch;
    flex-direction: column;
  }

  .faq__cta .button {
    width: 100%;
  }

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

  .featured-media__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .featured-media__actions .button {
    width: 100%;
  }

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

  .external-profiles__grid {
    grid-template-columns: 1fr;
  }

  .location-card__map {
    height: 260px;
  }

  .location-card__body {
    align-items: stretch;
    flex-direction: column;
  }

  .footer__bottom {
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .floating-call {
    display: grid;
  }

  .chat-widget {
    right: 14px;
    bottom: 86px;
  }

  .chat-panel {
    position: fixed;
    right: 10px;
    bottom: 154px;
    left: 10px;
    width: auto;
    max-height: calc(100vh - 168px);
    max-height: calc(100dvh - 168px);
    overflow-y: auto;
  }

  .chat-messages {
    height: min(220px, 30vh);
  }

  .chat-toggle {
    min-height: 48px;
    padding-inline: 15px;
  }
}

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

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