/* NAQDA Services page — unified government service design system */

.services-page {
  --service-navy: #071f2b;
  --service-navy-2: #0b2f3e;
  --service-navy-3: #123f50;
  --service-teal: #0f7b84;
  --service-teal-dark: #0c6873;
  --service-teal-soft: #dff2f1;
  --service-gold: #c69c46;
  --service-gold-soft: #f5e9ca;
  --service-ink: #17262d;
  --service-muted: #53666e;
  --service-line: #d8e2e5;
  --service-surface: #f5f8f8;
  --service-white: #ffffff;
  --font-base: "Inter", "Public Sans", sans-serif;
  --blue-dark: var(--service-navy);
  --blue: var(--service-teal);
  --blue-light: var(--service-teal);
  --teal: var(--service-teal);
  --surface: var(--service-white);
  --surface-muted: var(--service-surface);
  --text-primary: var(--service-ink);
  --text-secondary: var(--service-muted);
  --accent: var(--service-gold);
  --accent-soft: var(--service-teal-soft);
  --border: var(--service-line);
  --border-strong: #aebfc4;
  --shadow-soft: none;
  --shadow-card: none;
  --radius-lg: 6px;
  --radius-md: 5px;
  --radius-sm: 4px;
  padding-top: 80px;
  color: var(--service-ink);
  background: var(--service-surface);
  font-family: var(--font-base);
}

.services-page :where(.hero-content, .summary-content, .featured, .services, .impact-grid, .process, .cta) {
  width: min(100% - 40px, 1240px);
  max-width: 1240px;
  margin-inline: auto;
}

.services-page :where(.summary, .featured, .services, .impact, .process, .cta-shell) {
  padding-block: clamp(76px, 8vw, 112px);
}

.services-page :where(h1, h2, h3) {
  color: var(--service-navy);
  font-family: var(--font-base);
  text-wrap: balance;
}

.services-page :where(p, li) {
  text-wrap: pretty;
}

/* Hero */
.services-page .hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 7vw, 90px) 0 clamp(82px, 9vw, 116px);
  color: var(--service-ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 250, 0.97) 62%, rgba(229, 241, 240, 0.95) 100%),
    var(--service-surface);
  border-bottom: 4px solid var(--service-gold);
  border-radius: 0;
}

.services-page .hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--service-teal);
}

.services-page .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -170px;
  right: -140px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(15, 123, 132, 0.13);
  border-radius: 50%;
}

.services-page .hero-overlay {
  display: none;
}

.services-page .hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
  grid-template-rows: repeat(4, auto);
  gap: 20px clamp(40px, 6vw, 78px);
  align-items: center;
  min-height: 470px;
  padding: 0;
  text-align: left;
}

.services-page .hero-badge,
.services-page .hero h1,
.services-page .hero > .hero-content > p,
.services-page .hero-actions {
  grid-column: 1;
}

.services-page .hero-badge {
  justify-content: flex-start;
  align-self: end;
  width: fit-content;
  padding: 0 0 9px;
  color: var(--service-teal-dark);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--service-gold);
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: none;
}

.services-page .hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--service-navy);
  font-size: clamp(2.65rem, 5vw, 4.35rem);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.services-page .hero > .hero-content > p {
  max-width: 700px;
  margin: 0;
  color: var(--service-muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.services-page .hero-actions {
  justify-content: flex-start;
  gap: 12px;
  align-self: start;
  margin-top: 4px;
}

.services-page .hero-cta {
  min-height: 48px;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.services-page .hero-cta.primary {
  color: #fff;
  background: var(--service-teal);
  border-color: var(--service-teal);
  box-shadow: none;
}

.services-page .hero-cta.primary:hover,
.services-page .hero-cta.primary:focus-visible {
  color: #fff;
  background: var(--service-teal-dark);
  border-color: var(--service-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(12, 104, 115, 0.18);
}

.services-page .hero-cta.secondary {
  color: var(--service-navy-2);
  background: #fff;
  border-color: #aebfc4;
}

.services-page .hero-cta.secondary:hover,
.services-page .hero-cta.secondary:focus-visible {
  color: var(--service-teal-dark);
  background: #f1f9f8;
  border-color: var(--service-teal);
}

.services-page .hero-stats {
  position: relative;
  grid-column: 2;
  grid-row: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  align-self: stretch;
  margin: 0;
  padding: clamp(34px, 4vw, 48px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(15, 123, 132, 0.24), transparent 46%),
    var(--service-navy);
  border-left: 5px solid var(--service-gold);
  border-radius: 6px;
  box-shadow: 0 22px 54px rgba(7, 31, 43, 0.16);
}

.services-page .hero-stats::before {
  content: "";
  display: block;
  align-self: end;
  width: 72px;
  height: 3px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--service-teal) 0 70%, var(--service-gold) 70% 100%);
}

.services-page .stat-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  backdrop-filter: none;
}

.services-page .stat-card:last-child {
  border-bottom: 0;
}

.services-page .stat-value {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.services-page .stat-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  line-height: 1.55;
}

/* Service overview */
.services-page .summary {
  padding: clamp(78px, 8vw, 112px) 0;
  background: #fff;
}

.services-page .summary-content {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: start;
}

.services-page .summary-intro {
  position: sticky;
  top: 110px;
  padding-left: 28px;
  border-left: 4px solid var(--service-gold);
}

.services-page .summary-intro::before,
.services-page .section-header::before,
.services-page .process > .section-header::before {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--service-teal) 0 70%, var(--service-gold) 70% 100%);
}

