/* ============================================================
   WILDMAN - Services
   One sheet for the hub and its four detail routes, which share
   a sub-head, a body shell and a two-button closing band.
   Ported from the design prototype's /services* routes.
   ============================================================ */

/* Hub ---------------------------------------------------------- */

.wm-services__title { font-size: clamp(32px, 6.4vw, 92px); letter-spacing: -0.045em; }
.wm-services__note {
  font-family: var(--wm-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--wm-text-muted);
  margin-top: 18px;
}
.wm-services__note a { color: var(--wm-blue-bright); border-bottom: 1px solid rgba(90, 155, 255, .35); }

.wm-services__grid-wrap { padding: clamp(60px, 8vw, 110px) var(--wm-gutter); }
.wm-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(276px, 100%), 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.wm-svccard {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--wm-border-light);
  border-radius: var(--wm-radius-lg);
  box-shadow: var(--wm-shadow-card);
  color: inherit;
  transition: transform var(--wm-transition-spring), box-shadow var(--wm-transition-spring);
}
.wm-svccard:hover { transform: translateY(-5px); box-shadow: 0 26px 56px rgba(0, 0, 0, .14); color: inherit; }
.wm-svccard__mock {
  display: block;
  padding: 22px;
  background: #eef2f7;
  border-bottom: 1px solid var(--wm-border-light);
}
.wm-svccard__body { display: flex; flex-direction: column; flex: 1; padding: clamp(22px, 2.4vw, 30px); }
.wm-svccard__title {
  font-family: var(--wm-font-heading);
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: var(--wm-weight-bold);
  letter-spacing: -0.01em;
  color: var(--wm-text-dark);
}
.wm-svccard__copy {
  font-family: var(--wm-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--wm-text-dark-secondary);
  margin-top: 10px;
  flex: 1;
}
.wm-svccard__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-family: var(--wm-font-heading);
  font-size: 14px;
  font-weight: var(--wm-weight-semibold);
  color: var(--wm-blue);
}

/* The four card illustrations, in the order the design sets them. */

