/* ===================================================
   CSS Custom Properties — Design System
   =================================================== */
:root {
  /* Colors */
  --color-primary: #1d4ed8;
  --color-primary-dark: #1e3a8a;
  --color-teal: #00a39c;
  --color-teal-dark: #00857f;
  --color-blue-500: #3b82f6;
  --color-blue-600: #2563eb;
  --color-orange-400: #fb923c;

  --color-white: #ffffff;
  --color-gray-800: #1f2937;

  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;

  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --container-pad-mobile: 1.25rem;
  --container-pad-desktop: 3rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
}

/* ===================================================
   Reset & Base
   =================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-slate-700);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ===================================================
   Layout — Container
   =================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad-mobile);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--container-pad-desktop);
  }
}

/* ===================================================
   Buttons
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition: background-color var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap;
}

.btn--nav-login {
  background-color: var(--color-slate-200);
  color: var(--color-gray-800);
}
.btn--nav-login:hover {
  background-color: var(--color-slate-300);
}

.btn--nav-signup {
  background-color: var(--color-teal);
  color: var(--color-white);
}
.btn--nav-signup:hover {
  background-color: var(--color-teal-dark);
}

.btn--teal {
  background-color: var(--color-teal);
  color: var(--color-white);
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}
.btn--teal:hover {
  background-color: var(--color-teal-dark);
}

/* ===================================================
   Navigation
   =================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  width: 140px;
  height: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ===================================================
   Hero
   =================================================== */
.hero {
  background-color: var(--color-white);
  padding: 0 0 0;
}

.hero .container {
  padding-top: 0;
}

.hero__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  z-index: 0;
  transform: scale(1.3);
  transform-origin: 100% center;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(117deg, rgba(0, 0, 0, 0.35) 22%, rgba(0, 0, 0, 0) 66%);
  z-index: 1;
}

.hero__left {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.hero__text-content {
  max-width: 420px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.hero__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.45;
  margin-bottom: 0.625rem;
}

.hero__free {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.btn--cta-blue {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.875rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.btn--cta-blue:hover {
  background-color: var(--color-primary-dark);
}

.hero__attribution {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero__b12-logo {
  width: 68px;
  height: auto;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero__b12-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero__b12-link {
  color: var(--color-white);
  text-decoration: underline;
}

/* Right side: floating bubbles — hidden on mobile */
.hero__right {
  display: none;
}

/* Hero bubble cards */
.hero-bubble {
  background: transparent;
  max-width: 240px;
}

.hero-bubble__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hero-bubble__label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}

.hero-bubble__icon-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-bubble__icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

/* Chat question bubble */
.hero-chat-q {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  background-color: var(--color-primary-dark);
  border: 2.5px solid var(--color-blue-500);
  border-radius: 20px;
  padding: 0.625rem 0.75rem;
  margin-bottom: -0.75rem;
  margin-left: -1.5rem;
  position: relative;
  z-index: 2;
}

.hero-chat-q__text {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #cffafe;
  line-height: 1.4;
  flex: 1;
}

.hero-chat-q__send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #a5f3fc;
  flex-shrink: 0;
}

.hero-chat-q__send svg {
  width: 14px;
  height: 14px;
}

/* Chat reply card */
.hero-chat-reply {
  background-color: var(--color-white);
  border: 2.5px solid var(--color-slate-200);
  border-radius: 16px;
  padding: 1rem;
  position: relative;
  margin-right: -1.5rem;
}

.hero-chat-reply__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-slate-700);
  margin-bottom: 0.75rem;
}

.hero-chat-reply__rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-chat-reply__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-chat-reply__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-slate-200);
  flex-shrink: 0;
}

.hero-chat-reply__line {
  height: 6px;
  width: 110px;
  border-radius: 3px;
  background-color: var(--color-slate-200);
}

.hero-chat-reply__line--short {
  width: 90px;
}

.hero-chat-reply__link-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.hero-chat-reply__emoji {
  position: absolute;
  top: 3rem;
  right: 2rem;
  font-size: 1.75rem;
  background-color: var(--color-white);
  border: 2.5px solid var(--color-slate-200);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-chat-reply__sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-slate-400);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.hero-chat-reply__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-chat-reply__action-icon {
  width: 13px;
  height: 13px;
}

