:root {
  --sp-orange: #f17e01;
  --sp-teal: #005550;
  --sp-black: #000000;
  --sp-text: #1a1a1a;
  --sp-muted: rgba(0, 0, 0, 0.65);
  --sp-border: rgba(0, 85, 80, 0.35);
  --sp-container: 1660px;
}

.service-page {
  background: #ffffff;
  color: var(--sp-text);
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.service-page * {
  box-sizing: border-box;
}

.sp-container {
  width: min(var(--sp-container), calc(100% - 48px));
  margin: 0 auto;
}

/* ---------- Hero ---------- */

.sp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #14110c;
}

.sp-hero__media {
  position: absolute;
  inset: 0;
}

.sp-hero__img--road {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
}

.sp-hero__img--truck {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  max-width: 1050px;
  height: 100% !important;
  max-height: none;
  object-fit: cover;
  object-position: left center;
  z-index: 2;
  filter: drop-shadow(-30px 25px 25px rgba(0, 0, 0, 0.45));
  animation: sp-truck-drive-in 1.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.2s;
}

@keyframes sp-truck-drive-in {
  0% {
    transform: translateX(28%) scale(0.94);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-hero__img--truck {
    animation: none;
  }
}

.sp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 8, 5, 0.82) 0%, rgba(10, 8, 5, 0.5) 40%, rgba(10, 8, 5, 0) 62%);
}

.sp-hero__content {
  position: relative;
  z-index: 3;
  padding: clamp(48px, 8vw, 96px) 0;
  max-width: 560px;
  transform: translateY(clamp(-70px, -6vw, -30px));
}

.sp-breadcrumb {
  display: block;
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.sp-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.sp-breadcrumb a:hover {
  text-decoration: underline;
}

.sp-breadcrumb span {
  color: rgba(255, 255, 255, 0.85);
}

.sp-hero__title {
  margin: 0 0 22px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
}

.sp-hero__lead {
  margin: 0 0 40px;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  line-height: 1.5;
  color: #ffffff;
  max-width: 560px;
}

/* ---------- Buttons ---------- */

.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  min-height: 68px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.01em;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.25));
  transition: color 0.2s ease, transform 0.2s ease;
}

.sp-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.sp-btn--orange {
  background: var(--sp-orange);
  color: #ffffff !important;
}

.sp-btn--orange:hover {
  color: var(--sp-teal) !important;
}

.sp-btn--teal {
  background: var(--sp-teal);
  color: #ffffff !important;
}

.sp-btn--teal:hover {
  color: var(--sp-orange) !important;
}

/* ---------- Section scaffolding ---------- */

.sp-section {
  padding: clamp(56px, 6vw, 96px) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sp-section:last-of-type {
  border-bottom: none;
}

.sp-eyebrow {
  display: block;
  margin: 0 0 40px;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--sp-orange);
}

/* ---------- Accordion (numbered sections) ---------- */

.sp-accordion-item:first-of-type {
  margin-top: clamp(32px, 5vw, 64px);
}

.sp-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  padding: clamp(24px, 3vw, 32px) 0 !important;
  margin: 0;
  border: none !important;
  background: none !important;
  font: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.sp-accordion-trigger::before,
.sp-accordion-trigger::after {
  content: none !important;
}

.sp-accordion-trigger:hover .sp-eyebrow {
  color: var(--sp-teal);
}

.sp-accordion-trigger:hover .sp-accordion-chevron {
  color: var(--sp-teal);
}

.sp-accordion-trigger .sp-eyebrow {
  margin: 0;
  transition: color 0.2s ease;
}

.sp-accordion-trigger:focus-visible {
  outline: 2px solid var(--sp-orange);
  outline-offset: 4px;
}

.sp-accordion-chevron {
  flex: none;
  width: clamp(20px, 2.4vw, 26px);
  height: clamp(20px, 2.4vw, 26px);
  color: var(--sp-orange);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.2s ease;
}

.sp-accordion-item.is-open .sp-accordion-chevron {
  transform: rotate(180deg);
}

.sp-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sp-accordion-item.is-open .sp-accordion-panel {
  grid-template-rows: 1fr;
}

.sp-accordion-panel-inner {
  overflow: hidden;
}

.sp-accordion-panel-inner .sp-container {
  padding-bottom: clamp(32px, 5vw, 64px);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.sp-accordion-item.is-open .sp-accordion-panel-inner .sp-container {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .sp-accordion-chevron,
  .sp-accordion-panel,
  .sp-accordion-panel-inner .sp-container {
    transition: none;
  }
}

.sp-block {
  margin-bottom: 56px;
}

.sp-block:last-child {
  margin-bottom: 0;
}

.sp-h3 {
  display: inline-block;
  margin: 0 0 24px;
  padding-bottom: 16px;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--sp-black);
  border-bottom: 2px solid var(--sp-orange);
}