.wm-mock { display: block; border: 1px solid rgba(0, 0, 0, .09); border-radius: 9px; background: #fff; }

.wm-mock--browser { overflow: hidden; }
.wm-mock__chrome {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  background: #f6f8fb;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.wm-mock__chrome span { width: 5px; height: 5px; border-radius: 50%; background: #d4dae2; }
.wm-mock__page { display: flex; flex-direction: column; gap: 6px; padding: 12px; }
.wm-mock__hero { height: 20px; width: 70%; border-radius: 4px; background: var(--wm-gradient-blue); }
.wm-mock__line { height: 5px; border-radius: var(--wm-radius-pill); background: #dbe4f0; }
.wm-mock__line--short { width: 80%; }
.wm-mock__btn { height: 16px; width: 64px; border-radius: 4px; background: rgba(12, 86, 191, .28); margin-top: 3px; }

.wm-mock--chat { display: flex; flex-direction: column; gap: 7px; padding: 14px; }
.wm-mock__bubble-in { align-self: flex-start; width: 74%; height: 22px; border-radius: 9px 9px 9px 3px; background: #e4eaf3; }
.wm-mock__bubble-out { align-self: flex-end; width: 62%; height: 22px; border-radius: 9px 9px 3px 9px; background: var(--wm-gradient-blue); }
.wm-mock__bubble-tail { align-self: flex-end; width: 40%; height: 12px; border-radius: 9px 9px 3px 9px; background: rgba(12, 86, 191, .35); }

.wm-mock--tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 12px; }
.wm-mock__tile { border-radius: 5px; background: #f3f6fa; padding: 8px; display: flex; flex-direction: column; gap: 5px; }
.wm-mock__tile span:first-child { height: 4px; width: 60%; border-radius: var(--wm-radius-pill); background: #c9d5e5; }
.wm-mock__tile span:last-child { height: 11px; border-radius: 2px; }
.wm-mock__tile--1 span:last-child { width: 80%; background: var(--wm-blue); }
.wm-mock__tile--2 span:last-child { width: 56%; background: var(--wm-blue-light); }
.wm-mock__tile--3 span:last-child { width: 68%; background: #8fb3e0; }

.wm-mock--bars { display: flex; align-items: flex-end; gap: 6px; height: 74px; padding: 12px; }
.wm-mock--bars span { flex: 1; border-radius: 3px 3px 0 0; }

/* Hub closing band --------------------------------------------- */

.wm-svcband {
  position: relative;
  overflow: hidden;
  padding: var(--wm-section-y-sm) var(--wm-gutter);
  background: var(--wm-gradient-blue);
}
.wm-svcband__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 120% at 12% 0%, rgba(27, 174, 205, .35) 0%, transparent 58%);
  pointer-events: none;
}
.wm-svcband__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
}
.wm-svcband__title {
  font-family: var(--wm-font-heading);
  font-weight: var(--wm-weight-extrabold);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: balance;
}
.wm-svcband__body {
  font-family: var(--wm-font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.72;
  color: rgba(255, 255, 255, .88);
  text-wrap: pretty;
}
.wm-svcband__btn { margin-top: 24px; }

/* Detail-route shell -------------------------------------------- */

.wm-svcpage__crumb {
  font-family: var(--wm-font-heading);
  font-size: 13px;
  font-weight: var(--wm-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wm-text-muted);
}
.wm-svcpage__crumb:hover { color: var(--wm-text); }
.wm-svcpage .wm-pagehead h1 { max-width: 18ch; text-wrap: balance; }
.wm-svcpage__body { padding: var(--wm-section-y-sm) var(--wm-gutter); }
.wm-svcpage__h2 {
  font-family: var(--wm-font-heading);
  font-weight: var(--wm-weight-bold);
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--wm-text-dark);
}

/* Website Design ------------------------------------------------ */

.wm-svcweb__split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(24px, 3.4vw, 52px);
  margin-top: clamp(30px, 4vw, 50px);
  align-items: start;
}
.wm-svcweb__browser {
  border-radius: var(--wm-radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--wm-border-light);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .12);
}
.wm-svcweb__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 15px;
  background: #eef2f7;
  border-bottom: 1px solid var(--wm-border-light);
}
.wm-svcweb__dot { width: 8px; height: 8px; border-radius: 50%; background: #d4dae2; }
.wm-svcweb__url {
  flex: 1;
  max-width: 280px;
  margin-left: 9px;
  height: 21px;
  border-radius: var(--wm-radius-pill);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .07);
  display: flex;
  align-items: center;
  padding: 0 11px;
  font-family: var(--wm-font-mono);
  font-size: 11px;
  color: rgba(0, 0, 0, .55);
}
.wm-svcweb__shot { position: relative; width: 100%; aspect-ratio: 4 / 3; min-height: 240px; background: #e9eef4; }
/* The slider carries its own aspect from the screenshots themselves, so the
   authored 4:3 frame would leave a band of empty grey under it. */
.wm-svcweb__shot--slider {
  aspect-ratio: auto;
  min-height: 0;
  background: transparent;
}

.wm-svcweb__shot--slider .wm-shots__img {
  height: auto;
}

.wm-svcweb__shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wm-svcweb__shot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-family: var(--wm-font-heading);
  font-size: var(--wm-text-xs);
  letter-spacing: 0.1em;
  color: var(--wm-text-dark-muted);
  border: 1px dashed rgba(0, 0, 0, .18);
}
.wm-svcweb__points { display: flex; flex-direction: column; gap: clamp(12px, 1.6vw, 16px); }
.wm-svcweb__point {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--wm-border-light);
  border-radius: var(--wm-radius-card);
  padding: 22px 24px;
  box-shadow: var(--wm-shadow-card);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}
.wm-svcweb__point .wm-icon { width: 44px; height: 44px; border-radius: var(--wm-radius-btn); }
.wm-svcweb__point-copy {
  font-family: var(--wm-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--wm-text-dark-secondary);
}
.wm-svcweb__point-copy strong {
  font-family: var(--wm-font-heading);
  font-weight: var(--wm-weight-semibold);
  color: var(--wm-text-dark);
}

/* AI Solutions -------------------------------------------------- */

