/* ===========================================================================
   TOKENS
=========================================================================== */
:root {
  --navy: #0A1224;
  --navy-2: #101B33;
  --blue-deep: #17356E;
  --blue-electric: #2F6FED;

  --white: #FFFFFF;
  --offwhite: #EEF2FA;

  --ink: #0A1224;
  --ink-soft: #55617A;

  --line: rgba(10, 18, 36, 0.12);
  --line-navy: rgba(255, 255, 255, 0.14);

  --shadow-sm: 0 1px 3px rgba(10, 18, 36, 0.06);
  --shadow-md: 0 14px 30px rgba(10, 18, 36, 0.10);

  --radius: 10px;
  --radius-sm: 6px;

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1160px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--font); }
p { margin: 0; }
ul { margin: 0; padding: 0; }
button { font-family: var(--font); }

/* ===========================================================================
   LAYOUT HELPERS
=========================================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 700px; }

.section { padding: clamp(34px, 4.6vw, 60px) 0; }
.section-tight { padding: clamp(26px, 3.4vw, 42px) 0; }

.section-title {
  font-size: clamp(25px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--ink-soft);
  font-size: clamp(14.5px, 1.6vw, 16px);
  margin-top: 6px;
  font-weight: 500;
}

.eyebrow-label {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

/* ===========================================================================
   STICKY NAV
=========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 18, 36, 0.22);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.nav.is-scrolled {
  background: rgba(10, 18, 36, 0.86);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--white);
  white-space: nowrap;
}

.nav-brand-dot { color: var(--blue-electric); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav-link {
  position: relative;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  padding: 6px 0;
  transition: color 0.18s ease;
}

.nav-link:hover,
.nav-link:focus-visible { color: var(--white); }

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue-electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after { transform: scaleX(1); }

.nav-link.is-active { color: var(--white); }
.nav-link.is-active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  white-space: nowrap;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--blue-electric);
  background: rgba(47, 111, 237, 0.14);
}

.nav-cta-arrow { transition: transform 0.18s ease; }
.nav-cta:hover .nav-cta-arrow { transform: translate(2px, -2px); }

.nav-toggle { display: none; }

/* ===========================================================================
   BUTTONS
=========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--blue-electric); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  border-color: var(--blue-electric);
  color: var(--blue-electric);
}

.btn-arrow { display: inline-block; transition: transform 0.15s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ===========================================================================
   HERO
=========================================================================== */
.hero {
  position: relative;
  background: var(--navy);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  /* 54px nav + the small breathing gap above the portrait */
  padding-top: clamp(74px, 54px + 4vh, 96px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px) clamp(64px, 9vw, 116px);
}

.hero-top {
  display: flex;
  align-items: flex-end;
  gap: clamp(20px, 3.5vw, 52px);
}

