/* ===========================================================================
   V8 — services.

   Same ground as the hero: white, Poppins, V7 tokens, one blue accent. Cards
   are image-led because the product is images; the copy sits underneath rather
   than over the artwork, so a light render and a dark one read the same.
   ======================================================================== */

.v8s {
  --paper: var(--grey, #fbfbfb);
  --ink: var(--black, #1b1b1b);
  --mute: var(--grey--50, #8b8b8b);
  --hair: var(--grey--10, #e8e8e8);
  --live: var(--green, #10d07f);
  --beam: var(--blue-primary, #0f9ded);

  position: relative;
  font-family: Poppins, sans-serif;
  background: var(--paper);
  color: var(--ink);
  padding: 104px 0;
  border-top: 1px solid var(--hair);
}

.v8s-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Section head --------------------------------------------------------*/
.v8s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .9375rem;
  font-weight: 400;
  color: var(--mute);
}

.v8s-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--live);
  flex: 0 0 auto;
}

.v8s-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 64px;
  margin-top: 22px;
}

.v8s-head h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -.032em;
  font-weight: 500;
  color: var(--ink);
  max-width: 15ch;
}

.v8s-head p {
  margin: 0 0 6px;
  max-width: 44ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--mute);
}

/* --- Grid ----------------------------------------------------------------*/
.v8s-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.v8s-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--hair);
  text-decoration: none;
  color: inherit;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1),
              box-shadow .45s cubic-bezier(.22, .61, .36, 1),
              border-color .45s ease;
}

.v8s-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 30px 60px -30px rgba(16, 60, 110, .28);
}

/* Placeholder slot. White with a hairline and a label — deliberately reads as
   "artwork pending" rather than as a broken image. Swap the inner text for an
   <img> when the visuals arrive; the box already holds the right ratio. */
.v8s-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--hair);
  display: grid;
  place-items: center;
}

.v8s-ph {
  font-size: .875rem;
  font-weight: 400;
  color: var(--grey--30, #b8b8b8);
}

/* The card films are cut 16:10 to match the slot exactly, so contain and cover
   agree here; cover is kept so a future clip at another aspect still fills the
   card instead of letterboxing inside it. */
.v8s-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v8s-num {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  font-size: .75rem;
  font-weight: 500;
  color: var(--mute);
  font-variant-numeric: tabular-nums;
}

.v8s-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 26px 28px 28px;
}

.v8s-card h3 {
  margin: 0;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 500;
}

.v8s-card p {
  margin: 10px 0 0;
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--mute);
}

.v8s-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.v8s-list li {
  position: relative;
  padding-left: 20px;
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--ink);
}

.v8s-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--beam);
}

.v8s-for {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
  font-size: .875rem;
  line-height: 1.55;
  color: var(--mute);
}

.v8s-for strong { color: var(--ink); font-weight: 500; }

.v8s-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.v8s-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  font-size: .75rem;
  font-weight: 400;
  color: var(--mute);
}

.v8s-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink);
}

.v8s-more svg {
  width: 15px;
  height: 15px;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}

.v8s-card:hover .v8s-more { color: var(--beam); }
.v8s-card:hover .v8s-more svg { transform: translate(3px, -3px); }

/* --- Closing bar ---------------------------------------------------------*/
.v8s-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 26px 28px;
  border-radius: 22px;
  border: 1px solid var(--hair);
  background: #fff;
}

.v8s-note p { margin: 0; font-size: 1.0625rem; font-weight: 500; }

.v8s-note-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform .22s ease, opacity .22s ease;
}

.v8s-note-btn:hover { transform: translateY(-1px); opacity: .9; }

/* --- Reveal --------------------------------------------------------------*/
.v8s-card, .v8s-note {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1) var(--d, 0ms),
              transform .7s cubic-bezier(.22, .61, .36, 1) var(--d, 0ms),
              box-shadow .45s ease, border-color .45s ease;
}

.v8s-card.is-in, .v8s-note.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .v8s-card, .v8s-note { opacity: 1; transform: none; transition: none; }
}

/* --- Responsive ----------------------------------------------------------*/
@media (max-width: 991px) {
  .v8s { padding: 72px 0; }
  .v8s-wrap { padding: 0 24px; }
  .v8s-head { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .v8s-head h2 { max-width: none; }
  .v8s-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
}
