/* ============================================================
   AutoValley Services Page – Premium Styles
   Namespace: sv-  (services)
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   Scroll Reveal
   ────────────────────────────────────────────────────────── */
.services-page {

  --sv-space-2: var(--space-2, 8px);
  --sv-space-4: var(--space-4, 16px);
  --sv-space-5: var(--space-5, 20px);
  --sv-space-6: var(--space-6, 24px);
  --sv-space-8: var(--space-8, 32px);
  --sv-space-10: var(--space-10, 40px);
  --sv-space-12: var(--space-12, 48px);
  --sv-space-20: var(--space-20, 80px);
}

.sv-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1),
              transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.sv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────── */
.sv-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px var(--sv-space-6) var(--sv-space-20);
}

.sv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sv-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.35) saturate(0.7);
}

.sv-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 6, 9, 0.7) 0%,
      rgba(5, 6, 9, 0.3) 35%,
      rgba(5, 6, 9, 0.5) 65%,
      rgba(5, 6, 9, 0.95) 100%
    ),
    radial-gradient(ellipse at 30% 50%, rgba(185, 5, 4, 0.15) 0%, transparent 60%);
}

.sv-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.sv-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sv-space-2);
  margin-bottom: var(--sv-space-8);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.sv-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.sv-hero__breadcrumb a:hover {
  color: #fff;
}

.sv-hero__breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.sv-hero__breadcrumb span[aria-current] {
  color: rgba(255, 255, 255, 0.8);
}

.sv-hero__kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b90504;
  text-shadow: 0 0 24px rgba(185, 5, 4, 0.8);
  margin-bottom: var(--sv-space-5);
}

.sv-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
  margin-bottom: var(--sv-space-5);
}

.sv-hero__title-accent {
  background: linear-gradient(135deg, #b90504, #ff4d4d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sv-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto var(--sv-space-10);
}

.sv-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: var(--sv-space-10);
}

.sv-hero__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 16px 24px;
  /* background:
    linear-gradient(168deg, rgba(18, 18, 28, 0.72) 0%, rgba(10, 10, 16, 0.78) 100%); */
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    transform 0.45s cubic-bezier(0.03, 0.98, 0.52, 0.99),
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.45s ease;
}

.sv-hero__stats.is-visible .sv-hero__stat {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--stat-delay, 0s);
}

.sv-hero__stat:hover {
  transform: translateY(-7px);
  border-color: rgba(185, 5, 4, 0.28);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(185, 5, 4, 0.1),
    0 0 32px rgba(185, 5, 4, 0.07);
}

.sv-hero__stat-icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.sv-hero__stat-ring {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
}

.sv-hero__stat-ring-track {
  stroke: rgba(255, 255, 255, 0.06);
}

.sv-hero__stat-ring-fill {
  stroke: rgba(185, 5, 4, 0.22);
  stroke-linecap: round;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.sv-hero__stat-ring-fill--pct {
  stroke: #b90504;
  filter: drop-shadow(0 0 4px rgba(185, 5, 4, 0.6));
}

.sv-hero__stat.is-counted .sv-hero__stat-ring-fill {
  stroke-dashoffset: 0;
}

.sv-hero__stat-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #b90504;
  transition: color 0.3s ease, transform 0.35s ease;
}

.sv-hero__stat:hover .sv-hero__stat-icon {
  color: #ff4d4d;
  transform: scale(1.1);
}

.sv-hero__stat-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.sv-hero__stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.sv-hero__stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  line-height: 1.4;
}