.sp-lead-heading {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--sp-black);
}

.sp-text {
  margin: 0 0 16px;
  font-size: 1.15rem;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--sp-text);
}

.sp-text:last-child {
  margin-bottom: 0;
}

.sp-text strong,
.sp-text b {
  font-weight: 700;
}

/* ---------- Feature grids (icon + title + text) ---------- */

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

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

.sp-grid--rows {
  row-gap: 56px;
}

.sp-feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-feature__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sp-feature__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--sp-orange);
}

.sp-feature__icon svg {
  width: 100%;
  height: 100%;
}

.sp-feature__icon--lg {
  width: 40px;
  height: 40px;
}

.sp-feature__icon--sm {
  width: 12px;
  height: 12px;
}

.sp-feature__icon--plain img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sp-feature__title {
  margin: 0;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--sp-black);
}

.sp-feature__text {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--sp-text);
}

/* checklist (section 01, checkmarks) */

.sp-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 80px;
}

.sp-checklist .sp-feature__icon {
  width: 32px;
  height: 32px;
}

/* plain list (географія) */

.sp-plain-list {
  margin: 0;
  padding-left: 1.3em;
  list-style: disc;
}

.sp-plain-list li {
  font-size: 1.5rem;
  line-height: 2;
  text-transform: uppercase;
  color: var(--sp-black);
}

/* order steps (оформлення замовлення) */

.sp-order-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-order-list li {
  display: flex;
  flex-direction: column;
}

.sp-order-list__title {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--sp-black);
}

.sp-order-list__text {
  font-size: 1.1rem;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--sp-text);
}

/* dash list (обслуговуємо / виконуємо ...) */

.sp-dash-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.sp-dash-list li {
  position: relative;
  padding-left: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--sp-text);
}

.sp-dash-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sp-orange);
}

/* ---------- Service & repair (section 04) ---------- */

.sp-repair-block {
  margin-bottom: 64px;
}

.sp-repair-block:last-child {
  margin-bottom: 0;
}

.sp-repair-intro {
  margin: 0 0 20px;
  font-size: 1.15rem;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--sp-text);
}

.sp-repair-outro {
  margin: 20px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--sp-muted);
}

/* ---------- Orange band: why us / cta / partnership ---------- */

.sp-band {
  background: var(--sp-orange);
  padding: clamp(56px, 6vw, 96px) 0;
}

.sp-band > .sp-container {
  margin-bottom: clamp(56px, 7vw, 100px);
}

.sp-band > .sp-container:last-child {
  margin-bottom: 0;
}

/* ---------- Why choose us ---------- */

.sp-why__intro {
  max-width: 780px;
  margin: 0 0 40px;
}

.sp-why__heading {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--sp-black);
}

.sp-why__text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--sp-text);
}

.sp-why__box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--sp-teal);
  padding: 32px;
  gap: 24px;
}

.sp-why__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 12px;
  position: relative;
}

.sp-why__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: rgba(0, 0, 0, 0.15);
}

.sp-why__icon {
  flex: none;
  width: 91px;
  height: 91px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-why__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sp-why__item-title {
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--sp-black);
}

.sp-why__item-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--sp-text);
}

/* ---------- CTA ---------- */

.sp-cta__title {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--sp-black);
}

.sp-cta__list {
  margin: 0 0 40px;
  padding-left: 1.3em;
  list-style: disc;
  max-width: 900px;
}

.sp-cta__list li {
  font-size: 1.25rem;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--sp-black);
}

/* ---------- Partnership ---------- */

.sp-partner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(60px, 10vw, 150px);
  flex-wrap: wrap;
}

.sp-partner__title {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--sp-black);
}

.sp-partner__subtitle {
  margin: 0 0 32px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--sp-black);
}

.sp-partner__logo {
  flex: none;
  width: 180px;
  height: 180px;
}

.sp-partner__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .sp-grid,
  .sp-checklist,
  .sp-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-why__box {
    grid-template-columns: 1fr;
  }

  .sp-why__item:not(:last-child)::after {
    display: none;
  }

  .sp-why__item {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .sp-why__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

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

@media (max-width: 720px) {
  .sp-hero {
    min-height: 100vh;
  }

  .sp-grid,
  .sp-checklist,
  .sp-grid--3 {
    grid-template-columns: 1fr;
  }

  .sp-btn {
    width: 100%;
  }

  .sp-partner__logo {
    width: 140px;
    height: 140px;
  }
}
