/* ==============================
   ATX BRAKE MOBILE - SERVICES DESKTOP
   Optimized Service Page CSS

   Controls only Services page content.
   Header and footer are controlled by:
   assets/css/header-footer-desktop.css
============================== */

/* ==============================
   RESET / TOKENS
============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-red-hover: var(--brand-red-dark);

  --service-shell-max: 1909px;
  --service-inner-max: 1668px;
  --service-shell-gutter: 96px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  background: var(--page-bg);
  color: #111111;
  overflow-x: hidden;
}

button,
input,
select {
  font-family: inherit;
}

.services-page {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

/* ==============================
   SERVICES HERO
   Banner source: 2172 x 724
============================== */

.services-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2172 / 724;
  background-color: #ffffff;
  background-image: url("../images/service/banner.png");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* ==============================
   HERO LEFT TEXT
============================== */

.services-hero-copy {
  position: absolute;
  left: 3.15%;
  top: 9.4%;
  width: 44.5%;
  max-width: 900px;
}

.services-hero-kicker {
  margin-bottom: clamp(12px, 0.95vw, 20px);
}

.services-hero-copy h1 {
  color: #050505;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(42px, 3.45vw, 74px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.services-hero-copy h1 span {
  color: var(--brand-red);
  white-space: nowrap;
}

.services-hero-subtitle {
  width: 88%;
  margin-top: clamp(18px, 1.35vw, 28px);
  color: #070707;
  font-size: clamp(16px, 1.12vw, 23px);
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: 0;
}

.services-hero-description {
  width: 78%;
  margin-top: clamp(18px, 1.45vw, 30px);
  color: #111111;
  font-size: clamp(13px, 0.88vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.services-hero-cta {
  margin-top: clamp(22px, 1.65vw, 34px);
}

.services-hero-trust {
  margin-top: clamp(20px, 1.55vw, 32px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #343434;
  font-size: clamp(12px, 0.82vw, 17px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.services-hero-trust i {
  color: #404040;
  font-size: clamp(19px, 1.25vw, 27px);
}

/* ==============================
   HERO RIGHT GLASS CARDS
============================== */

.services-hero-cards {
  position: absolute;
  right: 3.2%;
  top: 12.2%;
  width: 22.1%;
  min-width: 300px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 1.35vw, 27px);
}

.services-hero-card {
  position: relative;
  min-height: clamp(92px, 7.2vw, 142px);
  padding: clamp(15px, 1.2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: clamp(13px, 0.95vw, 21px);
  background:
    radial-gradient(circle at 13% 18%, rgba(225, 25, 25, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  display: grid;
  grid-template-columns: clamp(54px, 3.9vw, 78px) 1fr clamp(32px, 2.25vw, 44px);
  align-items: center;
  gap: clamp(14px, 1vw, 22px);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  isolation: isolate;
  cursor: default;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.services-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.13), transparent 36%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.1));
}

.services-hero-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  padding: 2px;
  border-radius: inherit;
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 238deg,
      rgba(225, 25, 25, 0) 262deg,
      rgba(225, 25, 25, 0.96) 294deg,
      rgba(255, 255, 255, 0.92) 310deg,
      rgba(225, 25, 25, 0.25) 328deg,
      transparent 360deg
    );
  opacity: 0;
  pointer-events: none;
  animation: services-neon-orbit 1.15s linear infinite;
  transition: opacity 180ms ease;

  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
}

.services-hero-card-light {
  position: absolute;
  left: 12%;
  top: 50%;
  width: clamp(78px, 5.8vw, 118px);
  height: clamp(78px, 5.8vw, 118px);
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(225, 25, 25, 0.45) 24%,
      rgba(225, 25, 25, 0.18) 48%,
      rgba(225, 25, 25, 0) 72%
    );
  filter: blur(8px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  pointer-events: none;
  mix-blend-mode: screen;
  transition:
    opacity 220ms ease,
    transform 420ms ease,
    left 420ms ease;
}

.services-hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 25, 25, 0.72);
  background:
    radial-gradient(circle at 16% 22%, rgba(225, 25, 25, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.36),
    0 0 30px rgba(225, 25, 25, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.services-hero-card:hover::after {
  opacity: 1;
}

.services-hero-card:hover .services-hero-card-light {
  left: 86%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.18);
}

.services-hero-card-icon {
  position: relative;
  z-index: 2;
  width: clamp(52px, 3.8vw, 76px);
  height: clamp(52px, 3.8vw, 76px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 10px rgba(225, 25, 25, 0.22));
}

.services-hero-card-copy {
  position: relative;
  z-index: 2;
}

.services-hero-card-copy h2 {
  margin-bottom: clamp(7px, 0.55vw, 12px);
  color: #ffffff;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 0.92vw, 19px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-hero-card-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(12px, 0.78vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.services-hero-card-check {
  position: relative;
  z-index: 2;
  width: clamp(30px, 2.15vw, 42px);
  height: clamp(30px, 2.15vw, 42px);
  border: 2px solid var(--brand-red);
  border-radius: 50%;
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  font-size: clamp(13px, 0.9vw, 19px);
  box-shadow:
    0 0 18px rgba(225, 25, 25, 0.22),
    inset 0 0 12px rgba(225, 25, 25, 0.08);
}

/* ==============================
   HERO RESPONSIVE
============================== */

@media (max-width: 1500px) {
  .services-hero-copy {
    left: 3%;
    top: 8.8%;
    width: 45%;
  }

  .services-hero-copy h1 {
    font-size: 52px;
  }

  .services-hero-subtitle {
    font-size: 18px;
  }

  .services-hero-description {
    width: 82%;
    font-size: 14.5px;
  }

  .services-hero-cards {
    right: 3%;
    top: 11.5%;
    width: 315px;
    min-width: 315px;
    gap: 15px;
  }

  .services-hero-card {
    min-height: 100px;
    padding: 16px;
    grid-template-columns: 56px 1fr 34px;
    gap: 14px;
  }

  .services-hero-card-copy h2 {
    font-size: 15px;
  }

  .services-hero-card-copy p {
    font-size: 13px;
  }
}

@media (max-width: 1366px) {
  .services-hero-copy {
    left: 2.8%;
    top: 8.2%;
    width: 46%;
  }

  .services-hero-copy h1 {
    font-size: 46px;
  }

  .services-hero-subtitle {
    width: 88%;
    font-size: 16px;
  }

  .services-hero-description {
    width: 82%;
    font-size: 13px;
    line-height: 1.48;
  }

  .services-hero-cta {
    margin-top: 20px;
  }

  .services-hero-trust {
    margin-top: 18px;
    font-size: 12px;
  }

  .services-hero-cards {
    right: 2.5%;
    top: 10.8%;
    width: 292px;
    min-width: 292px;
    gap: 12px;
  }

  .services-hero-card {
    min-height: 92px;
    padding: 14px;
    grid-template-columns: 50px 1fr 30px;
    gap: 12px;
  }

  .services-hero-card-icon {
    width: 50px;
    height: 50px;
  }

  .services-hero-card-copy h2 {
    font-size: 14px;
  }

  .services-hero-card-copy p {
    font-size: 12px;
  }

  .services-hero-card-check {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}

/* ==============================
   OUR MOBILE BRAKE SERVICES
============================== */

.services-mobile-section {
  position: relative;
  padding: 30px 0 10px;
  background: linear-gradient(180deg, #f7f7f7 0%, #f5f5f5 100%);
  overflow: hidden;
}

.services-mobile-shell {
  position: relative;
  width: calc(100% - 96px);
  max-width: var(--service-shell-max);
  margin: 0 auto;
  padding: 38px 44px 38px;
  border: 1px solid #dddddd;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.9)),
    url("../images/service/nodos.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.services-mobile-header,
.services-mobile-grid,
.services-mobile-note {
  max-width: var(--service-inner-max);
  margin-left: auto;
  margin-right: auto;
}

.services-mobile-header {
  margin-bottom: 30px;
  padding: 0 24px;
  text-align: center;
}

.services-mobile-header h2 {
  color: #090909;
  font-size: clamp(48px, 4.1vw, 78px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.services-mobile-header h2 span {
  color: var(--brand-red);
}

.services-mobile-intro {
  max-width: 920px;
  margin: 20px auto 0;
  color: #2f2f2f;
  font-size: clamp(19px, 1.35vw, 29px);
  font-weight: 400;
  line-height: 1.42;
}

.services-mobile-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
}

.services-mobile-dots {
  display: none;
}

.services-mobile-card {
  position: relative;
  min-height: 610px;
  padding: 30px 26px 24px;
  border: 1px solid #dddddd;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.93));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.services-mobile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(225, 25, 25, 0.055), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.92));
  pointer-events: none;
}

.services-mobile-card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 26px;
  z-index: 5;
  width: 132px;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(225, 25, 25, 0.25),
      rgba(225, 25, 25, 1),
      rgba(255, 255, 255, 0.95),
      rgba(225, 25, 25, 1),
      rgba(225, 25, 25, 0.25),
      transparent
    );
  box-shadow:
    0 0 10px rgba(225, 25, 25, 0.65),
    0 0 18px rgba(225, 25, 25, 0.28);
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  animation: services-mobile-border-run 2.15s linear infinite;
  transition: opacity 180ms ease;
}

.services-mobile-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 25, 25, 0.34);
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,255,255,0.95));
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.07),
    0 12px 28px rgba(225, 25, 25, 0.05);
}

