/* ==========================================================================
   9O VAN — Services Page Styles (服務介紹)
   All values reference design-tokens.css via var(--token-name)
   ========================================================================== */

/* ------------------------------------------------------------------
   1. BANNER — 442px hero
   ------------------------------------------------------------------ */
.services-banner {
  position: relative;
  width: 100%;
  height: 442px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/services/banner.jpg') center / cover no-repeat;
  overflow: hidden;
}

.services-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.services-banner__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: var(--heading-2-size);
  font-weight: var(--heading-2-weight);
  color: var(--color-font-primary);
  letter-spacing: var(--heading-2-ls);
}

/* ------------------------------------------------------------------
   2. SERVICE TABS SECTION
   ------------------------------------------------------------------ */
.services-tabs {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(to bottom, #000 0%, #161a21 77%, var(--color-surface-dark) 100%);
}

.services-tabs__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* ------------------------------------------------------------------
   3. 3-STEP FLOW
   ------------------------------------------------------------------ */
.services-steps {
  background: var(--color-surface-dark);
  padding: 80px 0;
}

.services-steps__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.services-steps__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-font-primary);
  text-align: center;
  letter-spacing: 1.8px;
}

.services-steps__accent {
  font-family: var(--font-heading);
  font-size: 66px;
  font-weight: 500;
  color: rgba(255, 202, 64, 0.6);
  line-height: 1.5;
  letter-spacing: -0.726px;
}

.services-steps__accent--text {
  font-size: 32px;
  letter-spacing: 1.8px;
}

.services-steps__flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 760px;
}

.services-steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 0 0 auto;
  width: 200px;
}

.services-steps__circle {
  width: var(--step-circle-size);
  height: var(--step-circle-size);
  border-radius: var(--step-circle-radius);
  border: var(--step-circle-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-font-primary);
}

.services-steps__line {
  flex: 1;
  height: 0;
  border-top: 1px dashed var(--color-white-06);
  margin-top: 50px;
  min-width: 60px;
}

.services-steps__step-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-font-primary);
}

.services-steps__step-desc {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray-02);
  line-height: 1.625;
  letter-spacing: 0.16px;
  white-space: nowrap;
}

/* ------------------------------------------------------------------
   4. CALCULATOR (快速估算) — glass card with nested fees
   ------------------------------------------------------------------ */
.services-calc {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: var(--color-surface-dark);
}

.services-calc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 450px;
  background: url('../img/services/calc-bg.png') top center / cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.services-calc::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 280px;
  height: 170px;
  background: linear-gradient(to bottom, transparent, var(--color-surface-dark));
  z-index: 0;
}

.services-calc__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

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

.services-calc__title {
  font-family: var(--font-heading);
  font-size: var(--heading-2-size);
  font-weight: var(--heading-2-weight);
  color: var(--color-font-primary);
}

.services-calc__subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-font-primary);
  line-height: 1.625;
  letter-spacing: 0.16px;
}

.services-calc__card {
  width: 100%;
  max-width: 1200px;
  background: var(--calc-card-bg);
  backdrop-filter: var(--calc-card-blur);
  -webkit-backdrop-filter: var(--calc-card-blur);
  border: var(--calc-card-border);
  border-radius: var(--calc-card-radius);
  box-shadow: var(--calc-card-shadow);
  padding: 40px 46px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.services-calc__form-row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
}

.services-calc__form {
  display: flex;
  gap: 20px;
  flex: 1;
}

.services-calc__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-calc__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-font-primary);
  letter-spacing: 1.2px;
}

.services-calc__icon {
  width: 40px;
  height: 40px;
  color: var(--color-font-primary);
  flex-shrink: 0;
}

.services-calc__select-wrap {
  position: relative;
}

.services-calc__select {
  width: 100%;
  height: 56px;
  padding: 0 40px 0 20px;
  background: rgba(246, 246, 246, 0.05);
  border: none;
  border-radius: 12px;
  color: var(--color-font-primary);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='24' viewBox='0 0 12 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9L6 13L10 9' stroke='rgba(255,255,255,0.6)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.services-calc__select:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--color-font-accent);
}

