/* =============================================================================
   Services Page
   ============================================================================= */

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

.services-hero {
  background: #fff;
  direction: rtl;
  overflow: hidden;
  padding: 34px 20px 0;
}

.services-hero__cta-container {
  margin-top: 20px;
}

.services-hero__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 22px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.services-hero__content {
  flex: 1;
  text-align: right;
}

@media (max-width: 768px) {
  .services-hero__top {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px 16px;
  }

  .services-hero__cta-container {
    width: 100%;
  }

  .services-hero__title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .services-hero__subtitle {
    font-size: 1.1rem;
  }

  .services-hero__quote-headline {
    font-size: 1.1rem;
  }

  .services-hero__quote-text {
    font-size: 1rem;
  }

  .services-hero__quote-row {
    flex-direction: column;
    gap: 16px;
  }

  .services-hero__quote-row .services-hero__cta {
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    position: static !important;
    align-self: center;
    font-size: 1rem;
    padding: 10px 22px;
    display: block;
    text-align: center;
  }
}

.services-hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--color-blue-dark);
  line-height: 1.05;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.services-hero__subtitle {
  font-size: 1.4rem;
  color: var(--color-blue-dark);
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Quote
   -------------------------------------------------------------------------- */

.services-hero__quote {
  text-align: right;
}

.services-hero__quote-headline {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-blue-dark);
  margin: 0 0 6px;
  line-height: 1.3;
}

.services-hero__quote-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: flex-start;
}

.services-hero__quote-row .services-hero__quote-text {
  flex: 0 1 auto;
}

.services-hero__quote-row .services-hero__cta {
  flex-shrink: 0;
  margin-top: -60px;
  margin-right: 150px;
}

.services-hero__quote-text {
  font-size: 1.4rem;
  color: var(--color-blue-dark);
  line-height: 1.5;
  margin: 0;
}

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

.services-hero__cta {
  display: inline-block;
  background: #1a365d;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(26, 54, 93, 0.28);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.services-hero__cta:hover {
  background: #142845;
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(26, 54, 93, 0.4);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Service Cards Row
   -------------------------------------------------------------------------- */

.services-hero__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto 32px;
  gap: 32px;
  align-items: stretch;
}

.services-hero__card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  max-height: 220px;
  box-shadow: 0 12px 28px rgba(0, 26, 77, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.services-hero__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0, 26, 77, 0.12);
}

.services-hero__card--left,
.services-hero__card--right {
  flex-direction: row-reverse;
}

.services-hero__card-image {
  flex: 0 0 46%;
  max-height: 220px;
  background: linear-gradient(135deg, #eaf1fb, #f7faff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 26, 77, 0.3);
  font-size: 0.8rem;
  overflow: hidden;
}

.services-hero__card-image img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
}

.services-hero__card-body {
  flex: 1;
  padding: 22px 20px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.services-hero__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-blue-dark);
  margin: 0;
  line-height: 1.18;
}

.services-hero__card-note {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-blue-dark);
  margin-top: 3px;
}

.services-hero__card-text {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.45;
  color: #333;
  margin: 0;
}

.services-hero__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.services-hero__card-list li {
  font-size: 1.2rem;
  color: #333;
  padding-right: 15px;
  position: relative;
  line-height: 1.35;
}

.services-hero__card-list li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: var(--color-gold);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Trust Badges
   -------------------------------------------------------------------------- */

.services-hero__badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  border: 1px solid rgba(0, 26, 77, 0.08);
  border-radius: 999px;
  width: 100%;
  margin: 18px 0 32px;
  box-shadow: 0 10px 26px rgba(0, 26, 77, 0.08);
  overflow: hidden;
}

.services-hero__badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  text-align: right;
}

.services-hero__badge-icon {
  width: 72px;
  height: 72px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4169e1;
  flex-shrink: 0;
}

.services-hero__badge-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-blue-dark);
  margin: 0;
  line-height: 1.2;
}

