/* ==========================================================================
   Page Sections
   ========================================================================== */

/* Services Section */
.services {
  background-color: var(--bg-secondary);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.service-card:hover {
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--dusty-blue) 100%);
  color: white;
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
}

.service-card__title {
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.service-card__text {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.service-card__link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--electric-blue);
}

.service-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.about__image-accent {
  position: absolute;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, var(--amethyst), var(--plum));
  border-radius: var(--radius-xl);
  top: -20px;
  left: -20px;
  z-index: -1;
  opacity: 0.3;
}

.about__content {
  max-width: 550px;
}

.about__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--electric-blue);
  margin-bottom: var(--space-md);
}

.about__title {
  margin-bottom: var(--space-lg);
}

.about__text {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.about__features {
  margin-bottom: var(--space-xl);
}

@media (max-width: 991px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about__content {
    max-width: 100%;
  }
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--plum) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(74, 144, 184, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(95, 158, 143, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta__title {
  color: white;
  margin-bottom: var(--space-lg);
}

.cta__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Approach Section */
.approach {
  background-color: var(--bg-primary);
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.approach-item {
  text-align: center;
  padding: var(--space-xl);
}

.approach-item__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  color: var(--electric-blue);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.approach-item__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--navy);
}

.approach-item__text {
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .approach__grid {
    grid-template-columns: 1fr;
  }
}

/* Credentials Section */
.credentials {
  background-color: var(--bg-secondary);
}

.credentials__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--bg-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--text-secondary);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-fast);
}

.credential-badge:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
}

.credential-badge svg {
  width: 16px;
  height: 16px;
  color: var(--seafoam);
}

/* Contact Section */
.contact {
  background-color: var(--bg-primary);
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
}

.contact__info {
  max-width: 450px;
}

.contact__title {
  margin-bottom: var(--space-lg);
}

.contact__text {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact__item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  border-radius: var(--radius-md);
  color: var(--electric-blue);
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 20px;
  height: 20px;
}

.contact__item-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.contact__item-value {
  color: var(--text-primary);
  font-weight: 500;
}

.contact__item-value a {
  color: var(--text-primary);
}

.contact__item-value a:hover {
  color: var(--electric-blue);
}

/* Contact Form */
.contact-form {
  background-color: var(--bg-secondary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
}

.contact-form__title {
  margin-bottom: var(--space-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  min-width: 0;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-label span {
  color: var(--marsala);
}

.form-input,
.form-textarea,
.form-select {
  padding: var(--space-md);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 184, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A5856' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: var(--space-2xl);
}

.form-submit {
  margin-top: var(--space-lg);
}

.form-submit .btn {
  width: 100%;
}

@media (max-width: 991px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .contact__info {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   About container — flipped variant (Services page alternating rows)
   ========================================================================== */
.about__container--flipped {
  direction: rtl;
}
.about__container--flipped > * {
  direction: ltr;
}
@media (max-width: 991px) {
  .about__container--flipped {
    direction: ltr;
  }
}

/* ==========================================================================
   Brand Statement Section — centred, elegant, generous whitespace
   ========================================================================== */
.brand-statement {
  text-align: center;
  background-color: var(--bg-primary);
}

.brand-statement__inner {
  max-width: 820px;
  margin: 0 auto;
}

.brand-statement__line {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: var(--space-lg);
}

.brand-statement__line--1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.brand-statement__line--2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text-secondary);
  font-weight: 300;
}

.brand-statement__body {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: var(--space-xl) auto var(--space-2xl);
  max-width: 640px;
  line-height: 1.8;
}

.brand-statement__closing {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--seafoam);
}

/* ==========================================================================
   Complexity Statement — large left-aligned typographic moment
   ========================================================================== */
.complexity {
  background-color: var(--bg-secondary);
}

.complexity__inner {
  max-width: 900px;
  margin: 0 auto;
}

.complexity__headline {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  margin-bottom: var(--space-lg);
}

.complexity__body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.complexity__closing {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--seafoam);
  border-left: 3px solid var(--seafoam);
  padding-left: var(--space-lg);
  margin-top: var(--space-xl);
}

/* ==========================================================================
   Pathway Cards — two large self-selecting cards
   ========================================================================== */
.pathways {
  background-color: var(--bg-primary);
}

.pathways__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  max-width: 1080px;
  margin: 0 auto;
}

.pathway-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.pathway-card:hover {
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pathway-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--seafoam) 100%);
  color: white;
}

.pathway-card__icon svg { width: 32px; height: 32px; }

.pathway-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--electric-blue);
  margin-bottom: var(--space-sm);
}

.pathway-card__headline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--navy);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.pathway-card__body {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  flex: 1;
}

.pathway-card__cta {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--electric-blue);
}