.services-calc__select option {
  background: var(--color-surface-dark);
  color: var(--color-font-primary);
}

.services-calc__submit {
  flex-shrink: 0;
  height: 55px;
  min-width: 244px;
}

.services-calc__divider {
  width: 100%;
  height: 1px;
  background: var(--color-white-06);
  margin: 24px 0;
}

.services-calc__result {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
}

.services-calc__price {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-font-accent);
}

.services-calc__unit {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-font-primary);
  letter-spacing: 1.2px;
}

/* ------------------------------------------------------------------
   5. EXTRA FEES (nested inside calc card)
   ------------------------------------------------------------------ */
.services-fees {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.services-fees__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-font-primary);
  text-align: center;
}

.services-fees__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}

.fees-tabs {
  display: flex;
  gap: 40px;
  justify-content: center;
  position: relative;
}

.fees-tabs__item {
  padding: 2px 0 12px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: rgba(238, 238, 238, 0.8);
  letter-spacing: 1.2px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-default);
  white-space: nowrap;
}

.fees-tabs__item:hover {
  color: var(--color-font-accent);
}

.fees-tabs__item.is-active {
  color: var(--color-font-accent);
  border-bottom-color: var(--color-font-accent);
}

.fees-panel {
  display: none;
  width: 100%;
}

.fees-panel.is-active {
  display: block;
}

.fees-panel__content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  height: 433px;
  overflow: hidden;
  position: relative;
  display: flex;
}

.fees-panel__info {
  flex: 1;
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
}

.fees-panel__top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.fees-panel__icon-wrap {
  flex-shrink: 0;
}

.fees-panel__icon {
  width: 64px;
  height: 64px;
  color: var(--color-font-primary);
}

.fees-panel__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fees-panel__heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gray-02);
  letter-spacing: 1.2px;
}

.fees-panel__price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-font-primary);
  line-height: 1.5;
  letter-spacing: 1.68px;
}

.fees-panel__divider {
  border: none;
  border-top: 1px solid var(--color-white-06);
  margin: 0 0 20px;
}

.fees-panel__list {
  list-style: disc;
  padding: 0 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fees-panel__list li {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-font-primary);
  line-height: 2.3;
  letter-spacing: 0.96px;
}

.fees-panel__photo {
  width: 385px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 52px 48px 0;
}

.fees-panel__photo img {
  width: 100%;
  height: 336px;
  object-fit: cover;
  border-radius: 16px;
  background: white;
}

/* Stopover table variant */
.fees-panel__content--table {
  flex-direction: column;
  padding: 20px 50px 20px;
}

.fees-panel__top--table {
  margin-bottom: 0;
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
}

.fees-table th,
.fees-table td {
  padding: 0 0 0 38px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.96px;
}

.fees-table th {
  font-weight: 700;
  color: var(--color-font-primary);
  background: rgba(255, 255, 255, 0.15);
  height: 43px;
  line-height: 43px;
  padding-top: 0;
  padding-bottom: 0;
}

.fees-table td {
  font-weight: 400;
  color: var(--color-font-primary);
}

.fees-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

/* Add-on items variant */
.fees-panel__content--addon {
  display: flex;
  align-items: stretch;
}

.fees-panel__addon-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  padding: 52px;
  gap: 0;
  position: relative;
}

.fees-panel__addon-grid::after {
  content: '';
  position: absolute;
  left: 52px;
  right: 52px;
  top: 50%;
  height: 1px;
  background: var(--color-white-06);
}

.addon-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
}

.addon-item__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gray-02);
  letter-spacing: 1.2px;
}

.addon-item__price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-font-primary);
  line-height: 1.5;
  letter-spacing: 1.68px;
}

/* ------------------------------------------------------------------
   6. FEATURE CARDS (服務特色)
   Figma: 520x314px, 2x2, justify-between, gap 36px vertical
   ------------------------------------------------------------------ */
.services-features {
  position: relative;
  z-index: 1;
  background: var(--color-surface-dark);
  padding: 80px 0 380px;
  margin-bottom: -300px;
}

.services-features::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 600px;
  background: linear-gradient(to bottom, var(--color-surface-dark) 0%, #161a21 40%, #030304 100%);
  z-index: 0;
  pointer-events: none;
}