/* Tablet: 769–1024px — reduce badge padding so text fits without ugly wrapping */
@media (max-width: 1024px) and (min-width: 769px) {
  .services-hero__badges {
    gap: 0;
    border-radius: 16px;
  }

  .services-hero__badge {
    flex: 1;
    padding: 14px 16px;
    gap: 10px;
    border-left: 1px solid rgba(0, 26, 77, 0.1);
  }

  .services-hero__badge:last-child {
    border-left: none;
  }

  .services-hero__badge-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .services-hero__badge-text {
    font-size: 1rem;
    line-height: 1.3;
  }
}

/* =============================================================================
   Sports Doctor Consultation Section
   ============================================================================= */

.services-consult {
  position: relative;
  background: url("/wp-content/uploads/2026/04/White-Canvas_Prtners-e1777570488157.png")
    center/cover no-repeat;
  direction: rtl;
  overflow: hidden;
}

.services-consult::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(220, 232, 248, 0.4); /* #add8e6 with opacity */
  z-index: 1;
}

.services-consult__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 32%) minmax(0, 68%);
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px 22px 24px;
  gap: 32px;
  align-items: center;
}

.services-consult__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
  align-items: right;
}

.services-consult__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--color-blue-dark);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.services-consult__desc {
  max-width: 100%;
  font-size: 1.3rem;
  color: var(--color-blue-dark);
  line-height: 1.45;
  margin: 0 auto 0 10rem;
  font-weight: 500;
}

.services-consult__cta {
  display: inline-block;
  align-self: center;
  background: var(--color-blue-dark);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(26, 54, 93, 0.32);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.services-consult__cta:hover {
  background: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(26, 54, 93, 0.4);
  color: #fff;
}

.services-consult__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2px;
}

.services-consult__feature {
  background: #fff;
  border-radius: 28px;
  padding: 20px 28px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: right;
  box-shadow: 0 10px 26px rgba(0, 26, 77, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.services-consult__feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0, 26, 77, 0.12);
}

.services-consult__feature-icon {
  width: 72px;
  height: 72px;
  background: #f4f8ff;
  border: 2px solid #dbe6f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue-dark);
  margin: 0 auto 2px;
}

.services-consult__feature-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-blue-dark);
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

.services-consult__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-consult__feature-list li {
  font-size: 1.2rem;
  color: var(--color-blue-dark);
  line-height: 1.35;
  padding-right: 14px;
  position: relative;
  font-weight: 400;
}

.services-consult__feature-list li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: #4169e1;
  font-weight: 700;
}

/* Full-width trust band */
.services-consult__trust {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #dfe6ee;
  padding: 20px 40px;
  gap: 128px;
  direction: rtl;
  position: relative;
  z-index: 2;
}

.services-consult__cred {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 2px;
  text-align: right;
}

.services-consult__cred-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-consult__cred-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.services-consult__cred-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-blue-dark);
  margin: 0;
  line-height: 1.15;
}

.services-consult__cred-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-blue-dark);
  margin: 0;
  line-height: 1.3;
}

.services-consult__image {
  justify-self: stretch;
  width: 80%;
  max-width: 100%;
  min-height: 220px;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 26, 77, 0.25);
  font-size: 0.85rem;
}

.services-consult__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-consult__stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: var(--color-blue-dark);
  direction: rtl;
  padding: 12px 40px;
  gap: 0;
}

.services-consult__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-blue-dark);
  white-space: nowrap;
}

.services-consult__stat + .services-consult__stat::before {
  content: "|";
  color: rgba(0, 26, 77, 0.3);
  font-weight: 300;
  font-size: 1.1rem;
  margin-left: 24px;
}

.services-consult__stat svg {
  flex-shrink: 0;
  color: #4169e1;
}