/* Coach reply card */
.hero-coach-reply {
  position: relative;
  background-color: var(--color-white);
  border: 2.5px solid var(--color-slate-200);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  margin-right: -1.5rem;
}

.hero-coach-reply__left {
  flex: 1;
}

.hero-coach-reply__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-slate-700);
  margin-bottom: 0.5rem;
}

.hero-coach-reply__detail {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-slate-400);
  line-height: 1.5;
}

.hero-coach-reply__right {
  position: relative;
  flex-shrink: 0;
  width: 65px;
  height: 96px;
  border-radius: 12px;
  border: 2px solid var(--color-slate-100);
  overflow: hidden;
}

.hero-coach-reply__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% 15%;
  transform: scale(2) scaleX(-1);
  transform-origin: 38% 15%;
}

.hero-coach-reply__wave {
  position: absolute;
  bottom: 25px;
  right: 55px;
  font-size: 1.5rem;
  background-color: var(--color-white);
  border: 2.5px solid var(--color-slate-200);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shift hero bg right at narrower widths so bubbles don't cover face */
@media (min-width: 768px) and (max-width: 900px) {
  .hero__bg-img {
    object-position: 75% center;
    transform-origin: 100% center;
  }
}

/* Desktop hero layout */
@media (min-width: 768px) {
  .hero__card {
    border-radius: 41px;
    min-height: 600px;
    display: flex;
  }

  .hero__left {
    padding: 3rem 3rem;
    width: 50%;
    min-height: 600px;
  }

  .hero__headline {
    font-size: 3.5rem;
  }

  .hero__desc {
    font-size: 1.125rem;
    line-height: 1.45;
  }

  .hero__free {
    font-size: 1.125rem;
  }

  .hero__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    bottom: 2rem;
    width: 300px;
    z-index: 2;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero__card {
    min-height: 700px;
  }

  .hero__left {
    padding: 4rem 4rem;
    width: 50%;
    min-height: 700px;
  }

  .hero__headline {
    font-size: 4.125rem;
    letter-spacing: -1.32px;
  }

  .hero__right {
    width: 320px;
    right: 4rem;
    top: 1.5rem;
  }
}

/* ===================================================
   Features Overview
   =================================================== */
.features-overview {
  padding: 6rem 0 4rem;
  background-color: var(--color-white);
}

.features-overview__heading {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.875;
}

.features-overview__columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.features-overview__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.features-overview__logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.features-overview__logo-label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.features-overview__logo-icon {
  width: 28px;
  height: 28px;
}

.features-overview__subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* "Ask anything..." input mockup */
.features-overview__input-mockup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-slate-100);
  border: 1.28px solid var(--color-slate-200);
  border-radius: 25.6px;
  padding: 0.75rem 0.875rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 230px;
  max-width: 100%;
}

.features-overview__input-text {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: #63748c;
}

.features-overview__input-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-slate-800);
  flex-shrink: 0;
}

.features-overview__input-btn svg {
  width: 16px;
  height: 16px;
}

/* "+" separator */
.features-overview__plus {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  align-self: center;
  margin: 0 1.5rem;
}

/* Coach photos overlapping */
.features-overview__coaches {
  justify-content: center;
}

/* ---- Shared 3-panel coach photos ---- */

.coach-photos {
  display: flex;
  align-items: center;
}

.coach-photos__wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--color-white);
  flex-shrink: 0;
  margin-left: -12px;
}

.coach-photos__wrap:first-child {
  margin-left: 0;
}

.coach-photos__wrap--lg {
  width: 84px;
  height: 84px;
  z-index: 1;
}

.coach-photos__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Left photo (Tyra) */
.coach-photos__wrap:nth-child(1) .coach-photos__img {
  transform-origin: 97% 25%;
  transform: scale(2);
}

/* Middle photo (Miles) */
.coach-photos__wrap:nth-child(2) .coach-photos__img {
  transform-origin: 37% 16%;
  transform: scale(2.3) scaleX(-1);
}

