  /* Hero */
  .svc-hero {
    /*padding: 64px 5vw 0;*/
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
  }
  .svc-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
  }
  .svc-hero-text { padding: 50px 5vw 80px 5vw; justify-self: start; }
  .svc-eyebrow {
    display: flex; align-items: center; gap: 10px; margin-bottom: 1.4rem;
  }
  .svc-eyebrow-line { width: 36px; height: 1px; background: var(--teal-mid); }
  .svc-eyebrow-text { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-mid); font-weight: 500; }
  .svc-hero-text h1 { font-size: clamp(2.2rem, 4.5vw, 2.8rem); margin-bottom: 1.4rem; }
  .svc-hero-text h1 em { font-style: italic; color: var(--teal-dark); font-size: 0.5em; line-height: 1.5em; }
  .svc-hero-desc { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; max-width: 520px; margin-bottom: 2.5rem; }
  .svc-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  /* Hero image placeholder */
  .svc-hero-image {
    width: 100%;
    height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
	justify-self: end;
	min-height:100%;
	max-height:80vh;
  }
  .svc-hero-image img{
	  height:100%;
  }
  
  .svc-hero-image::before {
    content: '';
    position: absolute; inset: 0;
    /*
	background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 24px,
      rgba(15,110,86,0.04) 24px,
      rgba(15,110,86,0.04) 25px
    );
	*/
  }
  
  .img-placeholder-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(15,110,86,0.12);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .img-placeholder-icon svg { width: 34px; height: 34px; fill: var(--teal-dark); }
  .img-placeholder-label {
    font-size: 0.85rem; color: var(--teal-dark); opacity: 0.65;
    text-align: center; max-width: 200px; line-height: 1.5;
    position: relative;
  }
  .img-placeholder-size {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
    color: var(--teal-mid); background: rgba(15,110,86,0.1);
    padding: 4px 12px; border-radius: 999px; position: relative;
  }

  /* Why It Matters */
  .svc-why { background: var(--teal-mid); padding: 80px 5vw; }
  .svc-why-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5vw; }
  .svc-why-header { position: sticky; top: 90px; justify-self: start; }
  .svc-why-header .section-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
  .svc-why-header h2 { color: #fff; margin-bottom: 1rem; }
  .svc-why-header p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.8; }
  .svc-why-points { display: flex; flex-direction: column; gap: 1px; justify-self: end; }
  .svc-why-point {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 1.8rem 2rem;
    transition: background 0.2s;
  }
  .svc-why-point:hover { background: rgba(255,255,255,0.12); }
  .svc-why-point-num {
    font-family: var(--font-display); font-size: 1.8rem;
    color: rgba(255,255,255,0.2); font-weight: 600;
    line-height: 1; margin-bottom: 0.6rem;
  }
  .svc-why-point h3 { color: #fff; font-size: 1.05rem; margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 500; }
  .svc-why-point p { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.75; }

  /* What to Expect */
  .svc-expect { background: var(--cream); padding: 80px 5vw; }
  .svc-expect-header { margin-bottom: 3rem; max-width: 580px; }
  .svc-expect-header h2 { margin-top: 0.4rem; }
  .svc-expect-header p { margin-top: 0.8rem; color: var(--text-muted); font-size: 0.95rem; }
  .svc-expect-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
  .svc-expect-step {
    background: var(--warm-white);
    padding: 2.5rem;
    transition: background 0.2s;
    position: relative;
  }
  .svc-expect-step:hover { background: var(--teal-pale); }
  .svc-step-num {
    font-family: var(--font-display);
    font-size: 3.5rem; font-weight: 600;
    color: var(--teal-light); line-height: 1;
    margin-bottom: 1rem; display: block;
    transition: color 0.2s;
  }
  .svc-expect-step:hover .svc-step-num { color: var(--teal-mid); }
  .svc-expect-step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
  .svc-expect-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
  .svc-expect-cta { margin-top: 2.5rem; }

  /* FAQ */
  .svc-faq { background: var(--warm-white); padding: 80px 5vw; }
  .svc-faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5vw; }
  .svc-faq-header { position: sticky; top: 90px; }
  .svc-faq-header h2 { margin-top: 0.4rem; margin-bottom: 1rem; }
  .svc-faq-header p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.8rem; }
  .svc-faq-list { display: flex; flex-direction: column; }
  .svc-faq-item { border-bottom: 1px solid var(--border); }
  .svc-faq-item:first-child { border-top: 1px solid var(--border); }
  .svc-faq-q {
    font-weight: 500; font-size: 0.98rem; color: var(--text-dark);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; background: none; border: none; width: 100%; text-align: left;
    padding: 1.4rem 0; font-family: var(--font-body);
  }
  .svc-faq-q:hover { color: var(--teal-dark); }
  .svc-faq-toggle {
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--teal-dark); flex-shrink: 0;
    transition: transform 0.25s, background 0.2s;
    font-family: var(--font-body); font-weight: 300;
	padding-bottom:1px;
  }
  .svc-faq-item.open .svc-faq-toggle { transform: rotate(45deg); background: var(--teal-light); }
  .svc-faq-a {
    font-size: 0.92rem; color: var(--text-muted); line-height: 1.8;
    max-height: 0; overflow: hidden;
    transition: all 0.4s ease;
  }
  .svc-faq-item.open .svc-faq-a { max-height: 320px; padding-bottom: 1.4rem;}

  /* CTA Band */
  .svc-cta {
    background: var(--teal-dark); padding: 72px 5vw; text-align: center;
  }
  .svc-cta h2 { color: #fff; margin-bottom: 1rem; }
  .svc-cta p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2rem; }
  .svc-cta .btn-primary { background: #fff; color: var(--teal-dark); }
  .svc-cta .btn-primary:hover { background: var(--teal-light); }

  /* Related Services */
  .svc-related { background: var(--cream); padding: 56px 5vw; }
  .svc-related h4 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.2rem; }
  .related-tiles { display: flex; gap: 1rem; flex-wrap: wrap; }
  .related-tile {
    background: var(--warm-white); border: 1px solid var(--border); border-radius: 999px;
    padding: 0.6rem 1.4rem; font-size: 0.88rem; color: var(--text-mid);
    text-decoration: none; transition: all 0.2s; cursor: pointer; font-family: var(--font-body);
  }
  .related-tile:hover { background: var(--teal-light); border-color: var(--teal-mid); color: var(--teal-dark); }
    
  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .svc-hero-inner { grid-template-columns: 1fr; }
    .svc-hero-image { max-width:100%; height:auto; max-height:80vh; }
    .svc-why-inner { grid-template-columns: 1fr; }
    .svc-why-header { position: static; }
    .svc-faq-inner { grid-template-columns: 1fr; }
    .svc-faq-header { position: static; }
  }
  
  @media (max-width: 768px) {
	.svc-hero-image img{height:auto; width:100%;}
  }