.sv-hero__stat-accent {
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, rgba(185, 5, 4, 0.7), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.sv-hero__stat:hover .sv-hero__stat-accent {
  opacity: 1;
  transform: scaleX(1);
}

.sv-hero__stat.is-counted .sv-hero__stat-value {
  animation: sv-stat-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes sv-stat-pop {
  0%   { transform: scale(1); }
  55%  { transform: scale(1.14); }
  100% { transform: scale(1); }
}

.sv-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sv-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.sv-hero__mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.sv-hero__wheel {
  width: 4px;
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  animation: sv-scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes sv-scroll-wheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ──────────────────────────────────────────────────────────
   CATALOGUE SECTION
   ────────────────────────────────────────────────────────── */
.sv-catalogue {
  padding: 100px 24px;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 9, 1) 0%,
    rgba(10, 8, 14, 1) 50%,
    rgba(5, 6, 9, 1) 100%
  );
}

.sv-catalogue__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.sv-catalogue__header {
  text-align: center;
  margin-bottom: 48px;
}

.sv-catalogue__header .section-kicker {
  color: #b90504;
  text-shadow: 0 0 16px rgba(185, 5, 4, 0.6);
}

/* ──────────────────────────────────────────────────────────
   FILTER TABS
   ────────────────────────────────────────────────────────── */
.sv-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.sv-filters__btn {
  padding: 10px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sv-filters__btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}


.sv-filters__btn:focus-visible {
  outline: 2px solid rgba(185, 5, 4, 0.9);
  outline-offset: 3px;
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(185, 5, 4, 0.5);
}

.sv-filters__btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(185, 5, 4, 0.85), rgba(70, 8, 6, 0.9));
  border-color: rgba(185, 5, 4, 0.5);
  box-shadow: 0 0 20px rgba(185, 5, 4, 0.35);
}

/* ──────────────────────────────────────────────────────────
   SERVICE CARDS GRID
   ────────────────────────────────────────────────────────── */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.sv-card {
  background: rgba(10, 10, 16, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.48);
  transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.sv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.56), 0 0 20px rgba(185, 5, 4, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.sv-card.is-hidden {
  display: none;
}

.sv-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.sv-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sv-card:hover .sv-card__media img {
  transform: scale(1.06);
}

.sv-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 16, 0.9) 100%);
  pointer-events: none;
}

.sv-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(185, 5, 4, 0.7);
  border: 1px solid rgba(185, 5, 4, 0.5);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sv-card__body {
  padding: 24px;
}

.sv-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sv-card__desc {

  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.sv-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sv-card__list li {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.sv-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b90504;
  box-shadow: 0 0 6px rgba(185, 5, 4, 0.5);
}

.sv-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sv-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #b90504;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease, gap 0.25s ease;
  padding: 0;
}

.sv-card__cta:hover {
  color: #ff4d4d;
  gap: 12px;
}

.sv-card__cta svg {
  transition: transform 0.25s ease;
}

.sv-card__cta:hover svg {
  transform: translateX(3px);
}

.sv-card__quote-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ──────────────────────────────────────────────────────────
   EQUIPMENT SHOWCASE
   ────────────────────────────────────────────────────────── */
.sv-equipment {
  position: relative;
  padding: 104px 24px;
  background: #050609;
  overflow: hidden;
}

.sv-equipment::before,
.sv-equipment::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(32px, 6vw, 88px);
  z-index: 1;
  pointer-events: none;
}

.sv-equipment::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 6, 9, 0.5) 0%, rgba(5, 6, 9, 0) 100%);
}

.sv-equipment::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 6, 9, 0.5) 0%, rgba(5, 6, 9, 0) 100%);
}

.sv-equipment__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sv-equipment__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}

.sv-equipment__glow--1 {
  width: 480px;
  height: 480px;
  top: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(185, 5, 4, 0.22) 0%, transparent 70%);
}

.sv-equipment__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -12%;
  right: -4%;
  background: radial-gradient(circle, rgba(185, 5, 4, 0.12) 0%, transparent 70%);
}

.sv-equipment__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.sv-equipment__header {
  text-align: center;
  margin-bottom: 64px;
}

.sv-equipment__header .section-kicker {
  color: #b90504;
  text-shadow: 0 0 12px rgba(185, 5, 4, 0.35);
}

.sv-equipment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Equipment Card ── */
.eq-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(12, 12, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.48);
  transition:
    transform 0.45s cubic-bezier(0.03, 0.98, 0.52, 0.99),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.eq-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 5, 4, 0.28);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(185, 5, 4, 0.08),
    0 0 24px rgba(185, 5, 4, 0.06);
}

.eq-card__visual {
  position: relative;
  height: 176px;
  overflow: hidden;
}

.eq-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  will-change: transform;
}

.eq-card:hover .eq-card__visual img {
  transform: scale(1.08);
}

.eq-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 9, 0.1) 0%,
    rgba(5, 6, 9, 0.35) 50%,
    rgba(12, 12, 18, 0.95) 100%
  );
  pointer-events: none;
  transition: background 0.4s ease;
}

