/* ============================================================
   Services landing — multi-column screenshot layout
   ============================================================ */

/* ---------- Booking modal ---------- */

.book-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.book-modal-overlay.open {
  display: flex;
}

.book-modal {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 720px;
  height: min(90vh, 680px);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.book-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.book-modal iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

body.services-page {
  text-align: left;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px) 0 0 / 14px 14px,
    linear-gradient(90deg, var(--grid) 1px, transparent 1px) 0 0 / 14px 14px,
    var(--bg);
}

.services-page .container {
  text-align: left;
}

/* ---------- Buttons ---------- */

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.primary-cta {
  background: var(--brand);
  color: #fff;
  min-height: 40px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(63, 139, 164, 0.22);
}

.primary-cta:hover {
  transform: translateY(-1px);
}

.secondary-cta {
  min-height: auto;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-weight: 500;
}

.secondary-cta:hover {
  color: var(--brand);
}

/* ---------- Top header ---------- */

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  width: 100%;
  padding: 20px 0;
  margin-bottom: calc(-1 * clamp(28px, 4vw, 52px));
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
}

.site-header__brand img {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
}

.site-header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-header__brand-name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.site-header__brand-tagline {
  color: var(--muted);
  font-size: 13px;
}

.site-header__cta {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 20px;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(63, 139, 164, 0.22);
  margin-left: auto;
}


@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 0;
  }

  .site-header__brand-tagline {
    display: none;
  }

  .site-header__cta {
    margin-left: auto;
  }
}

/* ---------- Main wrapper ---------- */

.services-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 52px);
}

.services-section {
  width: 100%;
}

.services-page .eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
}

.text-brand {
  color: var(--brand);
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.hero__title {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}

.hero__summary {
  margin: 0 0 12px;
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.hero__price {
  margin: 0 0 20px;
  max-width: 520px;
  color: var(--brand);
  font-weight: 600;
  font-size: 15px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}


/* Hero visual — CSS-only laptop with floating chips */

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
  }
}

/* ---------- Pain row ---------- */

.pain {
  background: rgba(248, 250, 252, 0.7);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
}

.pain__title {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.pain__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pain__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.pain__item p {
  margin: 0;
}

.pain__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--brand);
}

.pain__glyph svg {
  width: 18px;
  height: 18px;
  display: block;
}

@media (max-width: 960px) {
  .pain {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .pain__list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Offer ---------- */

.offer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(180px, 220px);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.offer__title {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.offer__lede {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.offer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
}

.offer__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
}

.offer__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  flex-shrink: 0;
}

.offer__check svg {
  width: 11px;
  height: 11px;
  display: block;
}

.offer__price {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.offer__price-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
}

.offer__price-glyph svg {
  width: 18px;
  height: 18px;
  display: block;
}

.offer__price-label {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.offer__price-value {
  margin: 6px 0 0;
  color: var(--brand);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (max-width: 960px) {
  .offer {
    grid-template-columns: 1fr;
  }

  .offer__list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Examples ---------- */

.examples__title {
  margin: 0 0 16px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.examples__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.example-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  align-self: start;
}

.example-tile__media {
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--border);
  display: block;
}

.example-tile__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}

.example-tile__title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.example-tile__link {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
  text-decoration: none;
}

.example-tile__link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .examples__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Proof ---------- */

.proof {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.proof__title {
  margin: 4px 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.proof__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proof-stat__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
}

.proof-stat__glyph svg {
  width: 16px;
  height: 16px;
  display: block;
}

.proof-stat__value {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.proof-stat__label {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.proof-stat__link {
  color: var(--brand);
  text-decoration: none;
}

.proof-stat__link:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .proof {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .proof__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Process ---------- */

.process__title {
  margin: 0 0 18px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.process__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 24px);
  position: relative;
}

.process__grid::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 14px;
  border-top: 1px dashed rgba(63, 139, 164, 0.35);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(63, 139, 164, 0.3);
}

.process-step h3 {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.process-step p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

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

  .process__grid::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .process__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact bar ---------- */

.contact {
  background: rgba(248, 250, 252, 0.85);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 0;
}

.contact__body {
  padding: clamp(24px, 4vw, 40px);
}

.contact__title {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.contact__lede {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 420px;
}

.contact__photo {
  display: block;
  width: clamp(120px, 16vw, 200px);
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: top center;
  align-self: end;
}

.contact__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact__dm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s;
}

.contact__dm:hover {
  border-color: #0a66c2;
  color: #0a66c2;
}

@media (max-width: 600px) {
  .contact {
    grid-template-columns: 1fr;
  }

  .contact__photo {
    display: none;
  }
}

/* ---------- Footer ---------- */

.services-footer {
  width: min(calc(100% - clamp(40px, 8vw, 96px)), 1084px);
  margin: clamp(16px, 3vw, 28px) auto 0;
  padding: 16px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.services-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-footer__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.services-footer__copy {
  font-size: 13px;
  color: var(--muted);
}

.services-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.services-footer__links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.services-footer__links a:hover {
  color: var(--text);
}