/* Tablet: 769–1024px */
@media (max-width: 1024px) and (min-width: 769px) {
  .services-consult__inner {
    grid-template-columns: clamp(180px, 30%, 260px) 1fr;
    gap: 20px;
    padding: 24px 20px;
    align-items: stretch;
  }

  .services-consult__image {
    width: 100%;
    min-height: 300px;
    align-self: stretch;
    border-radius: 20px;
  }

  .services-consult__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .services-consult__desc {
    font-size: 1.1rem;
    margin-inline-start: 0;
    margin-inline-end: 0;
  }

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

  .services-consult__feature:first-child {
    grid-column: 1 / -1;
  }

  .services-consult__feature {
    padding: 16px 20px;
    border-radius: 18px;
    gap: 6px;
  }

  .services-consult__feature-icon {
    width: 52px;
    height: 52px;
  }

  .services-consult__feature-title {
    font-size: 1.15rem;
  }

  .services-consult__feature-list li {
    font-size: 1rem;
  }

  .services-consult__cta {
    font-size: 1.1rem;
    padding: 13px 28px;
  }

  .services-consult__trust {
    gap: 32px;
    padding: 16px 24px;
  }

  .services-consult__cred-icon {
    width: 44px;
    height: 44px;
  }

  .services-consult__cred-text {
    font-size: 1rem;
  }
}

/* =============================================================================
   VIP PRO Section
   ============================================================================= */

.services-vip {
  position: relative;
  background: url("/wp-content/uploads/2026/05/abcde.jpg") center/cover
    no-repeat;
  direction: rtl;
  overflow: hidden;
}

/* Geometric watermark overlay */
.services-vip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 80% 50%,
      rgba(65, 105, 225, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: 0;
}

/* Two-column inner: left=cards, right=illustration */
.services-vip__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 1500px;
  margin: 0 auto;
  padding: 52px 36px 36px;
  gap: 32px;
  align-items: start;
  justify-items: center;
}

/* ---- Left column ---- */
.services-vip__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.services-vip__header {
  text-align: right;
}

.services-vip__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  white-space: nowrap;
  font-weight: 600;
  color: var(--color-gold);
  margin: 0 0 10px;
  line-height: 1.25;
}

.services-vip__highlight {
  color: var(--color-gold);
  font-weight: 700;
}

.services-vip__title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.services-vip__title-row .services-vip__title {
  margin: 0;
}

.services-vip__badge {
  display: inline-block;
  flex-shrink: 0;
  background: transparent;
  color: var(--color-gold);
  font-family: 'Purgatory', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 4px;
  margin-top: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transform: rotate(-12deg);
  transform-origin: center center;
}

.services-vip__title-white {
  color: #fff;
}

.services-vip__desc-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.services-vip__desc-row .services-vip__desc {
  flex: 1;
}

.services-vip__desc-row .services-vip__cta {
  flex-shrink: 0;
}

.services-vip__desc {
  font-size: 1.4rem;
  color: rgba(255, 255, 255);
  line-height: 1.55;
  margin: 0;
  max-width: 820px;
}

/* 3x3 card grid */
.services-vip__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.services-vip__card {
  background: rgba(0, 26, 77, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 22px 26px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  text-align: right;
  direction: rtl;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.services-vip__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.services-vip__card-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 72px;
  height: 72px;
  background: rgba(196, 162, 87, 0.12);
  border-radius: 50%;
  order: 0;
}

.services-vip__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  order: 1;
}

.services-vip__card-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.services-vip__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}

.services-vip__card-text {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

/* ---- Right column ---- */
.services-vip__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-bottom: 20px;
  height: 100%;
  min-height: 100%;
}

.services-vip__image {
  width: 100%;
  flex: 1;
  min-height: 320px;
  background: rgba(65, 105, 225, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  overflow: hidden;
}

.services-vip__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.services-vip__cta {
  display: inline-block;
  width: auto;
  min-width: 260px;
  margin-top: auto;
  text-align: center;
  background: var(--color-blue-dark);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1.5px solid var(--color-blue-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.services-vip__cta-gold {
  color: var(--color-gold);
}

.services-vip__cta:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  color: var(--color-blue-dark);
}

.services-vip__cta:hover .services-vip__cta-gold {
  color: var(--color-blue-dark);
}

/* =============================================================================
   Motoric Racing Fitness Assessment Section
   ============================================================================= */

.services-motor {
  background: #f9f9f7;
  direction: rtl;
  overflow: hidden;
  position: relative;
}

/* Subtle circular track watermark */
.services-motor::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 60px solid rgba(0, 26, 77, 0.025);
  pointer-events: none;
  z-index: 0;
}

.services-motor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 30px solid rgba(0, 26, 77, 0.018);
  pointer-events: none;
  z-index: 0;
}