.eq-card:hover .eq-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(5, 6, 9, 0.05) 0%,
    rgba(5, 6, 9, 0.25) 50%,
    rgba(12, 12, 18, 0.92) 100%
  );
}

.eq-card__number {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 10px;
  line-height: 1;
}

.eq-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(185, 5, 4, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(185, 5, 4, 0.5);
  border-radius: 999px;
  padding: 5px 14px;
  line-height: 1.3;
  box-shadow: 0 2px 12px rgba(185, 5, 4, 0.3);
}

.eq-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 28px;
}

.eq-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
  text-align: center;
}

.eq-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-align: justify;
}

/* ──────────────────────────────────────────────────────────
   PROCESS TIMELINE
   ────────────────────────────────────────────────────────── */
.sv-process {
  padding: 88px 24px;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 9, 1) 0%,
    rgba(12, 8, 10, 1) 50%,
    rgba(5, 6, 9, 1) 100%
  );
}

.sv-process__inner {
  max-width: 800px;
  margin: 0 auto;
}

.sv-process__header {
  text-align: center;
  margin-bottom: 64px;
}

.sv-process__header .section-kicker {
  color: #b90504;
  text-shadow: 0 0 12px rgba(185, 5, 4, 0.35);
}

.sv-process__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-process__line {
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(185, 5, 4, 0.5) 0%,
    rgba(185, 5, 4, 0.15) 100%
  );
}

.sv-process__step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 34px 0;
  position: relative;
}

.sv-process__dot {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(185, 5, 4, 0.9), rgba(70, 8, 6, 0.95));
  border: 2px solid rgba(185, 5, 4, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(185, 5, 4, 0.22), 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.sv-process__dot span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.sv-process__content {
  padding-top: 6px;
}

.sv-process__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.sv-process__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

/* ──────────────────────────────────────────────────────────
   TRUST & GUARANTEES
   ────────────────────────────────────────────────────────── */
.sv-trust {
  padding: 124px 24px 100px;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 9, 1) 0%,
    rgba(8, 10, 14, 1) 50%,
    rgba(5, 6, 9, 1) 100%
  );
}

.sv-trust__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.sv-trust__header {
  text-align: center;
  margin-bottom: 64px;
}

.sv-trust__header .section-kicker {
  color: #b90504;
  text-shadow: 0 0 12px rgba(185, 5, 4, 0.35);
}

.sv-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sv-trust__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 28px 32px;
  background: linear-gradient(
    168deg,
    rgba(14, 14, 22, 0.95) 0%,
    rgba(8, 8, 14, 0.98) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.48);
  transition:
    transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.sv-trust__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b90504, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sv-trust__card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 5, 4, 0.2);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.56), 0 0 20px rgba(185, 5, 4, 0.08);
}

.sv-trust__card:hover::before {
  opacity: 1;
}

.sv-trust__icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.sv-trust__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(185, 5, 4, 0.08);
  border: 1px solid rgba(185, 5, 4, 0.18);
  color: #b90504;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.sv-trust__card:hover .sv-trust__icon {
  background: rgba(185, 5, 4, 0.14);
  border-color: rgba(185, 5, 4, 0.3);
  box-shadow: 0 4px 24px rgba(185, 5, 4, 0.2);
}

.sv-trust__icon-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 1px solid rgba(185, 5, 4, 0.12);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sv-trust__card:hover .sv-trust__icon-pulse {
  opacity: 1;
  transform: scale(1);
}

.sv-trust__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.sv-trust__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  text-align: justify;
}

.sv-trust__highlight {
  display: inline-block;
  margin-top: auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b90504;
  background: rgba(185, 5, 4, 0.06);
  border: 1px solid rgba(185, 5, 4, 0.15);
  border-radius: 999px;
  padding: 6px 16px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.sv-trust__card:hover .sv-trust__highlight {
  background: rgba(185, 5, 4, 0.12);
  border-color: rgba(185, 5, 4, 0.3);
}

.sv-trust__cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 40px;
  background: rgba(185, 5, 4, 0.06);
  border: 1px solid rgba(185, 5, 4, 0.15);
  border-radius: 16px;
}

.sv-trust__cta-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.sv-trust__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, rgba(185, 5, 4, 0.9), rgba(70, 8, 6, 0.95));
  border: 1px solid rgba(185, 5, 4, 0.4);
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sv-trust__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 5, 4, 0.35);
}