.services-page .summary-intro h2,
.services-page .section-header h2,
.services-page .featured-content h2,
.services-page .cta-content h2 {
  margin: 0 0 16px;
  color: var(--service-navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.services-page .summary-intro p,
.services-page .section-header p {
  max-width: 740px;
  color: var(--service-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.services-page .summary-cards {
  grid-template-columns: 1fr;
  gap: 10px;
  counter-reset: service-summary;
}

.services-page .summary-card {
  counter-increment: service-summary;
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  min-height: 150px;
  align-items: center;
  padding: 26px 64px 26px 26px;
  overflow: hidden;
  background: var(--service-surface);
  border: 1px solid var(--service-line);
  border-radius: 5px;
}

.services-page .summary-card::after {
  content: "0" counter(service-summary);
  position: absolute;
  top: 20px;
  right: 22px;
  color: #9aabb0;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.services-page .summary-card:first-child {
  color: #fff;
  background: var(--service-navy);
  border-color: var(--service-navy);
}

.services-page .summary-card:first-child::after {
  color: rgba(255, 255, 255, 0.45);
}

.services-page .icon-circle {
  width: 50px;
  height: 50px;
  color: #fff;
  background: var(--service-teal-dark);
  border-radius: 4px;
}

.services-page .summary-card:first-child .icon-circle {
  color: var(--service-navy);
  background: var(--service-gold);
}

.services-page .summary-card h3 {
  margin-bottom: 7px;
  color: var(--service-navy);
  font-size: 1.06rem;
  font-weight: 760;
}

.services-page .summary-card p {
  color: var(--service-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.services-page .summary-card:first-child h3 {
  color: #fff;
}

.services-page .summary-card:first-child p {
  color: rgba(255, 255, 255, 0.68);
}

/* Featured licensing service */
.services-page .featured {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 6vw, 78px);
  padding: clamp(78px, 8vw, 104px) clamp(34px, 5vw, 64px);
  align-items: stretch;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(15, 123, 132, 0.22), transparent 48%),
    var(--service-navy);
  border-left: 5px solid var(--service-gold);
  border-radius: 6px;
}

.services-page .featured-media {
  min-height: 480px;
  background-image:
    linear-gradient(180deg, transparent 58%, rgba(7, 31, 43, 0.5)),
    url('/images/hero/ai/hatchery_1.png');
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  box-shadow: none;
}

.services-page .featured-content {
  justify-content: center;
  gap: 20px;
}

.services-page .label {
  width: fit-content;
  padding-bottom: 8px;
  color: #b9e4e1;
  border-bottom: 2px solid var(--service-gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.services-page .featured-content h2 {
  color: #fff;
}

.services-page .featured-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.72;
}

.services-page .checklist {
  gap: 0;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.services-page .check-item {
  gap: 13px;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  line-height: 1.55;
}

.services-page .check-item i {
  width: 25px;
  height: 25px;
  color: var(--service-navy);
  background: var(--service-gold);
  border-radius: 3px;
  font-size: 0.7rem;
  flex: 0 0 auto;
}

.services-page .primary-link {
  width: fit-content;
  padding-bottom: 5px;
  color: #fff;
  border-bottom: 1px solid var(--service-gold);
  font-size: 0.9rem;
  font-weight: 750;
}

.services-page .primary-link:hover,
.services-page .primary-link:focus-visible {
  color: #b9e4e1;
}

/* Service catalogue */
.services-page .services {
  padding: clamp(86px, 9vw, 120px) 0;
  background: var(--service-surface);
}

.services-page .section-header {
  max-width: 780px;
  margin: 0 0 38px;
  text-align: left;
}

.services-page .service-categories {
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--service-line);
}

.services-page .category {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--service-navy-2);
  background: #fff;
  border: 1px solid var(--service-line);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
}

.services-page .category.active,
.services-page .category:hover,
.services-page .category:focus-visible {
  color: #fff;
  background: var(--service-teal-dark);
  border-color: var(--service-teal-dark);
}

.services-page .service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  counter-reset: service-card;
}

.services-page .service-card {
  counter-increment: service-card;
  position: relative;
  min-height: 490px;
  gap: 16px;
  padding: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--service-line);
  border-radius: 5px;
  box-shadow: none;
}

.services-page .service-card::after {
  content: "0" counter(service-card);
  position: absolute;
  top: 30px;
  right: 27px;
  color: #a5b4b8;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.services-page .service-card:hover {
  transform: none;
  border-color: var(--service-teal);
  box-shadow: 0 15px 34px rgba(7, 31, 43, 0.08);
}

.services-page .service-card .service-icon {
  width: 50px;
  height: 50px;
  color: #fff;
  background: var(--service-teal-dark);
  border-radius: 4px;
  font-size: 1.15rem;
}

.services-page .service-card:nth-child(3n + 1) .service-icon {
  color: var(--service-navy);
  background: var(--service-gold);
}

.services-page .service-card h3 {
  padding-right: 30px;
  color: var(--service-navy);
  font-size: 1.22rem;
  font-weight: 760;
  line-height: 1.3;
}

.services-page .service-card p {
  color: var(--service-muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

.services-page .service-card ul {
  gap: 0;
  padding-top: 4px;
  color: var(--service-muted);
  border-top: 1px solid var(--service-line);
  font-size: 0.79rem;
  line-height: 1.55;
}

.services-page .service-card ul li {
  position: relative;
  display: block;
  padding: 11px 0 11px 19px;
  border-bottom: 1px solid var(--service-line);
}

.services-page .service-card ul li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 1px;
  width: 7px;
  height: 7px;
  background: var(--service-gold);
  border-radius: 1px;
}

.services-page .secondary-link {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 4px;
  color: var(--service-teal-dark);
  border-bottom: 1px solid rgba(15, 123, 132, 0.38);
  font-size: 0.83rem;
  font-weight: 760;
}

.services-page .secondary-link::after {
  content: "\2192";
}

.services-page .secondary-link:hover,
.services-page .secondary-link:focus-visible {
  color: var(--service-navy);
  text-decoration: none;
  border-color: var(--service-navy);
}

/* National reach */
.services-page .impact {
  position: relative;
  padding: 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 123, 132, 0.2), transparent 46%),
    var(--service-navy);
}

.services-page .impact::before {
  content: "";
  position: absolute;
  top: 32px;
  left: max(20px, calc((100vw - 1240px) / 2));
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--service-teal) 0 70%, var(--service-gold) 70% 100%);
}