/* Title block */
.services-motor__top {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 52px 24px 36px;
}

.services-motor__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--color-blue-dark);
  margin: 0 0 6px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.services-motor__title-en {
  display: block;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: var(--color-blue-dark);
  letter-spacing: 0.04em;
  margin-top: 4px;
  opacity: 1;
}

.services-motor__subtitle-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.services-motor__subtitle-row .services-motor__subtitle {
  flex: 1;
  margin: 0;
}

.services-motor__subtitle-row .services-motor__cta {
  flex-shrink: 0;
}

.services-motor__subtitle {
  font-size: 1.4rem;
  color: var(--color-blue-dark);
  line-height: 1.55;
  margin: 12px auto 0;
  max-width: 700px;
  font-weight: 500;
  text-align: right;
}

/* Timeline row */
.services-motor__timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px 32px;
  gap: 0;
  align-items: start;
}

/* Hide the old horizontal line */
.services-motor__line {
  display: none;
}

/* Each pillar */
.services-motor__pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  gap: 10px;
  position: relative;
}

.services-motor__pillar:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 2px;
  background: var(--color-blue-dark);
  opacity: 0.5;
}

.services-motor__icon-wrap {
  width: 130px;
  height: 130px;
  background: #fff;
  border: 2px solid rgba(0, 26, 77, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 28px rgba(0, 26, 77, 0.1),
    0 2px 8px rgba(212, 175, 55, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  z-index: 2;
}

.services-motor__pillar:hover .services-motor__icon-wrap {
  transform: translateY(-6px);
  box-shadow:
    0 16px 34px rgba(0, 26, 77, 0.12),
    0 4px 10px rgba(212, 175, 55, 0.15);
}

.services-motor__pillar-title {
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--color-blue-dark);
  margin: 0;
  line-height: 1.2;
}

.services-motor__pillar-en {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-blue-dark);
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
  opacity: 1;
}

.services-motor__pillar-text {
  font-size: 1.2rem;
  color: var(--color-blue-dark);
  line-height: 1.5;
  margin: 0;
  max-width: 200px;
}

/* CTA button */
.services-motor__cta-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 24px 36px;
}

.services-motor__cta {
  display: inline-block;
  background: var(--color-blue-dark);
  color: #fff;
  border: 2.5px solid var(--color-blue-dark);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 26, 77, 0.35);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.services-motor__cta:hover {
  background: #fff;
  color: var(--color-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 26, 77, 0.35);
}

/* =============================================================================
   Athletic Balance Section
   ============================================================================= */

.services-balance {
  position: relative;
  background: url("/wp-content/uploads/2026/06/background3-scaled.jpg") center/cover no-repeat;
  direction: rtl;
  overflow: hidden;
}

/* Anatomical SVG watermark — centered, large, behind content */
.services-balance__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 900px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Paper-texture grain via box-shadow on ::before */
.services-balance::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 100%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.services-balance__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 28px 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
}

/* ── Header ── */
.services-balance__header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
}

.services-balance__title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.services-balance__brand {
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  font-family: 'Purgatory', cursive;
  font-weight: 700;
  font-style: normal;
  color: #1a365d;
  opacity: 1;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0;
}

.services-balance__brand::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1a365d, transparent);
  margin-top: 4px;
}

.services-balance__title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--color-blue-dark);
  text-align: right;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.services-balance__subtitle {
  font-size: 1.35rem;
  color: var(--color-blue-dark);
  text-align: right;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* ── Visual: Before / Arrow / After ── */
.services-balance__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  direction: ltr; /* keep silhouettes ltr so before=left, after=right */
}

.services-balance__sil {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 999px;
}