.services-mobile-card:hover::after {
  opacity: 1;
}

.services-mobile-card__media {
  position: relative;
  z-index: 2;
  min-height: 250px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-mobile-card__media::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(225, 25, 25, 0.06);
}

.services-mobile-card__media img {
  position: relative;
  z-index: 2;
  width: clamp(210px, 15vw, 290px);
  height: auto;
  object-fit: contain;
  display: block;
}

.services-mobile-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.services-mobile-card__content h3 {
  margin-bottom: 16px;
  color: #090909;
  font-size: clamp(23px, 1.6vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.services-mobile-card__content p {
  max-width: 420px;
  margin: 0 auto;
  color: #2e2e2e;
  font-size: clamp(17px, 1.04vw, 22px);
  font-weight: 400;
  line-height: 1.55;
}

.services-mobile-note {
  width: 100%;
  margin-top: 24px;
  padding: 20px 28px;
  border: 1px solid #d9d9d9;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.035);
}

.services-mobile-note__icon {
  width: 92px;
  height: 92px;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.services-mobile-note__text strong {
  color: var(--brand-red);
  font-size: clamp(22px, 1.45vw, 31px);
  font-weight: 900;
  line-height: 1.2;
}

.services-mobile-note__text span {
  color: #242424;
  font-size: clamp(18px, 1.08vw, 22px);
  line-height: 1.5;
}

/* ==============================
   MOBILE BRAKE SERVICE SCOPE
   Background source: 1909 x 824
============================== */

.services-scope-section {
  position: relative;
  padding: 12px 0 12px;
  background: linear-gradient(180deg, #f5f5f5 0%, #f3f3f3 100%);
  overflow: hidden;
}

.services-scope-shell {
  position: relative;
  width: calc(100% - var(--service-shell-gutter));
  max-width: var(--service-shell-max);
  margin: 0 auto;
  aspect-ratio: 1909 / 824;
  border: 1px solid #dddddd;
  border-radius: 26px;
  background-color: #f8f8f8;
  background-image: url("../images/service/rotor-background.png");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.services-scope-content {
  position: absolute;
  left: 3%;
  top: 5.2%;
  width: 48%;
  max-width: 900px;
  z-index: 3;
}

.services-scope-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 30px;
  color: var(--brand-red);
  font-size: clamp(13px, 0.82vw, 17px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.services-scope-kicker i {
  font-size: clamp(16px, 0.95vw, 21px);
}

.services-scope-kicker::after {
  content: "";
  position: absolute;
  left: 43px;
  bottom: -16px;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-red);
}

.services-scope-content h2 {
  max-width: 720px;
  color: #070707;
  font-size: clamp(32px, 2.45vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.services-scope-content h2 span {
  color: var(--brand-red);
}

.services-scope-intro {
  max-width: 620px;
  margin-top: 14px;
  color: #4a4a4a;
  font-size: clamp(15px, 1.02vw, 21px);
  font-weight: 400;
  line-height: 1.42;
}

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

.services-scope-item {
  min-height: 82px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.075);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  cursor: default;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.services-scope-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(225, 25, 25, 0.28);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.055),
    0 8px 20px rgba(225, 25, 25, 0.045);
}

.services-scope-item__icon {
  width: 46px;
  height: 46px;
  margin-left: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 1), rgba(225, 25, 25, 0.075));
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.services-scope-item:hover .services-scope-item__icon {
  transform: scale(1.08);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 1), rgba(225, 25, 25, 0.14));
  box-shadow:
    0 0 0 5px rgba(225, 25, 25, 0.055),
    0 10px 22px rgba(225, 25, 25, 0.08);
}

.services-scope-item__copy h3 {
  margin-bottom: 4px;
  color: #080808;
  font-size: clamp(14px, 0.86vw, 18px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.services-scope-item__copy p {
  color: #4c4c4c;
  font-size: clamp(11px, 0.72vw, 14px);
  line-height: 1.28;
}

.services-scope-note {
  position: absolute;
  left: 2.35%;
  right: 2.35%;
  bottom: 3%;
  min-height: 12.4%;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 16px;
  z-index: 4;
}

.services-scope-note__icon {
  width: 58px;
  height: 58px;
  border: 3px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.services-scope-note p {
  max-width: 1040px;
  color: #343434;
  font-size: clamp(13px, 0.92vw, 18px);
  line-height: 1.42;
}

.services-scope-note p strong {
  color: #111111;
  font-weight: 900;
}

.services-scope-note p span {
  color: var(--brand-red);
  font-weight: 900;
}

/* ==============================
   SHARED RESPONSIVE SHELL GUTTERS
============================== */

@media (max-width: 1700px) {
  :root {
    --service-shell-gutter: 80px;
  }

  .services-mobile-grid {
    gap: 22px;
    padding-left: 0;
    padding-right: 0;
  }

  .services-mobile-card {
    min-height: 620px;
  }

  .services-mobile-note {
    width: 100%;
  }

  .services-scope-content {
    top: 4.8%;
  }

  .services-scope-content h2 {
    font-size: 42px;
  }

  .services-scope-intro {
    font-size: 17px;
  }
}

@media (max-width: 1500px) {
  :root {
    --service-shell-gutter: 64px;
  }

  .services-mobile-section {
    padding-top: 24px;
    padding-bottom: 8px;
  }

  .services-mobile-header {
    margin-bottom: 28px;
  }

  .services-mobile-grid {
    gap: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .services-mobile-card {
    min-height: 575px;
    padding: 28px 22px 24px;
    border-radius: 22px;
  }

  .services-mobile-card__media {
    min-height: 220px;
  }

  .services-mobile-card__media::before {
    width: 200px;
    height: 200px;
  }

  .services-mobile-card__media img {
    width: 220px;
  }

  .services-mobile-card__content h3 {
    font-size: 22px;
  }

  .services-mobile-card__content p {
    font-size: 16px;
  }

  .services-mobile-note {
    width: 100%;
    grid-template-columns: 80px 1fr;
  }

  .services-mobile-note__icon {
    width: 80px;
    height: 80px;
    font-size: 44px;
  }

  .services-scope-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .services-scope-content {
    left: 2.8%;
    top: 4.4%;
    width: 49%;
  }

  .services-scope-kicker {
    margin-bottom: 25px;
    font-size: 13px;
  }

  .services-scope-kicker::after {
    bottom: -13px;
  }

  .services-scope-content h2 {
    font-size: 36px;
  }

  .services-scope-intro {
    max-width: 540px;
    margin-top: 11px;
    font-size: 15px;
  }

  .services-scope-list {
    margin-top: 14px;
    gap: 9px 10px;
  }

  .services-scope-item {
    min-height: 68px;
    padding: 9px 10px;
    grid-template-columns: 42px 1fr;
    gap: 9px;
    border-radius: 14px;
  }

  .services-scope-item__icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .services-scope-item__copy h3 {
    margin-bottom: 2px;
    font-size: 12.5px;
  }

  .services-scope-item__copy p {
    font-size: 10.5px;
    line-height: 1.22;
  }

  .services-scope-note {
    grid-template-columns: 70px 1fr;
    padding-left: 22px;
    padding-right: 22px;
  }

  .services-scope-note__icon {
    width: 50px;
    height: 50px;
    border-width: 2px;
    font-size: 24px;
  }

  .services-scope-note p {
    font-size: 13px;
    line-height: 1.34;
  }
}

@media (max-width: 1366px) {
  :root {
    --service-shell-gutter: 48px;
  }

  .services-mobile-header h2 {
    font-size: 54px;
  }

  .services-mobile-intro {
    max-width: 860px;
    font-size: 18px;
  }

  .services-mobile-grid {
    gap: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .services-mobile-card {
    min-height: 535px;
    padding: 24px 18px 22px;
  }

  .services-mobile-card__media {
    min-height: 200px;
  }

  .services-mobile-card__media::before {
    width: 180px;
    height: 180px;
  }

  .services-mobile-card__media img {
    width: 195px;
  }

  .services-mobile-card__content h3 {
    font-size: 19px;
  }

  .services-mobile-card__content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .services-mobile-note {
    width: 100%;
    padding: 18px 20px;
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }

  .services-mobile-note__icon {
    width: 70px;
    height: 70px;
    font-size: 40px;
  }

  .services-mobile-note__text strong {
    font-size: 20px;
  }

  .services-mobile-note__text span {
    font-size: 15px;
  }

  .services-scope-content {
    left: 2.5%;
    top: 4%;
    width: 50%;
  }

  .services-scope-kicker {
    margin-bottom: 21px;
    gap: 9px;
    font-size: 12px;
  }

  .services-scope-kicker i {
    font-size: 15px;
  }

  .services-scope-kicker::after {
    left: 34px;
    bottom: -11px;
    width: 30px;
    height: 2px;
  }

  .services-scope-content h2 {
    font-size: 31px;
    letter-spacing: 0;
  }

  .services-scope-intro {
    max-width: 490px;
    margin-top: 9px;
    font-size: 13px;
  }

  .services-scope-list {
    margin-top: 11px;
    gap: 8px;
  }

  .services-scope-item {
    min-height: 60px;
    padding: 8px;
    grid-template-columns: 36px 1fr;
    gap: 8px;
    border-radius: 13px;
  }

  .services-scope-item__icon {
    width: 31px;
    height: 31px;
    font-size: 13px;
  }

  .services-scope-item__copy h3 {
    font-size: 11.3px;
    line-height: 1.08;
  }

  .services-scope-item__copy p {
    font-size: 9.5px;
    line-height: 1.18;
  }

  .services-scope-note {
    bottom: 2.8%;
    grid-template-columns: 58px 1fr;
    gap: 10px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .services-scope-note__icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .services-scope-note p {
    max-width: 820px;
    font-size: 11.5px;
    line-height: 1.28;
  }
}

/* ==============================
   ACCESSIBILITY / KEYFRAMES
============================== */

@media (prefers-reduced-motion: reduce) {
  .services-hero-cta,
  .services-hero-card,
  .services-hero-card::after,
  .services-hero-card-light,
  .services-mobile-card,
  .services-mobile-card::after,
  .services-scope-item,
  .services-scope-item__icon {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes services-neon-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes services-mobile-border-run {
  0% {
    top: -1px;
    left: 26px;
    width: 132px;
    height: 2px;
    transform: rotate(0deg);
  }

  24% {
    top: -1px;
    left: calc(100% - 158px);
    width: 132px;
    height: 2px;
    transform: rotate(0deg);
  }

  25% {
    top: 26px;
    left: calc(100% - 67px);
    width: 132px;
    height: 2px;
    transform: rotate(90deg);
  }

  49% {
    top: calc(100% - 28px);
    left: calc(100% - 67px);
    width: 132px;
    height: 2px;
    transform: rotate(90deg);
  }

  50% {
    top: calc(100% - 2px);
    left: calc(100% - 158px);
    width: 132px;
    height: 2px;
    transform: rotate(180deg);
  }

  74% {
    top: calc(100% - 2px);
    left: 26px;
    width: 132px;
    height: 2px;
    transform: rotate(180deg);
  }

  75% {
    top: calc(100% - 28px);
    left: -65px;
    width: 132px;
    height: 2px;
    transform: rotate(270deg);
  }

  99% {
    top: 26px;
    left: -65px;
    width: 132px;
    height: 2px;
    transform: rotate(270deg);
  }

  100% {
    top: -1px;
    left: 26px;
    width: 132px;
    height: 2px;
    transform: rotate(0deg);
  }
}

/* ==============================
   SERVICES HOW IT WORKS
============================== */

.services-how-section {
  position: relative;
  padding: 12px 0 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(225, 25, 25, 0.025), transparent 34%),
    linear-gradient(180deg, #f5f5f5 0%, #f7f7f7 100%);
  overflow: hidden;
}

.services-how-shell {
  position: relative;
  width: calc(100% - 96px);
  max-width: 1909px;
  margin: 0 auto;
  padding: 42px 44px 40px;
  border: 1px solid #dddddd;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.95));
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.services-how-shell::before,
.services-how-shell::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 170px;
  background-image:
    linear-gradient(90deg, rgba(180, 180, 180, 0.26) 1px, transparent 1px),
    linear-gradient(rgba(180, 180, 180, 0.26) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.12;
  pointer-events: none;
}

.services-how-shell::before {
  left: -120px;
  top: 12px;
  transform: rotate(0deg);
}

.services-how-shell::after {
  right: -90px;
  top: 18px;
  transform: rotate(0deg);
}

/* ==============================
   HOW HEADER
============================== */

.services-how-header {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto 48px;
  text-align: center;
}

.services-how-kicker {
  margin-bottom: 20px;
  color: var(--brand-red);
  font-size: clamp(13px, 0.82vw, 17px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.services-how-header h2 {
  color: #070707;
  font-size: clamp(58px, 5vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.services-how-header h2 span {
  color: var(--brand-red);
}

.services-how-header h2::after {
  content: "";
  width: 62px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: var(--brand-red);
  display: block;
}

.services-how-intro {
  max-width: 840px;
  margin: 18px auto 0;
  color: #5a6470;
  font-size: clamp(18px, 1.22vw, 25px);
  line-height: 1.42;
}

/* ==============================
   HOW FLOW
============================== */

.services-how-flow {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: center;
  gap: 0;
}

.services-how-dots {
  display: none;
}

.services-how-card {
  position: relative;
  min-height: 610px;
  padding: 46px 18px 26px;
  border: 1px solid #dedede;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.93));
  text-align: center;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: visible;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.services-how-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 16%, rgba(225, 25, 25, 0.04), transparent 38%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.services-how-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 84px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 25, 25, 0.18), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.services-how-card:hover {
  transform: translateY(-7px);
  border-color: rgba(225, 25, 25, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.96));
  box-shadow:
    0 26px 52px rgba(0, 0, 0, 0.065),
    0 10px 26px rgba(225, 25, 25, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.services-how-card:hover::before,
.services-how-card:hover::after {
  opacity: 1;
}

.services-how-number {
  position: absolute;
  left: 50%;
  top: -25px;
  width: 54px;
  height: 54px;
  border: 2px solid #d8dfe7;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.services-how-card:hover .services-how-number {
  transform: translateX(-50%) scale(1.08);
  border-color: rgba(225, 25, 25, 0.38);
  box-shadow:
    0 0 0 7px rgba(225, 25, 25, 0.055),
    0 12px 24px rgba(0, 0, 0, 0.05);
}

.services-how-card h3 {
  margin-bottom: 28px;
  color: #111111;
  font-size: clamp(15px, 1.02vw, 21px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.services-how-image {
  position: relative;
  width: 100%;
  min-height: 330px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-how-image::before {
  content: "";
  position: absolute;
  width: 86%;
  height: 86%;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 42%, rgba(225, 25, 25, 0.055), transparent 56%);
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.services-how-card:hover .services-how-image::before {
  opacity: 1;
  transform: scale(1);
}

.services-how-image img {
  position: relative;
  z-index: 2;
  width: 92%;
  max-height: 330px;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.08));
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.services-how-card:hover .services-how-image img {
  transform: translateY(-5px) scale(1.015);
  filter:
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.11));
}

.services-how-card p {
  max-width: 220px;
  margin: 0 auto;
  color: #4b5560;
  font-size: clamp(13px, 0.86vw, 17px);
  line-height: 1.48;
}

/* ==============================
   ARROWS
============================== */

.services-how-arrow {
  color: #c9cfd6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  animation: services-how-arrow-pulse 2.4s ease-in-out infinite;
}

.services-how-arrow:nth-of-type(2) {
  animation-delay: 0.15s;
}

.services-how-arrow:nth-of-type(4) {
  animation-delay: 0.3s;
}

/* ==============================
   BENEFIT BAR
============================== */

.services-how-benefits {
  position: relative;
  z-index: 3;
  margin-top: 38px;
  padding: 16px 30px;
  border: 1px solid #dddddd;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.services-how-benefit {
  min-height: 58px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #111111;
  font-size: clamp(14px, 0.95vw, 19px);
  font-weight: 500;
  line-height: 1.2;
  transition:
    transform 200ms ease,
    color 200ms ease;
}

.services-how-benefit:not(:nth-child(4)) {
  border-right: 1px solid #d7d7d7;
}

.services-how-benefit i {
  color: var(--brand-red);
  font-size: clamp(28px, 1.8vw, 40px);
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.services-how-benefit:hover {
  transform: translateY(-3px);
  color: var(--brand-red);
}

.services-how-benefit:hover i {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 14px rgba(225, 25, 25, 0.16));
}

.services-how-bottom-note {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid #dddddd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.services-how-bottom-note-icon {
  width: 46px;
  height: 46px;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.services-how-bottom-note strong {
  color: #080808;
  font-size: clamp(18px, 1.16vw, 23px);
  font-weight: 900;
  line-height: 1.2;
}

/* ==============================
   HOW RESPONSIVE DESKTOP SAFETY
============================== */

@media (max-width: 1700px) {
  .services-how-shell {
    width: calc(100% - 80px);
    padding-left: 34px;
    padding-right: 34px;
  }

  .services-how-flow {
    grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr 28px 1fr;
  }

  .services-how-card {
    min-height: 565px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .services-how-image {
    min-height: 300px;
  }

  .services-how-image img {
    max-height: 300px;
  }
}

@media (max-width: 1500px) {
  .services-how-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .services-how-shell {
    width: calc(100% - 64px);
    padding: 36px 26px 34px;
  }

  .services-how-header {
    margin-bottom: 42px;
  }

  .services-how-header h2 {
    font-size: 66px;
  }

  .services-how-intro {
    font-size: 18px;
  }

  .services-how-flow {
    grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr;
  }

  .services-how-card {
    min-height: 505px;
    padding: 40px 12px 22px;
  }

  .services-how-number {
    width: 48px;
    height: 48px;
    top: -22px;
    font-size: 19px;
  }

  .services-how-card h3 {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .services-how-image {
    min-height: 260px;
    margin-bottom: 22px;
  }

  .services-how-image img {
    max-height: 260px;
  }

  .services-how-card p {
    font-size: 12px;
  }

  .services-how-arrow {
    font-size: 22px;
  }

  .services-how-benefits {
    margin-top: 38px;
    padding: 18px 24px;
  }

  .services-how-benefit {
    min-height: 64px;
    gap: 14px;
    padding: 0 18px;
  }
}

@media (max-width: 1366px) {
  .services-how-shell {
    width: calc(100% - 48px);
    padding: 32px 22px 30px;
  }

  .services-how-header h2 {
    font-size: 58px;
  }

  .services-how-flow {
    grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  }

  .services-how-card {
    min-height: 465px;
    padding: 36px 10px 20px;
  }

  .services-how-card h3 {
    font-size: 12.5px;
  }

  .services-how-image {
    min-height: 235px;
  }

  .services-how-image img {
    max-height: 235px;
  }

  .services-how-card p {
    max-width: 180px;
    font-size: 11px;
  }

  .services-how-benefit {
    font-size: 13px;
  }
}

/* ==============================
   HOW KEYFRAMES
============================== */

@keyframes services-how-arrow-pulse {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.38;
  }

  50% {
    transform: translateX(5px);
    opacity: 0.82;
  }
}  


/* ==============================
   SIGNS YOU NEED BRAKE SERVICE
============================== */

.services-signs-section {
  position: relative;
  padding: 12px 0 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(225, 25, 25, 0.025), transparent 34%),
    linear-gradient(180deg, #f7f7f7 0%, #f5f5f5 100%);
  overflow: hidden;
}

.services-signs-shell {
  position: relative;
  width: calc(100% - 96px);
  max-width: 1909px;
  margin: 0 auto;
  padding: 34px 44px 36px;
  border: 1px solid #dddddd;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.95)),
    url("../images/service/nodos.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.services-signs-header {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto 42px;
  text-align: center;
}

.services-signs-header h2 {
  color: #070707;
  font-size: clamp(52px, 4.35vw, 86px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.services-signs-header h2 span {
  color: var(--brand-red);
}

.services-signs-header h2::after {
  content: "";
  width: 116px;
  height: 5px;
  margin: 26px auto 0;
  border-radius: 999px;
  background: var(--brand-red);
  display: block;
}

/* ==============================
   SIGNS GRID
============================== */

.services-signs-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}

.services-signs-dots {
  display: none;
}

.services-sign-card {
  position: relative;
  min-height: 610px;
  padding: 28px 18px 28px;
  border: 1px solid #dddddd;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 0.94));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

/* soft red tech wash */
.services-sign-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 18%, rgba(225, 25, 25, 0.045), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.92));
  pointer-events: none;
}

/* border-only moving spark */
.services-sign-card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  z-index: 5;
  width: 118px;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(225, 25, 25, 0.25),
      rgba(225, 25, 25, 1),
      rgba(255, 255, 255, 0.95),
      rgba(225, 25, 25, 1),
      rgba(225, 25, 25, 0.25),
      transparent
    );
  box-shadow:
    0 0 10px rgba(225, 25, 25, 0.65),
    0 0 18px rgba(225, 25, 25, 0.28);
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  animation: services-sign-border-run 2.2s linear infinite;
  transition: opacity 180ms ease;
}

.services-sign-card:hover {
  transform: translateY(-7px);
  border-color: rgba(225, 25, 25, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.965));
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.07),
    0 12px 28px rgba(225, 25, 25, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.services-sign-card:hover::after {
  opacity: 1;
}

/* ==============================
   TOP
============================== */

.services-sign-card__top {
  min-height: 86px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 14px;
}

.services-sign-number {
  width: 38px;
  height: 42px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 10px 22px rgba(225, 25, 25, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.services-sign-card h3 {
  color: #101010;
  font-size: clamp(19px, 1.25vw, 28px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}

/* ==============================
   SCREEN IMAGE
============================== */

.services-sign-screen {
  position: relative;
  margin-top: 10px;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.services-sign-screen__label {
  height: 46px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--brand-red);
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.services-sign-screen__label i {
  color: #333333;
  opacity: 0.72;
  font-size: 13px;
}

.services-sign-screen img {
  width: 100%;
  aspect-ratio: 310 / 235;
  object-fit: fill;
  object-position: center center;
  display: block;
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.08));
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.services-sign-card:hover .services-sign-screen img {
  transform: none;
  filter:
    drop-shadow(0 15px 24px rgba(0, 0, 0, 0.12));
}

/* ==============================
   ALERT PILL
============================== */

.services-sign-alert {
  position: relative;
  min-height: 58px;
  margin-top: 14px;
  padding: 0 16px;
  border: 1px solid rgba(225, 25, 25, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(225, 25, 25, 0.045), rgba(255, 255, 255, 0.92));
  color: var(--brand-red);
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  overflow: hidden;
  animation: services-alert-pulse 1.35s ease-in-out infinite;
}

.services-sign-alert::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 38%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(225, 25, 25, 0.14),
      rgba(255, 255, 255, 0.7),
      transparent
    );
  animation: services-alert-sweep 1.8s ease-in-out infinite;
  pointer-events: none;
}

.services-sign-alert i {
  
  
  font-size: clamp(19px, 1.18vw, 25px);
  filter: drop-shadow(0 0 8px rgba(225, 25, 25, 0.2));
}

.services-sign-alert span {
  position: relative;
  z-index: 2;
  font-size: clamp(13px, 0.9vw, 18px);
  font-weight: 900;
  line-height: 1;
}

/* ==============================
   BODY COPY
============================== */

.services-sign-card > p {
  margin-top: 22px;
  color: #323232;
  font-size: clamp(16px, 1.04vw, 22px);
  line-height: 1.52;
}

/* ==============================
   SIGNS RESPONSIVE DESKTOP
============================== */

@media (max-width: 1700px) {
  .services-signs-shell {
    width: calc(100% - 80px);
    padding-left: 34px;
    padding-right: 34px;
  }

  .services-signs-grid {
    gap: 20px;
  }

  .services-sign-card {
    min-height: 570px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .services-sign-card h3 {
    font-size: 20px;
  }

  .services-sign-card > p {
    font-size: 16px;
  }
}

@media (max-width: 1500px) {
  .services-signs-section {
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .services-signs-shell {
    width: calc(100% - 64px);
    padding: 30px 24px 34px;
  }

  .services-signs-header {
    margin-bottom: 34px;
  }

  .services-signs-header h2 {
    font-size: 60px;
  }

  .services-signs-grid {
    gap: 16px;
  }

  .services-sign-card {
    min-height: 520px;
    padding: 22px 12px 22px;
    border-radius: 17px;
  }

  .services-sign-card__top {
    min-height: 74px;
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .services-sign-number {
    width: 32px;
    height: 36px;
    font-size: 18px;
  }

  .services-sign-card h3 {
    font-size: 16px;
  }

  .services-sign-screen__label {
    height: 38px;
    padding-left: 11px;
    padding-right: 11px;
    font-size: 11px;
  }

  .services-sign-alert {
    min-height: 48px;
    padding-left: 12px;
    gap: 10px;
  }

  .services-sign-alert span {
    font-size: 12px;
  }

  .services-sign-card > p {
    margin-top: 22px;
    font-size: 14px;
  }
}

@media (max-width: 1366px) {
  .services-signs-shell {
    width: calc(100% - 48px);
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-signs-header h2 {
    font-size: 52px;
  }

  .services-signs-grid {
    gap: 12px;
  }

  .services-sign-card {
    min-height: 480px;
    padding: 20px 10px 20px;
  }

  .services-sign-card h3 {
    font-size: 14px;
  }

  .services-sign-screen__label {
    height: 34px;
    font-size: 9.8px;
  }

  .services-sign-alert {
    min-height: 42px;
    margin-top: 10px;
  }

  .services-sign-alert i {
    font-size: 16px;
  }

  .services-sign-alert span {
    font-size: 10.5px;
  }

  .services-sign-card > p {
    margin-top: 18px;
    font-size: 12.5px;
    line-height: 1.45;
  }
}

/* ==============================
   SIGNS KEYFRAMES
============================== */

@keyframes services-sign-border-run {
  0% {
    top: -1px;
    left: 24px;
    width: 118px;
    height: 2px;
    transform: rotate(0deg);
  }

  24% {
    top: -1px;
    left: calc(100% - 142px);
    width: 118px;
    height: 2px;
    transform: rotate(0deg);
  }

  25% {
    top: 24px;
    left: calc(100% - 61px);
    width: 118px;
    height: 2px;
    transform: rotate(90deg);
  }

  49% {
    top: calc(100% - 26px);
    left: calc(100% - 61px);
    width: 118px;
    height: 2px;
    transform: rotate(90deg);
  }

  50% {
    top: calc(100% - 2px);
    left: calc(100% - 142px);
    width: 118px;
    height: 2px;
    transform: rotate(180deg);
  }

  74% {
    top: calc(100% - 2px);
    left: 24px;
    width: 118px;
    height: 2px;
    transform: rotate(180deg);
  }

  75% {
    top: calc(100% - 26px);
    left: -58px;
    width: 118px;
    height: 2px;
    transform: rotate(270deg);
  }

  99% {
    top: 24px;
    left: -58px;
    width: 118px;
    height: 2px;
    transform: rotate(270deg);
  }

  100% {
    top: -1px;
    left: 24px;
    width: 118px;
    height: 2px;
    transform: rotate(0deg);
  }
}

@keyframes services-alert-pulse {
  0%, 100% {
    border-color: rgba(225, 25, 25, 0.16);
    box-shadow:
      0 0 0 rgba(225, 25, 25, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  50% {
    border-color: rgba(225, 25, 25, 0.58);
    box-shadow:
      0 0 18px rgba(225, 25, 25, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }
}

@keyframes services-alert-sweep {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  28% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(380%);
    opacity: 0;
  }
}

/* ==============================
   PATCH - WARNING LIGHT ONLY ON ALERT ICON
   Vehicle hazard-style blink
   Cycle: 1.05s
============================== */

/* Stop old full-block pulse and sweep effects */
.services-sign-alert {
  animation: none !important;
  border-color: rgba(225, 25, 25, 0.18);
  background:
    linear-gradient(
      90deg,
      rgba(225, 25, 25, 0.04),
      rgba(255, 255, 255, 0.94)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.services-sign-alert::before,
.services-sign-alert::after {
  display: none !important;
  animation: none !important;
}

/* Keep alert text stable and readable */
.services-sign-alert span {
  color: var(--brand-red);
  text-shadow: none !important;
  animation: none !important;
}

/* Only the warning icon blinks */
.services-sign-alert i {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(225, 25, 25, 0.055);
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  animation: services-warning-icon-blink 1.05s steps(2, end) infinite;
}

/* Static-position glow around icon only */
.services-sign-alert i::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(225, 25, 25, 0.34) 0%,
      rgba(225, 25, 25, 0.16) 42%,
      rgba(225, 25, 25, 0) 72%
    );
  opacity: 0;
  pointer-events: none;
  animation: services-warning-icon-glow 1.05s steps(2, end) infinite;
}

/* ==============================
   WARNING ICON KEYFRAMES
============================== */

@keyframes services-warning-icon-blink {
  0%,
  48% {
    color: var(--brand-red);
    background: rgba(225, 25, 25, 0.16);
    transform: scale(1.1);
    filter:
      drop-shadow(0 0 7px rgba(225, 25, 25, 0.65))
      drop-shadow(0 0 16px rgba(225, 25, 25, 0.28));
  }

  49%,
  100% {
    color: var(--brand-red);
    background: rgba(225, 25, 25, 0.055);
    transform: scale(1);
    filter: none;
  }
}

@keyframes services-warning-icon-glow {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

/* Accessibility: no blink for reduced motion users */
@media (prefers-reduced-motion: reduce) {
  .services-sign-alert i,
  .services-sign-alert i::after {
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ==============================
   SERVICE AREAS + FINAL CTA
   Background source: nodos.png
   Source visual size: 1908 x 824
============================== */

.services-areas-section {
  position: relative;
  padding: 12px 0 18px;
  background:
    linear-gradient(180deg, #f7f7f7 0%, #f5f5f5 100%);
  overflow: hidden;
}

.services-areas-shell {
  position: relative;
  width: calc(100% - 96px);
  max-width: 1909px;
  min-height: clamp(560px, 37vw, 706px);
  margin: 0 auto;
  padding: clamp(42px, 3.5vw, 66px) clamp(38px, 4vw, 76px) clamp(36px, 2.8vw, 52px);
  border: 1px solid rgba(221, 221, 221, 0.82);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.92)),
    url("../images/service/nodos.png");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.services-areas-intro-card {
  display: contents;
}

/* ==============================
   DECORATIVE MAP PINS
============================== */

.services-areas-map-pin {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.services-areas-map-pin--large {
  left: 5.3%;
  top: 18%;
  width: 58px;
  height: 58px;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  opacity: 0.9;
  filter: drop-shadow(0 10px 22px rgba(225, 25, 25, 0.16));
  animation: services-area-map-pin-pulse 2.2s ease-in-out infinite;
}

.services-areas-map-pin--large::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(225, 25, 25, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.services-areas-map-pin--small {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 8px rgba(225, 25, 25, 0.055);
  opacity: 0.78;
}

.services-areas-map-pin--one {
  left: 15.5%;
  top: 20.2%;
}

.services-areas-map-pin--two {
  left: 9.4%;
  top: 34.8%;
}

/* ==============================
   HEADER
============================== */

.services-areas-header {
  position: relative;
  z-index: 3;
  max-width: 1260px;
  margin: 0 auto;
  text-align: center;
}

.services-areas-header h2 {
  color: #101720;
  font-size: clamp(42px, 3.65vw, 74px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.services-areas-header h2 span {
  color: var(--brand-red);
}

.services-areas-header p {
  max-width: 980px;
  margin: clamp(18px, 1.35vw, 28px) auto 0;
  color: #5a6470;
  font-size: clamp(18px, 1.25vw, 26px);
  font-weight: 400;
  line-height: 1.38;
}

/* ==============================
   SERVICE AREAS LIST
============================== */

.services-areas-list {
  position: relative;
  z-index: 4;
  margin: clamp(34px, 3vw, 58px) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 1.55vw, 31px);
}

.services-area-city {
  position: relative;
  min-height: 54px;
  padding: 0 6px;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: clamp(18px, 1.25vw, 26px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  cursor: default;
  transition:
    transform 220ms ease,
    color 220ms ease,
    text-shadow 220ms ease;
}

.services-area-city::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-red);
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.services-area-city:hover {
  color: var(--brand-red);
  transform: translateY(-3px);
  text-shadow: 0 8px 18px rgba(225, 25, 25, 0.12);
}

.services-area-city:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.services-area-separator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(225, 25, 25, 0.045);
  flex: 0 0 auto;
}

/* ==============================
   CTA CARD
============================== */

.services-areas-cta-card {
  position: relative;
  z-index: 4;
  min-height: clamp(250px, 19vw, 350px);
  margin-top: clamp(46px, 3.8vw, 72px);
  padding: clamp(34px, 3vw, 58px) clamp(42px, 4.6vw, 88px);
  border: 1px solid rgba(218, 218, 218, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.94));
  display: grid;
  grid-template-columns: 1fr minmax(220px, 340px) 1.35fr;
  align-items: center;
  gap: clamp(34px, 4vw, 78px);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.services-areas-cta-card::before,
.services-areas-cta-card::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 170px;
  background-image:
    linear-gradient(90deg, rgba(180, 180, 180, 0.28) 1px, transparent 1px),
    linear-gradient(rgba(180, 180, 180, 0.28) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.08;
  pointer-events: none;
}

.services-areas-cta-card::before {
  left: -100px;
  bottom: 12px;
}

.services-areas-cta-card::after {
  right: -80px;
  top: 24px;
}

.services-areas-cta-copy {
  position: relative;
  z-index: 2;
}

.services-areas-cta-copy h3 {
  color: #121922;
  font-size: clamp(40px, 3vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.services-areas-cta-copy h3 span {
  color: var(--brand-red);
}

.services-areas-cta-title {
  font-size: clamp(36px, 2.65vw, 52px) !important;
  line-height: 1.08;
}

.services-areas-cta-copy p {
  max-width: 520px;
  margin-top: 26px;
  color: #5a6470;
  font-size: clamp(18px, 1.25vw, 26px);
  line-height: 1.48;
}

.services-areas-cta-rotor {
  position: relative;
  z-index: 2;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-areas-rotor-halo {
  position: absolute;
  width: clamp(250px, 19.5vw, 380px);
  height: clamp(250px, 19.5vw, 380px);
  border-radius: 50%;
  border: 2px solid rgba(185, 195, 205, 0.24);
  box-shadow:
    inset 0 0 0 14px rgba(185, 195, 205, 0.035),
    0 0 0 22px rgba(185, 195, 205, 0.028);
  animation: services-areas-rotor-spin 12s linear infinite;
}

.services-areas-rotor-halo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 2px dashed rgba(225, 25, 25, 0.28);
}

.services-areas-cta-rotor img {
  position: relative;
  z-index: 2;
  width: clamp(230px, 15.8vw, 340px);
  height: auto;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.12));
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.services-areas-cta-card:hover .services-areas-cta-rotor img {
  transform: translateY(-4px) scale(1.015);
  filter:
    drop-shadow(0 24px 38px rgba(0, 0, 0, 0.16));
}

/* ==============================
   CTA BUTTONS
============================== */

.services-areas-cta-actions {
  position: relative;
  z-index: 2;
}

.services-areas-buttons {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 34px);
}

.services-areas-primary-btn,
.services-areas-secondary-btn {
  min-height: clamp(58px, 4.2vw, 76px);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  font-size: clamp(17px, 1.12vw, 24px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.services-areas-primary-btn {
  min-width: clamp(265px, 17vw, 380px);
  padding: 0 34px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #ffffff;
  box-shadow:
    0 18px 36px rgba(225, 25, 25, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.services-areas-primary-btn i {
  font-size: clamp(20px, 1.25vw, 28px);
}

.services-areas-primary-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  box-shadow:
    0 24px 46px rgba(225, 25, 25, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.services-areas-secondary-btn {
  min-width: clamp(205px, 13vw, 282px);
  padding: 0 28px;
  border: 2px solid var(--brand-red);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-red);
}

.services-areas-secondary-btn i {
  font-size: clamp(22px, 1.4vw, 30px);
}

.services-areas-secondary-btn:hover {
  transform: translateY(-3px);
  background: rgba(225, 25, 25, 0.055);
  box-shadow:
    0 18px 36px rgba(225, 25, 25, 0.08),
    0 0 0 6px rgba(225, 25, 25, 0.035);
}

.services-areas-tagline {
  margin-top: clamp(28px, 2.3vw, 44px);
  display: flex;
  align-items: center;
  gap: 18px;
}

.services-areas-tagline span {
  width: 50px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-red);
  display: block;
}

.services-areas-tagline p {
  color: #6a7280;
  font-size: clamp(17px, 1.14vw, 24px);
  line-height: 1.2;
}

/* ==============================
   RESPONSIVE DESKTOP
============================== */

@media (max-width: 1700px) {
  .services-areas-shell {
    width: calc(100% - 80px);
  }

  .services-areas-cta-card {
    grid-template-columns: 1fr 280px 1.3fr;
    gap: 48px;
  }

  .services-areas-primary-btn {
    min-width: 300px;
  }

  .services-areas-secondary-btn {
    min-width: 220px;
  }
}

@media (max-width: 1500px) {
  .services-areas-section {
    padding-top: 10px;
    padding-bottom: 16px;
  }

  .services-areas-shell {
    width: calc(100% - 64px);
    min-height: 570px;
    padding: 42px 46px 38px;
  }

  .services-areas-header h2 {
    font-size: 48px;
  }

  .services-areas-header p {
    font-size: 18px;
  }

  .services-areas-list {
    margin-top: 38px;
    gap: 20px;
  }

  .services-area-city {
    min-height: 48px;
    font-size: 18px;
  }

  .services-area-separator {
    width: 6px;
    height: 6px;
  }

  .services-areas-cta-card {
    min-height: 245px;
    margin-top: 42px;
    padding: 34px 46px;
    grid-template-columns: 1fr 230px 1.26fr;
    gap: 34px;
  }

  .services-areas-cta-copy h3 {
    font-size: 56px;
  }

  .services-areas-cta-copy p {
    font-size: 18px;
  }

  .services-areas-cta-rotor {
    min-height: 210px;
  }

  .services-areas-cta-rotor img {
    width: 230px;
  }

  .services-areas-buttons {
    gap: 18px;
  }

  .services-areas-primary-btn,
  .services-areas-secondary-btn {
    min-height: 58px;
    font-size: 17px;
  }

  .services-areas-primary-btn {
    min-width: 260px;
  }

  .services-areas-secondary-btn {
    min-width: 190px;
  }

  .services-areas-tagline p {
    font-size: 16px;
  }
}

@media (max-width: 1366px) {
  .services-areas-shell {
    width: calc(100% - 48px);
    min-height: 520px;
    padding: 38px 34px 32px;
  }

  .services-areas-header h2 {
    font-size: 42px;
  }

  .services-areas-header p {
    font-size: 16px;
  }

  .services-areas-list {
    margin-top: 32px;
    gap: 15px;
  }

  .services-area-city {
    min-height: 42px;
    font-size: 15.5px;
  }

  .services-areas-cta-card {
    min-height: 218px;
    margin-top: 36px;
    padding: 28px 34px;
    grid-template-columns: 1fr 200px 1.25fr;
    gap: 28px;
  }

  .services-areas-cta-copy h3 {
    font-size: 52px;
  }

  .services-areas-cta-copy p {
    margin-top: 20px;
    font-size: 17px;
  }

  .services-areas-cta-rotor {
    min-height: 185px;
  }

  .services-areas-cta-rotor img {
    width: 205px;
  }

  .services-areas-primary-btn,
  .services-areas-secondary-btn {
    min-height: 52px;
    font-size: 15px;
  }

  .services-areas-primary-btn {
    min-width: 260px;
  }

  .services-areas-secondary-btn {
    min-width: 170px;
  }

  .services-areas-tagline {
    margin-top: 24px;
  }

  .services-areas-tagline p {
    font-size: 14px;
  }
}

/* ==============================
   SERVICE AREAS ANIMATIONS
============================== */

@keyframes services-area-map-pin-pulse {
  0%,
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 10px 22px rgba(225, 25, 25, 0.12));
  }

  50% {
    transform: translateY(-6px);
    filter: drop-shadow(0 18px 34px rgba(225, 25, 25, 0.24));
  }
}

@keyframes services-areas-rotor-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .services-areas-map-pin--large,
  .services-areas-rotor-halo {
    animation: none !important;
  }
}

/* ==============================
   PATCH - SERVICES HERO MOBILE
   Uses assets/images/service/service-mobil.png
============================== */

@media (max-width: 760px) {
  body {
    background: #f6f6f6;
  }

  .services-page {
    overflow: hidden;
    background: #f6f6f6;
  }

  .services-hero {
    min-height: clamp(820px, 193vw, 900px);
    aspect-ratio: auto;
    background-image:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0) 76%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 48%, rgba(0, 0, 0, 0.04) 100%),
      url("../images/service/service-mobil.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .services-hero-overlay {
    position: relative;
    inset: auto;
    min-height: inherit;
    padding: 94px 19px 18px;
    display: flex;
    flex-direction: column;
  }

  .services-hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 355px;
  }

  .services-hero-kicker {
    margin-bottom: 8px;
  }

  .services-hero-copy h1 {
    max-width: 340px;
    font-size: clamp(38px, 9.8vw, 44px);
    line-height: 0.95;
    letter-spacing: 0;
  }

  .services-hero-copy h1 span {
    display: inline-block;
  }

  .services-hero-subtitle {
    width: 100%;
    max-width: 275px;
    margin-top: 16px;
    color: #151515;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
  }

  .services-hero-subtitle-line {
    display: block;
  }

  .services-hero-description {
    display: none;
  }

  .services-hero-cta {
    margin-top: 20px;
  }

  .services-hero-trust {
    max-width: 205px;
    margin-top: 18px;
    gap: 12px;
    color: #2f2f2f;
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .services-hero-trust-copy span {
    display: block;
  }

  .services-hero-trust i {
    flex: 0 0 auto;
    color: #333333;
    font-size: 23px;
  }

  .services-hero-cards {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .services-hero-card {
    min-height: 65px;
    padding: 9px 14px;
    border-color: rgba(255, 255, 255, 0.3);
    border-radius: 9px;
    background:
      radial-gradient(circle at 17% 26%, rgba(225, 25, 25, 0.2), transparent 34%),
      linear-gradient(135deg, rgba(9, 9, 9, 0.88), rgba(6, 6, 6, 0.74));
    grid-template-columns: 58px minmax(0, 1fr) 34px;
    gap: 13px;
    box-shadow:
      0 14px 32px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .services-hero-card::before {
    background:
      radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.12), transparent 36%),
      linear-gradient(135deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.16));
  }

  .services-hero-card-icon {
    width: 58px;
    height: 48px;
  }

  .services-hero-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .services-hero-card-copy h2 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .services-hero-card-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11.5px;
    line-height: 1.18;
    letter-spacing: 0;
  }

  .services-hero-card-check {
    width: 32px;
    height: 32px;
    border-width: 2px;
    font-size: 12px;
  }

  .services-mobile-section {
    padding: 0;
    background: #f8f8f8;
  }

  .services-mobile-shell {
    width: 100%;
    margin: 0;
    padding: 48px 21px 40px;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.92)),
      url("../images/service/nodos.png");
    background-size: cover;
    background-position: center center;
    box-shadow: none;
    overflow: hidden;
  }

  .services-mobile-header {
    max-width: 360px;
    margin: 0 auto 26px;
    padding: 0;
  }

  .services-mobile-header h2 {
    font-size: clamp(38px, 10.4vw, 48px);
    line-height: 0.96;
    letter-spacing: 0;
  }

  .services-mobile-header h2 span {
    display: block;
  }

  .services-mobile-intro {
    max-width: 335px;
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.5;
  }

  .services-mobile-carousel {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    overflow: hidden;
    touch-action: pan-y;
  }

  .services-mobile-grid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    transform: translate3d(calc(var(--services-carousel-index, 0) * -100%), 0, 0);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .services-mobile-card {
    flex: 0 0 100%;
    min-height: 375px;
    padding: 26px 26px 28px;
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98);
    transform: none;
  }

  .services-mobile-card:hover {
    transform: none;
  }

  .services-mobile-card::after {
    display: none;
  }

  .services-mobile-card__media {
    min-height: 170px;
    margin-bottom: 24px;
  }

  .services-mobile-card__media::before {
    width: 150px;
    height: 150px;
  }

  .services-mobile-card__media img {
    width: 210px;
    max-height: 175px;
  }

  .services-mobile-card__content h3 {
    max-width: 285px;
    margin: 0 auto 13px;
    font-size: 19px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .services-mobile-card__content p {
    max-width: 286px;
    font-size: 14px;
    line-height: 1.52;
  }

  .services-mobile-dots {
    margin-top: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
  }

  .services-mobile-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cfcfcf;
    display: block;
    cursor: pointer;
    transition:
      background 180ms ease,
      transform 180ms ease;
  }

  .services-mobile-dot.is-active {
    background: var(--brand-red);
    transform: scale(1.08);
  }

  .services-mobile-note {
    max-width: none;
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: 18px;
    grid-template-columns: 72px 1fr;
    gap: 16px;
  }

  .services-mobile-note__icon {
    width: 72px;
    height: 72px;
    font-size: 42px;
  }

  .services-mobile-note__text strong {
    font-size: 17px;
    line-height: 1.25;
  }

  .services-mobile-note__text span {
    margin-top: 8px;
    display: block;
    font-size: 12.5px;
    line-height: 1.42;
  }

  .services-scope-section {
    padding: 0 21px 42px;
    background: #f8f8f8;
  }

  .services-scope-shell {
    width: 100%;
    max-width: none;
    min-height: 1290px;
    aspect-ratio: auto;
    margin: 0;
    padding: 42px 20px 26px;
    border-radius: 18px;
    background-color: #ffffff;
    background-image: url("../images/service/scope-mobile-generated.png?v=20260704-2");
    background-size: 100% 100%;
    background-position: center center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  }

  .services-scope-content {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
  }

  .services-scope-kicker {
    margin-bottom: 26px;
    gap: 12px;
    font-size: 12px;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .services-scope-kicker i {
    font-size: 20px;
  }

  .services-scope-kicker::after {
    left: 32px;
    bottom: -13px;
    width: 31px;
    height: 2px;
  }

  .services-scope-content h2 {
    max-width: 335px;
    font-size: clamp(34px, 8.8vw, 39px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .services-scope-intro {
    max-width: 320px;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.45;
  }

  .services-scope-list {
    margin-top: 160px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-scope-item {
    min-height: 74px;
    padding: 11px 12px;
    border-color: rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.045);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .services-scope-item:hover {
    transform: none;
  }

  .services-scope-item__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .services-scope-item__copy h3 {
    margin-bottom: 4px;
    font-size: 15.5px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .services-scope-item__copy p {
    font-size: 12.5px;
    line-height: 1.3;
  }

  .services-scope-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    min-height: 0;
    margin-top: 18px;
    padding: 20px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    grid-template-columns: 58px 1fr;
    gap: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.035);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .services-scope-note__icon {
    width: 48px;
    height: 48px;
    border-width: 2px;
    font-size: 24px;
  }

  .services-scope-note p {
    max-width: none;
    font-size: 14px;
    line-height: 1.45;
  }

  .services-how-section {
    padding: 0 21px 42px;
    background: #f8f8f8;
  }

  .services-how-shell {
    width: 100%;
    max-width: none;
    padding: 42px 20px 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.045);
  }

  .services-how-shell::before,
  .services-how-shell::after {
    width: 180px;
    height: 92px;
    opacity: 0.14;
  }

  .services-how-shell::before {
    left: -72px;
    top: 12px;
  }

  .services-how-shell::after {
    right: -58px;
    top: 20px;
  }

  .services-how-header {
    max-width: none;
    margin: 0 auto 34px;
  }

  .services-how-kicker {
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 0.28em;
  }

  .services-how-header h2 {
    font-size: clamp(52px, 13.2vw, 60px);
    line-height: 0.94;
    letter-spacing: 0;
  }

  .services-how-header h2::after {
    width: 62px;
    height: 3px;
    margin-top: 22px;
  }

  .services-how-intro {
    max-width: 335px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.42;
  }

  .services-how-carousel {
    position: relative;
    z-index: 3;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
  }

  .services-how-flow {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 0;
    transform: translate3d(calc(var(--services-how-carousel-index, 0) * -100%), 0, 0);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .services-how-arrow {
    display: none;
  }

  .services-how-card {
    flex: 0 0 100%;
    min-height: 600px;
    padding: 18px 22px 28px;
    border-radius: 18px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
    transform: none;
  }

  .services-how-card:hover {
    transform: none;
  }

  .services-how-card::before,
  .services-how-card::after {
    display: none;
  }

  .services-how-number {
    position: relative;
    left: auto;
    top: auto;
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    transform: none;
    font-size: 30px;
  }

  .services-how-card:hover .services-how-number {
    transform: none;
  }

  .services-how-card h3 {
    max-width: 300px;
    margin: 0 auto 24px;
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .services-how-image {
    min-height: 315px;
    margin-bottom: 24px;
  }

  .services-how-image::before {
    display: none;
  }

  .services-how-image img {
    width: 100%;
    max-height: 315px;
  }

  .services-how-card p {
    max-width: 265px;
    font-size: 18px;
    line-height: 1.45;
  }

  .services-how-dots {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
  }

  .services-how-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cfcfcf;
    display: block;
    cursor: pointer;
    transition:
      background 180ms ease,
      transform 180ms ease;
  }

  .services-how-dot.is-active {
    background: var(--brand-red);
    transform: scale(1.08);
  }

  .services-how-benefits {
    margin-top: 28px;
    padding: 11px 14px 12px;
    border-radius: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    box-shadow: none;
    overflow: hidden;
  }

  .services-how-benefit {
    position: relative;
    min-height: 26px;
    padding: 0 12px;
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    column-gap: 10px;
    align-items: center;
    justify-content: stretch;
    gap: 10px;
    font-size: 10.5px;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
  }

  .services-how-benefit:not(:nth-child(4)) {
    border-right: 0;
  }

  .services-how-benefit:nth-child(odd) {
    border-right: 1px solid #d7d7d7;
  }

  .services-how-benefit:nth-child(-n + 2) {
    border-bottom: 1px solid #d7d7d7;
  }

  .services-how-benefit i {
    width: 16px;
    height: 16px;
    border: 2px solid var(--brand-red);
    border-radius: 50%;
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
  }

  .services-how-benefit i::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-size: 9px;
    font-weight: 900;
  }

  .services-how-bottom-note {
    margin-top: 10px;
    padding-top: 10px;
    gap: 10px;
    font-size: 12.5px;
    line-height: 1.18;
  }

  .services-how-bottom-note-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .services-how-bottom-note strong {
    max-width: 245px;
    font-size: 15px;
    line-height: 1.15;
  }

  .services-mobile-carousel,
  .services-how-carousel,
  .services-signs-carousel,
  .services-mobile-carousel *,
  .services-how-carousel *,
  .services-signs-carousel *,
  .services-mobile-card,
  .services-how-card,
  .services-sign-card,
  .services-mobile-dot,
  .services-how-dot,
  .services-signs-dot {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .services-mobile-carousel *:focus,
  .services-mobile-carousel *:focus-visible,
  .services-mobile-carousel *:active,
  .services-how-carousel *:focus,
  .services-how-carousel *:focus-visible,
  .services-how-carousel *:active,
  .services-signs-carousel *:focus,
  .services-signs-carousel *:focus-visible,
  .services-signs-carousel *:active {
    outline: 0;
    box-shadow: none;
  }

  .services-mobile-card,
  .services-how-card,
  .services-sign-card {
    box-shadow: none;
  }

  .services-mobile-card:hover,
  .services-mobile-card:active,
  .services-mobile-card:focus,
  .services-mobile-card:focus-visible,
  .services-how-card:hover,
  .services-how-card:active,
  .services-how-card:focus,
  .services-how-card:focus-visible,
  .services-sign-card:hover,
  .services-sign-card:active,
  .services-sign-card:focus,
  .services-sign-card:focus-visible {
    transform: none;
  }

  .services-mobile-card:hover::after,
  .services-mobile-card:active::after,
  .services-how-card:hover::after,
  .services-how-card:active::after,
  .services-sign-card:hover::after,
  .services-sign-card:active::after {
    opacity: 0;
  }

  .services-signs-section {
    padding: 0 21px 42px;
    background: #f8f8f8;
  }

  .services-signs-shell {
    width: 100%;
    max-width: none;
    padding: 42px 20px 28px;
    border-radius: 18px;
    background:
      linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.95)),
      url("../images/service/nodos.png");
    background-size: cover;
    background-position: center center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.045);
  }

  .services-signs-header {
    max-width: none;
    margin: 0 auto 30px;
  }

  .services-signs-header h2 {
    max-width: 332px;
    margin: 0 auto;
    font-size: 48px;
    line-height: 0.98;
    letter-spacing: 0;
  }

  .services-signs-header h2 span {
    display: block;
  }

  .services-signs-header h2::after {
    width: 74px;
    height: 3px;
    margin-top: 20px;
  }

  .services-signs-carousel {
    position: relative;
    z-index: 3;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
  }

  .services-signs-grid {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 0;
    transform: translate3d(calc(var(--services-signs-carousel-index, 0) * -100%), 0, 0);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .services-sign-card {
    flex: 0 0 100%;
    min-height: 650px;
    padding: 24px 22px 26px;
    border-radius: 18px;
    box-shadow: none;
    transform: none;
  }

  .services-sign-card:hover {
    border-color: #dddddd;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 0.94));
    box-shadow: none;
  }

  .services-sign-card::after {
    display: none;
  }

  .services-sign-card__top {
    min-height: 72px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .services-sign-number {
    width: 40px;
    height: 44px;
    font-size: 22px;
  }

  .services-sign-card h3 {
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .services-sign-screen {
    width: 100%;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 14px;
    border-radius: 16px;
    box-shadow: none;
  }

  .services-sign-screen__label {
    height: 42px;
    font-size: 12px;
  }

  .services-sign-screen img {
    aspect-ratio: 1 / 1;
    background: #f8f8f8;
    object-fit: contain;
  }

  .services-sign-alert {
    min-height: 52px;
    margin-top: 14px;
    padding: 0 14px;
    gap: 12px;
  }

  .services-sign-alert span {
    font-size: 13px;
  }

  .services-sign-card > p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .services-signs-dots {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
  }

  .services-signs-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cfcfcf;
    display: block;
    cursor: pointer;
    transition:
      background 180ms ease,
      transform 180ms ease;
  }

  .services-signs-dot.is-active {
    background: var(--brand-red);
    transform: scale(1.08);
  }

  .services-areas-section {
    padding: 0 21px 42px;
    background: #f8f8f8;
  }

  .services-areas-shell {
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .services-areas-intro-card {
    position: relative;
    display: block;
    min-height: 574px;
    padding: 132px 18px 30px;
    border: 1px solid rgba(221, 221, 221, 0.78);
    border-radius: 18px;
    background:
      linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.94)),
      url("../images/service/nodos.png");
    background-size: cover;
    background-position: center center;
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
    overflow: hidden;
  }

  .services-areas-map-pin--large {
    left: 50%;
    top: 42px;
    width: 54px;
    height: 54px;
    font-size: 44px;
    transform: translateX(-50%);
  }

  .services-areas-map-pin--large::after {
    width: 72px;
    height: 72px;
  }

  .services-areas-map-pin--one {
    left: 12%;
    top: 62px;
  }

  .services-areas-map-pin--two {
    left: auto;
    right: 12%;
    top: 188px;
  }

  .services-areas-header {
    max-width: none;
  }

  .services-areas-header h2 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 35px;
    line-height: 1.18;
    letter-spacing: 0;
  }

  .services-areas-header p {
    max-width: 326px;
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.45;
  }

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

  .services-area-separator {
    display: none;
  }

  .services-area-city {
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid rgba(216, 221, 226, 0.96);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #111111;
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.028),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    font-size: 17px;
    letter-spacing: 0;
    gap: 10px;
    animation: none;
  }

  .services-area-city::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-red);
    flex: 0 0 auto;
  }

  .services-area-city::after {
    display: none;
  }

  .services-area-city:hover {
    color: #111111;
    transform: none;
    text-shadow: none;
  }

  .services-area-city:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 178px;
  }

  .services-areas-cta-card {
    min-height: 0;
    margin-top: 24px;
    padding: 46px 18px 30px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
    background:
      linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.96)),
      url("../images/service/nodos.png");
    background-size: cover;
    background-position: center center;
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }

  .services-areas-cta-card:hover .services-areas-cta-rotor img {
    transform: none;
  }

  .services-areas-cta-card::before {
    left: -170px;
    bottom: 112px;
    opacity: 0.1;
  }

  .services-areas-cta-card::after {
    right: -170px;
    top: 22px;
    opacity: 0.1;
  }

  .services-areas-cta-copy h3 {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .services-areas-cta-title {
    font-size: 35px !important;
    line-height: 1.08;
  }

  .services-areas-cta-copy p {
    max-width: 320px;
    margin: 22px auto 0;
    font-size: 18px;
    line-height: 1.45;
  }

  .services-areas-cta-rotor {
    min-height: 214px;
    margin-top: 20px;
  }

  .services-areas-rotor-halo {
    width: 202px;
    height: 202px;
  }

  .services-areas-cta-rotor img {
    width: 178px;
  }

  .services-areas-cta-actions {
    width: 100%;
  }

  .services-areas-buttons {
    width: 100%;
    margin-top: 24px;
    flex-direction: column;
    gap: 14px;
  }

  .services-areas-primary-btn,
  .services-areas-secondary-btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 18px;
    gap: 14px;
  }

  .services-areas-primary-btn:hover,
  .services-areas-secondary-btn:hover {
    transform: none;
    box-shadow: none;
  }

  .services-areas-secondary-btn {
    background: rgba(255, 255, 255, 0.9);
    border-width: 1.5px;
  }

  .services-areas-secondary-btn i {
    font-size: 22px;
  }

  .services-areas-tagline {
    margin-top: 28px;
    justify-content: center;
    gap: 14px;
  }

  .services-areas-tagline::after {
    content: "";
    width: 50px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-red);
    display: block;
  }

  .services-areas-tagline span {
    width: 50px;
    height: 2px;
  }

  .services-areas-tagline p {
    font-size: 16px;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .services-hero {
    min-height: 812px;
  }

  .services-hero-overlay {
    padding-left: 17px;
    padding-right: 17px;
  }

  .services-hero-copy h1 {
    max-width: 320px;
    font-size: 36px;
  }

  .services-hero-subtitle {
    max-width: 300px;
    font-size: 14px;
  }

  .services-hero-card {
    grid-template-columns: 52px minmax(0, 1fr) 32px;
    gap: 11px;
  }

  .services-hero-card-icon {
    width: 52px;
  }

  .services-mobile-shell {
    padding-left: 17px;
    padding-right: 17px;
  }

  .services-mobile-card {
    min-height: 360px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .services-mobile-card__media {
    min-height: 155px;
  }

  .services-mobile-card__media img {
    width: 190px;
  }

  .services-mobile-card__content h3 {
    font-size: 18px;
  }

  .services-mobile-card__content p {
    font-size: 13px;
  }

  .services-scope-section {
    padding-left: 17px;
    padding-right: 17px;
  }

  .services-scope-shell {
    min-height: 1240px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-scope-content h2 {
    font-size: 32px;
  }

  .services-scope-intro {
    font-size: 16px;
  }

  .services-scope-list {
    margin-top: 150px;
  }

  .services-scope-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
  }

  .services-scope-item__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .services-scope-item__copy h3 {
    font-size: 14px;
  }

  .services-scope-item__copy p {
    font-size: 11.5px;
  }

  .services-how-section {
    padding-left: 17px;
    padding-right: 17px;
  }

  .services-how-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-how-kicker {
    font-size: 12px;
  }

  .services-how-header h2 {
    font-size: 47px;
  }

  .services-how-intro {
    font-size: 16px;
  }

  .services-how-card {
    min-height: 560px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .services-how-number {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }

  .services-how-card h3 {
    font-size: 22px;
  }

  .services-how-image {
    min-height: 285px;
  }

  .services-how-image img {
    max-height: 285px;
  }

  .services-how-card p {
    font-size: 16px;
  }

  .services-how-benefit {
    min-height: 26px;
    font-size: 10px;
  }

  .services-signs-section {
    padding-left: 17px;
    padding-right: 17px;
  }

  .services-signs-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-signs-header h2 {
    font-size: 42px;
  }

  .services-sign-card {
    min-height: 540px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .services-sign-card__top {
    min-height: 68px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .services-sign-number {
    width: 36px;
    height: 40px;
    font-size: 19px;
  }

  .services-sign-card h3 {
    font-size: 21px;
  }

  .services-sign-screen {
    max-width: 250px;
  }

  .services-sign-card > p {
    font-size: 14px;
  }

  .services-areas-section {
    padding-left: 17px;
    padding-right: 17px;
  }

  .services-areas-intro-card {
    min-height: 552px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-areas-header h2 {
    font-size: 31px;
  }

  .services-areas-header p {
    font-size: 16px;
  }

  .services-area-city {
    min-height: 46px;
    padding: 0 12px;
    font-size: 14px;
  }

  .services-areas-cta-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-areas-cta-copy h3 {
    font-size: 29px;
  }

  .services-areas-cta-title {
    font-size: 31px !important;
  }

  .services-areas-cta-copy p {
    font-size: 16px;
  }

  .services-areas-primary-btn,
  .services-areas-secondary-btn {
    font-size: 16px;
  }

  .services-areas-tagline {
    gap: 10px;
  }

  .services-areas-tagline span,
  .services-areas-tagline::after {
    width: 34px;
  }

  .services-areas-tagline p {
    font-size: 13px;
  }
}
