/* ==========================================
   DSI Responsive Styles (max-width: 991px)
   Desktop layout remains in style.css
   ========================================== */

.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .case-study__aside {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .site-header__hamburger.mobile-only {
    display: flex;
  }

  .container,
  .container-what-we-do {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* —— Header & Hamburger —— */

  .site-header__inner {
    flex-wrap: nowrap;
    height: 64px;
    padding: 0 20px;
    gap: 0;
  }

  .site-header__logo img {
    height: 24px;
    width: auto;
  }

  .site-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
  }

  .site-header__hamburger-line {
    display: block;
    width: 16px;
    height: 0.5px;
    background-color: #0f172a;
    border-radius: 1px;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .site-header__hamburger.is-active .site-header__hamburger-line:nth-child(1) {
    transform: translateY(6.67px) rotate(45deg);
  }

  .site-header__hamburger.is-active .site-header__hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .site-header__hamburger.is-active .site-header__hamburger-line:nth-child(3) {
    transform: translateY(-6.67px) rotate(-45deg);
  }

  /* —— Mobile Navigation Dropdown —— */
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1090;
    pointer-events: none;
    visibility: hidden;
  }

  .mobile-nav.is-open {
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-nav__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .mobile-nav__dropdown {
    position: absolute;
    top: 72px;
    right: 20px;
    min-width: 220px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.25s ease,
      transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-nav.is-open .mobile-nav__dropdown {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav__menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-nav__menu a {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #0f172a;
    white-space: nowrap;
  }

  .mobile-nav__menu a.is-active {
    color: var(--color-accent);
  }

  body.mobile-nav-open .site-header {
    z-index: 1100;
  }

  /* —— Sticky Talk to Us CTA —— */
  .sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1050;
    background: #0f172a;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.24);
    transform: translateY(0);
    transition:
      transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.35s ease;
  }

  .sticky-cta.is-hidden {
    transform: translateY(calc(100% + 24px));
    opacity: 0;
    pointer-events: none;
  }

  .sticky-cta__close {
    position: absolute;
    top: -10px;
    right: -6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0f172a;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
  }

  .sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .sticky-cta__text {
    flex: 1;
    min-width: 0;
  }

  .sticky-cta__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #fff;
    margin: 0;
  }

  .sticky-cta__subtitle {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
  }

  .sticky-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f3f3f3;
    color: #0f172a;
    border: none;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    white-space: nowrap;
  }

  .sticky-cta__btn img {
    width: 16px;
    height: 16px;
  }

  .sticky-cta.mobile-only {
    display: block;
  }

  /* —— Hero —— */
  .hero,
  .page-hero {
    padding: 96px 0 32px;
  }

  .hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero__tag {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    padding: 4px 11px;
  }

  .hero__tag img {
    width: 12px;
    height: 12px;
  }

  .hero__title {
    font-size: 28px;
    line-height: normal;
    letter-spacing: -1.8px;
    margin-bottom: 0;
  }

  .hero__desc {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.7;
    margin-bottom: 0;
    letter-spacing: 0;
  }

  .hero__actions {
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    justify-content: center;
  }

  .page-hero .hero__title {
    font-size: 28px;
  }

  .page-hero .hero__desc {
    font-size: 16px;
    line-height: 24px;
  }

  .page-what-we-do .page-hero {
    min-height: auto;
    display: block;
    padding: 96px 0 32px;
    align-items: stretch;
  }

  .page-what-we-do .page-hero .hero__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-what-we-do .page-hero .hero__title {
    font-size: 28px;
    line-height: normal;
    letter-spacing: -1.8px;
    max-width: none;
  }

  .page-what-we-do .page-hero .hero__desc {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.7;
    max-width: none;
    letter-spacing: 0;
  }

  .page-what-we-do .hero__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .page-what-we-do .reveal-dock > * {
    transform: none;
  }

  .page-what-we-do .reveal-dock:not(.is-visible) > * {
    opacity: 0;
  }

  .page-what-we-do .reveal-dock.is-visible > * {
    opacity: 1;
  }

  /* —— What We Do —— */
  .page-what-we-do .container-what-we-do {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }

  .page-what-we-do .wwd-rcm {
    margin-top: 0;
    padding: 32px 0;
    background: linear-gradient(
      360deg,
      rgba(246, 238, 227, 0) 0%,
      rgba(246, 238, 227, 0.24) 100%
    );
    overflow-x: visible;
  }

  .page-what-we-do .wwd-rcm__layout {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
  }

  .page-what-we-do .rcm-timeline {
    display: flex;
    padding-top: 0;
  }

  .page-what-we-do .rcm-timeline__head {
    margin-bottom: 12px;
  }

  .page-what-we-do .rcm-timeline__head img {
    width: 32px;
    height: 32px;
  }

  .page-what-we-do .rcm-timeline__track,
  .page-what-we-do .rcm-timeline__fill {
    width: 2px;
  }

  .page-what-we-do .wwd-rcm__stack {
    gap: 32px;
  }

  .page-what-we-do .rcm-block {
    gap: 16px;
  }

  .page-what-we-do .rcm-section-intro__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: normal;
    margin-bottom: 0;
  }

  .page-what-we-do .rcm-section-intro__subtitle {
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.8px;
    font-weight: 400;
  }

  .page-what-we-do .rcm-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(120, 78, 73, 0.16);
    box-shadow: none;
  }

  .page-what-we-do .rcm-card__pills {
    margin: 0;
    gap: 8px;
  }

  .page-what-we-do .rcm-card__pills li {
    padding: 4px 11px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    background: #f6eee3;
    border-color: #f6eee3;
  }

  .page-what-we-do .rcm-card__body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    grid-template-columns: none;
  }

  .page-what-we-do .rcm-card__col-title {
    font-size: 24px;
    letter-spacing: -1.8px;
    margin-bottom: 0;
    gap: 12px;
  }

  .page-what-we-do .rcm-card__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .page-what-we-do .rcm-card__col .text_bold {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: #0f172a;
  }

  .page-what-we-do .rcm-card__col p:not(.text_bold) {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #0f172a;
  }

  .page-what-we-do .proof-point {
    border-radius: 12px;
    padding: 18px 24px;
    width: 100%;
  }

  .page-what-we-do .proof-point__label {
    font-size: 24px;
    letter-spacing: -1.8px;
    margin-bottom: 12px;
    color: #fcce8f;
  }

  .page-what-we-do .proof-point__number {
    font-size: 34px;
    line-height: normal;
    letter-spacing: -1.4px;
    margin-bottom: 4px;
  }

  .page-what-we-do .proof-point__desc {
    font-size: 12px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.7);
  }

  .page-what-we-do .proof-point__desc strong {
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.2px;
    color: #fff;
    margin-bottom: 1px;
  }

  .page-what-we-do .proof-point--split .proof-point__stats {
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
  }

  .page-what-we-do .proof-point__divider {
    display: none;
  }

  .page-what-we-do .proof-point--split .proof-point__number {
    font-size: 34px;
    margin-bottom: 4px;
  }

  .page-what-we-do .rcm-block--back-office .rcm-card {
    border-radius: 16px;
    padding: 20px;
  }

  .page-what-we-do .rcm-block--back-office .rcm-card__body {
    grid-template-columns: none;
    gap: 40px;
  }

  /* Cross-stage capabilities */
  .page-what-we-do .cross-stage--capabilities {
    padding: 32px 0;
    text-align: left;
  }

  .page-what-we-do .cross-stage--capabilities .cross-stage__title-zone {
    margin-bottom: 24px;
  }

  .page-what-we-do .cross-stage--capabilities .cross-stage__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: normal;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .page-what-we-do .cross-stage__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-what-we-do .cross-stage--capabilities .cross-stage__grid {
    gap: 24px;
  }

  .page-what-we-do .cross-stage--capabilities .cross-stage__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
  }

  .page-what-we-do .cross-stage__item {
    display: flex;
    flex-direction: column;
  }

  .page-what-we-do .cross-stage__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
  }

  .page-what-we-do .cross-stage__item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 8px;
  }

  .page-what-we-do .cross-stage--capabilities .cross-stage__item-desc {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    opacity: 0.6;
    color: #fff;
  }

  /* Partnership CTA */
  .page-what-we-do .wwd-cta--partnership {
    padding: 80px 0;
    background-color: #faf8f5;
  }

  .page-what-we-do .wwd-cta--partnership .wwd-cta__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-what-we-do .wwd-cta--partnership .wwd-cta__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: normal;
    margin: 0;
    max-width: none;
  }

  .page-what-we-do .wwd-cta--partnership .wwd-cta__desc {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    opacity: 0.7;
    margin: 0;
    max-width: none;
  }

  .page-what-we-do .wwd-cta--partnership .wwd-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .page-what-we-do .wwd-cta--partnership .wwd-cta__actions .btn {
    height: 42px;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 10px;
    width: auto;
    flex: 0 1 auto;
  }

  .page-what-we-do .wwd-cta--partnership .btn--pill {
    padding: 10px 16px;
    border-radius: 10px;
  }

  /* —— How We Work (Figma mobile 694-4697) —— */
  .page-how-we-work .page-hero {
    min-height: auto;
    display: block;
    padding: 96px 0 32px;
  }

  .page-how-we-work .page-hero .hero__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-how-we-work .hero__title--hww {
    font-size: 28px;
    line-height: normal;
    letter-spacing: -1.8px;
    text-align: center;
    max-width: none;
  }

  .page-how-we-work .hero__title--hww .text-accent {
    margin-inline-end: 0.12em;
  }

  .page-how-we-work .hero__desc--hww {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.7;
    text-align: center;
    max-width: none;
    color: #334155;
  }

  .page-how-we-work .hero__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .page-how-we-work .reveal-dock > *,
  .page-how-we-work [data-hero-rise] {
    transform: none;
  }

  .page-how-we-work .reveal-dock:not(.is-visible) > *,
  .page-how-we-work [data-hero-rise]:not(.is-visible) {
    opacity: 0;
  }

  .page-how-we-work .reveal-dock.is-visible > *,
  .page-how-we-work [data-hero-rise].is-visible {
    opacity: 1;
  }

  /* Engagement */
  .page-how-we-work .engagement.engagement--model {
    padding: 32px 0 0;
    text-align: center;
  }

  .page-how-we-work .engagement .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-how-we-work .engagement-badge {
    font-size: 12px;
    line-height: 16px;
    padding: 4px 11px;
    gap: 4px;
    max-width: max-content;
    margin: 0 auto;
  }

  .page-how-we-work .engagement-badge img {
    width: 12px;
    height: 12px;
  }

  .page-how-we-work .engagement__title.section-title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: normal;
    margin-bottom: 0;
    max-width: none;
  }

  .page-how-we-work .engagement-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    text-align: left;
  }

  .page-how-we-work .engagement-card-mobile {
    background: #fff;
    border: 1px solid #efe2e2;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 12px 12px 21px 0 rgba(120, 78, 73, 0.05);
  }

  .page-how-we-work .engagement-card-mobile__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
  }

  .page-how-we-work .engagement-card-mobile__title-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
  }

  .page-how-we-work .engagement-card-mobile__num {
    font-size: 16px;
    letter-spacing: -1px;
    flex-shrink: 0;
  }

  .page-how-we-work .engagement-card-mobile__title {
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    color: #1b1a1a;
    margin: 0;
  }

  .page-how-we-work .engagement-card-mobile__weeks {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #0f172a;
    padding: 4px 11px;
    border-radius: 999px;
    border: 1px solid #f6eee3;
    background: #fff;
  }

  .page-how-we-work .engagement-card-mobile p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #334155;
    margin: 0 0 4px;
  }

  .page-how-we-work .engagement-card-mobile__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .page-how-we-work .engagement-card-mobile__tags li {
    padding: 4px 11px;
    border-radius: 999px;
    background: #f6eee3;
    border: 1px solid #f6eee3;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #0f172a;
  }

  .page-how-we-work .callout-dark {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    border-radius: 0;
    padding: 32px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .page-how-we-work .callout-dark__title {
    font-size: 24px;
    letter-spacing: -1.8px;
    margin-bottom: 0;
    color: #fcce8f;
  }

  .page-how-we-work .callout-dark p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    opacity: 0.6;
    margin: 0;
  }

  /* Rhythm carousel */
  .page-how-we-work .rhythm--operating {
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
  }

  .page-how-we-work .rhythm--operating .rhythm__inner {
    padding-left: 20px;
    padding-right: 0;
    max-width: 100%;
  }

  .page-how-we-work .rhythm--operating .rhythm__title-zone {
    margin-bottom: 24px;
    padding-right: 20px;
  }

  .page-how-we-work .rhythm--operating .rhythm__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: normal;
    max-width: none;
  }

  .page-how-we-work .rhythm--operating .rhythm__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-right: 20px;
    margin: 0;
    text-align: left;
  }

  .page-how-we-work .rhythm--operating .rhythm-card--quarterly {
    order: 4;
  }

  .page-how-we-work .rhythm--operating .rhythm-card--monthly {
    order: 3;
  }

  .page-how-we-work .rhythm--operating .rhythm-card--weekly {
    order: 2;
  }

  .page-how-we-work .rhythm--operating .rhythm-card--daily {
    order: 1;
  }

  .page-how-we-work .rhythm--operating .rhythm__grid::-webkit-scrollbar {
    display: none;
  }

  .page-how-we-work .rhythm--operating .rhythm-card {
    flex: 0 0 calc(100% - 40px);
    min-width: calc(100% - 40px);
    scroll-snap-align: start;
    transform: none;
    opacity: 1;
  }

  .page-how-we-work .rhythm--operating .reveal-cross-item {
    transform: none;
  }

  .page-how-we-work .rhythm__scroll-indicator {
    width: 100px;
    height: 4px;
    background: #efe2e2;
    border-radius: 999px;
    margin: 24px auto 0;
  }

  /* Automation */
  .page-how-we-work .automation--scope {
    padding: 70px 0;
    background: #fff;
  }

  .page-how-we-work .automation--scope .automation__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-how-we-work .automation--scope .automation__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: normal;
    text-align: left;
  }

  .page-how-we-work .automation--scope .automation__intro {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.7;
    text-align: left;
    color: #334155;
  }

  .page-how-we-work .automation-mobile {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    text-align: left;
  }

  .page-how-we-work .automation-mobile__block {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .page-how-we-work .automation-mobile__label {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .page-how-we-work .automation-mobile__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 600;
  }

  .page-how-we-work .automation-mobile__icon--yes {
    color: #40a090;
  }

  .page-how-we-work .automation-mobile__icon--no {
    color: #f08080;
  }

  .page-how-we-work .automation-mobile__label-text {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: #1b1a1a;
  }

  .page-how-we-work .automation-mobile__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .page-how-we-work .automation-mobile .info-card {
    border: 1px solid #efe2e2;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 12px 12px 21px 0 rgba(120, 78, 73, 0.05);
    background: #fff;
  }

  .page-how-we-work .automation-mobile .info-card--highlight {
    background:
      linear-gradient(90deg, rgba(185, 53, 38, 0.06), rgba(185, 53, 38, 0.06)),
      #fff;
  }

  .page-how-we-work .automation-mobile .info-card__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 8px;
    color: #0f172a;
  }

  .page-how-we-work .automation-mobile .info-card p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #334155;
    margin: 0;
  }

  /* Operators */
  .page-how-we-work .operators--teams {
    padding: 60px 0;
    background: #faf8f5;
  }

  .page-how-we-work .operators--teams .operators__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-how-we-work .operators--teams .operators__header {
    text-align: left;
    margin-bottom: 32px;
  }

  .page-how-we-work .operators--teams .operators__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: normal;
    text-align: left;
    margin-bottom: 12px;
  }

  .page-how-we-work .operators--teams .operators__intro {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #334155;
    text-align: left;
  }

  .page-how-we-work .operators--teams .operators__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .page-how-we-work .operators--teams .operators__item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    row-gap: 8px;
    align-items: center;
    padding: 0 0 24px;
    border-right: none;
    border-bottom: 1px solid #efe2e2;
    text-align: left;
  }

  .page-how-we-work .operators--teams .operators__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .page-how-we-work .operators--teams .operators__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .page-how-we-work .operators--teams .operators__icon svg {
    width: 24px;
    height: 24px;
    display: block;
  }

  .page-how-we-work .operators--teams .operators__item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 0;
    grid-column: 2;
    grid-row: 1;
  }

  .page-how-we-work .operators--teams .operators__desc {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #334155;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  /* Compliance */
  .page-how-we-work .compliance--standards {
    padding: 70px 0;
    background: #fff;
  }

  .page-how-we-work .compliance--standards .compliance__layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-how-we-work .compliance--standards .compliance__intro {
    text-align: left;
  }

  .page-how-we-work .compliance--standards .compliance__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: normal;
    margin-bottom: 8px;
    text-align: left;
  }

  .page-how-we-work .compliance--standards .compliance__lead {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.7;
    color: #334155;
    text-align: left;
  }

  .page-how-we-work .compliance--standards .compliance__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .page-how-we-work .compliance--standards .compliance__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-height: 56px;
  }

  .page-how-we-work .compliance--standards .compliance__item img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    object-fit: contain;
  }

  .page-how-we-work .compliance--standards .compliance__item-title {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 0;
  }

  .page-how-we-work .compliance--standards .compliance__item-desc {
    font-size: 14px;
    line-height: 20px;
    color: #334155;
  }

  .page-how-we-work .compliance--standards .reveal-split-left,
  .page-how-we-work .compliance--standards .reveal-split-right {
    transform: none;
    opacity: 1;
  }

  /* CTA */
  .page-how-we-work .wwd-cta--calibrated {
    padding: 60px 0;
    background: #fff;
  }

  .page-how-we-work .wwd-cta--calibrated .wwd-cta__pattern {
    display: none;
  }

  .page-how-we-work .wwd-cta--calibrated .wwd-cta__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .page-how-we-work .wwd-cta--calibrated .wwd-cta__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: normal;
    margin: 0;
  }

  .page-how-we-work .wwd-cta--calibrated .wwd-cta__desc {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.7;
    color: #334155;
    margin: 0;
  }

  .page-how-we-work .wwd-cta--calibrated .wwd-cta__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .page-how-we-work .wwd-cta--calibrated .wwd-cta__actions .btn {
    height: 42px;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 10px;
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .page-how-we-work .wwd-cta--calibrated .wwd-cta__actions .btn--pill {
    width: auto;
    padding: 10px 16px;
    border-radius: 10px;
  }

  /* CTA actions — inline on mobile (overrides style.css @768 column stack) */
  .wwd-cta__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .wwd-cta__actions .btn {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .wwd-cta--calibrated .wwd-cta__actions {
    flex-direction: row;
    align-items: center;
  }

  .wwd-cta--calibrated .btn--pill {
    width: auto;
    padding: 11px 16px;
  }

  /* —— Section Titles —— */
  .section-title,
  .section-title-two {
    font-size: 24px;
    letter-spacing: -1.8px;
    margin-bottom: 18px;
  }

  /* —— Features —— */
  .features {
    padding: 32px 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
  }

  .feature-card__desc {
    font-size: 14px;
    line-height: 26px;
  }

  /* —— Stats —— */
  .stats {
    padding: 32px 0;
  }

  .stats__header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .stats__subtext,
  .text-banner {
    font-size: 14px;
    line-height: 20px;
    opacity: 0.7;
  }

  .section-title-two {
    font-size: 20px;
    margin: 0;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 0;
  }

  .stats__grid .stat-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 240px);
  }

  .stat-card__number {
    font-size: 34px;
    letter-spacing: -1.4px;
  }

  .stat-card__title {
    font-size: 14px;
    letter-spacing: -0.2px;
  }

  .stat-card__desc {
    font-size: 12px;
  }

  .stats__footer {
    margin-top: 24px;
  }

  .results-metrics .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* —— Process (static mobile layout) —— */
  .process-track {
    height: auto;
    background-color: #fff;
  }

  .process {
    position: static;
    height: auto;
    padding: 64px 0;
    overflow: visible;
    background: #fff;
  }

  .process__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .process__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 35px;
  }

  .process__header .section-title {
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1.8px;
    max-width: none;
    margin: 0;
  }

  .process__header .btn.desktop-only {
    display: none !important;
  }

  .process__grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-top: 0;
    border-top: none;
    grid-template-columns: none;
  }

  .process__grid::before,
  .process__grid::after {
    display: none;
  }

  .process-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    opacity: 1;
    position: static;
    transform: none;
  }

  .process-step.is-active {
    opacity: 1;
    transform: none;
  }

  .process-step__num {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    width: 28px;
    height: 28px;
    min-width: 28px;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #eeeef0;
    border-radius: 50%;
    color: #1d1d20;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: none;
    box-shadow: none;
    transition: none;
  }

  .process-step.is-active .process-step__num {
    background: #fff;
    border-color: #eeeef0;
    color: #1d1d20;
    transform: none;
    box-shadow: none;
  }

  .process-step p {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #0f172a;
    font-weight: 400;
  }

  .process-step p strong {
    font-weight: 700;
  }

  /* —— About Text —— */
  .about-text {
    padding: 40px 0;
    padding-top: 0px;
  }

  .about-text__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }

  .about-text__content {
    text-align: center;
    margin-bottom: 0;
  }

  .about-text__content p {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.7;
    margin-bottom: 8px;
  }

  /* —— Contact —— */
  .contact {
    padding: 40px 0;
  }

  .contact__container {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .contact__content .section-title {
    font-size: 24px;
    text-align: left;
  }

  .contact__content p {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.7;
  }

  .custom-form {
    padding: 24px;
    border-radius: 20px;
  }

  .custom-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-row-gap {
    gap: 12px;
  }

  .check_box_container {
    margin-top: 24px;
    gap: 24px;
  }

  /* —— Footer —— */
  .site-footer {
    padding: 32px 0 24px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer-brand p {
    max-width: none;
    font-size: 14px;
    line-height: 20px;
    color: #b8b8b8;
  }

  .footer-brand .site-header__logo img {
    height: 37px;
    width: auto;
  }

  .footer-brand__badges {
    gap: 1rem;
    margin-top: 1.25rem;
  }

  .footer-brand__badge--hipaa {
    height: 32px;
  }

  .footer-brand__badge--soc {
    height: 48px;
  }

  .footer-brand__badge--iso {
    height: 42px;
  }

  .footer-brand__badge--ccpa {
    height: 48px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 43px;
  }

  .footer-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }

  .footer-col h4 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
    color: #fff;
  }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  .footer-col ul li:last-child {
    margin-bottom: 0;
  }

  .footer-col ul a {
    font-size: 14px;
    color: #b8b8b8;
  }

  .footer-contact li {
    font-size: 14px;
    line-height: 20px;
    color: #b8b8b8;
    gap: 8px;
    margin-bottom: 19px;
  }

  .footer-contact img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding-top: 24px;
    font-size: 12px;
  }

  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .footer-legal a {
    margin: 0;
    font-size: 12px;
  }

  /* —— How We Work (generic fallbacks — overridden by .page-how-we-work above) —— */
  .stage-tabs {
    grid-template-columns: 1fr;
  }

  .stage-panel {
    grid-template-columns: 1fr;
  }

  .page-how-we-work .operators__grid {
    grid-template-columns: 1fr;
  }

  .page-how-we-work .operators__item {
    padding: 0 0 24px;
    border-right: none;
    border-bottom: 1px solid #efe2e2;
  }

  .page-how-we-work .operators__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .page-how-we-work .rhythm__grid {
    grid-template-columns: none;
  }

  .page-how-we-work .compliance__layout {
    grid-template-columns: none;
  }

  .page-how-we-work .compliance--standards .compliance__list {
    grid-template-columns: none;
  }

  .operators__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .operators__item {
    padding: 0 0 32px;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .operators__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .rhythm__grid {
    grid-template-columns: 1fr;
  }

  .compliance__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .compliance--standards .compliance__list {
    grid-template-columns: 1fr;
  }

  .content-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  /* —— About Us —— */
  .page-about .about-intro__vm {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .page-about .vm-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    row-gap: 8px;
    align-items: center;
    padding: 16px;
  }

  .page-about .vm-card__icon {
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .page-about .vm-card__icon svg {
    display: block;
    width: 24px;
    height: 24px;
  }

  .page-about .vm-card__title {
    margin-bottom: 0;
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
    line-height: 22px;
  }

  .page-about .vm-card > p {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 12px;
    line-height: 20px;
  }

  .page-about .coach__watermark {
    display: none;
  }

  .page-about .coach__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-about .coach-card {
    position: relative;
    overflow: hidden;
    max-height: none;
    min-height: unset;
    padding: 20px;
  }

  .page-about .coach-card::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-48%);
    font-size: clamp(7.5rem, 68vw, 30.5rem);
    font-weight: 700;
    line-height: 1;
    color: #B935260A;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

  .page-about .coach-card:nth-child(1)::before {
    content: "C";
  }

  .page-about .coach-card:nth-child(2)::before {
    content: "O";
  }

  .page-about .coach-card:nth-child(3)::before {
    content: "A";
  }

  .page-about .coach-card:nth-child(4)::before {
    content: "C";
  }

  .page-about .coach-card:nth-child(5)::before {
    content: "H";
  }

  .page-about .coach-card__icon,
  .page-about .coach-card__title,
  .page-about .coach-card > p {
    position: relative;
    z-index: 1;
  }

  .page-about .coach-card__icon {
    margin-bottom: 12px;
  }

  .page-about .coach-card__title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .page-about .coach-card > p {
    font-size: 14px;
    line-height: 22px;
    max-width: 72%;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .scale__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .scale__item {
    padding: 0 0 84px;
    border-right: none;
    border-bottom: 0;
    position: relative;
  }
  .scale__item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 187px;
    height: 1px;
    background-color: rgba(185, 53, 38, 0.4);
  }
  .scale__item:last-child:before{
    display: none;
  }
  .scale__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .vm-cards__grid {
    grid-template-columns: 1fr;
  }

  /* —— Legal Pages —— */
  .terms-hero {
    padding: 100px 0 48px;
  }

  .terms-hero__title {
    font-size: 28px;
  }

  .terms-content {
    padding: 40px 0 64px;
  }

  /* —— Talk Modal —— */
  .talk-modal {
    padding: 16px;
    align-items: flex-end;
  }

  .talk-modal__dialog {
    padding: 32px 24px 28px;
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
  }

  .talk-modal__form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .page-about .wwd-cta {
    padding: 80px 0;
  }
  .hero_bg_contact {
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    background-image: url("./assets/mobile-bg-pattern.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
  }

  .page-results .new-bg {
    background: #faf8f5 !important;
  }

  .page-results .case-study {
    border-bottom: none !important;
  }

  /* —— Results page (end of cascade — overrides generic fallbacks above) —— */
  .page-results .page-hero {
    padding: 96px 0 32px;
    overflow: hidden;
  }

  .page-results .case-study__grid {
    grid-template-columns: 1fr;
  }

  .page-results .case-study__aside {
    position: static;
    max-width: none;
  }

  .page-results .case-study__title {
    font-size: 24px;
  }

  .page-results .case-study__subtitle {
    font-size: 14px;
  }

  .page-results .case-card--context {
    max-width: none;
    width: 100%;
  }

  .page-results .case-card {
    display: grid !important;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    row-gap: 8px;
    align-items: center;
  }

  .page-results .case-card__icon {
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .page-results .case-card__icon img,
  .page-results .case-card__icon svg {
    display: block;
    width: 24px;
    height: 24px;
  }

  .page-results .case-card__title {
    margin-bottom: 0;
    grid-column: 2;
    grid-row: 1;
    font-size: 18px;
  }

  .page-results .case-card > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .page-results .case-results__stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
    margin-bottom: 24px;
    justify-content: center;
  }

  .page-results .case-results__stat {
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .page-results .case-results__stat:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 240px);
  }

  .page-results .case-results__number {
    font-size: 34px;
    letter-spacing: -1.4px;
    margin-bottom: 8px;
  }

  .page-results .case-results__title {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 4px;
  }

  .page-results .case-results__desc {
    font-size: 12px;
    line-height: normal;
  }

  .page-results .operators--teams {
    padding: 70px 0;
  }

  .page-results .operators--teams .operators__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .page-results .operators--teams .operators__item {
    display: grid !important;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    row-gap: 8px;
    align-items: center;
    padding: 0 0 24px !important;
    border-right: none !important;
    border-bottom: 1px solid #efe2e2;
    text-align: left;
  }

  .page-results .operators--teams .operators__item:first-child {
    padding: 0 0 24px !important;
  }

  .page-results .operators--teams .operators__item:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
  }

  .page-results .operators--teams .operators__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .page-results .operators--teams .operators__icon img,
  .page-results .operators--teams .operators__icon svg {
    display: block;
    width: 24px;
    height: 24px;
  }

  .page-results .operators--teams .operators__item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 0;
    grid-column: 2;
    grid-row: 1;
  }

  .page-results .operators--teams .operators__desc {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #334155;
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 0;
  }
  .section-title-dm,.about-content p {
    text-align: left;
  }
  .about-content{
    padding-bottom: 12px;
  }
  .section-title, .section-title-two{
    margin-bottom: 32px !important;
  }
  .team{
    padding: 20px 0 20px 0;
  }
  .scale{
    padding: 80px 0;
  }
  .scale__metric-label{
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav__dropdown,
  .site-header__hamburger-line,
  .sticky-cta {
    transition: none;
  }
}