.sv-trust__cta-btn svg {
  transition: transform 0.25s ease;
}

.sv-trust__cta-btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .sv-trust__cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
}

/* ──────────────────────────────────────────────────────────
   FAQ ACCORDION
   ────────────────────────────────────────────────────────── */
.sv-faq {
  padding: 100px 24px;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 9, 1) 0%,
    rgba(10, 10, 16, 1) 50%,
    rgba(5, 6, 9, 1) 100%
  );
}

.sv-faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

.sv-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.sv-faq__header .section-kicker {
  color: #b90504;
  text-shadow: 0 0 16px rgba(185, 5, 4, 0.6);
}

.sv-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv-faq__item {
  background: rgba(10, 10, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.sv-faq__item.is-open {
  border-color: rgba(185, 5, 4, 0.25);
}

.sv-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s ease;
}

.sv-faq__trigger:hover {
  color: #fff;
}

.sv-faq__chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.35s ease, color 0.35s ease;
}

.sv-faq__item.is-open .sv-faq__chevron {
  transform: rotate(180deg);
  color: #b90504;
}

.sv-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.sv-faq__answer p {
  padding: 0 24px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}


/* ──────────────────────────────────────────────────────────
   SERVICE MODAL
   ────────────────────────────────────────────────────────── */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

.service-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.service-modal__container {
  position: relative;
  width: 92%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  background: rgba(14, 14, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(185, 5, 4, 0.1);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-modal[aria-hidden="false"] .service-modal__container {
  transform: translateY(0) scale(1);
}

.service-modal__container::-webkit-scrollbar {
  width: 6px;
}

.service-modal__container::-webkit-scrollbar-track {
  background: transparent;
}

.service-modal__container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}

.service-modal__close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  z-index: 2;
}

.service-modal__close:hover {
  background: rgba(185, 5, 4, 0.2);
  color: #fff;
}

.service-modal__content {
  padding: 32px 36px 36px;
}

.service-modal__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.25;
}

.service-modal__body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.service-modal__body p {
  margin-bottom: 16px;
}

.service-modal__body h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 24px 0 10px;
}

.service-modal__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.service-modal__body ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
}

.service-modal__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b90504;
}