.services-page .impact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 74px 0 54px;
}

.services-page .impact-card {
  min-height: 160px;
  display: grid;
  align-content: center;
  padding: 28px clamp(24px, 3vw, 38px);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  backdrop-filter: none;
}

.services-page .impact-card:last-child {
  border-right: 0;
}

.services-page .impact-value {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.services-page .impact-label {
  max-width: 220px;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  line-height: 1.55;
}

/* Service process */
.services-page .process {
  padding: clamp(86px, 9vw, 120px) 0;
  background: #fff;
}

.services-page .process > .section-header {
  max-width: 760px;
  margin-bottom: 52px;
}

.services-page .process > .section-header::before {
  content: "";
}

.services-page .timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  counter-reset: service-step;
}

.services-page .timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--service-line);
}

.services-page .timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  padding-right: 24px;
}

.services-page .timeline-number {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  color: #fff;
  background: var(--service-teal-dark);
  border: 4px solid #fff;
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--service-line);
  font-size: 0.82rem;
  font-weight: 800;
}

.services-page .timeline-item:last-child .timeline-number {
  color: var(--service-navy);
  background: var(--service-gold);
}

.services-page .timeline-content {
  min-height: 190px;
  padding: 25px 22px;
  background: var(--service-surface);
  border: 1px solid var(--service-line);
  border-radius: 4px;
}