.wm-svcai .wm-pagehead h1 { font-size: clamp(29px, 5.2vw, 74px); max-width: 19ch; }
.wm-svcai__lead {
  font-family: var(--wm-font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--wm-text-dark-secondary);
  margin-top: 16px;
  max-width: 56ch;
}
.wm-svcai__steps { margin: clamp(32px, 4vw, 52px) 0 0; padding: 0; list-style: none; }
.wm-svcai__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 2.4vw, 30px);
  padding-bottom: clamp(16px, 2vw, 22px);
}
.wm-svcai__step:last-child { padding-bottom: 0; }
.wm-svcai__rail { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.wm-svcai__step:last-child .wm-svcai__rail { gap: 0; }
.wm-svcai__num {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wm-font-heading);
  font-size: 14px;
  font-weight: var(--wm-weight-bold);
}
.wm-svcai__num--plain { background: #fff; border: 2px solid var(--wm-blue); color: var(--wm-blue); }
.wm-svcai__num--feature {
  background: var(--wm-gradient-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(12, 86, 191, .3);
}
.wm-svcai__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, rgba(12, 86, 191, .45), rgba(12, 86, 191, .14));
}
.wm-svcai__card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: var(--wm-radius-lg);
  padding: clamp(18px, 2.2vw, 26px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}
.wm-svcai__card--plain { border: 1px solid var(--wm-border-light); box-shadow: var(--wm-shadow-card); }
.wm-svcai__card--feature { border: 1px solid rgba(12, 86, 191, .28); box-shadow: 0 18px 44px rgba(12, 86, 191, .14); }
.wm-svcai__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--wm-radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wm-svcai__icon--plain { background: rgba(12, 86, 191, .1); color: var(--wm-blue); }
.wm-svcai__icon--feature { background: var(--wm-gradient-blue); color: #fff; }
.wm-svcai__copy {
  font-family: var(--wm-font-body);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--wm-text-dark-secondary);
}
.wm-svcai__card--feature .wm-svcai__copy {
  font-family: var(--wm-font-heading);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: var(--wm-weight-semibold);
  line-height: 1.5;
  color: var(--wm-text-dark);
}

/* Business Platform --------------------------------------------- */

.wm-svcplat .wm-pagehead h1 { max-width: 17ch; }
.wm-svcplat__dash {
  margin-top: clamp(30px, 4vw, 50px);
  border-radius: var(--wm-radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--wm-border-light);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .12);
}
.wm-svcplat__dashbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  background: #eef2f7;
  border-bottom: 1px solid var(--wm-border-light);
}
.wm-svcplat__dashlabel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--wm-font-heading);
  font-size: 13px;
  font-weight: var(--wm-weight-semibold);
  color: var(--wm-text-dark);
}
.wm-svcplat__dashdot { width: 8px; height: 8px; border-radius: 50%; background: var(--wm-blue); }
.wm-svcplat__tabs { display: flex; flex-wrap: wrap; gap: 6px; }
.wm-svcplat__tab {
  font-family: var(--wm-font-heading);
  font-size: 11px;
  font-weight: var(--wm-weight-semibold);
  padding: 5px 11px;
  border-radius: var(--wm-radius-pill);
  background: #fff;
  border: 1px solid var(--wm-border-light);
  color: var(--wm-text-dark-secondary);
}
.wm-svcplat__tab.is-active { background: var(--wm-blue); border-color: var(--wm-blue); color: #fff; }
.wm-svcplat__shot { position: relative; width: 100%; aspect-ratio: 16 / 9; min-height: 230px; background: #e9eef4; }
.wm-svcplat__shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wm-svcplat__shot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-family: var(--wm-font-heading);
  font-size: var(--wm-text-xs);
  letter-spacing: 0.1em;
  color: var(--wm-text-dark-muted);
  border: 1px dashed rgba(0, 0, 0, .18);
}
.wm-svcplat__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(258px, 100%), 1fr));
  gap: clamp(14px, 1.8vw, 20px);
  margin-top: clamp(20px, 2.4vw, 28px);
}
.wm-svcplat__card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--wm-border-light);
  border-radius: var(--wm-radius-card);
  padding: 22px;
  box-shadow: var(--wm-shadow-card);
}
.wm-svcplat__card-title {
  font-family: var(--wm-font-heading);
  font-size: 16px;
  font-weight: var(--wm-weight-semibold);
  color: var(--wm-text-dark);
  margin-top: 16px;
}
.wm-svcplat__card-copy {
  font-family: var(--wm-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--wm-text-dark-secondary);
  margin-top: 7px;
}