/* Right photo (Stephanie) */
.coach-photos__wrap:nth-child(3) .coach-photos__img {
  transform-origin: 60% 15%;
  transform: scale(2);
}

@media (min-width: 768px) {
  .features-overview__heading {
    font-size: 2rem;
  }

  .features-overview__columns {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    align-items: flex-start;
  }

  .features-overview__logo-label {
    font-size: 1.75rem;
  }

  .features-overview__logo-icon {
    width: 32px;
    height: 32px;
  }

  .features-overview__input-mockup {
    width: 260px;
  }
}

/* ===================================================
   Ask Chat Detail
   =================================================== */
.ask-chat {
  background-color: var(--color-slate-300);
  border-radius: 55px 55px 0 0;
  padding: 3rem 0 4rem;
  position: relative;
}

.ask-chat__heading-row {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ask-chat__heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  line-height: 1;
}

.ask-chat__heading-icon {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.ask-chat__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.ask-chat__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ask-chat__left {
  position: relative;
  z-index: 1;
}

.ask-chat__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-slate-700);
  margin-bottom: 1.75rem;
}

/* Phone mockup — right column */
.ask-chat__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.ask-chat__phone-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 390px;
  height: auto;
  /* margin-bottom: -10%; */
}

.ask-chat__phone-bg {
  display: none;
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 620px;
  background-color: #94a3b8;
  border-radius: 50%;
}

/* Benefit cards */
.ask-chat__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.ask-chat__card {
  background-color: var(--color-slate-200);
  border-radius: 20px;
  padding: 32px 32px 48px;
}

.ask-chat__card-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 1.25rem;
}

.ask-chat__card-title {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.ask-chat__card-desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .ask-chat {
    padding: 4rem 0 5rem;
  }

  .ask-chat__heading {
    font-size: 3rem;
  }

  .ask-chat__heading-icon {
    width: 48px;
    height: 48px;
  }

  .ask-chat__columns {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }

  .ask-chat__title {
    font-size: 1.75rem;
  }

  .ask-chat__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ask-chat__heading {
    font-size: 3.5rem;
  }

  .ask-chat__heading-icon {
    width: 52px;
    height: 52px;
  }

  .ask-chat__right {
    min-height: 460px;
  }
}

@media (min-width: 1200px) {
  .ask-chat__phone-bg {
    display: block;
  }
}

/* ===================================================
   Talk to Coach Detail
   =================================================== */
.talk-coach {
  background-color: #b2bfd2;
  padding: 3rem 0 4rem;
}

.talk-coach__heading-row {
  text-align: center;
  margin-bottom: 2.5rem;
}

.talk-coach__heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  line-height: 1;
}

.talk-coach__heading-icon {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.talk-coach__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.talk-coach__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.talk-coach__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-slate-700);
  margin-bottom: 1.75rem;
}

/* Talk to Coach cards */
.talk-coach__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.talk-coach__card {
  background-color: var(--color-slate-300);
  border-radius: 20px;
  padding: 32px;
}

.talk-coach__card-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 1.25rem;
}

.talk-coach__card-title {
  font-family: var(--font-body);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.talk-coach__card-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-primary);
}

/* Coach visual mockup */
.coach-visual {
  position: relative;
  width: 100%;
  max-width: 455px;
  aspect-ratio: 455 / 550;
  margin: 0 auto;
}

.coach-visual__circle {
  position: absolute;
  width: 95%;
  aspect-ratio: 1;
  top: 8%;
  left: 15%;
  background-color: var(--color-slate-300);
  border-radius: 50%;
}

.coach-visual__call-bubble {
  position: absolute;
  top: 0;
  left: 20%;
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--color-slate-400);
  border-radius: 42px;
  padding: 16px 20px 16px 28px;
  z-index: 0;
}

.coach-visual__call-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.2;
}

.coach-visual__call-emoji {
  font-size: 2.5rem;
}