.services-page .timeline-content h3 {
  margin-bottom: 10px;
  color: var(--service-navy);
  font-size: 1.05rem;
  font-weight: 760;
  line-height: 1.35;
}

.services-page .timeline-content p {
  color: var(--service-muted);
  font-size: 0.82rem;
  line-height: 1.62;
}

.services-page .timeline-item:last-child .timeline-content {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--service-line);
}

/* Final contact panel */
.services-page .cta {
  position: relative;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(36px, 6vw, 76px);
  padding: clamp(48px, 7vw, 78px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(15, 123, 132, 0.22), transparent 48%),
    var(--service-navy);
  border-top: 0;
  border-left: 5px solid var(--service-gold);
  border-radius: 6px;
}

.services-page .cta::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.services-page .cta-content,
.services-page .cta-badges {
  position: relative;
  z-index: 1;
}

.services-page .cta-content h2 {
  max-width: 760px;
  color: #fff;
}

.services-page .cta-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.72;
}

.services-page .cta-actions {
  gap: 12px;
}

.services-page .cta .hero-cta.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.44);
}

.services-page .cta .hero-cta.secondary:hover,
.services-page .cta .hero-cta.secondary:focus-visible {
  color: var(--service-navy);
  background: #fff;
  border-color: #fff;
}

.services-page .cta-badges {
  gap: 1px;
  align-self: stretch;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
}

.services-page .cta .badge {
  display: grid;
  align-content: center;
  min-height: 108px;
  padding: 18px 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 0;
  border-radius: 0;
}

.services-page .cta .badge h3 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.services-page .cta .badge span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.77rem;
}

@media (max-width: 1080px) {
  .services-page .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page .service-card {
    min-height: 455px;
  }
}

@media (max-width: 900px) {
  .services-page .hero-content,
  .services-page .summary-content,
  .services-page .featured,
  .services-page .cta {
    grid-template-columns: 1fr;
  }

  .services-page .hero-content {
    min-height: auto;
  }

  .services-page .hero-badge,
  .services-page .hero h1,
  .services-page .hero > .hero-content > p,
  .services-page .hero-actions,
  .services-page .hero-stats {
    grid-column: 1;
  }

  .services-page .hero-stats {
    grid-row: auto;
    min-height: 420px;
    margin-top: 18px;
  }

  .services-page .summary-intro {
    position: static;
  }

  .services-page .featured-content {
    order: 0;
  }

  .services-page .featured-media {
    min-height: 400px;
  }

  .services-page .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page .impact-card:nth-child(2) {
    border-right: 0;
  }

  .services-page .impact-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .services-page .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }

  .services-page .timeline::before {
    display: none;
  }

  .services-page .timeline-item {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .services-page {
    padding-top: 70px;
  }

  .services-page :where(.hero-content, .summary-content, .featured, .services, .impact-grid, .process, .cta) {
    width: min(100% - 28px, 1240px);
  }

  .services-page .hero {
    padding: 50px 0 78px;
  }

  .services-page .hero::before {
    width: 4px;
  }

  .services-page .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .services-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-page .hero-stats {
    min-height: auto;
    padding: 28px 24px;
  }

  .services-page .stat-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .services-page .summary-intro {
    padding-left: 20px;
  }

  .services-page .summary-card {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 24px 50px 24px 20px;
  }

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

  .services-page .featured {
    width: min(100% - 20px, 1240px);
    padding: 34px 22px 42px;
    border-left-width: 4px;
  }

  .services-page .featured-media {
    min-height: 300px;
  }

  .services-page .service-grid,
  .services-page .impact-grid,
  .services-page .timeline {
    grid-template-columns: 1fr;
  }

  .services-page .service-card {
    min-height: auto;
    padding: 24px;
  }

  .services-page .impact-card,
  .services-page .impact-card:nth-child(2) {
    min-height: 140px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .services-page .impact-card:last-child {
    border-bottom: 0;
  }

  .services-page .timeline-item {
    gap: 14px;
  }

  .services-page .timeline-content {
    min-height: auto;
  }

  .services-page .cta {
    padding: 38px 24px;
    border-left-width: 4px;
  }

  .services-page .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-page .cta .hero-cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-page *,
  .services-page *::before,
  .services-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
