.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.88) 0 16%, transparent 43%),
    linear-gradient(180deg, var(--fdv-cream) 0%, #fffaf3 100%);
}

.services-inner {
  width: min(1556px, calc(100% - 116px));
  margin: 0 auto;
  padding: 72px 0 70px;
}

.services-header {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--fdv-orange);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-kicker i {
  width: 64px;
  height: 2px;
  display: inline-block;
  background: var(--fdv-orange-light);
}

.services-title {
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: clamp(62px, 4.25vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.services-title span {
  color: var(--fdv-orange);
}

.services-description {
  max-width: 770px;
  margin: 18px auto 0;
  color: var(--fdv-navy-text);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.72;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
}

.services-card {
  position: relative;
  min-height: 430px;
  padding: 34px 34px 34px 38px;
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(190px, 0.65fr);
  column-gap: 22px;
  overflow: hidden;
  border: 1px solid rgba(4, 20, 46, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 42px rgba(4, 20, 46, 0.07);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.services-card:hover {
  border-color: rgba(253, 99, 0, 0.22);
  box-shadow: 0 24px 52px rgba(4, 20, 46, 0.12);
  transform: translateY(-4px);
}

.services-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
}

.services-card-icon {
  width: 110px;
  height: 110px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.services-card:hover .services-card-icon {
  filter: drop-shadow(0 14px 18px rgba(253, 99, 0, 0.16));
  transform: translateY(-2px);
}

.services-process-step:hover .services-process-icon {
  transform: translateY(-2px);
}

.services-card-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.services-card-title {
  min-height: 90px;
  padding-left: 108px;
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.18;
}

.services-price {
  grid-column: 1 / -1;
  margin: 26px 0 0;
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--fdv-navy-text);
  font-weight: 800;
  line-height: 1;
}

.services-price span {
  font-size: 23px;
}

.services-price strong {
  color: var(--fdv-orange);
  font-size: 43px;
  font-weight: 800;
  letter-spacing: 0;
}

.services-price em {
  font-size: 23px;
  font-style: normal;
}

.services-price-single {
  margin-top: 25px;
}

.services-price-single strong {
  font-size: 45px;
}

.services-card-description {
  grid-column: 1 / -1;
  max-width: 385px;
  margin: 28px 0 0;
  color: var(--fdv-navy-text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.services-benefit-list {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.services-benefit-list li {
  min-height: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fdv-navy-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.services-benefit-list img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.services-card-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.services-card-visual::before {
  position: absolute;
  inset: 9% 2% 7%;
  border-radius: 48%;
  background: rgba(253, 137, 70, 0.06);
  content: "";
  filter: blur(14px);
}

.services-card-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.services-card:hover .services-card-visual img {
  transform: scale(1.025);
}

.services-refill-visual img {
  max-width: 198px;
  max-height: 354px;
}

.services-exchange-visual img {
  max-width: 266px;
  max-height: 344px;
}

.services-process {
  min-height: 164px;
  margin-top: 30px;
  padding: 36px 42px 36px 44px;
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  align-items: center;
  gap: 44px;
  border: 1px solid rgba(4, 20, 46, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(4, 20, 46, 0.07);
}

.services-process-intro {
  min-height: 104px;
  padding-right: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(58, 62, 87, 0.24);
}

.services-process-intro h3 {
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 31px;
  font-weight: 800;
  line-height: 1.12;
}

.services-process-intro p {
  margin: 10px 0 0;
  color: var(--fdv-navy-text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.services-process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.services-process-step {
  position: relative;
  min-height: 104px;
  padding: 0 58px 0 0;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  column-gap: 28px;
  cursor: default;
}

.services-process-step + .services-process-step {
  padding-left: 36px;
}

.services-process-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 19px;
  height: 19px;
  border-top: 4px solid var(--fdv-orange);
  border-right: 4px solid var(--fdv-orange);
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.services-process-step:hover::after {
  opacity: 0.78;
  transform: translate(4px, -50%) rotate(45deg);
}

.services-process-icon {
  width: 82px;
  height: 82px;
  position: relative;
  display: grid;
  place-items: center;
  transition:
    transform 180ms ease;
}

.services-process-icon img {
  width: 125%;
  height: 125%;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.services-process-step h4 {
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.services-process-step p {
  margin: 14px 0 0;
  color: var(--fdv-navy-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

@media (min-width: 1000px) {
  .services-inner {
    width: min(1160px, calc(100% - 64px));
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .services-title {
    font-size: clamp(48px, 4vw, 58px);
  }

  .services-description {
    max-width: 700px;
    font-size: 16px;
  }

  .services-card-grid {
    gap: 24px;
  }

  .services-card {
    min-height: 398px;
    padding: 30px 24px;
    grid-template-columns: minmax(260px, 1fr) minmax(142px, 0.46fr);
    column-gap: 10px;
  }

  .services-card-copy {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .services-card-icon img {
    width: 90px;
    height: 90px;
  }

  .services-card-title {
    min-height: 90px;
    padding-left: 108px;
  }

  .services-card-title {
    font-size: 23px;
  }

  .services-price strong {
    font-size: 34px;
  }

  .services-price span,
  .services-price em {
    font-size: 18px;
  }

  .services-card-description {
    max-width: 330px;
    font-size: 15px;
  }

  .services-benefit-list li {
    font-size: 14px;
  }

  .services-refill-visual img {
    max-width: 150px;
    max-height: 300px;
  }

  .services-exchange-visual img {
    max-width: 194px;
    max-height: 296px;
  }

  .services-process {
    margin-top: 28px;
    padding: 32px 30px;
    grid-template-columns: 238px minmax(0, 1fr);
    gap: 30px;
  }

  .services-process-intro {
    padding-right: 28px;
  }

  .services-process-intro h3 {
    font-size: 26px;
  }

  .services-process-intro p {
    font-size: 15px;
  }

  .services-process-step {
    grid-template-columns: 70px minmax(0, 1fr);
    column-gap: 20px;
    padding-right: 40px;
  }

  .services-process-step + .services-process-step {
    padding-left: 26px;
  }

  .services-process-icon {
    width: 70px;
    height: 70px;
  }

  .services-process-icon img { width: 125%; height: 125%; }

  .services-process-step h4 {
    font-size: 17px;
  }

  .services-process-step p {
    font-size: 14px;
  }
}

@media (min-width: 1000px) {
  .services-inner { width: min(1040px, calc(100% - 96px)); padding: 78px 0 88px; }
  .services-header { max-width: 650px; margin-bottom: 52px; }
  .services-kicker { gap: 12px; margin-bottom: 15px; font-size: 12px; }
  .services-kicker i { width: 46px; }
  .services-title { font-size: 38px; line-height: 1.06; }
  .services-description { max-width: 570px; margin-top: 17px; font-size: 13.5px; line-height: 1.65; }
  .services-card-grid { gap: 30px; }
  .services-card { min-height: 332px; padding: 23px 20px; grid-template-columns: minmax(220px, 1fr) 126px; column-gap: 14px; }
  .services-card-copy { grid-template-columns: minmax(0, 1fr); }
  .services-card-icon { width: 90px; height: 90px; }
  .services-card-icon img { width: 90px; height: 90px; }
  .services-card-title { min-height: 90px; padding-left: 108px; }
  .services-card-title { font-size: 19px; }
  .services-price { margin-top: 20px; gap: 6px; }
  .services-price span, .services-price em { font-size: 14px; }
  .services-price strong, .services-price-single strong { font-size: 29px; }
  .services-card-description { max-width: 280px; margin-top: 20px; font-size: 12.5px; line-height: 1.55; }
  .services-benefit-list { margin-top: 16px; gap: 9px; }
  .services-benefit-list li { min-height: 19px; gap: 8px; font-size: 11.5px; }
  .services-benefit-list img { width: 18px; height: 18px; }
  .services-refill-visual img { max-width: 116px; max-height: 238px; }
  .services-exchange-visual img { max-width: 154px; max-height: 236px; }
  .services-process { min-height: 126px; margin-top: 38px; padding: 25px 26px; grid-template-columns: 190px minmax(0, 1fr); gap: 28px; }
  .services-process-intro { min-height: 80px; padding-right: 22px; }
  .services-process-intro h3 { font-size: 20px; }
  .services-process-intro p { margin-top: 7px; font-size: 12px; }
  .services-process-step { min-height: 80px; padding-right: 30px; grid-template-columns: 52px minmax(0, 1fr); column-gap: 13px; }
  .services-process-step + .services-process-step { padding-left: 18px; }
  .services-process-step:not(:last-child)::after { right: 13px; width: 13px; height: 13px; border-width: 3px; }
  .services-process-icon { width: 50px; height: 50px; }
  .services-process-icon img { width: 125%; height: 125%; }
  .services-process-step h4 { font-size: 13px; }
  .services-process-step p { margin-top: 8px; font-size: 10.5px; }
}
@media (min-width: 1350px) {
  .services-inner { width: min(1120px, calc(100% - 180px)); padding-block: 88px 102px; }
  .services-header { margin-bottom: 58px; }
  .services-card-grid { gap: 36px; }
}
@media (min-width: 1650px) {
  .services-inner { width: min(1200px, calc(100% - 260px)); padding-block: 98px 116px; }
  .services-header { margin-bottom: 64px; }
  .services-title { font-size: 40px; }
  .services-description { font-size: 14px; }
  .services-card-grid { gap: 42px; }
  .services-process { margin-top: 44px; }
}

.services-card-more {
  width: fit-content;
  margin-top: 20px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: var(--fdv-orange);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  transition: color 160ms ease, gap 160ms ease;
}

.services-card-more:hover,
.services-card-more:focus-visible {
  color: #e95800;
  gap: 13px;
  outline: 0;
}

.services-card-more:focus-visible {
  border-radius: 4px;
  box-shadow: 0 0 0 4px rgba(253, 99, 0, 0.15);
}

.services-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.services-modal.is-open {
  display: flex;
}

.services-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 20, 46, 0.54);
  backdrop-filter: blur(7px);
}

.services-modal-card {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(720px, calc(100vh - 56px));
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 80px rgba(4, 20, 46, 0.28);
}

.services-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(4, 20, 46, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--fdv-navy-text);
  cursor: pointer;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.services-modal-close:hover,
.services-modal-close:focus-visible {
  border-color: rgba(253, 99, 0, 0.34);
  color: var(--fdv-orange);
  outline: 0;
  transform: rotate(5deg);
}

.services-modal-visual {
  min-height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(253, 137, 70, 0.2), transparent 44%),
    linear-gradient(145deg, #eef7fb 0%, #fff7ed 100%);
}

.services-modal-visual img {
  width: min(86%, 300px);
  max-height: 84%;
  object-fit: contain;
}

.services-modal-visual-exchange img {
  width: min(94%, 370px);
}

.services-modal-content {
  min-width: 0;
  max-height: min(720px, calc(100vh - 56px));
  padding: 42px 42px 38px;
  overflow-y: auto;
}

.services-modal-kicker {
  color: var(--fdv-orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.services-modal-content h3 {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--fdv-navy-text);
  font-size: 34px;
  font-weight: 850;
  line-height: 1.08;
}

.services-modal-content > p {
  margin: 13px 0 0;
  color: var(--fdv-muted);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.58;
}

.services-modal-price {
  margin-top: 20px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(253, 99, 0, 0.2);
  border-radius: 13px;
  background: rgba(253, 99, 0, 0.07);
}

.services-modal-price span {
  color: var(--fdv-navy-text);
  font-size: 13px;
  font-weight: 800;
}

.services-modal-price strong {
  color: var(--fdv-orange);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.services-modal-price em {
  font-size: 14px;
  font-style: normal;
}

.services-modal-points {
  margin: 18px 0 0;
  padding: 16px 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(4, 20, 46, 0.1);
  border-bottom: 1px solid rgba(4, 20, 46, 0.1);
  list-style: none;
}

.services-modal-points li {
  position: relative;
  padding-left: 21px;
  color: var(--fdv-navy-text);
  font-size: 13px;
  font-weight: 530;
  line-height: 1.55;
}

.services-modal-points li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--fdv-orange);
  border-radius: 50%;
  content: "";
}

.services-modal-points strong,
.services-modal-note strong {
  color: var(--fdv-navy-text);
  font-weight: 850;
}

.services-modal-section-link {
  color: var(--fdv-orange);
  font-weight: 850;
  text-decoration-color: rgba(253, 99, 0, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.services-modal-section-link:hover,
.services-modal-section-link:focus-visible {
  color: #e95800;
  outline: 0;
  text-decoration-color: currentColor;
}

.services-modal-inline-value {
  margin-inline-start: 0.16em;
  color: var(--fdv-orange);
  font-size: 1.08em;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.services-modal-content > .services-modal-note {
  margin-top: 17px;
  padding-left: 14px;
  border-left: 3px solid var(--fdv-orange);
  color: var(--fdv-navy-text);
  font-size: 13px;
  font-weight: 650;
}

.services-modal-whatsapp {
  min-height: 50px;
  margin-top: 20px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 11px;
  background: var(--fdv-orange);
  color: var(--fdv-white);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(253, 99, 0, 0.2);
  text-decoration: none;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.services-modal-whatsapp:hover,
.services-modal-whatsapp:focus-visible {
  background: #e95800;
  box-shadow: 0 17px 30px rgba(253, 99, 0, 0.28);
  outline: 0;
  transform: translateY(-2px);
}

.services-modal-whatsapp img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

body.services-modal-open {
  overflow: hidden;
}