.coach-visual__photo-frame {
  position: absolute;
  top: 15%;
  right: 0;
  width: 62%;
  aspect-ratio: 307 / 459;
  border-radius: 50px;
  border: 9px solid var(--color-slate-100);
  overflow: hidden;
  z-index: 1;
  background-color: var(--color-slate-200);
}

.coach-visual__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% 15%;
  transform: scale(1.7) scaleX(-1);
  transform-origin: 38% 17%;
}

.coach-visual__help-card {
  position: absolute;
  bottom: 18%;
  left: 10%;
  background-color: var(--color-white);
  border-radius: 40px;
  padding: 20px 30px;
  z-index: 3;
  max-width: 75%;
}

.coach-visual__help-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.coach-visual__help-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-slate-400);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .talk-coach {
    padding: 4rem 0 5rem;
  }

  .talk-coach__heading {
    font-size: 3rem;
  }

  .talk-coach__heading-icon {
    width: 48px;
    height: 48px;
  }

  .talk-coach__columns {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .talk-coach__title {
    font-size: 1.75rem;
  }

  .talk-coach__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .talk-coach__heading {
    font-size: 3.5rem;
  }

  .talk-coach__heading-icon {
    width: 52px;
    height: 52px;
  }
}

/* ===================================================
   "We've Been There"
   =================================================== */
.weve-been-there {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.weve-been-there__text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
}

/* weve-been-there photos now use shared .coach-photos classes */

/* ===================================================
   Testimonials
   =================================================== */
.testimonials {
  padding: 5.5rem 0 4.5rem;
  background-color: var(--color-slate-300);
}

.testimonials__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials__stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-slate-200);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-card__avatar-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3.6px solid var(--color-white);
  overflow: hidden;
}

.testimonial-card__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Per-avatar adjustments: use scale() to zoom, transform-origin to pan */
.testimonial-card--angel .testimonial-card__avatar {
  transform: scale(1.5);
  transform-origin: 20% 30%;
}

.testimonial-card--percie .testimonial-card__avatar {
  transform: scale(1.7);
  transform-origin: center 43%;
}

.testimonial-card--garen .testimonial-card__avatar {
  transform: scale(1.1);
  transform-origin: center bottom;
}

.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  font-style: italic;
  quotes: none;
  flex: 1;
}

@media (min-width: 768px) {
  .testimonials__heading {
    font-size: 1.75rem;
  }

  .testimonial-card__quote {
    font-size: 1.375rem;
  }
}

/* ===================================================
   About Beyond12
   =================================================== */
.about-b12 {
  background-color: var(--color-slate-500);
  padding: 4.5rem 0;
}

.about-b12__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-b12__logo {
  width: 196px;
  height: 55px;
}

.about-b12__tagline {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-orange-400);
  text-align: center;
  line-height: 1.2;
}

.about-b12__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-b12__text-large {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  padding: 32px;
}

.about-b12__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.about-b12__text:last-child {
  margin-bottom: 0;
}

.about-b12__col-right {
  padding: 32px;
}

@media (min-width: 768px) {
  .about-b12__tagline {
    font-size: 1.375rem;
  }

  .about-b12__columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-b12__text-large {
    font-size: 1.625rem;
  }

  .about-b12__text {
    font-size: 1.125rem;
  }
}

/* ===================================================
   Try Now CTA
   =================================================== */
.try-now {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.try-now__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.try-now__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2) translateX(5%);
  object-position: center 60%;
}

.try-now__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 37, 37, 0.3);
}

.try-now__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 600px;
  padding-top: 16rem;
  padding-bottom: 4rem;
}

.try-now__headline {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.try-now__logo {
  margin-bottom: 2rem;
}

.try-now__logo-img {
  width: 253px;
  height: auto;
}

.try-now__desc {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-white);
  max-width: 700px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .try-now__content {
    min-height: 650px;
  }

  .try-now__bg-img {
    object-position: center 50%;
  }

  .try-now__headline {
    font-size: 1.375rem;
  }

  .try-now__desc {
    font-size: 1.625rem;
  }
}

@media (min-width: 1024px) {
  .try-now__content {
    min-height: 720px;
  }

  .try-now__bg-img {
    object-position: 60% 40%;
  }
}