.wm-svcplat__products {
  position: relative;
  overflow: hidden;
  padding: var(--wm-section-y) var(--wm-gutter);
  border-bottom: 1px solid var(--wm-border);
  background: var(--wm-bg);
}
.wm-svcplat__products-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 86, 191, .1), transparent 62%);
  pointer-events: none;
}
.wm-svcplat__products-inner { position: relative; }
.wm-svcplat__products-title {
  font-family: var(--wm-font-heading);
  font-weight: var(--wm-weight-bold);
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--wm-text);
  margin-top: 18px;
}
.wm-svcplat__products-lead {
  font-family: var(--wm-font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--wm-text-secondary);
  margin-top: 18px;
  max-width: 68ch;
  text-wrap: pretty;
}
.wm-svcplat__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(288px, 100%), 1fr));
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(32px, 4vw, 52px);
}

.wm-prodcard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--wm-border);
  border-radius: var(--wm-radius-lg);
  background: var(--wm-gradient-card);
  padding: clamp(24px, 2.6vw, 32px);
  color: inherit;
  transition: transform var(--wm-transition-spring), border-color var(--wm-transition-spring);
}
.wm-prodcard:hover { transform: translateY(-5px); border-color: var(--wm-border-blue); color: inherit; }
.wm-prodcard__top { display: flex; align-items: center; gap: 12px; }
.wm-prodcard__tag {
  font-family: var(--wm-font-heading);
  font-size: 10px;
  font-weight: var(--wm-weight-semibold);
  letter-spacing: 0.14em;
  color: var(--wm-blue-bright);
}
.wm-prodcard__name {
  font-family: var(--wm-font-heading);
  font-size: 22px;
  font-weight: var(--wm-weight-bold);
  letter-spacing: -0.02em;
  color: var(--wm-text);
  margin-top: 20px;
}
.wm-prodcard__tagline {
  font-family: var(--wm-font-heading);
  font-size: 15px;
  font-weight: var(--wm-weight-semibold);
  color: var(--wm-blue-bright);
  margin-top: 8px;
}
.wm-prodcard__copy {
  font-family: var(--wm-font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--wm-text-secondary);
  margin-top: 12px;
  flex: 1;
}
.wm-prodcard__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-family: var(--wm-font-heading);
  font-size: 14px;
  font-weight: var(--wm-weight-semibold);
  color: var(--wm-blue-bright);
}

/* Agency Services ------------------------------------------------ */

.wm-svcag .wm-pagehead h1 { max-width: 17ch; }
.wm-svcag__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(288px, 100%), 1fr));
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(30px, 4vw, 50px);
}
.wm-svcag__card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--wm-border-light);
  border-radius: var(--wm-radius-lg);
  box-shadow: var(--wm-shadow-card);
  display: flex;
  flex-direction: column;
}
.wm-svcag__mock {
  padding: clamp(20px, 2.2vw, 26px);
  background: #eef2f7;
  border-bottom: 1px solid var(--wm-border-light);
}
.wm-svcag__mock-label {
  font-family: var(--wm-font-heading);
  font-size: 10px;
  font-weight: var(--wm-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wm-text-dark-secondary);
  margin-bottom: 14px;
}
.wm-svcag__mock-note {
  font-family: var(--wm-font-body);
  font-size: 12px;
  color: var(--wm-text-dark-secondary);
  margin-top: 12px;
}
.wm-svcag__body { padding: clamp(20px, 2.2vw, 26px); display: flex; flex-direction: column; flex: 1; }
.wm-svcag__title {
  font-family: var(--wm-font-heading);
  font-size: 20px;
  font-weight: var(--wm-weight-bold);
  letter-spacing: -0.01em;
  color: var(--wm-text-dark);
}
.wm-svcag__copy {
  font-family: var(--wm-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--wm-text-dark-secondary);
  margin-top: 9px;
}

