/* ============================================================================
  COACHING BANNER STYLES
  Purpose: Coaching page banner/ribbon differentiation
  ============================================================================ */

.coaching-landing-page .page-header{
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.16), rgba(74, 0, 128, 0.1));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.coaching-landing-page .coaching-hero .page-title{
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.coaching-landing-page .coaching-hero .page-subtitle{
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(0.28rem, 0.72vw, 0.44rem);
}

.coaching-landing-page .coaching-hero .hero-cta-group{
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.7rem, 1.8vw, 1rem);
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.coaching-landing-page .coaching-hero .hero-microcopy{
  margin-top: clamp(0.34rem, 0.85vw, 0.5rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(0.92rem, 1.55vw, 1rem);
  color: var(--color-text-secondary);
}

.coaching-landing-page .coaching-hero .hero-cta-group + .hero-microcopy{
  margin-top: 0.625rem;
}

.coaching-landing-page .coaching-hero .hero-router{
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: clamp(0.83rem, 1.2vw, 0.89rem);
  line-height: 1.45;
  max-width: none;
  white-space: nowrap;
  color: var(--color-text-secondary);
  opacity: 0.8;
}

.coaching-landing-page .coaching-hero .hero-router a{
  color: inherit;
  opacity: 0.92;
  text-decoration: none;
  text-underline-offset: 0.12em;
}

.coaching-landing-page .coaching-hero .hero-router a:hover,
.coaching-landing-page .coaching-hero .hero-router a:focus-visible{
  text-decoration: underline;
}

.coaching-landing-page.what-to-expect-page .page-header{
  background: transparent !important;
  height: auto;
  min-height: clamp(400px, 50vh, 540px);
  padding-top: clamp(0.54rem, 1.4vw, 1.1rem);
  padding-right: 0;
  padding-bottom: clamp(0.2rem, 0.8vw, 0.5rem);
  padding-left: 0;
  border-bottom: 0;
}

.coaching-landing-page.what-to-expect-page .page-header .container{
  max-width: 1380px;
  padding-left: clamp(0.8rem, 1.85vw, 1.6rem);
  padding-right: clamp(0.8rem, 1.85vw, 1.6rem);
}

.coaching-landing-page.what-to-expect-page .coaching-hero{
  text-align: left;
}

.coaching-landing-page.what-to-expect-page .coaching-hero .container{
  height: auto;
}

.coaching-landing-page.what-to-expect-page .coaching-hero-layout{
  display: grid;
  grid-template-columns: minmax(220px, 400px) minmax(0, 1fr);
  min-height: clamp(360px, 44vh, 500px);
  align-items: center;
  gap: clamp(1.2rem, 3.2vw, 3rem);
}

.coaching-landing-page.what-to-expect-page .coaching-hero-portrait{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.coaching-landing-page.what-to-expect-page .coaching-hero-portrait img{
  width: min(100%, 400px);
  height: auto;
  max-height: 550px;
  object-fit: contain;
  transform: translateX(-6px) translateY(-10px) scale(1);
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.28)) brightness(0.90) contrast(0.94);
}

.coaching-landing-page.what-to-expect-page .coaching-hero-copy{
  text-align: left;
  min-width: 0;
}

.coaching-landing-page.what-to-expect-page .coaching-hero-layout > *{
  min-width: 0;
}

.coaching-landing-page.what-to-expect-page .page-title{
  font-size: clamp(2.3rem, 4.55vw, 3.15rem);
  margin-bottom: calc(var(--space-md) + 0.5rem);
  background: linear-gradient(to right, var(--color-primary-light), var(--color-accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.coaching-landing-page.what-to-expect-page .page-subtitle{
  font-size: clamp(1.06rem, 2.08vw, 1.28rem);
  max-width: 860px;
  color: var(--color-text-secondary);
}

.coaching-landing-page.what-to-expect-page .page-header::before{
  top: 0;
  right: 0;
  bottom: clamp(14px, 2.1vh, 26px);
  left: 0;
  width: auto;
  height: auto;
  background:
    radial-gradient(circle at top right, rgba(138, 43, 226, 0.3), transparent 70%),
    var(--gradient-background);
  background-repeat: no-repeat;
  background-position: top right, top;
  background-size: 100% 100%, 100% 100%;
  opacity: 1;
}

.coaching-landing-page.what-to-expect-page .coaching-hero{
  position: relative;
  isolation: isolate;
}

.coaching-landing-page.what-to-expect-page .coaching-hero::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(146px, 20vh, 208px);
  background:
    linear-gradient(
      180deg,
      rgba(16, 7, 28, 0) 0%,
      rgba(24, 11, 40, 0.04) 56%,
      rgba(34, 16, 58, 0.085) 80%,
      rgba(44, 22, 74, 0.14) 100%
    ),
    linear-gradient(
      90deg,
      rgba(22, 10, 36, 0.08) 0%,
      rgba(66, 32, 112, 0.06) 56%,
      rgba(116, 72, 184, 0.05) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.coaching-landing-page.what-to-expect-page .coaching-hero > .container{
  position: relative;
  z-index: 2;
}

.coaching-landing-page.what-to-expect-page main > .page-header + .section-divider{
  margin-top: 0;
  --divider-height: 1.9px;
  --divider-center: rgba(179, 136, 255, 0.76);
  --divider-glow: rgba(179, 136, 255, 0.24);
  display: block;
  position: relative;
  top: -13px;
  z-index: 4;
  height: 1.9px !important;
  min-height: 1.9px !important;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(179, 136, 255, 0.76), rgba(255,255,255,0)) !important;
  box-shadow: 0 0 12px rgba(179, 136, 255, 0.24) !important;
}

@media (min-width: 992px) and (max-width: 1100px){
  .coaching-landing-page.what-to-expect-page .page-header{
    min-height: auto;
    padding-top: clamp(0.75rem, 1.8vw, 1.05rem);
    padding-bottom: clamp(0.6rem, 1.4vw, 0.95rem);
  }

  .coaching-landing-page.what-to-expect-page .coaching-hero-layout{
    grid-template-columns: minmax(180px, 330px) minmax(0, 1fr);
    gap: clamp(0.75rem, 2vw, 1.4rem);
    min-height: auto;
  }

  .coaching-landing-page.what-to-expect-page .coaching-hero-portrait img{
    width: min(100%, 340px);
    transform: translateX(0) translateY(-2px) scale(1);
  }

  .coaching-landing-page.what-to-expect-page .page-title{
    font-size: clamp(2rem, 3.6vw, 2.45rem);
    line-height: 1.14;
    margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
  }

  .coaching-landing-page.what-to-expect-page .page-subtitle{
    max-width: min(100%, 860px);
    line-height: 1.55;
    margin-bottom: clamp(0.12rem, 0.4vw, 0.25rem);
  }

  .coaching-landing-page .coaching-hero .hero-router{
    white-space: normal;
    max-width: 52ch;
    text-wrap: pretty;
    margin-top: 0.45rem;
  }

  .coaching-landing-page .coaching-hero .hero-cta-group{
    margin-top: clamp(0.9rem, 1.6vw, 1.2rem);
  }
}

@media (max-width: 991px){
  .coaching-landing-page.what-to-expect-page .page-header{
    min-height: auto;
    padding-top: clamp(0.8rem, 2.9vw, 1.3rem);
    padding-bottom: clamp(0.8rem, 2.6vw, 1.2rem);
  }

  .coaching-landing-page.what-to-expect-page .coaching-hero::after{
    height: clamp(18px, 6.5vw, 36px);
  }

  .coaching-landing-page.what-to-expect-page .coaching-hero-layout{
    grid-template-columns: 1fr;
    min-height: auto;
    gap: clamp(0.85rem, 3.2vw, 1.35rem);
  }

  .coaching-landing-page.what-to-expect-page .coaching-hero-copy{
    text-align: center;
  }

  .coaching-landing-page.what-to-expect-page .coaching-hero-portrait{
    justify-content: center;
  }

  .coaching-landing-page.what-to-expect-page .coaching-hero-portrait img{
    width: min(82vw, 320px);
    transform: translateX(0) translateY(4px) scale(1);
  }

  .coaching-landing-page.what-to-expect-page .page-title,
  .coaching-landing-page.what-to-expect-page .page-subtitle,
  .coaching-landing-page .coaching-hero .hero-microcopy,
  .coaching-landing-page .coaching-hero .hero-router{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .coaching-landing-page.what-to-expect-page .page-title{
    margin-bottom: clamp(0.55rem, 1.4vw, 0.9rem);
  }

  .coaching-landing-page.what-to-expect-page .page-subtitle{
    line-height: 1.55;
  }

  .coaching-landing-page.what-to-expect-page .page-subtitle br{
    display: none;
  }

  .coaching-landing-page .coaching-hero .hero-router{
    white-space: normal;
    max-width: 54ch;
    text-wrap: pretty;
  }

  .coaching-landing-page .coaching-hero .hero-cta-group{
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .coaching-landing-page .coaching-hero .hero-cta-group .btn{
    width: 100%;
  }
}

@media (max-width: 1100px){
  .coaching-landing-page .coaching-hero .hero-router{
    white-space: normal;
    max-width: 54ch;
    text-wrap: pretty;
  }

  .coaching-landing-page .coaching-hero .hero-cta-group .btn{
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }
}

@media (max-width: 1024px){
  .coaching-landing-page .coaching-hero .hero-router a{
    display: block;
    margin-top: 0.2rem;
  }
}

@media (max-width: 600px){
  .coaching-landing-page.what-to-expect-page .coaching-hero::after{
    height: clamp(74px, 12vh, 118px);
  }

  .coaching-landing-page.what-to-expect-page .coaching-hero-layout{
    grid-template-columns: 1fr;
    gap: clamp(0.9rem, 3.8vw, 1.4rem);
  }

  .coaching-landing-page.what-to-expect-page .coaching-hero-portrait{
    justify-content: center;
  }

  .coaching-landing-page.what-to-expect-page .coaching-hero-portrait img{
    width: min(76vw, 286px);
    transform: translateX(0) translateY(2px) scale(1);
  }

  .coaching-landing-page.what-to-expect-page .page-subtitle{
    max-width: 32ch;
    font-size: clamp(0.98rem, 3.9vw, 1.08rem);
    line-height: 1.45;
    text-wrap: balance;
    overflow-wrap: anywhere;
    margin-bottom: 0.2rem;
  }
}

@media (max-width: 420px){
  .coaching-landing-page.what-to-expect-page .page-subtitle{
    max-width: 30ch;
    font-size: clamp(0.94rem, 4.2vw, 1.02rem);
    line-height: 1.42;
  }
}