@media (min-width: 1440px) {
  .try-now__content {
    min-height: 800px;
  }

  .try-now__bg-img {
    object-position: 60% 30%;
  }
}

/* ===================================================
   Footer
   =================================================== */
.footer {
  background-color: #252523;
}

.footer__content {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer__logo-img {
  width: 212px;
  height: auto;
}

.footer__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
}

.footer__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer__social-link:hover {
  opacity: 1;
}

.footer__social-icon {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ===================================================
   Desktop / Mobile Toggle
   =================================================== */
.mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}

/* ===================================================
   Mobile Nav Overrides
   =================================================== */
@media (max-width: 767px) {
  .nav__inner {
    height: 56px;
  }

  .nav__logo-img {
    width: 120px;
  }

  .btn--nav-login {
    background-color: transparent;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
  }

  .btn--nav-signup {
    background-color: var(--color-slate-100);
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
  }
}

/* ===================================================
   Mobile Hero
   =================================================== */
.m-hero {
  padding: 0 1.25rem 2rem;
}

.m-hero__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 210px;
}

.m-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.m-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(117deg, rgba(0, 0, 0, 0.35) 22%, rgba(0, 0, 0, 0) 66%);
}

.m-hero__headline {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.6px;
  padding: 2.75rem 1.75rem;
}

.m-hero__content {
  padding: 1.25rem 0.25rem 0;
}

.m-hero__desc {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-slate-700);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.m-hero__free {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-slate-700);
  margin-bottom: 1rem;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: 3px solid var(--color-white);
}

.m-hero__cta {
  margin-bottom: 2rem;
}

.m-hero__attribution {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.m-hero__b12-logo {
  width: 68px;
  height: auto;
  flex-shrink: 0;
  margin-top: 2px;
  filter: brightness(0);
}

.m-hero__b12-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-slate-800);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.m-hero__b12-link {
  color: var(--color-slate-800);
  text-decoration: underline;
}

/* ===================================================
   Mobile Shared Logo Heading (Ask Chat / Talk to Coach)
   =================================================== */
.m-logo-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
}

.m-logo-heading__icon {
  width: 28px;
  height: 28px;
}

/* ===================================================
   Mobile Ask Chat Section
   =================================================== */
.m-section-chat {
  background-color: var(--color-slate-200);
  border-radius: 40px 40px 0 0;
  padding: 2.5rem 0 2rem;
}

.m-section-chat__heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ===================================================
   Mobile Talk to Coach Section
   =================================================== */
.m-section-coach {
  background-color: var(--color-slate-200);
  padding: 2rem 0 2.5rem;
}

.m-section-coach__heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ===================================================
   Mobile Bubble Components
   =================================================== */
.m-bubble-wrap {
  display: flex;
  justify-content: center;
  padding: 0 0.5rem;
}

.m-bubble-combo {
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
}

/* Question bubble */
.m-bubble-q {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  background-color: var(--color-primary-dark);
  border: 3px solid var(--color-blue-500);
  border-radius: 20px;
  padding: 0.625rem 0.625rem 0.625rem 1.25rem;
  margin-bottom: -0.75rem;
  position: relative;
  z-index: 2;
}

.m-bubble-q__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: #cffafe;
  line-height: 1.4;
  flex: 1;
}

.m-bubble-q__send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #a5f3fc;
  flex-shrink: 0;
}

.m-bubble-q__send svg {
  width: 14px;
  height: 14px;
}

/* Chat reply card */
.m-bubble-reply {
  background-color: var(--color-white);
  border: 3px solid var(--color-slate-200);
  border-radius: 20px;
  padding: 2rem 1.25rem 1rem;
  position: relative;
  margin-left: 3rem;
}

.m-bubble-reply__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-slate-700);
  margin-bottom: 1rem;
}

.m-bubble-reply__rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.m-bubble-reply__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.m-bubble-reply__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-slate-200);
  flex-shrink: 0;
}

.m-bubble-reply__line {
  height: 7px;
  width: 130px;
  background-color: var(--color-slate-200);
  border-radius: 4px;
}