.services-features__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.services-features__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  width: 100%;
  max-width: 1080px;
}

.feature-card {
  width: 520px;
  height: 314px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid white;
  border-radius: 16px;
  overflow: hidden;
  padding: 47px 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-font-primary);
  flex-shrink: 0;
}

.feature-card__icon svg,
.feature-card__icon img {
  width: 48px;
  height: 48px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-font-primary);
  line-height: 1.5;
  letter-spacing: 1.68px;
}

.feature-card__list {
  list-style: disc;
  padding: 0 0 0 24px;
  margin: 0;
}

.feature-card__list li {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-font-primary);
  line-height: 2.3;
  letter-spacing: 0.96px;
}

/* ------------------------------------------------------------------
   7. FAQ SECTION
   ------------------------------------------------------------------ */
.services-faq {
  position: relative;
  z-index: 2;
  background: #030304;
  padding: 80px 0 0;
  overflow: hidden;
}

.services-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.services-faq .faq-accordion {
  width: 100%;
  padding: 0 40px;
}

.services-faq .faq-item.is-open .faq-item__question {
  opacity: 0.6;
}

.services-faq__promise-img {
  position: relative;
  width: 100%;
  max-width: 1476px;
  margin: 60px auto 0;
  border-radius: 16px;
  overflow: hidden;
  height: 270px;
}

.services-faq__promise-img img {
  width: 100%;
  height: 687px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.services-promise-heading {
  position: relative;
  z-index: 3;
  margin-top: -220px;
  padding-left: 120px;
}

.services-promise-heading .section-heading {
  align-items: flex-start;
  margin: 0;
}

/* ------------------------------------------------------------------
   8. PROFESSIONAL COMMITMENT + CTA (專業承諾)
   ------------------------------------------------------------------ */
.services-promise {
  background: var(--color-surface-dark);
  padding: 180px 0 0;
}

.services-promise__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.services-promise__grid {
  display: flex;
  flex-direction: column;
  gap: 72px;
  width: 100%;
}

.services-promise__row {
  display: flex;
  gap: 60px;
  padding: 0 100px;
}

.promise-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promise-item__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-font-primary);
}

.promise-item__list {
  list-style: disc;
  padding-left: 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: rgba(238, 238, 238, 0.8);
  line-height: 2.3;
  letter-spacing: 0.96px;
}

/* ------------------------------------------------------------------
   8b. CTA CARD (沒有您想要的車款嗎？)
   ------------------------------------------------------------------ */
.services-cta-card {
  background: var(--color-surface-dark);
  padding: 80px 0 120px;
}

.services-cta-card__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
  display: flex;
  justify-content: center;
}

.cta-card {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 450px;
  background: #3a3a3a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 64px 44px 20px rgba(19, 19, 19, 0.6);
}

.cta-card__photo {
  position: absolute;
  right: 0;
  top: -38px;
  width: 66%;
  height: calc(100% + 38px);
}

.cta-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-card__photo-gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, #3a3a3a 30%, rgba(58, 58, 58, 0));
}

.cta-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 0 84px;
  height: 100%;
  max-width: 480px;
}

.cta-card__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-card__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-font-primary);
}

.cta-card__subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0.16px;
  color: rgba(238, 238, 238, 0.8);
}