.services-balance__sil-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.services-balance__img {
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 999px;
  padding: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.services-balance__center-img {
  width: 150px;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

.services-balance__sil--before .services-balance__sil-label {
  color: #aaa;
}

.services-balance__sil--after .services-balance__sil-label {
  color: var(--color-blue-dark);
}

.services-balance__arrow {
  display: flex;
  align-items: center;
  padding-bottom: 44px;
}

/* ── Marketing copy ── */
.services-balance__copy {
  width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-balance__tagline {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-blue-dark);
  letter-spacing: -0.01em;
  margin: 0;
  text-align: right;
  display: block;
}

.services-balance__body {
  font-size: 1.4rem;
  color: #3a3a4a;
  line-height: 1.55;
  margin: 0;
  text-align: right;
  display: block;
}

.services-balance__body strong {
  color: var(--color-blue-dark);
  font-weight: 800;
}

/* ── Three step pillars ── */
.services-balance__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.services-balance__step {
  background: #fff;
  border: 1px solid var(--color-blue-dark);
  border-radius: 28px;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 6px 20px rgba(0, 26, 77, 0.05),
    0 2px 6px rgba(201, 168, 76, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.services-balance__step:hover {
  transform: translateY(-5px);
  box-shadow:
    0 14px 30px rgba(0, 26, 77, 0.09),
    0 4px 10px rgba(201, 168, 76, 0.14);
}

.services-balance__step-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.services-balance__step-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-blue-dark);
  margin: 0;
  text-align: center;
}

.services-balance__step-text {
  font-size: 1.2em;
  color: var(--color-blue-dark);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

/* ── CTA ── */
.services-balance__cta-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.services-balance__cta {
  display: inline-block;
  background: var(--color-blue-dark);
  color: #fff8e7;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 13px 36px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(0, 26, 77, 0.2);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.services-balance__cta:hover {
  background: #c9a84c;
  color: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201, 168, 76, 0.35);
}

/* =============================================================================
   FAQ Section
   ============================================================================= */

.services-faq {
  background: var(--color-blue-dark);
  direction: rtl;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric background pattern */
.services-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 10% 20%,
      rgba(65, 105, 225, 0.12) 0%,
      transparent 45%
    ),
    radial-gradient(
      ellipse at 90% 80%,
      rgba(65, 105, 225, 0.08) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: 0;
}

.services-faq__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 52px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ── Header ── */
.services-faq__header {
  text-align: center;
}

.services-faq__title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.15;
}

.services-faq__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ── Groups ── */
.services-faq__groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .services-faq__groups {
    grid-template-columns: 1fr;
  }
}

.services-faq__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.services-faq__group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-faq__group-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-faq__group-title svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

/* ── Accordion Items ── */
.services-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-faq__item:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-faq__q {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  text-align: right;
  direction: rtl;
  transition: background 0.15s ease;
}

.services-faq__q:hover {
  background: rgba(255, 255, 255, 0.03);
}

.services-faq__q span:first-child {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  flex: 1;
}

/* Plus/Minus icon */
.services-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  position: relative;
  transition:
    border-color 0.2s ease,
    transform 0.3s ease;
}

.services-faq__icon::before,
.services-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--color-gold);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.services-faq__icon::before {
  width: 10px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services-faq__icon::after {
  width: 1.5px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Open state */
.services-faq__item--open .services-faq__icon {
  border-color: var(--color-gold);
  transform: rotate(45deg);
}

.services-faq__item--open .services-faq__q span:first-child {
  color: var(--color-gold);
}

/* Answer panel */
.services-faq__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s ease;
}

.services-faq__a p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.65;
  margin: 0;
  padding: 0 0 16px;
  border-right: 2px solid rgba(212, 175, 55, 0.3);
  padding-right: 16px;
}

.services-faq__item--open .services-faq__a {
  max-height: 400px;
}

/* ── Closing CTA ── */
.services-faq__closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-faq__closing-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.services-faq__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  padding: 11px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.services-faq__wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.services-faq__wa svg {
  flex-shrink: 0;
}

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

