/* ===== Services page ===== */

/* Hero */
.svc-hero { padding: 96px 0; position: relative; }
.svc-hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 40%, rgba(20,36,63,.7) 62%, rgba(20,36,63,.45) 100%),
    radial-gradient(70% 120% at 100% 10%, rgba(58,91,138,.5) 0, transparent 60%),
    linear-gradient(120deg, #22385c 0%, #14243f 72%);
  z-index: 0;
}
.svc-hero__skyline { position: absolute; right: 0; bottom: 0; width: min(60%, 780px); opacity: .28; z-index: 0; pointer-events: none; user-select: none; }
.svc-hero__inner { position: relative; z-index: 1; }
.svc-hero__copy { max-width: 560px; }
.svc-hero__copy h1 { font-size: clamp(27px, 3.2vw, 38px); margin-bottom: 18px; }
.svc-hero__copy p { max-width: 44ch; margin-bottom: 26px; font-size: 15px; }

/* What we do */
.whatwedo { display: grid; grid-template-columns: .8fr 2.2fr; gap: 48px; align-items: start; }
.whatwedo__intro h2 { font-size: clamp(21px, 2.4vw, 28px); margin-bottom: 14px; }
.whatwedo__intro .eyebrow { margin-bottom: 12px; }
.whatwedo__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
/* first row = 3 cards, second row = 4 cards */
.whatwedo__cards { grid-template-columns: repeat(12, 1fr); }
.svc2-card { grid-column: span 4; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: .2s; }
.svc2-card:nth-child(n+4) { grid-column: span 3; }
.svc2-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #d9e5dd; }
.svc2-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--green-050); color: var(--green); display: grid; place-items: center; margin-bottom: 18px; }
.svc2-icon svg, .svc2-icon img { width: 26px; height: 26px; object-fit: contain; }
.svc2-card h3 { font-size: 18px; margin-bottom: 9px; }
.svc2-card p { font-size: 13px; margin-bottom: 15px; }
.learn { font-weight: 600; font-size: 14px; color: var(--green); display: inline-flex; gap: 6px; }
.learn span { transition: transform .2s; }
.svc2-card:hover .learn span { transform: translateX(4px); }

/* How we work */
.hww { display: grid; grid-template-columns: .85fr 2.15fr; gap: 48px; align-items: center; }
.hww__intro h2 { font-size: clamp(20px, 2.3vw, 26px); }
.hww__steps { display: flex; align-items: flex-start; gap: 8px; }
.hww__step { flex: 1; }
.hww__num { margin-bottom: 16px; }
.hww__num img { width: 70px; height: auto; display: block; }
.hww__step h4 { font-family: var(--serif); font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.hww__step p { font-size: 13px; }
.hww__connector { flex: 0 0 40px; height: 1px; border-top: 1.5px dashed #c3ccd6; margin-top: 28px; }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: .85fr 2.15fr; gap: 48px; align-items: start; }
.faq-wrap__intro h2 { font-size: clamp(20px, 2.3vw, 26px); margin-bottom: 14px; }
.faq-wrap__intro p { margin-bottom: 22px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq__item { border: 1px solid var(--line); border-radius: 10px; background: #fff; overflow: hidden; align-self: start; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; background: none; border: 0; cursor: pointer; padding: 18px 20px; text-align: left; font-family: var(--sans); font-size: 14.5px; font-weight: 500; color: var(--ink); }
.faq__plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--green); border-radius: 2px; transition: .2s; }
.faq__plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__plus::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__item.is-open .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a p { padding: 0 20px 18px; margin: 0; font-size: 13.5px; color: var(--body); }
.faq__item.is-open .faq__a { max-height: 240px; }

/* (CTA band styles are shared — see style.css) */

@media (max-width: 980px) {
  .whatwedo, .hww, .faq-wrap { grid-template-columns: 1fr; }
  .whatwedo__cards { grid-template-columns: repeat(2, 1fr); }
  .svc2-card, .svc2-card:nth-child(n+4) { grid-column: auto; }
  .hww__steps { flex-direction: column; }
  .hww__connector { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .whatwedo__cards { grid-template-columns: 1fr; }
  .svc-hero__skyline { width: 100%; opacity: .14; }
}
