/* ── Approach Section ─────────────────────────── */
.approach-section {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.home-container {
    padding: clamp(5rem, 12vw, 11.25rem) 20px;
    max-width: 1640px;
    margin: 0 auto;
}
.hs-hero-highlight {
    font-weight: 700;
    position: relative;
}
.hs-hero-highlight:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 5px;
    left: 5px;
    background: #EC008B;
    z-index: -1;
}
/* Dark overlay — visible only when bg image is set */


/* When bg_type = color, no overlay needed */
.approach-section.bg-color::before {
  display: none;
}

/* All direct children sit above overlay */
.approach-section > * {
  position: relative;
  z-index: 1;
}

/* ── Hero Block ───────────────────────────────── */
.approach-hero {
  position: relative;
  margin-bottom: 8.75vw;
}

.approach-hero__intro {
  font-size: clamp(22px, 3vw, 48px) !important;
  font-weight: 400;
  line-height: 1.35 !important;
  max-width: 1108px;
  color: #fff;
}

.approach-hero__intro .highlight {
  font-style: italic;
  font-weight: 700;
  color: #EC008B;
}

/* Watermark — plain text, visually large */
.approach-watermark {
  font-size: clamp(60px, 10vw, 180px) !important;
  font-weight: 900;
  margin: 0 auto;
  color: #00001A;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: -1;
  text-align: center;
  position: relative;
  margin-bottom: clamp(-6.25rem, -5vw, -4rem) !important;
}

/* Conversation block */
.approach-convo {
  max-width: clamp(30rem, 70vw, 42.6875rem);
  margin: 0 auto;
}

.approach-convo__title {
    color: #EC008B;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: clamp(1.5rem, 2vw, 1.625rem) !important;
    line-height: 1.2 !important;
}

.approach-convo__body {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.approach-convo__body p {
  margin-bottom: 10px;
  font-size: 18px !important;
}

/* ── Service Columns ──────────────────────────── */
.approach-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 10vw, 13.1875rem);
}

.approach-col__heading {
  font-size: clamp(26px, 2.2vw, 36px) !important;
  font-weight: 400;
  line-height: 1.3 !important;
  color: #fff;
  margin-bottom: clamp(1rem, 2vw, 1.875rem);
}
.approach-col p {
    color: #fff;
    font-size: 18px !important;
    margin-bottom: margin-bottom: clamp(1.25rem, 2.5vw, 2.5rem) !important;
}
.approach-col p:empty {
    display: none;
}

.approach-col__heading .underline-bold {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.approach-col__body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

/* CTA Button */
.approach-btn {
  display: inline-block;
  padding: 10px 30px;
  background: #EC008B;
  color: #fff !important;
  font-size: clamp(16px, 1.25vw, 1.125rem) !important;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.approach-btn:hover {
  background: #c00d5c;
  transform: translateY(-1px);
}

/* ── Responsive ───────────────────────────────── */

/* Laptop */
@media (max-width: 1100px) {
  .approach-convo {
    top: 160px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .approach-hero {
    min-height: auto;
    margin-bottom: 36px;
  }
  .approach-convo {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 28px;
  }
 
  .approach-cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* Mobile */
@media (max-width: 580px) {
  .approach-cols {
    grid-template-columns: 1fr; 
    gap: 70px;
  }
  .approach-btn {
    width: 100%;
    text-align: center;
  }
}