@media (max-width: 768px) {
  .services-hero__cards {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
  }

  .services-hero__card {
    max-width: 100%;
    width: 100%;
    flex-direction: row-reverse;
    max-height: 160px;
    overflow: hidden;
  }

  .services-hero__card-image {
    flex: 0 0 40%;
    max-height: 160px;
    min-height: unset;
    overflow: hidden;
  }

  .services-hero__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center !important;
  }

  .services-hero__card-body {
    flex: 1;
    padding: 14px 12px;
  }

  .services-hero__card-body {
    text-align: center;
    padding: 20px 16px;
  }

  .services-hero__card-body {
    text-align: right;
  }

  .services-hero__card-title {
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: right;
  }

  .services-hero__card-note {
    font-size: 1.2rem;
    text-align: right;
  }

  .services-hero__card-list {
    text-align: right;
  }

  .services-hero__card-list li {
    font-size: 1.15rem;
    text-align: right;
    padding-right: 15px;
  }

  .services-hero__card-list li::before {
    position: absolute;
    right: 0;
    margin-left: 0;
  }

  .services-page .services-hero__badges {
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    margin: 12px 16px 24px;
    width: auto;
    overflow: hidden;
  }

  .services-page .services-hero__badge {
    flex-direction: row !important;
    justify-content: flex-end !important;
    border-bottom: 1px solid rgba(10, 31, 61, 0.08);
    padding: 12px 16px;
    gap: 12px;
    align-items: center;
  }

  .services-page .services-hero__badge:last-child {
    border-bottom: none;
  }

  .services-page .services-hero__badge-icon {
    order: -1 !important;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .services-page .services-hero__badge-text {
    order: 0 !important;
    font-size: 1rem;
    text-align: right;
    margin: 0;
    flex: 1;
    line-height: 1.4;
  }

  .services-consult__inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 32px;
  }

  .services-consult__image {
    min-height: 260px;
    order: -1;
  }

  .services-consult__features,
  .services-consult__creds {
    grid-template-columns: 1fr;
  }

  .services-consult__content {
    text-align: center;
    align-items: center;
  }

  .services-consult__title {
    text-align: center;
  }

  .services-consult__desc {
    font-size: 1.3rem;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
  }

  .services-consult__stats {
    grid-template-columns: 1fr;
  }

  .services-consult__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-start;
  }

  .services-consult__trust {
    flex-direction: column;
    gap: 20px;
    padding: 24px 16px;
    direction: rtl;
  }

  .services-consult__cred {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .services-consult__cred-text {
    font-size: 1rem;
    text-align: center;
  }

  .services-motor__timeline {
    grid-template-columns: 1fr;
    padding: 0 16px 24px;
  }

  .services-motor__line {
    display: none;
  }

  .services-motor__pillar:not(:last-child)::after {
    display: none;
  }

  .services-motor__top {
    padding: 36px 20px 24px;
    text-align: center;
  }

  .services-motor__title {
    font-size: 2rem;
    text-align: center;
  }

  .services-motor__subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin: 12px auto 0;
  }

  .services-vip__inner {
    display: flex;
    flex-direction: column;
    padding: 36px 20px 28px;
  }

  .services-vip__left {
    order: 2;
  }

  .services-vip__right {
    order: 3;
  }

  .services-vip__cards {
    grid-template-columns: 1fr;
  }

  .services-vip__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .services-vip__card-icon {
    width: 80px;
    height: 80px;
  }

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

  .services-vip__right {
    padding-top: 0;
    order: -1;
    width: 100%;
  }

  .services-vip__image {
    min-height: 240px;
    height: auto;
  }

  .services-vip__image img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: 100%;
  }

  .services-balance__steps {
    grid-template-columns: 1fr;
  }

  .services-balance__visual {
    flex-direction: column;
    align-items: center;
  }

  .services-balance__arrow {
    transform: rotate(90deg);
    padding-bottom: 0;
  }

  .services-balance__watermark {
    width: 320px;
    height: 480px;
  }
}

/* Badge icon-right fix — scoped to page-services, all mobile sizes */
@media (max-width: 768px) {
  .services-page .services-hero__badge {
    flex-direction: row !important;
    justify-content: flex-end !important;
  }
  .services-page .services-hero__badge-icon {
    order: -1 !important;
  }
  .services-page .services-hero__badge-text {
    order: 0 !important;
  }
}

