:root {
  --services-bg-dark: #05102a;
  --services-bg-deep: #030917;
  --services-paper: #f8fafc;
  --services-line: #e5e7eb;
  --services-muted: #4b5563;
  --services-white: #ffffff;
}

.services-page {
  background: var(--services-paper);
}

.services-page main {
  padding-top: 0;
}

.services-page .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.services-page .services-hero {
  padding: 170px 0 90px;
  background:
    radial-gradient(1200px 450px at 85% 80%, rgba(37, 99, 235, 0.3), transparent 60%),
    linear-gradient(135deg, var(--services-bg-deep) 0%, var(--services-bg-dark) 55%, #071c46 100%);
  color: var(--services-white);
  position: relative;
  overflow: hidden;
}

.services-page .services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -15deg,
    transparent,
    transparent 18px,
    rgba(96, 165, 250, 0.08) 19px,
    transparent 20px
  );
  opacity: 0.25;
  pointer-events: none;
}

.services-page .services-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.services-page .services-kicker {
  margin: 0 0 16px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.services-page .services-title {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.services-page .services-title span {
  color: #3b82f6;
}

.services-page .services-copy {
  margin: 22px 0 34px;
  max-width: 560px;
  color: #bfdbfe;
  font-size: 22px;
  line-height: 1.45;
}

.services-page .services-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.services-page .services-work-link {
  color: #bfdbfe;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(191, 219, 254, 0.5);
  text-underline-offset: 4px;
}

.services-page .services-grid-section {
  padding: 64px 0 34px;
}

.services-page .offer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.services-page .offer-intro {
  padding-top: 10px;
}

.services-page .offer-kicker {
  margin: 0 0 18px;
  color: #0ea5e9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.services-page .offer-intro h2 {
  margin: 0;
  color: #101316;
  font-size: clamp(36px, 4.1vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.services-page .offer-intro p {
  margin: 24px 0 0;
  color: #525e67;
  font-size: 17px;
  line-height: 1.65;
}

.services-page .offer-divider {
  width: 1px;
  min-height: 440px;
  background: linear-gradient(180deg, transparent 0%, #e9edf0 16%, #e9edf0 84%, transparent 100%);
}

.services-page .offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 26px;
}

.services-page .offer-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 6px 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.services-page .offer-item:hover {
  transform: translateY(-1px);
}

.services-page .offer-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.12);
  color: #0ea5e9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-page .offer-icon svg {
  width: 30px;
  height: 30px;
}

.services-page .offer-copy h3 {
  margin: 0;
  color: #111827;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.services-page .offer-copy p {
  margin: 8px 0 0;
  color: #5b6670;
  font-size: 16px;
  line-height: 1.55;
}

.services-page .services-process {
  padding: 34px 0 52px;
}

.services-page .process-stack {
  width: min(980px, 100%);
  display: grid;
  gap: 18px;
}

.services-page .process-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.services-page .process-gem {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: linear-gradient(160deg, #38bdf8, #0284c7);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.28);
  transform: rotate(45deg);
  display: grid;
  place-items: center;
  margin: 8px;
}

.services-page .process-gem svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
  transform: rotate(-45deg);
}

.services-page .process-content {
  position: relative;
  padding: 10px 0;
}

.services-page .process-index {
  position: absolute;
  left: -4px;
  top: -12px;
  z-index: 0;
  color: rgba(14, 165, 233, 0.1);
  font-size: 124px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.services-page .process-content h3,
.services-page .process-content p {
  position: relative;
  z-index: 1;
}

.services-page .process-content h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(18px, 1.55vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.services-page .process-content p {
  margin: 8px 0 0;
  color: #58626e;
  font-size: 16px;
  line-height: 1.48;
}

.services-page .services-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 70px 0;
  background:
    radial-gradient(1200px 450px at 85% 80%, rgba(37, 99, 235, 0.3), transparent 60%),
    linear-gradient(135deg, var(--services-bg-deep) 0%, var(--services-bg-dark) 55%, #071c46 100%);
  position: relative;
  overflow: hidden;
}

.services-page .services-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -15deg,
    transparent,
    transparent 18px,
    rgba(96, 165, 250, 0.08) 19px,
    transparent 20px
  );
  opacity: 0.25;
  pointer-events: none;
}

.services-page .services-cta-box {
  position: relative;
  z-index: 1;
  background: transparent;
  color: #fff;
  border-radius: 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.services-page .services-cta h3 {
  margin: 6px 0 8px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
}

.services-page .services-cta p {
  margin: 0;
  color: #bfdbfe;
  font-size: 18px;
}

.services-page .services-plans {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 82px 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.services-page .site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.services-page .footer-container {
  max-width: none;
  width: min(1320px, calc(100% - 32px));
  padding-left: 16px;
  padding-right: 16px;
}

.services-page .plans-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.services-page .plans-top-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 36px;
  align-items: start;
}

.services-page .plans-kicker {
  margin: 0 0 18px;
  color: #0ea5e9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.services-page .plans-intro h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.services-page .plans-intro h2 span {
  color: #0ea5e9;
}

.services-page .plans-check-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
}

.services-page .plans-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.services-page .plans-check-item:hover {
  transform: translateY(-1px);
  background: rgba(14, 165, 233, 0.06);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.services-page .plans-check-item span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0ea5e9;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-page .plans-check-item p {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.55;
}

.services-page .plans-quote-card {
  padding: 26px 28px 32px;
  color: #ffffff;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #0d2fa2 0%, #1260e3 100%);
  box-shadow: 0 28px 70px rgba(18, 96, 227, 0.28);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.services-page .plans-quote-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 34px 84px rgba(18, 96, 227, 0.34);
}

.services-page .plans-quote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(96, 165, 250, 0.25), transparent 30%);
  pointer-events: none;
}

.services-page .plans-quote-card > * {
  position: relative;
  z-index: 1;
}

.services-page .plans-quote-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.services-page .plans-quote-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.services-page .plans-form {
  display: grid;
  gap: 14px;
}

.services-page .plans-form label {
  display: grid;
  gap: 8px;
}

.services-page .plans-form label span {
  font-size: 14px;
  font-weight: 600;
}

.services-page .plans-form input {
  height: 50px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  font: inherit;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.services-page .plans-form input:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.8);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.services-page .plans-submit {
  min-height: 54px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  box-shadow: 0 16px 30px rgba(14, 165, 233, 0.26);
}

.services-page .plans-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 20px 36px rgba(14, 165, 233, 0.3);
}