.m-bubble-reply__line--short {
  width: 108px;
}

.m-bubble-reply__link-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.m-bubble-reply__emoji {
  position: absolute;
  top: 4rem;
  right: 1.5rem;
  font-size: 1.75rem;
  background-color: var(--color-white);
  border: 3px solid var(--color-slate-200);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.m-bubble-reply__sub {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--color-slate-400);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.m-bubble-reply__actions {
  display: flex;
  gap: 0.5rem;
}

.m-bubble-reply__action-icon {
  width: 13px;
  height: 13px;
}

/* Coach reply card */
.m-bubble-coach-reply {
  background-color: var(--color-white);
  border: 3px solid var(--color-slate-200);
  border-radius: 20px;
  padding: 1.25rem;
  position: relative;
  margin-left: 2.5rem;
  display: flex;
  gap: 1rem;
}

.m-bubble-coach-reply__left {
  flex: 1;
  padding-top: 0.5rem;
}

.m-bubble-coach-reply__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-slate-700);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.m-bubble-coach-reply__detail {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-slate-400);
  line-height: 1.5;
}

.m-bubble-coach-reply__right {
  flex-shrink: 0;
  width: 80px;
  height: 120px;
  border-radius: 15px;
  border: 3px solid var(--color-slate-100);
  overflow: hidden;
}

.m-bubble-coach-reply__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% 15%;
  transform: scale(2) scaleX(-1);
  transform-origin: 38% 15%;
}

.m-bubble-coach-reply__wave {
  position: absolute;
  bottom: 30px;
  right: 65px;
  font-size: 1.75rem;
  background-color: var(--color-white);
  border: 3px solid var(--color-slate-200);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================================
   Shared Sections – Mobile Overrides
   =================================================== */
@media (max-width: 767px) {
  /* Features Overview */
  .features-overview {
    padding: 3rem 0 2.5rem;
  }

  .features-overview__heading {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .features-overview__plus {
    margin: 0;
  }

  /* Testimonials */
  .testimonials {
    padding: 3rem 0 2.5rem;
  }

  .testimonials__heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .testimonials__stack {
    gap: 1.25rem;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }

  .testimonial-card__avatar-wrap {
    width: 72px;
    height: 72px;
  }

  .testimonial-card__quote {
    font-size: 1rem;
  }

  /* About Beyond12 */
  .about-b12 {
    padding: 3rem 0;
  }

  .about-b12__text-large {
    font-size: 1.125rem;
    padding: 1.25rem;
  }

  .about-b12__col-right {
    padding: 0 1.25rem 1.25rem;
  }

  .about-b12__text {
    font-size: 0.875rem;
  }

  /* Try Now CTA */
  .try-now__content {
    min-height: 400px;
    padding-top: 8rem;
    padding-bottom: 2.5rem;
  }

  .try-now__headline {
    font-size: 1.125rem;
  }

  .try-now__logo-img {
    width: 180px;
  }

  .try-now__desc {
    font-size: 1rem;
    padding: 0 1rem;
  }

  /* Footer */
  .footer__content {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
    gap: 0.75rem 1.5rem;
  }

  .footer__bottom {
    align-items: center;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }
}

/* ===================================================
   Mobile Section Detail (shared by Ask Chat & Coach)
   =================================================== */
.m-section-detail {
  padding: 2rem 1.5rem 0;
  text-align: center;
}

.m-section-detail__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.m-section-detail__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-slate-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.m-section-detail__cta {
  display: inline-block;
}

/* ===================================================
   Mobile Section Benefit Cards
   =================================================== */
.m-section-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.5rem 0;
}

.m-section-cards__card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 1.25rem;
}

.m-section-cards__card-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.m-section-cards__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.m-section-cards__card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.m-section-cards__card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-slate-600);
  line-height: 1.5;
}

/* ===================================================
   Mobile "We've been there"
   =================================================== */
.m-weve-been-there {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem 0;
}

.m-weve-been-there__text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  font-style: italic;
}

/* Mobile body constraint */
@media (max-width: 767px) {
  body {
    max-width: 480px;
    margin: 0 auto;
  }
}