/* VIP section — all mobile sizes */
@media (max-width: 768px) {
  .services-vip__inner {
    padding: 32px 16px 24px;
    gap: 20px;
  }

  .services-vip__title-row {
    display: block;
    text-align: right;
    width: 100%;
    margin-bottom: 12px;
  }

  .services-vip__title {
    font-size: clamp(1.45rem, 5.5vw, 1.8rem) !important;
    white-space: normal !important;
    display: inline !important;
    text-align: right;
    margin: 0;
  }

  .services-vip__badge {
    font-size: 0.85rem;
    padding: 3px 10px;
    display: inline-block !important;
    vertical-align: middle;
    margin-right: 6px;
    margin-top: 16px;
    margin-bottom: 8px;
  }

  .services-vip__desc-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
  }

  .services-vip__desc {
    font-size: 1rem;
  }

  .services-vip__cta {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
    align-self: center;
  }

  .services-vip__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-vip__card {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .services-vip__card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
  }

  .services-vip__card-label {
    font-size: 0.9rem;
  }

  .services-vip__card-title {
    font-size: 1.1rem;
  }

  .services-vip__card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .services-vip__title {
    font-size: clamp(1.1rem, 4.5vw, 1.3rem) !important;
  }
}

/* VIP section — tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .services-vip__inner {
    padding: 36px 24px 28px;
    gap: 24px;
  }

  .services-vip__title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    white-space: normal;
  }

  .services-vip__title-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .services-vip__badge {
    font-size: 0.95rem;
    padding: 3px 9px;
    transform: rotate(-12deg) translateY(-12px);
  }

  .services-vip__desc-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
  }

  .services-vip__desc {
    font-size: 1.1rem;
  }

  .services-vip__cta {
    font-size: 1rem;
    padding: 12px 24px;
  }

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

  .services-vip__card {
    padding: 16px 18px;
    gap: 8px;
  }

  .services-vip__card-icon {
    width: 48px;
    height: 48px;
  }

  .services-vip__card-label {
    font-size: 0.95rem;
  }

  .services-vip__card-title {
    font-size: 1.15rem;
  }

  .services-vip__card-text {
    font-size: 0.95rem;
  }
}

/* Motor section — all mobile sizes */
@media (max-width: 768px) {
  .services-motor__top {
    padding: 32px 16px 20px;
  }

  .services-motor__title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }

  .services-motor__title-en {
    font-size: 0.85rem;
  }

  .services-motor__subtitle-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .services-motor__subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .services-motor__cta {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
  }

  .services-motor__timeline {
    grid-template-columns: 1fr 1fr;
    padding: 0 16px 24px;
    gap: 16px;
  }

  .services-motor__pillar:not(:last-child)::after {
    display: none;
  }

  .services-motor__icon-wrap {
    width: 80px;
    height: 80px;
  }

  .services-motor__pillar-title {
    font-size: 1.1rem;
  }

  .services-motor__pillar-en {
    font-size: 0.7rem;
  }

  .services-motor__pillar-text {
    font-size: 0.9rem;
  }
}

/* Motor section — tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .services-motor__top {
    padding: 36px 20px 24px;
  }

  .services-motor__title {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  }

  .services-motor__title-en {
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  }

  .services-motor__subtitle-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .services-motor__subtitle {
    font-size: 1.1rem;
    text-align: center;
  }

  .services-motor__cta {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .services-motor__timeline {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 28px;
    gap: 12px;
  }

  .services-motor__pillar:not(:last-child)::after {
    display: none;
  }

  .services-motor__icon-wrap {
    width: 130px;
    height: 130px;
  }

  .services-motor__pillar-title {
    font-size: 1.85rem;
  }

  .services-motor__pillar-en {
    font-size: 1rem;
  }

  .services-motor__pillar-text {
    font-size: 1.2rem;
  }
}

/* Balance section — all mobile sizes */
@media (max-width: 768px) {
  .services-balance__inner {
    padding: 32px 16px 24px;
  }

  .services-balance__title-row {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .services-balance__brand {
    font-size: clamp(1.4rem, 6vw, 2rem);
    text-align: center;
  }

  .services-balance__title {
    font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
    white-space: normal !important;
    text-align: center;
  }

  .services-balance__subtitle,
  .services-balance__body {
    font-size: 1rem;
  }

  .services-balance__steps {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .services-balance__cta {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
  }
}