.pathway-card__cta svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.pathway-card:hover .pathway-card__cta svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .pathways__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ==========================================================================
   Methodology Trio — ReThink | ReDefine | ReAlign
   ========================================================================== */
.methodology {
  background-color: var(--bg-secondary);
}

.methodology__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  max-width: 1080px;
  margin: 0 auto;
}

.methodology__item {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.methodology__icon-wrap {
  display: inline-flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--seafoam) 100%);
  color: white;
  margin-bottom: var(--space-lg);
}

.methodology__icon-wrap svg { width: 36px; height: 36px; }

.methodology__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--electric-blue);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.methodology__body {
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .methodology__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ==========================================================================
   Kaleidoscope Teaser — centered narrative card
   ========================================================================== */
.kaleidoscope {
  background-color: var(--bg-primary);
}

.kaleidoscope__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.kaleidoscope__headline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: var(--space-xl);
  line-height: 1.4;
}

.kaleidoscope__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.kaleidoscope__link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--electric-blue);
}

.kaleidoscope__link svg { width: 18px; height: 18px; transition: transform var(--transition-fast); }
.kaleidoscope__link:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Credentials Strip — single horizontal banner
   ========================================================================== */
.credentials-strip {
  background-color: var(--navy);
  color: white;
  padding: var(--space-xl) 0;
  text-align: center;
}

.credentials-strip__titles {
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: white;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.credentials-strip__supporting {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dusty-blue);
}

/* ==========================================================================
   Featured Product Card — Which Career For Me?
   ========================================================================== */
.featured-product {
  background-color: var(--bg-secondary);
}

.featured-product__card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
  border-top: 6px solid var(--seafoam);
}

.featured-product__name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--electric-blue);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.featured-product__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.featured-product__description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.featured-product__included {
  list-style: none;
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.featured-product__included li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  color: var(--text-primary);
}

.featured-product__included li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--seafoam);
  margin-top: 8px;
}

.featured-product__note {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--seafoam);
  border-left: 3px solid var(--seafoam);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
}

.featured-product__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.featured-product__stripe-note {
  margin-top: var(--space-lg);
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .featured-product__card {
    padding: var(--space-xl);
  }
}

/* ==========================================================================
   Five Pillars — numbered cards
   ========================================================================== */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.pillar-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border-top: 4px solid var(--electric-blue);
  transition: all var(--transition-normal);
  position: relative;
}

.pillar-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pillar-card__number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--electric-blue);
  opacity: 0.2;
  line-height: 1;
}

.pillar-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--electric-blue);
  margin-bottom: var(--space-md);
  font-weight: 600;
  padding-right: var(--space-3xl);
}

.pillar-card__body {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   Coaching Journey — vertical timeline of steps
   ========================================================================== */
.journey {
  background-color: var(--bg-primary);
}

.journey__steps {
  max-width: 800px;
  margin: 0 auto;
}

.journey__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  position: relative;
}

.journey__step + .journey__step {
  border-top: 1px solid var(--light-gray);
}

.journey__step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--electric-blue);
  line-height: 1;
}

.journey__step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: var(--space-xs);
}

.journey__step-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.journey__step-body {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 576px) {
  .journey__step {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .journey__step-number {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Packages — four premium cards
   ========================================================================== */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.package-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.package-card:hover {
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: var(--space-sm);
}

.package-card__name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: var(--space-xs);
  font-weight: 600;
  line-height: 1.3;
}

.package-card__sessions {
  font-size: 0.875rem;
  color: var(--electric-blue);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
}

.package-card__body {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  flex: 1;
}

.package-card__ideal {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-top: var(--space-md);
  border-top: 1px solid var(--light-gray);
}

.packages__format {
  margin-top: var(--space-2xl);
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Outcome Stories — pull quote cards with teal border
   ========================================================================== */
.stories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.story-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border-left: 4px solid var(--seafoam);
  transition: all var(--transition-normal);
}

.story-card:hover {
  box-shadow: var(--shadow-md);
}

.story-card__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.story-card__body {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   Testimonials — three-up cards with avatar (optional)
   ========================================================================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--seafoam);
  line-height: 1;
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-primary);
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  padding-top: var(--space-md);
  border-top: 1px solid var(--light-gray);
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial-card--placeholder {
  background: repeating-linear-gradient(
    45deg,
    var(--bg-secondary),
    var(--bg-secondary) 12px,
    var(--bg-primary) 12px,
    var(--bg-primary) 24px
  );
  border: 2px dashed var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  min-height: 200px;
}

.testimonial-card--placeholder::before {
  display: none;
}

/* ==========================================================================
   Beyond Coaching Grid — small service cards, "Helps when..."
   ========================================================================== */
.beyond__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.beyond-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-normal);
}