@media (max-width: 1180px) {
  .services-page .plans-top-row {
    grid-template-columns: 1fr;
  }

  .services-page .offer-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .services-page .offer-divider {
    display: none;
  }

  .services-page .offer-list {
    grid-template-columns: 1fr;
  }

  .services-page .process-content h3 {
    font-size: 24px;
  }

  .services-page .process-content p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .services-page .services-hero {
    padding: 156px 0 64px;
  }

  .services-page .services-copy {
    font-size: 18px;
  }

  .services-page .services-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-page .services-grid-section {
    padding-top: 44px;
  }

  .services-page .offer-intro h2 {
    font-size: 42px;
  }

  .services-page .offer-copy h3 {
    font-size: 26px;
  }

  .services-page .offer-copy p {
    font-size: 15px;
  }

  .services-page .services-process {
    padding-top: 24px;
  }

  .services-page .process-row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }

  .services-page .process-gem {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    margin: 6px;
  }

  .services-page .process-gem svg {
    width: 24px;
    height: 24px;
  }

  .services-page .process-index {
    font-size: 76px;
    top: -8px;
  }

  .services-page .process-content h3 {
    font-size: 24px;
  }

  .services-page .process-content p {
    font-size: 16px;
  }

  .services-page .services-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 22px;
  }

  .services-page .services-plans {
    padding: 56px 0 72px;
  }

  .services-page .plans-shell {
    gap: 34px;
  }

  .services-page .plans-intro h2 {
    font-size: 30px;
  }

  .services-page .plans-check-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-page .plans-quote-card {
    padding: 22px;
    border-radius: 18px;
  }
}

/* Services revamp: scoped to main content to preserve shared header/footer styles */
.services-page {
  --service-blue: #2563eb;
  --service-blue-dark: #1749d8;
  --service-blue-light: #eaf2ff;
  --service-navy: #071533;
  --service-deep: #030917;
  --service-ink: #1d2433;
  --service-muted: #667085;
  --service-paper: #f5f7fa;
  --service-line: #dfe5ed;
  --service-content: 1060px;
}

.services-page main {
  padding-top: 0;
  color: var(--service-ink);
}

.services-page .container {
  width: min(var(--service-content), calc(100% - 40px));
  margin: 0 auto;
}

.services-page .services-hero {
  padding: 132px 0 70px;
  background: radial-gradient(circle at 78% 22%, rgba(37, 99, 235, 0.1), transparent 25%), #fff;
}

.services-page .hero-grid {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 44px;
  align-items: center;
}

