/* ==========================================================================
   BUSIGEEK — SERVICES PAGE STYLES
   --------------------------------------------------------------------------
   Sections unique to the Services page. Everything shared lives elsewhere:

     busigeek-tokens.css    colours, fonts, radii, shadows        (loads 1st)
     busigeek-base.css      reset, buttons, section primitives    (loads 2nd)
     busigeek-services.css this file                            (loads 3rd)
     busigeek-nav.css       header, nav, utility bar, .container  (loads 4th)

   Do NOT add header, nav or .container rules here. They belong in
   busigeek-nav.css, which loads after this file and will override it anyway.
   ========================================================================== */

#busigeek-site .service-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

#busigeek-site .service-path {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

#busigeek-site .service-path.featured {
  background: linear-gradient(180deg, #fff, #effaf4);
  border-color: rgba(19, 199, 121, .38);
}

#busigeek-site .service-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#busigeek-site .service-path h3 {
  margin-top: 20px;
  font-size: 30px;
  line-height: 1.04;
  font-weight: 800;
}

.service-path>p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 600;
}

#busigeek-site .service-fit {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.service-fit li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 650;
}

.service-fit li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-2);
  font-weight: 900;
}

#busigeek-site .service-path .btn {
  margin-top: auto;
  align-self: flex-start;
  margin-top: 26px;
}

#busigeek-site .tool-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.tool-card {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.tool-card small {
  color: var(--green-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tool-card h3 {
  margin-top: 8px;
  font-size: 19px;
  line-height: 1.15;
}

.tool-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.tool-price {
  display: block;
  margin-top: 14px;
  font-weight: 900;
  color: var(--ink);
}

#busigeek-site .service-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

#busigeek-site .service-proof img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
}

#busigeek-site .service-proof blockquote {
  font-family: Manrope, Inter, sans-serif;
  font-size: 22px;
  line-height: 1.28;
  color: var(--ink);
  font-weight: 750;
}

#busigeek-site .service-proof p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media(max-width:1000px) {
  #busigeek-site .service-path-grid {
    grid-template-columns: 1fr;
  }
  #busigeek-site .tool-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:560px) {
  #busigeek-site .tool-grid {
    grid-template-columns: 1fr;
  }
  #busigeek-site .service-proof {
    grid-template-columns: 1fr;
  }
  #busigeek-site .service-proof img {
    width: 72px;
    height: 72px;
  }
}
