/* =============================================================
   Services v2 — two columns flanking a centered phone mockup.
   Mobile: stacked (left column, mockup, right column).
   Desktop (≥1024px): 3-column grid with the phone in the centre.
   ============================================================= */

/* Two-column layout: hidden on mobile/tablet, shown on desktop */
.services-v2 { display: none; }
@media (min-width: 1024px) {
  .services-v2 {
    display: block;
    background: var(--c-cream);
    padding-top: var(--s-9);
    padding-bottom: var(--s-8);
    overflow: visible;
  }
}

/* Ensure container doesn't clip the mockup shadow */
.services-v2 .container {
  overflow: visible;
}

/* -------- Section heading -------- */
.services-v2-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-8);
}
.services-v2-title {
  margin-top: var(--s-4);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--c-ink);
}
@media (min-width: 768px) {
  .services-v2-title { font-size: 48px; line-height: 1.05; letter-spacing: -0.02em; }
}

/* -------- Grid -------- */
.services-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: start;
  overflow: visible;
}
@media (min-width: 1024px) {
  .services-v2-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: var(--s-7);
    align-items: center;
    overflow: visible;
  }
}

.services-v2-col {
  display: flex;
  flex-direction: column;
  gap: var(--s-7);
}
/* Vertically centre the two items in each column against the phone mockup */
@media (min-width: 1024px) {
  .services-v2-col {
    justify-content: center;
    min-height: auto;
    gap: var(--s-8);
    overflow: visible;
  }
  /* Divider line between the two service items in each column */
  .service-v2:first-child {
    padding-bottom: var(--s-7);
    border-bottom: 1px solid var(--c-line);
  }
}

/* -------- Individual service item -------- */
.service-v2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-v2-head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.service-v2-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--c-forest-soft);
  color: var(--c-forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-v2-icon .icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-v2-title {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.service-v2-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-slate);
  max-width: 38ch;
}

.service-v2-cta {
  margin-top: var(--s-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-clay);
  align-self: flex-start;
  transition: gap 0.2s ease, color 0.2s ease;
}
.service-v2-cta:hover { gap: 10px; color: var(--c-clay-hover); }
.service-v2-cta .icon {
  width: 14px; height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* -------- Centre phone mockup --------
   Hidden on mobile; the image already contains the device frame,
   so no border, background, or shadow is needed here.
   ------------------------------------------- */
.services-v2-center {
  display: none;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
@media (min-width: 768px)  { .services-v2-center { display: flex; } }
@media (min-width: 1024px) { .services-v2-center { order: 0; overflow: visible; } }

.phone-mockup {
  width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
  overflow: visible;
}
@media (min-width: 1024px) { .phone-mockup { width: 280px; overflow: visible; } }