.hero-photo-col {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.hero-photo {
  height: clamp(280px, 46vh, 480px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
  -webkit-mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
}

/* Sits beside the portrait, nudged down to shoulder height. */
.hero-id-col {
  flex: 1;
  min-width: 0;
  margin-bottom: clamp(18px, 5vh, 50px);
}

.hero-name-lg {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero-cred-primary {
  margin-top: 14px;
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.hero-cred-secondary {
  margin-top: 8px;
  font-size: clamp(13.5px, 1.45vw, 16.5px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.hero-statement { margin-top: clamp(18px, 3vh, 34px); }

.hero-typewriter-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 0.3em;
  row-gap: 0.1em;
}

.tw-static {
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.tw-wordbox {
  display: inline-flex;
  align-items: baseline;
  /* JS pins this to the width of the longest word. Without flex:0 0 auto the
     box would shrink to the current word and the layout would jump. */
  flex: 0 0 auto;
}

.tw-word {
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  font-weight: 800;
  color: var(--blue-electric);
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1;
}

/* A zero width space keeps the line box at full height between words, when
   the span is otherwise empty. Stops the hero collapsing mid cycle. */
.tw-word::before { content: "\200B"; }

.tw-cursor {
  display: inline-block;
  width: 4px;
  height: clamp(1.5rem, 3.2vw, 2.8rem);
  margin-left: 5px;
  background: var(--blue-electric);
  animation: blink 1s steps(1, start) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.tw-static-list {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 1100px) {
  .hero-typewriter-line { flex-wrap: nowrap; }
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(44px, 7vw, 90px);
  z-index: 1;
  display: block;
}

.hero-wave path { fill: var(--offwhite); }

/* ===========================================================================
   SOCIAL TILES
=========================================================================== */
.socials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.social-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.social-tile:hover {
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.social-icon-linkedin { background: #0A66C2; }
.social-icon-youtube { background: #FF0000; }
.social-icon-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-tile-text { min-width: 0; }

.social-label {
  font-weight: 800;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-label .arrow { font-size: 13px; display: inline-block; transition: transform 0.18s ease; }
.social-tile:hover .social-label .arrow { transform: translate(3px, -3px); }

.social-tagline {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  margin-top: 2px;
}

/* ===========================================================================
   WANT TO TALK - stacked vertical strips
=========================================================================== */
.talk-heading { margin-bottom: 20px; }

.talk-strips {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.talk-strip {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.talk-strip:hover {
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-sm);
}

.talk-strip-gupshup {
  background: var(--offwhite);
  border-color: rgba(47, 111, 237, 0.3);
  align-items: flex-start;
}

.talk-strip-main { min-width: 0; flex: 1; }

.talk-strip-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.talk-strip-title { font-size: 18.5px; font-weight: 800; }

.talk-tag {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--blue-electric);
  color: var(--blue-electric);
  white-space: nowrap;
}

.talk-tag-free {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.talk-strip-desc {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-top: 6px;
  max-width: 460px;
}

.talk-strip-headline {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  color: var(--navy);
  margin-top: 8px;
}

.talk-strip-clarify {
  margin-top: 8px;
  font-size: 12.5px;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 460px;
}

.talk-strip-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 10px;
  flex-shrink: 0;
}

.talk-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.talk-price {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.talk-duration {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--ink-soft);
}

.talk-strip-note {
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ===========================================================================
   MENTORSHIP
=========================================================================== */
.section-heading { text-align: left; margin-bottom: 22px; }

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Editorial pricing cards. Both stay light, so the hierarchy between them is
   carried only by border weight and the POPULAR label. They stretch to equal
   height so the closing price and CTA line up across both. */
.mentor-card {
  background: var(--white);
  border-radius: 4px;
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mentor-card-standard { border: 1px solid #CFE0FA; }

.mentor-card-standard:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 18, 36, 0.07);
}

/* Reads as a 2px edge, but the second pixel is an inset ring rather than a
   real border, so both cards keep identical box metrics and their price and
   CTA rows stay on exactly the same baseline. */
.mentor-card-popular {
  border: 1px solid var(--blue-electric);
  box-shadow: inset 0 0 0 1px var(--blue-electric);
}

.mentor-card-popular:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px var(--blue-electric),
    0 8px 22px rgba(47, 111, 237, 0.16);
}

/* min-height keeps the two cards' first rows aligned even though only one
   of them carries the POPULAR label. */
.mentor-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 22px;
}

.mentor-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mentor-flag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--blue-electric);
  background: #E7EFFD;
  padding: 4px 9px;
  border-radius: 3px;
  white-space: nowrap;
}

.mentor-duration {
  margin-top: 12px;
  font-size: clamp(25px, 3vw, 31px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--blue-electric);
  line-height: 1.05;
}

.mentor-rule {
  height: 1px;
  background: rgba(10, 18, 36, 0.10);
  margin: 20px 0;
}

.mentor-rule-end { margin-top: auto; }

.mentor-headline {
  font-size: clamp(16.5px, 1.9vw, 18.5px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
}

.mentor-outcomes {
  list-style: none;
  /* The bottom margin guarantees breathing room above the closing rule even
     when the card is auto height and margin-top:auto resolves to zero. */
  margin: 18px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.mentor-outcomes li {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mentor-outcomes li::before {
  content: "\2713";
  color: var(--blue-electric);
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1.45;
}

.mentor-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Deliberately smaller than the duration so it does not compete with it. */
.mentor-price {
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.mentor-keyword {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

.mentor-keyword b { color: var(--navy); }

/* ===========================================================================
   TOPICS - editorial, interactive
=========================================================================== */
.topics-poster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 0.7em;
  align-items: baseline;
}

.topic-word {
  font-size: clamp(22px, 4.2vw, 42px);
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  line-height: 1.2;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.15s ease;
}

.topic-word:nth-child(odd) { color: var(--navy); font-weight: 800; }

.topic-word:hover,
.topic-word:focus-visible,
.topic-word.is-active {
  color: var(--blue-electric);
}

.topics-detail {
  margin-top: 20px;
  min-height: 1.4em;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-electric);
  letter-spacing: 0.2px;
}

/* ===========================================================================
   HOW IT WORKS
=========================================================================== */
/* Four equal columns, so every step sits on the same rhythm. */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: clamp(16px, 2.5vw, 32px);
  position: relative;
}

/* One continuous rule running to the right edge of the container, so the
   process shares the same outer margins as every other section. */
.steps-row::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 13px;
  right: 0;
  border-top: 2px dotted var(--line);
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
  padding-top: 40px;
}

.step-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-electric);
  color: var(--blue-electric);
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0;
}

.step-label { font-size: 16px; font-weight: 800; color: var(--navy); }
.step-text { font-size: 12.5px; color: var(--ink-soft); font-weight: 500; }

/* ===========================================================================
   FAQ ACCORDION
=========================================================================== */
.accordion { border-top: 1.5px solid var(--line); }
.accordion-item { border-bottom: 1.5px solid var(--line); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 18px 0;
  text-align: left;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

.accordion-icon {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-electric);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.accordion-item.is-open .accordion-icon { transform: rotate(45deg); }

.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }

.accordion-panel-inner {
  padding: 0 0 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 620px;
}

/* ===========================================================================
   FOOTER
=========================================================================== */
.site-footer {
  background: var(--navy);
  text-align: center;
  padding: 36px 24px;
}

.footer-line {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 13.5px;
}

.footer-links a { color: rgba(255, 255, 255, 0.85); }
.footer-links a:hover { color: var(--blue-electric); }
.footer-sep { color: rgba(255, 255, 255, 0.3); }

/* Legal links. Deliberately quieter than the social row above them. */
.footer-legal {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 500;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.18s ease;
}

.footer-legal a:hover { color: rgba(255, 255, 255, 0.8); }
.footer-legal-sep { color: rgba(255, 255, 255, 0.2); }

/* ===========================================================================
   REVEAL
=========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ===========================================================================
   RESPONSIVE
=========================================================================== */
@media (max-width: 900px) {
  /* --- nav collapses to a menu button --- */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    margin-left: auto;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: transform 0.22s ease;
  }

  .nav-toggle.is-open .nav-toggle-bar:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle.is-open .nav-toggle-bar:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 24px 18px;
    background: rgba(10, 18, 36, 0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.is-open { display: flex; }

  .nav-link {
    padding: 14px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-link::after { display: none; }
  .nav-link.is-active { color: var(--blue-electric); }

  .nav-cta { margin-top: 16px; justify-content: center; }

  .hero { padding-top: 78px; }

  .hero-inner {
    padding: 0 24px clamp(52px, 13vw, 84px);
    text-align: center;
  }

  .hero-top {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .hero-photo-col { justify-content: center; }
  .hero-photo { height: clamp(250px, 40vh, 360px); }

  .hero-id-col { margin-top: 0; }

  .hero-typewriter-line { justify-content: center; }

  /* The reserved box is as wide as PRODUCTIVITY, so centre the word inside it
     to keep shorter words optically centred on this centred layout. */
  .tw-wordbox { justify-content: center; }

  .socials-row { grid-template-columns: 1fr; }

  .talk-strip { flex-direction: column; align-items: stretch; }
  .talk-strip-gupshup { align-items: stretch; }
  .talk-strip-action { align-items: flex-start; text-align: left; }

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

  .steps-row { grid-template-columns: 1fr; gap: 26px; }

  .steps-row::before { display: none; }

  .step-item { padding-top: 0; padding-left: 40px; }

  .step-item::before {
    content: "";
    position: absolute;
    top: 26px;
    bottom: 0;
    left: 13px;
    right: auto;
    width: 0;
    height: 100%;
    border-top: none;
    border-left: 2px dotted var(--line);
  }

  .step-item:last-child::before { display: none; }
}

@media (min-width: 901px) {
  .section-heading { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .tw-cursor { animation: none; }
}