.services-page .hero-art {
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #dbe7ff;
  box-shadow: 0 24px 56px rgba(23, 73, 160, 0.18);
}

.services-page .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.services-page .service-label {
  margin: 0 0 12px;
  color: var(--service-blue);
  font-size: 14px;
  font-weight: 700;
}

.services-page .hero-copy h1 {
  margin: 0 0 16px;
  color: #252a31;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.services-page .hero-copy > p:not(.service-label) {
  margin: 0;
  max-width: 500px;
  color: #454b54;
  font-size: 15px;
  line-height: 1.7;
}

.services-page .hero-actions {
  margin-top: 27px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.services-page main .button {
  min-height: 40px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #aeb5bf;
  border-radius: 3px;
  background: #fff;
  color: #626871;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.services-page main .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(20, 54, 105, 0.13);
}

.services-page main .button-primary {
  color: #fff;
  background: var(--service-blue);
  border-color: var(--service-blue);
}

.services-page main .button-primary:hover {
  background: var(--service-blue-dark);
}

.services-page .glance-section {
  padding: 62px 0 76px;
  background: var(--service-paper);
}

.services-page .section-heading {
  max-width: 660px;
  margin: 0 auto 32px;
  text-align: center;
}

.services-page .section-heading h2 {
  margin: 0 0 12px;
  font-size: 38px;
  letter-spacing: -0.03em;
  color: #2a2e34;
}

.services-page .section-heading p {
  margin: 0;
  color: #525861;
  font-size: 14px;
  line-height: 1.7;
}

.services-page .service-tabs {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 30px;
  padding: 5px;
  display: flex;
  gap: 5px;
  border: 1px solid var(--service-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
  overflow-x: auto;
}

.services-page .service-tab {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.services-page .service-tab.active {
  color: #fff;
  background: var(--service-blue);
}

.services-page .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.services-page .card {
  min-height: 390px;
  padding: 30px 26px 28px;
  border: 1px solid #dde2e8;
  background: #fff;
  box-shadow: 0 9px 18px rgba(27, 36, 48, 0.11);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.services-page .card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
  transition: transform 0.25s ease;
}

.services-page .card:hover {
  transform: translateY(-7px);
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 18px 34px rgba(27, 36, 48, 0.15);
}

.services-page .card:hover::after {
  transform: scale(1.2);
}

.services-page .card.is-dimmed {
  opacity: 0.35;
  transform: scale(0.98);
}

.services-page .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--service-blue);
  background: var(--service-blue-light);
  font-weight: 800;
  font-size: 18px;
}

.services-page .card h3 {
  margin: 0 0 9px;
  color: #252a30;
  font-size: 25px;
  line-height: 1.25;
}

.services-page .card > p {
  margin: 0;
  color: var(--service-muted);
  font-size: 14px;
  line-height: 1.65;
}

.services-page .feature-list {
  list-style: none;
  padding: 0;
  margin: 19px 0 0;
  display: grid;
  gap: 11px;
  position: relative;
  z-index: 1;
}

.services-page .feature-list li {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #4c525a;
  font-size: 13.5px;
}

.services-page .feature-list li::before {
  content: "\2713";
  width: 16px;
  height: 16px;
  border: 1px solid #6f757d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  color: #343a41;
  flex: 0 0 16px;
}

.services-page .card-toggle {
  margin-top: 20px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--service-blue);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.services-page .extra-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
  color: var(--service-muted);
  font-size: 12px;
  line-height: 1.6;
}

.services-page .card.open .extra-details {
  max-height: 120px;
  opacity: 1;
  margin-top: 14px;
}

.services-page .process-section {
  padding: 76px 0;
  background: #fff;
}

.services-page .process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
  align-items: start;
}

.services-page .process-intro h2 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -0.03em;
  color: var(--service-navy);
}

.services-page .process-intro p {
  margin: 16px 0 0;
  color: var(--service-muted);
  line-height: 1.7;
  font-size: 14px;
}

.services-page .process-list {
  display: grid;
  gap: 12px;
}

.services-page .process-step {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--service-line);
  background: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.services-page .process-step:hover,
.services-page .process-step.active {
  transform: translateX(4px);
  border-color: rgba(37, 99, 235, 0.34);
  background: #f8fbff;
}

.services-page .step-index {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--service-blue);
  background: var(--service-blue-light);
  font-size: 13px;
  font-weight: 800;
}

.services-page .process-step h3 {
  margin: 0;
  font-size: 16px;
  color: #252a31;
}