.cta-card__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ------------------------------------------------------------------
   RESPONSIVE — TABLET (max-width: 1024px)
   ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .services-banner {
    height: 320px;
  }

  .services-steps__flow {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .services-steps__line {
    width: 0;
    height: 40px;
    border-top: none;
    border-left: 1px dashed var(--color-white-06);
    margin-top: 0;
    min-width: 0;
  }

  .services-steps__item {
    width: 100%;
    max-width: 300px;
  }

  .services-calc__form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .services-calc__form {
    flex-direction: column;
  }

  .services-calc__submit {
    width: 100%;
    min-width: auto;
  }

  .fees-tabs {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .fees-panel__content {
    flex-direction: column;
    height: auto;
    min-height: 433px;
  }

  .fees-panel__photo {
    width: 100%;
    padding: 0 52px 32px;
  }

  .fees-panel__photo img {
    height: 240px;
  }

  .fees-panel__content--addon {
    flex-direction: column;
  }

  .services-features__grid {
    justify-content: center;
  }

  .feature-card {
    width: 100%;
    max-width: 520px;
    height: auto;
    min-height: 280px;
  }

  .services-faq .faq-accordion {
    padding: 0;
  }

  .services-promise-heading {
    padding-left: 80px;
    margin-top: -200px;
  }

  .services-promise__row {
    padding: 0 40px;
    gap: 40px;
  }

  .cta-card {
    height: auto;
    min-height: 380px;
  }

  .cta-card__content {
    padding: 40px 48px;
    max-width: 50%;
  }

  .cta-card__photo {
    width: 55%;
  }

  .cta-card__title {
    font-size: 28px;
  }
}

/* ------------------------------------------------------------------
   RESPONSIVE — MOBILE (max-width: 768px)
   ------------------------------------------------------------------ */
@media (max-width: 768px) {
  .services-banner {
    height: 260px;
  }

  .services-banner__title {
    font-size: 32px;
  }

  .services-tabs {
    padding: 60px 0 40px;
  }

  .services-tabs__container {
    gap: 32px;
  }

  .tab-group {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
  }

  .tab-group__item {
    width: 100%;
    text-align: center;
  }

  .services-steps {
    padding: 60px 0;
  }

  .services-steps__title {
    font-size: 24px;
  }

  .services-steps__accent {
    font-size: 48px;
  }

  .services-steps__accent--text {
    font-size: 24px;
  }

  .services-steps__circle {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .services-calc {
    padding: 60px 0;
  }

  .services-calc__card {
    padding: 24px 20px;
  }

  .services-calc__price {
    font-size: 32px;
  }

  .services-fees__title {
    font-size: 28px;
  }

  .fees-tabs {
    gap: 16px;
  }

  .fees-tabs__item {
    font-size: 14px;
    letter-spacing: 0.6px;
  }

  .fees-panel__info {
    padding: 24px;
  }

  .fees-panel__heading {
    font-size: 16px;
  }

  .fees-panel__price {
    font-size: 22px;
  }

  .fees-panel__icon {
    width: 48px;
    height: 48px;
  }

  .fees-panel__photo {
    padding: 0 24px 24px;
  }

  .fees-panel__photo img {
    height: 180px;
  }

  .fees-panel__content--table {
    padding: 16px 20px;
  }

  .fees-table th,
  .fees-table td {
    padding-left: 12px;
    font-size: 14px;
  }

  .fees-panel__addon-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .addon-item__price {
    font-size: 22px;
  }

  .services-features {
    padding: 60px 0;
  }

  .feature-card {
    padding: 28px 24px;
    min-height: auto;
  }

  .feature-card__title {
    font-size: 22px;
  }

  .feature-card__list li {
    font-size: 14px;
    line-height: 2;
  }

  .services-faq {
    padding: 60px 0 0;
  }

  .services-faq__promise-img {
    height: 180px;
    margin-top: 40px;
  }

  .services-promise-heading {
    padding-left: 24px;
    margin-top: -150px;
  }

  .services-promise-heading .section-heading__deco {
    font-size: 36px;
  }

  .services-promise-heading .section-heading__title {
    font-size: 28px;
    margin-top: -12px;
  }

  .services-promise {
    padding: 120px 0 0;
  }

  .services-promise__row {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }

  .cta-card {
    height: auto;
    min-height: auto;
  }

  .cta-card__photo {
    position: relative;
    width: 100%;
    top: 0;
    height: 240px;
  }

  .cta-card__photo-gradient {
    width: 100%;
    height: 60%;
    top: auto;
    bottom: 0;
    background: linear-gradient(to top, #3a3a3a 20%, rgba(58, 58, 58, 0));
  }

  .cta-card__content {
    position: relative;
    padding: 32px 24px 40px;
    max-width: 100%;
  }

  .cta-card__title {
    font-size: 24px;
  }

  .cta-card__buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-card__buttons .btn {
    width: 100%;
  }

  .services-cta-card {
    padding: 60px 0 80px;
  }
}