.service-modal__cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sv-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  text-decoration: none;
  background:
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.2), transparent 58%),
    linear-gradient(135deg, rgba(185, 5, 4, 0.95), rgba(70, 8, 6, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(185, 5, 4, 0.5), 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sv-modal__btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px rgba(185, 5, 4, 0.65), 0 12px 28px rgba(0, 0, 0, 0.6);
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE – 1024px
   ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sv-hero {
    min-height: 80vh;
    padding: 120px 20px 60px;
  }

  .sv-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sv-hero__stat {
    padding: 22px 14px 20px;
  }

  .sv-hero__stat-value {
    font-size: 1.5rem;
  }

  .sv-catalogue,
  .sv-equipment,
  .sv-process,
  .sv-trust,
  .sv-faq {
    padding: 80px 20px;
  }

  .sv-equipment {
    padding: 68px 20px;
  }

  .sv-process {
    padding: 68px 20px;
  }

  .sv-trust {
    padding-top: 96px;
  }

  .sv-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }

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

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

/* ──────────────────────────────────────────────────────────
   RESPONSIVE – 768px
   ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sv-hero {
    min-height: 70vh;
    padding: 110px 16px 48px;
  }

  .sv-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sv-hero__stat {
    padding: 20px 12px 18px;
    gap: 12px;
  }

  .sv-hero__stat-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .sv-hero__stat-ring {
    width: 48px;
    height: 48px;
  }

  .sv-hero__stat-value {
    font-size: 1.35rem;
  }

  .sv-hero__stat-label {
    font-size: 0.64rem;
  }

  .sv-hero__ctas {
    flex-direction: column;
    gap: 12px;
  }

  .sv-hero__ctas .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .sv-hero__scroll {
    display: none;
  }

  .sv-catalogue,
  .sv-equipment,
  .sv-process,
  .sv-trust,
  .sv-faq {
    padding: 64px 16px;
  }

  .sv-equipment {
    padding: 56px 16px;
  }

  .sv-process {
    padding: 56px 16px;
  }

  .sv-trust {
    padding-top: 80px;
  }

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

  .sv-filters {
    gap: 8px;
    margin-bottom: 32px;
  }

  .sv-filters__btn {
    padding: 8px 16px;
    font-size: 0.72rem;
  }

  .sv-card__media {
    height: 180px;
  }

  .sv-equipment__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .eq-card__visual {
    height: 160px;
  }

  .sv-process__inner {
    max-width: 100%;
  }

  .sv-process__line {
    left: 20px;
  }

  .sv-process__step {
    gap: 20px;
    padding: 24px 0;
  }

  .sv-process__dot {
    width: 40px;
    height: 40px;
  }

  .sv-trust__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-modal__content {
    padding: 24px 24px 28px;
  }

  .service-modal__container {
    width: 96%;
    max-height: 90vh;
  }
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE – 480px
   ────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .sv-hero {
    min-height: auto;
    padding: 100px 14px 40px;
  }

  .sv-hero__subtitle {
    font-size: 0.9rem;
  }

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

  .sv-hero__stat {
    padding: 16px 10px 14px;
    gap: 10px;
    border-radius: 16px;
  }

  .sv-hero__stat-icon-wrap {
    width: 42px;
    height: 42px;
  }

  .sv-hero__stat-ring {
    width: 42px;
    height: 42px;
  }

  .sv-hero__stat-value {
    font-size: 1.15rem;
  }

  .sv-hero__stat-label {
    font-size: 0.6rem;
  }

  .sv-catalogue,
  .sv-equipment,
  .sv-process,
  .sv-trust,
  .sv-faq {
    padding: 48px 14px;
  }

  .sv-equipment {
    padding: 40px 14px;
  }

  .sv-process {
    padding: 40px 14px;
  }

  .sv-trust {
    padding-top: 64px;
  }

  .sv-card__body {
    padding: 20px 18px;
  }

  .sv-equipment__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .eq-card__visual {
    height: 142px;
  }

  .eq-card__body {
    padding: 20px 20px 24px;
  }

  .eq-card__title {
    font-size: 0.95rem;
  }

  .sv-equipment__glow {
    width: 280px;
    height: 280px;
  }

  .sv-process__step {
    gap: 16px;
  }

  .sv-process__line {
    left: 18px;
  }

  .sv-process__dot {
    width: 36px;
    height: 36px;
  }

  .sv-process__dot span {
    font-size: 0.7rem;
  }

  .sv-faq__trigger {
    padding: 16px 18px;
    font-size: 0.86rem;
  }

  .sv-faq__answer p {
    padding: 0 18px 16px;
    font-size: 1rem;
  }

  .service-modal__content {
    padding: 20px 18px 24px;
  }

  .service-modal__title {
    font-size: 1.25rem;
  }
}

/* ──────────────────────────────────────────────────────────
   XENON HEADLIGHT AMBIENCE
   ────────────────────────────────────────────────────────── */
.xenon-ambience {
  --xenon-intensity: 0;
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: var(--xenon-intensity);
  transition: opacity 0.35s linear;
  will-change: opacity;
  mix-blend-mode: screen;
}

.xenon-ambience__beam {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.xenon-ambience__beam--top {
  width: 60%;
  height: 320px;
  top: -80px;
  left: 20%;
  background: radial-gradient(
    ellipse at center,
    rgba(220, 235, 255, 0.18) 0%,
    rgba(200, 222, 250, 0.08) 40%,
    transparent 70%
  );
}

.xenon-ambience__beam--left {
  width: 300px;
  height: 50%;
  top: 25%;
  left: -60px;
  background: radial-gradient(
    ellipse at center,
    rgba(210, 230, 255, 0.12) 0%,
    rgba(200, 222, 250, 0.04) 50%,
    transparent 70%
  );
}

.xenon-ambience__beam--right {
  width: 300px;
  height: 50%;
  top: 30%;
  right: -60px;
  background: radial-gradient(
    ellipse at center,
    rgba(210, 230, 255, 0.12) 0%,
    rgba(200, 222, 250, 0.04) 50%,
    transparent 70%
  );
}

.xenon-ambience__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(230, 243, 255, 0.0) 0%,
    rgba(220, 235, 255, 0.03) 30%,
    rgba(210, 228, 250, 0.06) 60%,
    rgba(200, 222, 250, 0.1) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .xenon-ambience {
    transition: none;
  }
}