.services-page .process-step p {
  margin: 4px 0 0;
  color: var(--service-muted);
  font-size: 12.5px;
}

.services-page .step-arrow {
  color: var(--service-blue);
  font-weight: 800;
}

.services-page .process-detail {
  margin-top: 18px;
  padding: 20px;
  border-radius: 12px;
  background: radial-gradient(circle at top right, rgba(96, 165, 250, 0.18), transparent 28%), linear-gradient(135deg, var(--service-deep), var(--service-navy) 65%, #0a2d66);
  color: #fff;
  box-shadow: 0 18px 42px rgba(7, 21, 51, 0.18);
}

.services-page .process-detail small {
  color: #93c5fd;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-page .process-detail h3 {
  margin: 8px 0 8px;
  font-size: 22px;
}

.services-page .process-detail p {
  margin: 0;
  color: #bfdbfe;
  font-size: 13px;
  line-height: 1.65;
}

.services-page .stats {
  padding: 0 0 76px;
  background: #fff;
}

.services-page .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--service-line);
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.07);
}

.services-page .stat {
  padding: 26px;
  text-align: center;
}

.services-page .stat + .stat {
  border-left: 1px solid var(--service-line);
}

.services-page .stat strong {
  display: block;
  color: var(--service-blue);
  font-size: 32px;
  line-height: 1;
}

.services-page .stat span {
  display: block;
  margin-top: 8px;
  color: var(--service-muted);
  font-size: 12px;
}

.services-page .contact-map {
  padding: 18px 0 54px;
  background: #fff;
}

.services-page .contact-map .container {
  width: min(var(--service-content), calc(100% - 40px));
  margin: 0 auto;
}

.services-page .contact-map-frame {
  position: relative;
}

.services-page .contact-map-highlight {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-page .contact-map-highlight-dot,
.services-page .contact-map-highlight-ping {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #2563eb;
}

.services-page .contact-map-highlight-dot {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.services-page .contact-map-highlight-ping {
  width: 10px;
  height: 10px;
  animation: contact-map-ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.services-page .contact-map-highlight-label {
  margin-left: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

@keyframes contact-map-ping {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.55;
  }
  75%,
  100% {
    transform: translate(-50%, -50%) scale(3.2);
    opacity: 0;
  }
}

.services-page .contact-map-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 18px 40px rgba(31, 62, 128, 0.09);
}

.services-page .services-cta {
  padding: 34px 0 82px;
  background: #fff;
}

.services-page .services-cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  background: linear-gradient(135deg, #173780, #214dbf 58%, #3262e8);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  color: #fff;
  box-shadow: 0 24px 56px rgba(33, 67, 160, 0.24);
}

.services-page .services-cta-box::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -74px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.34) 0%, rgba(124, 162, 255, 0.28) 42%, rgba(124, 162, 255, 0) 72%);
}

.services-page .services-cta h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.services-page .services-cta p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #d5e1ff;
  font-size: 18px;
}

.services-page .services-cta .button {
  position: relative;
  z-index: 2;
  min-height: 44px;
  border-radius: 999px;
  border: 0;
  padding: 0 22px;
  background: #fff;
  color: #1e4fc7;
  font-weight: 700;
  white-space: nowrap;
}

.services-page .services-cta .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 42, 109, 0.28);
}

@media (max-width: 900px) {
  .services-page .hero-grid,
  .services-page .process-grid {
    grid-template-columns: 1fr;
  }

  .services-page .hero-art {
    max-width: 560px;
  }

  .services-page .cards {
    grid-template-columns: 1fr;
  }

  .services-page .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .services-page .stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--service-line);
  }

  .services-page .stat:nth-child(4) {
    border-top: 1px solid var(--service-line);
  }

  .services-page .contact-row {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 22px;
  }

  .services-page .services-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .services-page .services-hero {
    padding: 104px 0 50px;
  }

  .services-page .hero-art {
    height: 240px;
  }

  .services-page .hero-copy h1 {
    font-size: 35px;
  }

  .services-page .hero-actions {
    flex-direction: column;
  }

  .services-page main .button {
    width: 100%;
  }

  .services-page .section-heading h2,
  .services-page .process-intro h2 {
    font-size: 30px;
  }

  .services-page .stats-row {
    grid-template-columns: 1fr;
  }

  .services-page .stat + .stat {
    border-left: 0;
    border-top: 1px solid var(--service-line);
  }

  .services-page .services-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-page .services-cta h3 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .services-page .services-cta p {
    font-size: 18px;
  }

}