.beyond-card:hover {
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.beyond-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.beyond-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.beyond-card__body {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.beyond-card__helps {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-top: var(--space-md);
  border-top: 1px solid var(--light-gray);
  line-height: 1.6;
}

/* ==========================================================================
   Insights / Article Cards
   ========================================================================== */
.insights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.article-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.article-card__image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--electric-blue), var(--seafoam));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.article-card__content {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--electric-blue);
  margin-bottom: var(--space-sm);
}

.article-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: var(--space-md);
  font-weight: 500;
  line-height: 1.4;
}

.article-card__summary {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  flex: 1;
}

/* ==========================================================================
   Newsletter Signup
   ========================================================================== */
.newsletter {
  background-color: var(--bg-secondary);
}

.newsletter__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.newsletter__body {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.newsletter__form {
  display: flex;
  gap: var(--space-md);
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__form input {
  flex: 1;
  min-width: 0;
}

@media (max-width: 480px) {
  .newsletter__form {
    flex-direction: column;
  }
}

/* ==========================================================================
   Form additions — optional label + confidentiality note
   ========================================================================== */
.form-label__optional {
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
  margin-left: 4px;
}

.form-confidentiality {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-lg);
  line-height: 1.6;
}

.form-confidentiality em {
  font-style: italic;
}

/* ==========================================================================
   Closing flourish (Connect page)
   ========================================================================== */
.closing-flourish {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.closing-flourish__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--seafoam);
  letter-spacing: 0.05em;
}


/* Contain form inputs on mobile — prevent overflow on front page */
.contact__container {
  min-width: 0;
  overflow: hidden;
}

.contact-form,
.contact__info {
  min-width: 0;
  max-width: 100%;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-row,
.form-group {
  min-width: 0;
  max-width: 100%;
}

/* On mobile, select dropdown arrow positioning can cause overflow */
@media (max-width: 768px) {
  .form-select {
    padding-right: var(--space-xl);
  }

  .contact {
    overflow: hidden;
  }
}


@media (max-width: 768px) {
  .contact__container {
    display: block !important;
  }
  .contact__info,
  .contact-form {
    width: 100%;
    display: block;
  }
}

.realign-fluent-form .ff-btn-submit {
  background: linear-gradient(135deg, var(--electric-blue), var(--dusty-blue)) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
}


/* ==========================================================================
   Bulletproof horizontal overflow guard — home page
   Stops any rogue element (hero shapes, long credential lines, wide cards)
   from creating horizontal scroll on mobile.
   ========================================================================== */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

.site-main,
.site-main > section {
  max-width: 100vw;
  overflow-x: clip;
}

/* Credentials strip — long pipe-separated titles must wrap cleanly on mobile */
.credentials-strip {
  overflow: hidden;
}

.credentials-strip__titles,
.credentials-strip__supporting {
  word-break: break-word;
  overflow-wrap: break-word;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

@media (max-width: 768px) {
  .credentials-strip__titles {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .credentials-strip__supporting {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}

/* Hero — clamp the wrapper and shapes so absolutely-positioned decorations
   can never overshoot the viewport */
.hero {
  overflow: hidden;
}
.hero__container,
.hero__visual,
.hero__image-wrapper {
  max-width: 100%;
}

/* Featured product card — its inner padding can overshoot at narrow widths */
@media (max-width: 480px) {
  .featured-product__card {
    padding: var(--space-lg) var(--space-md);
  }
  .featured-product__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Pathways grid — make sure cards never push past container at narrow widths */
.pathway-card {
  max-width: 100%;
  min-width: 0;
}

/* Universal safety net — anything inside a section can't exceed its container */
section img,
section video,
section iframe {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Horizontal overflow fixes — proven culprits
   1. Reveal animations (translateX) push cards off-screen on narrow viewports
   2. Honeypot form field at left:-9999px expands document width
   ========================================================================== */

/* Kill the horizontal slide animation on mobile — keep the fade only.
   On desktop they animate from ±30px; on mobile that 30px is wider than
   the available margin, so the card sticks past the viewport edge. */
@media (max-width: 768px) {
  .reveal--left,
  .reveal--right {
    transform: translateY(30px) !important;
  }
  .reveal--left.active,
  .reveal--right.active {
    transform: translateY(0) !important;
  }
}

/* Bulletproof honeypot — anywhere in the site, the spam-bait field
   must never expand the page width. Wrapping its position in a
   clip-path eliminates its layout contribution entirely. */
input[name="website_url_hp"],
[id="website_url_hp"],
.form-row[style*="-9999"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  left: auto !important;
  top: auto !important;
}

/* Final safety net — pathway cards explicitly clamped */
.pathway-card {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Belt-and-braces: stop any horizontal scroll on the body itself */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