.wm-svcag__serp { display: flex; flex-direction: column; gap: 8px; }
.wm-svcag__serp-row { display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: center; }
.wm-svcag__serp-rank {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #c3d3ea;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wm-font-heading);
  font-size: 10px;
  font-weight: var(--wm-weight-bold);
}
.wm-svcag__serp-row.is-top .wm-svcag__serp-rank { background: var(--wm-gradient-blue); }
.wm-svcag__serp-lines { display: flex; flex-direction: column; gap: 4px; }
.wm-svcag__serp-lines span { height: 5px; border-radius: var(--wm-radius-pill); background: #dbe4f0; }
.wm-svcag__serp-lines span:first-child { width: 72%; }
.wm-svcag__serp-row.is-top .wm-svcag__serp-lines span:first-child { background: #8fb3e0; }

.wm-svcag__bars { display: flex; align-items: flex-end; gap: 6px; height: 74px; }
.wm-svcag__bars span { flex: 1; border-radius: 3px 3px 0 0; background: #c3d3ea; }
.wm-svcag__bars span:nth-child(4) { background: #8fb3e0; }
.wm-svcag__bars span:nth-child(5) { background: var(--wm-blue-light); }
.wm-svcag__bars span:nth-child(6) { background: var(--wm-gradient-blue); }

.wm-svcag__queue { display: flex; flex-direction: column; gap: 8px; }
.wm-svcag__queue-item { display: grid; grid-template-columns: auto 1fr auto; gap: 9px; align-items: center; }
.wm-svcag__queue-thumb { width: 22px; height: 22px; border-radius: 5px; background: var(--wm-gradient-blue); }
.wm-svcag__queue-line { height: 5px; border-radius: var(--wm-radius-pill); background: #dbe4f0; }
.wm-svcag__queue-day {
  font-family: var(--wm-font-heading);
  font-size: 9px;
  font-weight: var(--wm-weight-semibold);
  letter-spacing: 0.08em;
  color: var(--wm-text-dark-secondary);
}

.wm-svcag__note {
  margin-top: clamp(24px, 3vw, 36px);
  border: 1px dashed rgba(12, 86, 191, .35);
  border-radius: var(--wm-radius-card);
  padding: 22px 24px;
  background: rgba(12, 86, 191, .045);
}
.wm-svcag__note-title {
  font-family: var(--wm-font-heading);
  font-size: 17px;
  font-weight: var(--wm-weight-bold);
  letter-spacing: -0.01em;
  color: var(--wm-text-dark);
}
.wm-svcag__note-copy {
  font-family: var(--wm-font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--wm-text-dark-secondary);
  margin-top: 8px;
}

/* ---------------------------------------------------------------------------
   Screenshot slider
   Lives inside the browser mock on the Website Design route. Slides stack in
   one grid cell so the frame never changes height, and cross-fade. With no
   JavaScript the first slide stays visible and the dots simply do nothing.
   --------------------------------------------------------------------------- */

.wm-shots {
	position: relative;
	display: grid;
	width: 100%;
}

.wm-shots__slide {
	grid-area: 1 / 1;
	margin: 0;
	opacity: 0;
	transition: opacity 620ms ease;
	pointer-events: none;
}

.wm-shots__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.wm-shots__img {
	display: block;
	width: 100%;
	height: auto;
}

.wm-shots__dots {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	gap: 8px;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(3, 5, 8, 0.55);
	backdrop-filter: blur(6px);
}

.wm-shots__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.42);
	cursor: pointer;
	transition: background 240ms ease, transform 240ms ease;
}

.wm-shots__dot:hover,
.wm-shots__dot:focus-visible {
	background: rgba(255, 255, 255, 0.75);
}

.wm-shots__dot.is-active {
	background: var(--wm-blue-bright, #5a9bff);
	transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {
	.wm-shots__slide {
		transition: none;
	}
}

/* ---------------------------------------------------------------------------
   AI Solutions - "Where the hours go" (What we do)
   --------------------------------------------------------------------------- */

.wm-svcai__hours {
	margin-top: clamp(30px, 3.6vw, 46px);
}

.wm-svcai__weeks {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: end;
	gap: clamp(14px, 2vw, 28px);
}

.wm-svcai__week {
	min-width: 0;
}

.wm-svcai__weekhead {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 4px 12px;
	margin-bottom: 10px;
}

.wm-svcai__weeklabel {
	font-family: var(--wm-font-heading);
	font-size: var(--wm-text-sm);
	font-weight: var(--wm-weight-semibold);
	color: var(--wm-text-dark);
}

.wm-svcai__weekfig {
	font-family: var(--wm-font-heading);
	font-size: var(--wm-text-xs);
	color: var(--wm-text-dark-secondary);
	white-space: nowrap;
}

.wm-svcai__weekfig strong {
	font-size: var(--wm-text-md);
	font-weight: var(--wm-weight-bold);
	color: var(--wm-text-dark);
}

.wm-svcai__weekfig--gain strong {
	color: var(--wm-blue);
}

.wm-svcai__bar {
	display: flex;
	height: clamp(56px, 6.2vw, 78px);
	border: 1px solid var(--wm-border-light);
	border-radius: var(--wm-radius-sm);
	background: #fff;
	overflow: hidden;
	box-shadow: var(--wm-shadow-card);
}

.wm-svcai__seg {
	display: block;
	height: 100%;
	min-width: 2px;
}

.wm-svcai__seg + .wm-svcai__seg {
	box-shadow: inset 1px 0 0 rgba(255, 255, 255, .6);
}

.wm-svcai__seg--admin {
	background: #aebdd0;
}

.wm-svcai__seg--core {
	background: var(--wm-bg-card-light-alt);
}

.wm-svcai__seg--auto {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--wm-gradient-blue);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.wm-svcai__seg--auto::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .38) 50%, rgba(255, 255, 255, 0) 100%);
	transform: translateX(-100%);
	animation: wm-svcai-sheen 3.4s var(--wm-ease-spring) infinite;
}

.wm-svcai__seggain svg {
	display: block;
	position: relative;
	z-index: 1;
}

@keyframes wm-svcai-sheen {
	0%   { transform: translateX(-100%); }
	55%  { transform: translateX(100%); }
	100% { transform: translateX(100%); }
}

.wm-svcai__weekarrow {
	display: flex;
	align-items: center;
	justify-content: center;
	height: clamp(56px, 6.2vw, 78px);
	color: var(--wm-blue);
	flex: none;
}

.wm-svcai__legend {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	gap: 10px 28px;
	margin: 20px 0 0;
	font-family: var(--wm-font-heading);
	font-size: var(--wm-text-xs);
	color: var(--wm-text-dark-secondary);
}

.wm-svcai__key {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.wm-svcai__key::before {
	content: "";
	width: 11px;
	height: 11px;
	border-radius: 3px;
	flex: none;
}

.wm-svcai__key--admin::before { background: #aebdd0; }
.wm-svcai__key--auto::before  { background: var(--wm-gradient-blue); }
.wm-svcai__key--core::before  { background: var(--wm-bg-card-light-alt); border: 1px solid var(--wm-border-light); }

.wm-svcai__tasks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	list-style: none;
	margin: clamp(24px, 3vw, 34px) 0 0;
	padding: 0;
}

.wm-svcai__task {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 13px 16px;
	border: 1px solid var(--wm-border-light);
	border-radius: var(--wm-radius-card);
	background: #fff;
}

.wm-svcai__task--ai {
	border-color: var(--wm-border-light-blue);
	background: linear-gradient(90deg, rgba(12, 86, 191, .05) 0%, #fff 60%);
}

.wm-svcai__taskicon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	flex: none;
	background: var(--wm-bg-card-light-alt);
	color: var(--wm-text-dark-secondary);
}

.wm-svcai__task--ai .wm-svcai__taskicon {
	background: var(--wm-gradient-blue);
	color: #fff;
}

.wm-svcai__taskname {
	font-family: var(--wm-font-body);
	font-size: var(--wm-text-sm);
	color: var(--wm-text-dark);
	line-height: 1.35;
}

.wm-svcai__taskhrs {
	font-family: var(--wm-font-heading);
	font-size: var(--wm-text-xs);
	font-weight: var(--wm-weight-semibold);
	color: var(--wm-text-dark);
	white-space: nowrap;
}

.wm-svcai__tasktag {
	grid-column: 2 / -1;
	font-family: var(--wm-font-heading);
	font-size: 11px;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--wm-text-dark-muted);
}

.wm-svcai__task--ai .wm-svcai__tasktag {
	color: var(--wm-blue);
}

.wm-svcai__safe {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: clamp(20px, 2.4vw, 28px) 0 0;
	padding: 0;
}

.wm-svcai__safeitem {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid var(--wm-border-light-blue);
	border-radius: var(--wm-radius-pill);
	background: rgba(12, 86, 191, .04);
	font-family: var(--wm-font-heading);
	font-size: var(--wm-text-xs);
	color: var(--wm-text-dark-secondary);
}

.wm-svcai__safeicon {
	display: inline-flex;
	color: var(--wm-blue);
}

.wm-svcai__note {
	margin: 14px 0 0;
	font-family: var(--wm-font-body);
	font-size: var(--wm-text-xs);
	color: var(--wm-text-dark-muted);
}

@media (max-width: 900px) {
	.wm-svcai__weeks {
		grid-template-columns: minmax(0, 1fr);
	}

	.wm-svcai__weekarrow {
		height: auto;
		padding: 2px 0;
		transform: rotate(90deg);
	}

	.wm-svcai__tasks {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wm-svcai__seg--auto::after {
		animation: none;
		opacity: 0;
	}
}
