/*
 * SHIFT ENGLISH landing page
 * 1. Foundation and shared utilities
 * 2. Header and hero
 * 3. Content sections in document order
 * 4. Footer and modal components
 * 5. Tablet/mobile overrides
 */

:root {
  --navy: #071b3a;
  --orange: #f45b00;
  --orange-dark: #e84d00;
  --pale-blue: #eaf5fb;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1100px;
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic",
    "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}

  .sp-only{
    display: none;
  }

   .pc-only{
    display: block;
  }

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

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

:focus-visible {
  outline: 3px solid rgb(244 91 0 / 72%);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 10px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sp-only {
  display: none;
}

/* Header and global navigation */
.site-header {
  position: relative;
  z-index: 20;
  height: 100px;
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(7 27 58 / 7%);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgb(7 27 58 / 8%);
}

.header-inner {
  width: min(calc(100% - 64px), 1472px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
}

.brand {
  position: relative;
  flex: 0 0 292px;
  height: 70px;
  overflow: hidden;
  border-radius: 3px;
}

.brand-image {
  display: block;
  width: 100%;
  height: 100%;
  background-image: image-set(
    url("img/shift-english-logo.webp") type("image/webp"),
    url("img/shift-english-logo.png") type("image/png")
  );
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 112% auto;
}

.global-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(24px, 2.6vw, 48px);
  min-width: 0;
  white-space: nowrap;
}

.global-nav a {
  position: relative;
  padding: 36px 0 32px;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: var(--orange-dark);
}

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

.header-cta {
  flex: 0 0 auto;
  display: block;
  width: 310px;
  min-width: 310px;
  height: 90px;
  padding: 0;
  background: transparent;
  transition: transform 180ms ease, filter 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 15px rgb(244 91 0 / 18%));
}

.header-cta img,
.mobile-nav-cta img,
.sp-fixed-cta img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-menu-toggle,
.mobile-nav-cta {
  display: none;
}

.sp-fixed-cta {
  display: none;
}

body.demo-modal-open {
  overflow: hidden;
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  opacity: 0;
  transition: opacity 180ms ease;
}

.demo-modal.is-open {
  opacity: 1;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(3 15 35 / 76%);
  backdrop-filter: blur(7px);
}

.demo-modal-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(680px, 100%);
  max-height: calc(100dvh - 48px);
  align-items: center;
  justify-content: center;
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.demo-pdf-modal .demo-modal-dialog {
  width: min(590px, 100%);
}

.demo-modal.is-open .demo-modal-dialog {
  transform: translateY(0) scale(1);
}

.demo-modal-dialog > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 48px);
  object-fit: contain;
}

.demo-modal-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(7 27 58 / 12%);
  border-radius: 50%;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 8px 24px rgb(7 27 58 / 16%);
  color: var(--navy);
  font-size: 0;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease;
}

.demo-modal-close > span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.demo-modal-close > span::before,
.demo-modal-close > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.demo-modal-close > span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.demo-modal-close > span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.demo-modal-close:hover,
.demo-modal-close:focus-visible {
  background: var(--white);
  transform: scale(1.06);
}

/* First view */
.hero {
  position: relative;
  padding-bottom: 72px;
  background: #f8f7f4;
}

.hero-stage {
  position: relative;
  height: clamp(730px, 56.1vw, 862px);
  min-height: 730px;
  overflow: hidden;
  isolation: isolate;
}

.hero-background-picture {
  display: contents;
}

.hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 11%) 0%,
    transparent 41%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-board {
  position: absolute;
  top: clamp(46px, 4vw, 64px);
  left: max(4vw, calc((100vw - 1472px) / 2));
  width: min(47.4vw, 730px);
  aspect-ratio: 1.25 / 1;
  overflow: visible;
  background: transparent;
}

.hero-board-art {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  clip-path: inset(1.3% 0 5% 0 round 28px);
}

.hero-board-art img {
  position: absolute;
  top: -1.7%;
  left: -4.9%;
  width: 109.8%;
  height: auto;
  max-width: none;
}

.hero-board-badge {
  position: absolute;
  z-index: 2;
  top: 1.6%;
  right: 3.3%;
  width: 17%;
  aspect-ratio: 1;
  overflow: visible;
  border-radius: 50%;
  pointer-events: none;
}

.hero-board-badge img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transform: none;
}

.hero-board-actions {
  position: absolute;
  right: 6.4%;
  bottom: 11.5%;
  left: 6.4%;
  text-align: center;
}

.hero-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 14px 74px 14px 28px;
  overflow: hidden;
  border: 2px solid rgb(255 255 255 / 72%);
  border-radius: 14px;
  background: linear-gradient(110deg, #ff7200 0%, #f25300 68%, #ee4a00 100%);
  box-shadow: 0 8px 20px rgb(244 91 0 / 25%),
    inset 0 1px 0 rgb(255 255 255 / 35%);
  color: var(--white);
  font-size: clamp(20px, 1.64vw, 26px);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 58%, rgb(255 255 255 / 9%));
  pointer-events: none;
}

.hero-cta-icon {
  position: absolute;
  right: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
}

.hero-cta-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgb(244 91 0 / 34%),
    inset 0 1px 0 rgb(255 255 255 / 35%);
}

.hero-board-actions p {
  margin: 13px 0 0;
  color: var(--navy);
  font-size: clamp(13px, 1.03vw, 16px);
  font-weight: 700;
  letter-spacing: 0.025em;
}

.benefit-wrap {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 80px), 1416px);
  margin: -58px auto 0;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 144px;
  padding: 20px 24px;
  overflow: hidden;
  border: 1px solid rgb(7 27 58 / 5%);
  border-radius: 26px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 18px 44px rgb(7 27 58 / 12%);
  backdrop-filter: blur(10px);
}

.benefit-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
  padding: 10px 22px;
}

.benefit-item + .benefit-item::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: rgb(7 27 58 / 22%);
}

.benefit-icon {
  flex: 0 0 auto;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--pale-blue);
  color: var(--navy);
}

.benefit-icon img {
  width: 68px;
  height: 68px;
  max-width: none;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.benefit-item h2 {
  margin: 0 0 5px;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.35;
  letter-spacing: 0.015em;
}

.benefit-item p {
  margin: 0;
  color: #1b2d49;
  font-size: clamp(13px, 0.96vw, 15px);
  font-weight: 600;
  line-height: 1.55;
}

/* Shared section headings and containers */
.section-container {
  width: min(calc(100% - 80px), 1320px);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading-left {
  max-width: 980px;
}

.section-heading-center {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  flex: 0 0 34px;
  background: var(--orange);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 3.25vw, 52px);
  line-height: 1.36;
  letter-spacing: 0.01em;
}

.section-heading h2 em {
  color: var(--orange);
  font-style: normal;
}

.section-heading > p {
  margin: 22px 0 0;
  color: #43536b;
  font-size: clamp(15px, 1.16vw, 18px);
  font-weight: 600;
  line-height: 1.9;
}

/* Business English challenges */
.problem-section {
  position: relative;
  padding: 118px 0 112px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
}

.problem-section::before {
  content: "";
  position: absolute;
  top: -230px;
  left: -260px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgb(244 91 0 / 2.5%);
  filter: blur(8px);
}

.problem-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(0, 1.13fr);
  align-items: start;
  gap: 44px;
}

.problem-content {
  min-width: 0;
}

.problem-heading {
  margin-bottom: 28px;
}

.problem-heading .section-eyebrow {
  margin-bottom: 18px;
  font-size: 11px;
}

.problem-heading h2 {
  font-size: clamp(38px, 3.15vw, 50px);
  line-height: 1.38;
}

.problem-heading > p {
  margin-top: 18px;
  font-size: clamp(12.5px, 1vw, 15px);
  line-height: 1.9;
}

.problem-visual {
  position: relative;
  height: 365px;
  margin: 0;
  overflow: hidden;
  border-radius: 17px;
  background: #edf2f4;
  box-shadow: 0 15px 38px rgb(7 27 58 / 12%);
}

.problem-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.problem-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 22px 15px;
  border: 1px solid rgb(255 255 255 / 68%);
  border-radius: 15px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 9px 26px rgb(7 27 58 / 13%);
  backdrop-filter: blur(10px);
}

.problem-visual figcaption span {
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.problem-visual figcaption strong {
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.5;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 46px;
}

.problem-card {
  position: relative;
  min-height: 258px;
  padding: 25px 25px 23px;
  overflow: hidden;
  border: 1px solid rgb(203 162 129 / 25%);
  border-radius: 18px;
  background: rgb(255 252 248 / 86%);
  box-shadow: 0 12px 30px rgb(7 27 58 / 4.5%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 32px rgb(7 27 58 / 9%);
}

.problem-card-head {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
}

.problem-card-icon {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.problem-scene {
  display: inline-flex;
  min-height: 26px;
  margin-bottom: 12px;
  padding: 4px 13px;
  align-items: center;
  border: 1px solid rgb(244 91 0 / 23%);
  border-radius: 999px;
  background: #fff6f0;
  color: var(--orange-dark);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.problem-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(15px, 1.31vw, 19px);
  line-height: 1.62;
}

.problem-card p {
  position: relative;
  z-index: 1;
  margin: 17px 0 0 87px;
  color: #536178;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.85;
}

.problem-answer {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 31px;
  padding: 25px 35px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(110deg, #071b3a 0%, #0d2d55 100%);
  box-shadow: 0 16px 38px rgb(7 27 58 / 16%);
  color: var(--white);
}

.problem-answer > span {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  min-width: 94px;
  height: 39px;
  padding: 0 15px;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.problem-answer > span::after {
  content: none;
}

.problem-answer p {
  margin: 0;
  font-size: clamp(16px, 1.36vw, 20px);
  font-weight: 600;
  line-height: 1.7;
}

.problem-answer strong {
  color: #ff9b63;
}

/* Learning method */
.method-section {
  position: relative;
  padding: 106px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 9%, rgb(255 255 255 / 90%) 0 110px, transparent 111px),
    linear-gradient(145deg, #f5faff 0%, #eaf4ff 46%, #f5f9fd 100%);
}

.method-section::before,
.method-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.method-section::before {
  top: -305px;
  left: -285px;
  width: 600px;
  height: 600px;
  border: 1px solid rgb(77 130 190 / 10%);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgb(255 255 255 / 24%),
    0 0 0 58px rgb(77 130 190 / 5%);
}

.method-section::after {
  right: 28px;
  bottom: 18px;
  width: 108px;
  height: 108px;
  background-image: radial-gradient(circle, rgb(76 132 200 / 15%) 2px, transparent 2.5px);
  background-size: 18px 18px;
}

.method-section .section-container {
  position: relative;
  z-index: 1;
}

.method-section .section-heading {
  max-width: 1260px;
  margin-bottom: 54px;
}

.method-section .section-eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.method-section .section-heading h2 {
  font-size: clamp(38px, 3.25vw, 52px);
  white-space: nowrap;
}

.method-section .section-heading > p {
  margin-top: 21px;
  font-size: clamp(14px, 1.12vw, 17px);
}

.method-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr) 84px minmax(0, 1fr);
  align-items: center;
}

.method-card {
  position: relative;
  display: flex;
  min-height: 331px;
  padding: 28px 27px 27px;
  flex-direction: column;
  border: 1px solid rgb(7 27 58 / 8%);
  border-radius: 18px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 17px 42px rgb(7 27 58 / 9%);
}

.method-card-selected {
  border: 1.5px solid var(--orange);
  box-shadow: 0 18px 45px rgb(244 91 0 / 10%);
}

.method-check {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 6px 15px rgb(244 91 0 / 22%);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 900;
}

.method-card-selected .method-card-top {
  padding-right: 38px;
}

.method-card-top {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
}

.method-card-icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  overflow: hidden;
}

.method-card-icon img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.method-card-title {
  min-width: 0;
}

.method-card-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  margin-bottom: 13px;
}

.method-number {
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.method-kicker {
  display: inline-flex;
  min-width: 64px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pale-blue);
  color: #17457a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.method-card h3 {
  margin: 0;
  font-size: clamp(17px, 1.48vw, 22px);
  line-height: 1.45;
}

.method-card > p {
  position: relative;
  min-height: 88px;
  margin: 20px 0 18px;
  padding-top: 21px;
  border-top: 1px solid rgb(7 27 58 / 11%);
  color: #4b5b72;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.9;
}

.method-card > p::before {
  content: none;
}

.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-tags li {
  padding: 8px 12px;
  border-radius: 6px;
  background: #eaf3fc;
  color: #17457a;
  font-size: 11px;
  font-weight: 750;
}

.method-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  place-items: center;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.method-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: min(100%, 980px);
  min-height: 100px;
  margin: 51px auto 0;
  padding: 17px 37px;
  border: 1px solid rgb(7 27 58 / 5%);
  border-radius: 14px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 15px 38px rgb(7 27 58 / 8%);
  color: #253852;
}

.method-result-icon {
  display: grid;
  width: 69px;
  height: 69px;
  flex: 0 0 69px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 22px rgb(7 27 58 / 10%);
}

.method-result-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.method-result-icon .method-result-personal-icon {
  width: 64px;
  height: 64px;
  transform: scale(1.34);
}

.method-result-divider {
  width: 1px;
  height: 54px;
  flex: 0 0 1px;
  background: rgb(23 69 122 / 28%);
}

.method-result p {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 750;
  line-height: 1.6;
}

.method-result p > span {
  margin-right: 12px;
}

.method-result strong {
  color: var(--orange-dark);
  font-size: 1.13em;
}

/* 90-day roadmap */
.roadmap-section {
  position: relative;
  padding: 44px 0 49px;
  overflow: hidden;
  background: linear-gradient(135deg, #fbfdff 0%, #fff 52%, #f8fbff 100%);
}

.roadmap-section::before,
.roadmap-section::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  border: 1px solid rgb(68 133 194 / 10%);
  border-radius: 50%;
  box-shadow:
    0 0 0 12px rgb(68 133 194 / 5%),
    0 0 0 24px rgb(68 133 194 / 4%),
    0 0 0 36px rgb(68 133 194 / 3%);
  pointer-events: none;
}

.roadmap-section::before {
  top: 150px;
  left: -246px;
}

.roadmap-section::after {
  right: -220px;
  bottom: -115px;
}

.roadmap-section .section-container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), 1400px);
}

.roadmap-section .section-container::before {
  content: "";
  position: absolute;
  top: -44px;
  right: -129px;
  width: 390px;
  height: 165px;
  background-image: radial-gradient(circle, rgb(104 163 218 / 21%) 0 2px, transparent 2.5px);
  background-size: 13px 13px;
  mask-image: linear-gradient(135deg, transparent 4%, #000 58%);
  pointer-events: none;
}

.roadmap-heading {
  max-width: 1180px;
  margin-bottom: 25px;
}

.roadmap-heading .section-eyebrow {
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: 0.13em;
}

.roadmap-heading .section-eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  margin-left: 0;
  background: currentColor;
}

.roadmap-heading h2 {
  font-size: clamp(45px, 3.15vw, 52px);
  line-height: 1.22;
  letter-spacing: 0.012em;
}

.roadmap-heading > p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.75;
}

.roadmap-track {
  position: relative;
  height: 51px;
  margin-bottom: 10px;
}

.roadmap-day {
  position: absolute;
  top: 4px;
  z-index: 3;
  display: grid;
  min-width: 108px;
  height: 42px;
  padding: 0 18px;
  place-items: center;
  border: 1px solid #bed8ef;
  border-radius: 999px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 8px 18px rgb(7 27 58 / 10%);
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.roadmap-day-start {
  left: -47px;
}

.roadmap-day-end {
  right: -74px;
  border-color: #ffc5a2;
  color: var(--orange);
}

.roadmap-rail {
  position: absolute;
  top: 25px;
  right: 175px;
  left: 80px;
  height: 2px;
  background: linear-gradient(90deg, #ffb487, var(--orange));
}

.roadmap-rail::before,
.roadmap-rail::after {
  content: "";
  position: absolute;
}

.roadmap-rail::after {
  top: -5px;
  right: 27%;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 12px solid var(--orange);
}

.roadmap-rail::before {
  top: -5px;
  left: 36%;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 12px solid var(--orange);
}

.roadmap-rail i {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px rgb(7 27 58 / 9%), 0 5px 12px rgb(244 91 0 / 22%);
  transform: translate(-50%, -50%);
}

.roadmap-rail i:nth-child(1) {
  left: 17.3%;
}

.roadmap-rail i:nth-child(2) {
  left: 54.5%;
}

.roadmap-rail i:nth-child(3) {
  left: 92.5%;
  width: 27px;
  height: 27px;
  border: 4px solid #fff;
  background: #ff7a22;
  box-shadow: 0 0 0 2px #ffb27f, 0 7px 15px rgb(244 91 0 / 25%);
}

.roadmap-rail i:nth-child(3)::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid #ffd3b7;
  border-radius: 50%;
}

.roadmap-finish-mark {
  position: absolute;
  top: 6px;
  right: 138px;
  width: 28px;
  height: 28px;
  border-top: 3px solid var(--orange);
  transform: rotate(-34deg);
}

.roadmap-finish-mark::before,
.roadmap-finish-mark::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 3px;
  background: var(--orange);
}

.roadmap-finish-mark::before {
  top: 8px;
  right: -3px;
  transform: rotate(45deg);
}

.roadmap-finish-mark::after {
  top: 18px;
  right: 1px;
  transform: rotate(82deg);
}

.roadmap-timeline {
  position: relative;
  display: grid;
  --roadmap-arrow-offset: 7.67px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
}

.roadmap-phase {
  position: relative;
  z-index: 1;
  display: flex;
  height: 448px;
  padding: 26px 33px 28px;
  flex-direction: column;
  border: 1px solid #dbe7f1;
  border-radius: 25px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 16px 34px rgb(38 83 125 / 10%);
}

.roadmap-phase-featured {
  border-color: #ff7a35;
  box-shadow: 0 20px 38px rgb(244 91 0 / 13%);
}

.roadmap-phase-featured .phase-days {
  margin-right: 40px;
}

.roadmap-phase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  margin-bottom: 11px;
}

.phase-index {
  display: flex;
  margin: 0;
  flex-direction: column;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
}

.phase-index strong {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.phase-index span {
  margin-top: 5px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.roadmap-phase:not(.roadmap-phase-featured) .phase-index {
  opacity: 0.56;
}

.phase-days {
  display: inline-flex;
  min-height: 31px;
  padding: 6px 16px;
  align-items: center;
  border-radius: 999px;
  background: #edf6fc;
  color: #244568;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.phase-summary {
  display: grid;
  min-height: 123px;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
}

.phase-summary > div {
  transform: translateY(5px);
}

.phase-icon,
.phase-goal-icon,
.roadmap-note-icon,
.phase-tasks li > span {
  position: relative;
  display: block;
  overflow: hidden;
}

.phase-icon {
  width: 82px;
  height: 82px;
}

.phase-icon img,
.phase-goal-icon img,
.roadmap-note-icon img,
.phase-tasks li > span img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%) scale(1.82);
}

.phase-icon img.phase-icon-foundation {
  transform: translate(-50%, -50%) scale(1.65);
}

.roadmap-phase h3 {
  margin: 0;
  font-size: clamp(22px, 1.62vw, 27px);
  line-height: 1.35;
  white-space: nowrap;
}

.phase-description {
  margin: 9px 0 0;
  color: #364c69;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.phase-tasks {
  display: grid;
  gap: 7px;
  margin: 9px 0 14px;
  padding: 29px 0 0;
  border-top: 1px solid #d6e1eb;
  list-style: none;
}

.phase-tasks li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #203958;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
}

.phase-tasks li > span {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.phase-tasks li > span img {
  clip-path: circle(25% at 50% 50%);
  transform: translate(-50%, -50%) scale(2.05);
}

.phase-goal {
  display: flex;
  min-height: 71px;
  margin-top: auto;
  padding: 9px 15px;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  background: linear-gradient(100deg, #fff2e9, #fff9f5);
}

.roadmap-phase-featured .phase-goal {
  border: 1px solid #ff9c68;
  background: #fffaf7;
}

.phase-goal-icon {
  width: 31px;
  height: 46px;
  flex: 0 0 auto;
}

.phase-goal-icon img {
  transform: translate(-50%, -50%) scale(2.1);
}

.phase-goal p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.phase-goal small {
  margin-bottom: 4px;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.phase-goal strong {
  font-size: 14px;
  line-height: 1.4;
}

.roadmap-phase-featured .phase-goal strong {
  color: var(--orange);
}

.roadmap-card-arrow {
  position: absolute;
  top: 181px;
  z-index: 4;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 5px 13px rgb(244 91 0 / 24%);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 0.8;
  transform: translateX(-50%);
}

.roadmap-card-arrow-one {
  left: calc(33.333% - var(--roadmap-arrow-offset));
}

.roadmap-card-arrow-two {
  left: calc(66.666% + var(--roadmap-arrow-offset));
}

.roadmap-complete-badge {
  position: absolute;
  top: -3px;
  right: -38px;
  z-index: 5;
  display: flex;
  width: 94px;
  height: 94px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 4px solid #ffd9c2;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff781e, #f04b00);
  box-shadow: 0 8px 22px rgb(244 91 0 / 26%);
  color: #fff;
}

.roadmap-complete-badge i {
  width: 22px;
  height: 12px;
  margin: -4px 0 6px;
  border-bottom: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: rotate(-45deg);
}

.roadmap-complete-badge strong {
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.roadmap-note {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 80px);
  min-height: 100px;
  margin: 27px auto 0;
  padding: 0 76px 0 250px;
  border: 1px solid #9fc6e8;
  border-radius: 17px;
  background: linear-gradient(90deg, rgb(247 252 255 / 96%), rgb(243 249 255 / 92%));
  box-shadow: 0 13px 27px rgb(38 83 125 / 9%);
}

.roadmap-note-icon {
  position: absolute;
  left: 116px;
  width: 92px;
  height: 92px;
  border: 1px solid #d6e6f3;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 7px 16px rgb(24 68 107 / 10%);
}

.roadmap-note-icon img {
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.3);
}

.roadmap-note > strong {
  flex: 0 0 525px;
  font-size: 24px;
  line-height: 1.45;
  white-space: nowrap;
}

.roadmap-note-divider {
  width: 1px;
  height: 49px;
  margin: 0 31px;
  flex: 0 0 auto;
  background: #8cb9df;
}

.roadmap-note p {
  margin: 0;
  color: #273f5e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

/* Learning dashboard */
.dashboard-section {
  position: relative;
  min-height: 992px;
  padding: 28px 0 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 48%, rgb(0 100 210 / 24%), transparent 34%),
    radial-gradient(circle at 22% 84%, rgb(244 91 0 / 7%), transparent 25%),
    linear-gradient(115deg, #020c1e 0%, #03142c 58%, #051d3b 100%);
}

.dashboard-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(95 160 224 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(95 160 224 / 4%) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent 3%, #000 32%, #000 84%, transparent 100%);
  pointer-events: none;
}

.dashboard-section::after {
  content: "";
  position: absolute;
  top: 335px;
  right: -175px;
  width: 640px;
  height: 500px;
  background: radial-gradient(circle, rgb(0 117 255 / 25%), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.dashboard-section .section-container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), 1236px);
}

.dashboard-heading {
  max-width: 1080px;
  margin-bottom: 14px;
}

.dashboard-heading .section-eyebrow {
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.dashboard-heading .section-eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.dashboard-heading h2 {
  color: var(--white);
  font-size: clamp(44px, 3.16vw, 50px);
  line-height: 1.2;
  letter-spacing: 0.025em;
}

.dashboard-heading h2 em {
  color: #ff6800;
}

.dashboard-heading > p {
  margin-top: 8px;
  color: rgb(237 244 252 / 83%);
  font-size: 16px;
  line-height: 1.85;
}

.dashboard-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 1380 / 853;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(143 190 235 / 52%);
  border-radius: 27px;
  background: #03152d;
  box-shadow:
    0 34px 72px rgb(0 0 0 / 31%),
    0 0 46px rgb(0 98 214 / 12%);
}

.dashboard-showcase img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 121.6%;
  height: auto;
  max-width: none;
  transform: translate(-50%, -50%);
}

.dashboard-benefits {
  display: grid;
  width: 100%;
  min-height: 98px;
  margin: 30px auto 0;
  grid-template-columns: 430px repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgb(88 155 222 / 57%);
  border-radius: 17px;
  background: linear-gradient(90deg, rgb(4 20 43 / 96%), rgb(3 22 47 / 94%));
  box-shadow: 0 18px 39px rgb(0 0 0 / 20%);
}

.dashboard-benefit-lead,
.dashboard-benefit-item {
  display: flex;
  min-width: 0;
  align-items: center;
}

.dashboard-benefit-lead {
  padding: 11px 26px 11px 42px;
  gap: 20px;
}

.dashboard-benefit-lead > strong {
  color: var(--white);
  font-size: 20px;
  line-height: 1.45;
}

.dashboard-benefit-item {
  position: relative;
  padding: 12px 13px 12px 24px;
  gap: 13px;
}

.dashboard-benefit-item::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  background: rgb(105 162 220 / 30%);
}

.dashboard-benefit-item p {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  color: var(--white);
}

.dashboard-benefit-item p strong {
  font-size: 13px;
  line-height: 1.5;
}

.dashboard-benefit-item p small {
  margin-top: 5px;
  color: rgb(226 238 249 / 62%);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}

.dashboard-effect-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background-color: #0a1b33;
  box-shadow:
    inset 0 0 15px rgb(90 137 184 / 10%),
    0 0 18px rgb(255 158 64 / 12%);
  isolation: isolate;
}

.dashboard-effect-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 128%;
  height: 128%;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: invert(1) hue-rotate(180deg) saturate(0.95) brightness(1.04);
  transform: translate(-50%, calc(-50% + 1px));
}

.dashboard-effect-icon-focus img {
  transform: translate(-50%, calc(-50% + 2px));
}

.dashboard-benefit-lead .dashboard-effect-icon {
  width: 72px;
  height: 72px;
  flex-basis: 72px;
  box-shadow:
    inset 0 0 18px rgb(90 137 184 / 10%),
    0 0 24px rgb(255 166 72 / 22%);
}

.comparison-section {
  padding: 132px 0 126px;
  background: var(--white);
}

.comparison-table-wrap {
  overflow: hidden;
  border: 1px solid rgb(7 27 58 / 9%);
  border-radius: 27px;
  box-shadow: 0 20px 54px rgb(7 27 58 / 9%);
}

.comparison-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 21px 25px;
  border-bottom: 1px solid rgb(7 27 58 / 8%);
  vertical-align: middle;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  height: 92px;
  color: var(--white);
  font-size: 17px;
  text-align: center;
}

.comparison-table thead th:first-child {
  width: 20%;
  background: #e8edf2;
  color: #35475f;
  font-size: 14px;
}

.comparison-table .general-heading {
  width: 38%;
  border-left: 1px solid rgb(255 255 255 / 8%);
  background: #536477;
}

.comparison-table .shift-heading {
  position: relative;
  width: 42%;
  overflow: hidden;
  border-left: 1px solid rgb(255 255 255 / 18%);
  background: linear-gradient(110deg, #f45b00 0%, #ff7b31 100%);
  font-size: 20px;
}

.shift-heading span {
  position: absolute;
  top: 9px;
  right: -37px;
  width: 140px;
  padding: 4px 0;
  transform: rotate(34deg);
  background: rgb(255 255 255 / 20%);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.comparison-table tbody th {
  background: #f7f9fb;
  color: #263a55;
  font-size: 14.5px;
  text-align: left;
}

.comparison-table tbody td {
  color: #546278;
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.65;
}

.comparison-table tbody td:nth-child(2) {
  border-left: 1px solid rgb(7 27 58 / 7%);
  background: #fbfcfd;
}

.comparison-table .shift-cell {
  border-left: 1px solid rgb(244 91 0 / 12%);
  background: #fff8f3;
  color: #1e3450;
  font-weight: 800;
}

.general-mark,
.shift-mark {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin-right: 11px;
  place-items: center;
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.general-mark {
  background: #e9edf1;
  color: #8190a0;
}

.shift-mark {
  background: rgb(244 91 0 / 12%);
  color: var(--orange);
}

.comparison-note {
  margin: 15px 4px 0;
  color: #798596;
  font-size: 11.5px;
  line-height: 1.7;
}

/* Service comparison */
.comparison-section {
  min-height: 1024px;
  padding: 32px 0 13px;
  background:
    radial-gradient(circle at 84% 8%, rgb(225 237 248 / 32%), transparent 20%),
    linear-gradient(180deg, #fff 0%, #fff 78%, #fbfdff 100%);
}

.comparison-section .section-container {
  width: min(calc(100% - 140px), 1396px);
}

.comparison-heading {
  max-width: 1360px;
  margin-bottom: 34px;
}

.comparison-heading .section-eyebrow {
  margin-bottom: 27px;
  font-size: 14px;
  letter-spacing: 0.13em;
}

.comparison-heading .section-eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.comparison-heading h2 {
  font-size: clamp(38px, 2.74vw, 42px);
  line-height: 1.32;
  letter-spacing: 0;
  white-space: nowrap;
}

.comparison-heading > p {
  margin-top: 13px;
  color: #3d516d;
  font-size: 17px;
  line-height: 1.8;
}

.comparison-table-wrap {
  position: relative;
  width: calc(100% - 20px);
  margin: 0 auto;
  overflow: visible;
  border: 1px solid #dce5ec;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 19px 42px rgb(23 54 88 / 12%);
}

.comparison-table-scroll {
  overflow: visible;
  border-radius: inherit;
}

.comparison-table {
  overflow: visible;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 23px;
}

.comparison-table th,
.comparison-table td {
  height: 76px;
  padding: 0 31px;
  border-bottom: 1px solid #dce4eb;
}

.comparison-table thead th {
  height: 84px;
  font-size: 18px;
}

.comparison-table thead th:first-child {
  width: 21%;
  border-radius: 22px 0 0;
  background: linear-gradient(135deg, #edf3f7, #e7eef3);
  color: var(--navy);
  font-size: 15px;
}

.comparison-table .general-heading {
  width: 37%;
  background: linear-gradient(110deg, #4b5d72, #607187);
  color: #fff;
  font-size: 18px;
}

.comparison-table .shift-heading {
  position: relative;
  width: 42%;
  overflow: visible;
  border: 0;
  border-radius: 0 22px 0 0;
  background: linear-gradient(110deg, #ff5b00, #ff7617);
  color: #fff;
  font-size: 23px;
  letter-spacing: 0.02em;
}

.comparison-table .shift-heading .shift-specialized {
  position: absolute;
  top: 2px;
  right: 104px;
  display: grid;
  width: 178px;
  height: 22px;
  padding: 0;
  place-items: center;
  transform: none;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 5px 14px rgb(66 45 25 / 12%);
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0;
}

.comparison-table .shift-heading .shift-title {
  display: block;
  font: inherit;
  transform: none;
}

.comparison-table .shift-heading .comparison-crown {
  position: absolute;
  top: -23px;
  right: -8px;
  z-index: 5;
  display: block;
  width: 104px;
  height: 104px;
  padding: 0;
  overflow: hidden;
  transform: none;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 9px 24px rgb(244 91 0 / 25%);
  pointer-events: none;
}

.comparison-crown img {
  display: block;
  width: 128%;
  height: 128%;
  max-width: none;
  object-fit: cover;
  transform: translate(-10.94%, -10.94%);
}

.comparison-table tbody th {
  background: #fff;
  color: var(--navy);
  font-size: 15px;
}

.comparison-table tbody td {
  color: #425772;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.comparison-table tbody td:nth-child(2) {
  border-left: 1px solid #dde5eb;
  background: #fbfcfd;
}

.comparison-table .shift-cell {
  border-right: 1px solid var(--orange);
  border-left: 1px solid var(--orange);
  background: linear-gradient(90deg, #fffaf6, #fffdfb);
  color: #102947;
  font-size: 16px;
  font-weight: 800;
}

.comparison-table tbody tr:last-child th {
  border-radius: 0 0 0 22px;
}

.comparison-table tbody tr:last-child .shift-cell {
  border-bottom: 1px solid var(--orange);
  border-radius: 0 0 22px 22px;
}

.comparison-row-label {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.comparison-row-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: var(--orange);
}

.comparison-row-icon-target {
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #fff, inset 0 0 0 8px currentColor;
}

.comparison-row-icon-target::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -4px;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-43deg);
}

.comparison-row-icon-chat {
  width: 32px;
  height: 25px;
  margin-bottom: 5px;
  border: 2px solid currentColor;
  border-radius: 13px;
}

.comparison-row-icon-chat::before {
  content: "•••";
  position: absolute;
  top: 0;
  left: 6px;
  font-size: 13px;
  letter-spacing: 1px;
}

.comparison-row-icon-chat::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: skewY(-38deg);
}

.comparison-row-icon-book::before,
.comparison-row-icon-book::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 15px;
  height: 25px;
  border: 2px solid currentColor;
  background: #fff;
}

.comparison-row-icon-book::before {
  left: 2px;
  border-radius: 4px 0 0 2px;
  transform: skewY(7deg);
}

.comparison-row-icon-book::after {
  right: 2px;
  border-radius: 0 4px 2px 0;
  transform: skewY(-7deg);
}

.comparison-row-icon-support {
  width: 28px;
  height: 24px;
  margin: 5px 3px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.comparison-row-icon-support::before,
.comparison-row-icon-support::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 6px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 4px;
  background: #fff;
}

.comparison-row-icon-support::before {
  left: -5px;
}

.comparison-row-icon-support::after {
  right: -5px;
}

.comparison-row-icon-chart {
  border-bottom: 2px solid currentColor;
  background:
    linear-gradient(currentColor, currentColor) 3px 21px / 5px 8px no-repeat,
    linear-gradient(currentColor, currentColor) 13px 14px / 5px 15px no-repeat,
    linear-gradient(currentColor, currentColor) 23px 5px / 5px 24px no-repeat;
}

.comparison-row-icon-flag::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  width: 2px;
  height: 29px;
  background: currentColor;
}

.comparison-row-icon-flag::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 22px;
  height: 14px;
  border: 2px solid currentColor;
  border-left: 0;
  transform: skewY(-8deg);
}

.general-mark,
.shift-mark {
  width: 32px;
  height: 32px;
  margin-right: 17px;
  font-size: 15px;
}

.general-mark {
  background: #e8edf2;
  color: #8290a0;
}

.shift-mark {
  background: var(--orange);
  color: #fff;
}

.comparison-conclusion {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 174px;
  margin-top: 52px;
  grid-template-columns: 480px minmax(0, 1fr);
}

.comparison-conclusion::before {
  content: "↓";
  position: absolute;
  top: -26px;
  left: 50%;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 33px;
  font-weight: 500;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.comparison-conclusion-lead {
  display: flex;
  min-width: 0;
  padding: 20px 23px;
  align-items: center;
  gap: 18px;
  border-radius: 20px 0 0 20px;
  background: linear-gradient(110deg, #061a39, #082c58);
  box-shadow: 0 17px 38px rgb(12 48 85 / 14%);
}

.comparison-conclusion-lead p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.5;
  white-space: nowrap;
}

.comparison-conclusion-lead p strong {
  color: #ff6900;
  font-size: 19px;
}

.comparison-target-icon {
  position: relative;
  display: block;
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 7px 18px rgb(0 0 0 / 18%);
}

.comparison-target-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 120%;
  height: 120%;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, calc(-50% + 1px));
}

.comparison-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--orange);
  border-left: 0;
  border-radius: 0 20px 20px 0;
  background: #fff;
}

.comparison-pillars article {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 20px 13px 15px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.comparison-pillars article + article::before {
  content: "";
  position: absolute;
  top: 27px;
  bottom: 27px;
  left: 0;
  width: 1px;
  background: #dbe3ea;
}

.comparison-pillars article > strong {
  margin-top: 8px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.45;
  white-space: nowrap;
}

.comparison-pillars article > p {
  margin: 7px 0 0;
  color: #304762;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.65;
}

.comparison-feature-icon {
  position: relative;
  display: block;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 12px rgb(15 45 78 / 10%);
}

.comparison-feature-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 128%;
  height: 128%;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
  transform: translate(-50%, calc(-50% + 1px));
}

.comparison-feature-icon-calendar {
  box-shadow:
    inset 0 0 0 1px rgb(244 91 0 / 62%),
    0 0 15px rgb(244 91 0 / 12%);
}

.comparison-note {
  margin: 15px 0 0;
  color: #728196;
  font-size: 10px;
  line-height: 1.65;
  text-align: center;
}

/* Professional coaches */
.coach-section {
  position: relative;
  height: 1086px;
  padding: 28px 0 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgb(255 255 255 / 82%), transparent 38%),
    linear-gradient(180deg, #eef8ff 0%, #f5fbff 100%);
}

.coach-section::before {
  content: none;
}

.coach-section .section-container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 92px), 1356px);
}

.coach-heading {
  max-width: 1280px;
  margin-bottom: 27px;
}

.coach-heading .section-eyebrow {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.coach-heading .section-eyebrow::before,
.coach-heading .section-eyebrow::after {
  content: "";
  position: static;
  width: 34px;
  height: 2px;
  flex: 0 0 34px;
  transform: none;
  background: var(--orange);
}

.coach-heading h2 {
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.coach-heading > p {
  margin-top: 17px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.7;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.coach-card {
  overflow: hidden;
  height: 573px;
  padding: 10px 10px 0;
  border: 0;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 13px 30px rgb(7 27 58 / 10%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgb(7 27 58 / 13%);
}

.coach-card-featured {
  transform: none;
}

.coach-card-featured:hover {
  transform: translateY(-4px);
}

.coach-portrait {
  position: relative;
  height: 264px;
  overflow: hidden;
  border-radius: 8px;
  background: #e9f0f3;
}

.coach-portrait::after {
  content: none;
}

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

.coach-portrait > span {
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 8px;
  display: inline-flex;
  min-width: 118px;
  min-height: 34px;
  padding: 7px 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 999px;
  background: #06265a;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.coach-card-body {
  padding: 9px 18px 16px;
}

.coach-role {
  display: flex;
  gap: 9px;
  margin: 0 0 11px;
  align-items: center;
  color: #173764;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.coach-role strong {
  color: var(--navy);
  font-size: 17px;
  font-weight: 850;
}

.coach-role span {
  color: #8a9ab0;
  font-weight: 400;
}

.coach-card h3 {
  position: relative;
  margin: 0;
  padding-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.coach-card h3::after {
  content: none;
}

.coach-focus {
  margin: 0 0 9px;
  color: #12418a;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
  white-space: nowrap;
}

.coach-description {
  min-height: 74px;
  margin: 0 0 12px;
  color: #243a58;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.7;
}

.coach-tags {
  display: flex;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coach-tags li {
  display: grid;
  min-width: 91px;
  height: 34px;
  padding: 0 12px;
  place-items: center;
  border: 1px solid #7890b2;
  border-radius: 6px;
  background: #fff;
  color: #183d73;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.coach-tags li:last-child {
  flex: 1 1 auto;
}

.coach-matching-bar {
  display: flex;
  width: 890px;
  height: 68px;
  margin: 22px auto 11px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgb(7 27 58 / 8%);
}

.coach-matching-bar p {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.coach-matching-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 48px;
  flex: 0 0 auto;
}

.coach-matching-icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 15px;
  height: 15px;
  border: 2px solid #0b3571;
  border-radius: 50%;
}

.coach-matching-icon::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 30px;
  height: 18px;
  border: 2px solid #0b3571;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.coach-matching-icon i {
  position: absolute;
  top: 1px;
  right: 0;
  width: 28px;
  height: 21px;
  border-radius: 12px;
  background: #cadaea;
}

.coach-matching-icon i::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 7px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 6px 0 #fff, 12px 0 #fff;
}

.coach-matching-icon i::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: -4px;
  border-width: 5px 2px 0 5px;
  border-style: solid;
  border-color: #cadaea transparent transparent #cadaea;
}

.coach-support-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 154px;
  margin-top: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 25px rgb(7 27 58 / 8%);
}

.coach-support-list > div {
  position: relative;
  display: grid;
  grid-template-columns: 54px 104px minmax(0, 1fr);
  gap: 15px;
  padding: 19px 20px;
  align-items: center;
}

.coach-support-list > div + div::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  background: #c4d1df;
}

.coach-support-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, #ff6d0b, #f34d00);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 900;
}

.coach-support-icon {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border-radius: 50%;
  background: #f0f7fd;
}

.coach-support-icon img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.coach-support-list p {
  margin: 0;
}

.coach-support-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
  white-space: nowrap;
}

.coach-support-list small {
  display: block;
  color: #68758a;
  font-size: 14px;
  line-height: 1.65;
}

.coach-support-icon-document i {
  position: relative;
  width: 40px;
  height: 50px;
  border: 3px solid #0a326e;
  border-radius: 3px;
  background: #fff;
}

.coach-support-icon-document i::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 8px;
  width: 20px;
  height: 2px;
  background: #0a326e;
  box-shadow: 0 9px #0a326e, 0 18px #0a326e;
}

.coach-support-icon-document i::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: 3px;
  width: 27px;
  height: 6px;
  transform: rotate(-48deg);
  border: 2px solid #0a326e;
  border-radius: 5px;
  background: #fff;
}

/* Case stories */
.voice-section {
  height: 1055px;
  padding: 34px 0 37px;
  overflow: hidden;
  background: #fff;
}

.voice-section .section-container {
  width: min(calc(100% - 270px), 1222px);
}

.case-heading {
  max-width: 1040px;
  margin-bottom: 18px;
}

.case-heading .section-eyebrow {
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.case-heading .section-eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.case-heading h2 {
  font-size: 47px;
  line-height: 1.18;
  letter-spacing: 0.02em;
}

.case-heading > p {
  margin-top: 12px;
  color: #334866;
  font-size: 14px;
  line-height: 1.65;
}

.model-case-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 606px;
  height: 39px;
  max-width: 100%;
  margin: 0 auto 13px;
  padding: 0 14px;
  border: 1px solid rgb(7 27 58 / 8%);
  border-radius: 999px;
  background: #f5f7f9;
}

.model-case-notice > span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #6d7d8f;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
}

.model-case-notice p {
  margin: 0;
  color: #6a7687;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 28px;
}

.case-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  height: 581px;
  border: 1px solid rgb(7 27 58 / 7%);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 11px 28px rgb(7 27 58 / 8%);
}

.case-card-featured {
  border-color: rgb(7 27 58 / 7%);
  box-shadow: 0 11px 28px rgb(7 27 58 / 8%);
}

.case-visual {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #edf2f4;
}

.case-visual::after {
  content: none;
}

.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform-origin: center top;
  transition: transform 280ms ease;
}

.case-card:hover .case-visual img {
  transform: scale(1.025);
}

.case-visual > span {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 8px;
  display: inline-flex;
  min-width: 83px;
  min-height: 31px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 999px;
  background: #08275a;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.case-body {
  display: flex;
  padding: 12px 19px 14px;
  flex: 1;
  flex-direction: column;
}

.case-meta {
  display: flex;
  min-height: 22px;
  margin-bottom: 7px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.case-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.case-type img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.case-profile {
  display: flex;
  gap: 6px;
  margin: 0;
  align-items: center;
  color: #637187;
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
}

.case-profile span {
  display: inline;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.case-profile span:last-child {
  background: transparent;
  color: inherit;
}

.case-profile span + span::before {
  content: "/";
  margin-right: 6px;
  color: #a6afbb;
}

.case-card h3 {
  min-height: 0;
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.case-change {
  display: grid;
  grid-template-rows: auto 28px auto;
  gap: 0;
  margin-top: 14px;
}

.case-before,
.case-after {
  display: grid;
  height: 86px;
  padding: 9px 12px;
  grid-template-columns: 55px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-radius: 11px;
}

.case-before {
  border: 1px solid rgb(7 27 58 / 8%);
  background: #f6f7f9;
}

.case-after {
  border: 1px solid rgb(244 91 0 / 18%);
  background: #fff3e9;
}

.case-state-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.case-before small,
.case-after small {
  display: block;
  margin-bottom: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.case-before small {
  color: #8993a0;
}

.case-after small {
  color: var(--orange);
}

.case-before p,
.case-after p {
  margin: 0;
  color: #47576c;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.case-after p {
  color: #263d59;
  font-weight: 750;
}

.case-change-arrow {
  width: 0;
  height: 0;
  margin: auto;
  align-self: center;
  justify-self: center;
  border-top: 15px solid var(--orange);
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}

.case-card blockquote {
  position: relative;
  display: flex;
  min-height: 57px;
  margin: 8px 0 8px;
  padding: 7px 26px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: #fffdfb;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 750;
  line-height: 1.55;
  text-align: center;
}

.case-card blockquote::before,
.case-card blockquote::after {
  position: absolute;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.case-card blockquote::before {
  content: "“";
  top: 10px;
  left: 7px;
}

.case-card blockquote::after {
  content: "”";
  right: 7px;
  bottom: 1px;
}

.case-focus {
  margin-top: auto;
  padding-top: 0;
  border-top: 0;
}

.case-focus > span {
  display: none;
}

.case-focus ul {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-focus li {
  display: grid;
  height: 29px;
  flex: 1 1 auto;
  padding: 0 9px;
  place-items: center;
  border: 1px solid #d4dbe4;
  border-radius: 6px;
  background: #f2f5f8;
  color: #47586e;
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
}

.case-summary {
  position: relative;
  display: flex;
  height: 112px;
  align-items: center;
  gap: 74px;
  margin-top: 27px;
  padding: 0 27px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(110deg, #071b3a 0%, #10365f 100%);
  box-shadow: 0 14px 34px rgb(7 27 58 / 13%);
  color: var(--white);
}

.case-summary::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 11px;
  width: 190px;
  height: 82px;
  clip-path: polygon(0 86%, 39% 54%, 58% 69%, 86% 24%, 73% 24%, 96% 0, 97% 37%, 89% 29%, 59% 88%, 39% 67%, 0 100%);
  background: #9aadc4;
  opacity: 0.2;
}

.case-summary > span {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: grid;
  width: 182px;
  height: 39px;
  padding: 0 12px;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.case-summary p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgb(255 255 255 / 88%);
  font-size: 21px;
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.case-summary strong {
  color: #ff6a13;
  font-size: 25px;
}

/* Course and pricing */
.pricing-section {
  position: relative;
  height: 1086px;
  overflow: hidden;
  padding: 34px 0 27px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: -202px;
  right: -135px;
  width: 340px;
  height: 340px;
  border: 70px solid rgb(244 91 0 / 4%);
  border-radius: 50%;
}

.pricing-section .section-container {
  width: min(calc(100% - 130px), 1318px);
}

.pricing-heading {
  position: relative;
  z-index: 1;
  max-width: none;
  margin-bottom: 0;
}

.pricing-heading .section-eyebrow {
  margin-bottom: 15px;
  font-size: 13px;
}

.pricing-heading .section-eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.pricing-heading h2 {
  font-size: 46px;
  line-height: 1.3;
  letter-spacing: 0.015em;
}

.pricing-heading > p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.55;
}

.pricing-card {
  position: relative;
  z-index: 1;
  display: grid;
  height: 586px;
  grid-template-columns: 40.75% 59.25%;
  margin-top: 47px;
  overflow: hidden;
  border: 1px solid rgb(7 27 58 / 6%);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 22px 54px rgb(7 27 58 / 14%);
}

.pricing-summary {
  position: relative;
  display: flex;
  min-height: 0;
  padding: 40px 47px 25px;
  overflow: hidden;
  flex-direction: column;
  background: linear-gradient(145deg, #071b3a 0%, #092a52 67%, #0d3a6b 100%);
  color: var(--white);
}

.pricing-summary::before {
  content: "";
  position: absolute;
  top: -78px;
  right: -83px;
  width: 280px;
  height: 280px;
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgb(255 255 255 / 3%),
    0 0 0 90px rgb(255 255 255 / 2.5%);
}

.pricing-plan-name,
.pricing-amount,
.pricing-facts {
  position: relative;
  z-index: 1;
}

.pricing-plan-name > span,
.pricing-details-head > span {
  display: inline-flex;
  min-height: 27px;
  padding: 6px 11px;
  align-items: center;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.pricing-plan-name > span {
  min-height: 34px;
  padding: 8px 17px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
}

.pricing-plan-name h3 {
  margin: 19px 0 10px;
  font-size: 32px;
  line-height: 1.42;
  letter-spacing: 0.02em;
}

.pricing-plan-name p {
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.7;
}

.pricing-amount {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.pricing-amount > span {
  display: block;
  margin-bottom: 2px;
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  font-weight: 750;
}

.pricing-amount p {
  display: flex;
  margin: 0;
  align-items: flex-end;
  gap: 7px;
  color: var(--white);
  line-height: 1;
}

.pricing-amount strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.pricing-amount b {
  padding-bottom: 10px;
  font-size: 27px;
}

.pricing-amount small {
  display: block;
  margin-top: 7px;
  color: rgb(255 255 255 / 82%);
  font-size: 12px;
  font-weight: 700;
}

.pricing-amount em {
  display: inline-flex;
  height: 35px;
  margin-top: 13px;
  padding: 0 13px;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 36%);
  border-radius: 4px;
  color: rgb(255 255 255 / 88%);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.pricing-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.pricing-facts > div {
  display: flex;
  min-width: 0;
  padding: 0 13px;
  align-items: center;
  gap: 9px;
  border-left: 1px solid rgb(255 255 255 / 13%);
}

.pricing-facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.pricing-facts img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  object-fit: cover;
}

.pricing-facts p,
.pricing-facts strong,
.pricing-facts small {
  display: block;
  margin: 0;
}

.pricing-facts strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.35;
  white-space: nowrap;
}

.pricing-facts small {
  margin-top: 4px;
  color: rgb(255 255 255 / 58%);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.3;
  white-space: nowrap;
}

.pricing-details {
  padding: 39px 35px 20px;
}

.pricing-details-head {
  display: flex;
  height: 54px;
  padding: 0 7px 20px;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgb(7 27 58 / 11%);
}

.pricing-details-head > span {
  background: #fff0e7;
  color: var(--orange);
}

.pricing-details-head h3 {
  margin: 0;
  font-size: 22px;
}

.pricing-includes {
  display: grid;
  height: 471px;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.pricing-includes-row {
  display: grid;
  grid-template-columns: 137px repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid rgb(7 27 58 / 9%);
}

.pricing-includes-row:last-child {
  border-bottom: 0;
}

.pricing-includes-label {
  display: flex;
  padding: 12px 12px 11px 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.pricing-includes-label img {
  width: 80px;
  height: 80px;
  margin: -8px 0 -2px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.pricing-includes-label strong,
.pricing-includes-label small {
  display: block;
}

.pricing-includes-label strong {
  font-size: 15px;
  line-height: 1.4;
}

.pricing-includes-label small {
  margin-top: 4px;
  color: #5f7086;
  font-size: 10.5px;
  font-weight: 650;
}

.pricing-include {
  display: flex;
  padding: 0 13px;
  align-items: center;
  gap: 12px;
  border-left: 1px solid rgb(7 27 58 / 10%);
}

.pricing-include p {
  margin: 0;
}

.include-check {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  place-items: center;
  border: 1.5px solid #ff792e;
  border-radius: 50%;
  background: #fffaf6;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 0.45px currentColor;
}

.pricing-include strong,
.pricing-include small {
  display: block;
}

.pricing-include strong {
  font-size: 14.5px;
  line-height: 1.45;
  white-space: nowrap;
}

.pricing-include small {
  margin-top: 7px;
  color: #718095;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.65;
}

.pricing-action {
  display: grid;
  height: 181px;
  grid-template-columns: 40% minmax(0, 1fr);
  margin-top: 14px;
  padding: 27px 39px 20px 26px;
  align-items: center;
  gap: 32px;
  border: 1px solid rgb(7 27 58 / 6%);
  border-radius: 22px;
  background: #fffaf6;
  box-shadow: 0 16px 42px rgb(7 27 58 / 11%);
}

.pricing-action-intro {
  display: flex;
  align-items: center;
  gap: 19px;
}

.pricing-action-intro > img {
  width: 108px;
  height: 108px;
  margin-right: -18px;
  margin-left: -14px;
  flex: 0 0 108px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.pricing-action-intro span,
.pricing-action-intro strong {
  display: block;
}

.pricing-action-intro span {
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
}

.pricing-action-intro strong {
  font-size: 16px;
  line-height: 1.6;
}

.pricing-action-main {
  align-self: stretch;
}

.pricing-cta,
.session-cta {
  display: flex;
  min-height: 72px;
  padding: 14px 19px 14px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 14px;
  background: linear-gradient(110deg, #ff7200 0%, #f25300 68%, #ee4a00 100%);
  box-shadow: 0 10px 26px rgb(244 91 0 / 23%);
  color: var(--white);
  font-size: 17px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pricing-cta {
  min-height: 94px;
  padding: 14px 28px 14px 94px;
  border: 2px solid rgb(255 255 255 / 88%);
  border-radius: 15px;
  font-size: 25px;
  box-shadow: 0 11px 25px rgb(244 91 0 / 28%);
}

.pricing-cta > span:last-child,
.session-cta > span:last-child {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
}

.pricing-cta > span:last-child {
  position: relative;
  width: 53px;
  height: 53px;
  flex-basis: 53px;
  font-size: 0;
}

.pricing-cta > span:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 27px;
  height: 16px;
  background: currentColor;
  clip-path: polygon(0 39%, 61% 39%, 61% 8%, 100% 50%, 61% 92%, 61% 61%, 0 61%);
  transform: translate(-54%, -50%);
}

.pricing-cta > span:last-child::after {
  content: none;
}

.pricing-cta:hover,
.pricing-cta:focus-visible,
.session-cta:hover,
.session-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 31px rgb(244 91 0 / 30%);
}

.pricing-action-main > p {
  margin: 10px 0 0;
  color: #6e7c8f;
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
}

.pricing-note {
  margin: 33px 0 0;
  color: #7d8998;
  font-size: 10.5px;
  line-height: 1.7;
  text-align: center;
}

/* Free roadmap session */
.session-section {
  position: relative;
  min-height: 1080px;
  padding: 48px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 93% 12%, rgb(244 91 0 / 5%) 0 5px, transparent 6px),
    linear-gradient(180deg, #ffffff 0%, #fffefa 100%);
}

.session-section::before {
  content: "";
  position: absolute;
  top: 220px;
  left: -132px;
  width: 250px;
  height: 250px;
  border: 34px solid rgb(244 91 0 / 7%);
  border-radius: 50%;
}

.session-section::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 250px;
  width: 145px;
  height: 145px;
  opacity: 0.36;
  background-image: radial-gradient(circle, rgb(244 91 0 / 45%) 1.4px, transparent 1.6px);
  background-size: 15px 15px;
}

.session-section .section-container {
  position: relative;
  z-index: 1;
}

.session-eyebrow {
  display: flex;
  width: max-content;
  margin: 0 auto 52px;
  font-size: 15px;
}

.session-eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.session-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(490px, 0.91fr);
  align-items: center;
  gap: 76px;
}

.session-intro .section-heading {
  margin-bottom: 0;
}

.session-intro .section-heading h2 {
  font-size: clamp(44px, 3.5vw, 56px);
  line-height: 1.55;
}

.session-intro .section-heading > p {
  max-width: 650px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.9;
}

.session-gift {
  position: relative;
  display: flex;
  min-height: 258px;
  padding: 48px 40px 30px;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border: 1px solid #cfdbe6;
  border-radius: 24px;
  background: linear-gradient(135deg, rgb(255 255 255 / 98%) 0 72%, #fff8f2 100%);
  box-shadow: 0 16px 38px rgb(7 27 58 / 7%);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.session-gift:hover,
.session-gift:focus-visible {
  outline: none;
  box-shadow: 0 20px 46px rgb(7 27 58 / 12%);
  transform: translateY(-3px);
}

.session-gift::after {
  content: "90";
  position: absolute;
  right: -18px;
  bottom: -26px;
  color: rgb(7 27 58 / 4.5%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 166px;
  font-weight: 900;
  line-height: 1;
}

.session-gift-label {
  position: absolute;
  top: 18px;
  left: 24px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.session-gift-icon {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 132px;
  flex: 0 0 112px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.session-gift > div:last-child {
  position: relative;
  z-index: 1;
}

.session-gift small,
.session-gift strong {
  display: block;
}

.session-gift small {
  margin-top: 8px;
  color: #6d7b8e;
  font-size: 13px;
  font-weight: 700;
}

.session-gift strong {
  font-size: 26px;
  line-height: 1.5;
}

.session-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 76px;
  margin: 48px 0 0;
  padding: 0;
  counter-reset: none;
  list-style: none;
}

.session-steps li {
  position: relative;
  min-height: 290px;
  padding: 31px 32px 29px;
  overflow: visible;
  border: 1px solid #d4dee8;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 74%, #fbfdff 100%);
  box-shadow: 0 14px 34px rgb(7 27 58 / 7%);
}

.session-steps li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: auto;
  left: calc(100% + 38px);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px var(--white);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.session-steps li:not(:last-child)::before {
  content: none;
}

.session-step-number {
  position: absolute;
  top: 21px;
  right: 22px;
  color: #e7ebef;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.session-step-top {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 15px;
}

.session-step-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  overflow: hidden;
  border-radius: 50%;
}

.session-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.session-step-time {
  display: inline-flex;
  min-height: 29px;
  margin: 0;
  padding: 5px 12px;
  align-items: center;
  border: 1px solid #ff8a45;
  border-radius: 999px;
  background: var(--white);
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
}

.session-steps h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.45;
}

.session-steps li > p:last-child {
  margin: 0;
  color: #617085;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.8;
}

.session-assurance {
  display: flex;
  margin: 34px 0 30px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
}

.session-assurance::before {
  content: "✓";
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  place-items: center;
  border: 2px solid #ff792e;
  border-radius: 50%;
  background: #fffaf6;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 0.5px currentColor;
}

.session-action {
  display: grid;
  min-height: 214px;
  grid-template-columns: minmax(360px, 0.82fr) minmax(250px, 0.58fr) minmax(440px, 1.1fr);
  padding: 32px 36px;
  align-items: center;
  gap: 30px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 24px;
  background:
    linear-gradient(155deg, transparent 0 54%, rgb(35 74 119 / 25%) 54% 71%, transparent 71%),
    linear-gradient(120deg, #071b3a 0%, #0b2a52 100%);
  box-shadow: 0 20px 52px rgb(7 27 58 / 17%);
  color: var(--white);
}

.session-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.session-meta > div {
  display: flex;
  min-height: 112px;
  padding: 0 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgb(255 255 255 / 14%);
  text-align: center;
}

.session-meta > div:first-child {
  padding-left: 0;
}

.session-meta strong {
  display: block;
}

.session-meta img {
  width: 58px;
  height: 58px;
  margin-bottom: 6px;
  object-fit: cover;
  filter: grayscale(1) invert(1) contrast(3);
  mix-blend-mode: screen;
}

.session-meta strong {
  font-size: 15px;
  white-space: nowrap;
}

.session-action-copy {
  padding-left: 0;
  border-left: 0;
}

.session-action-copy strong {
  display: block;
  max-width: 260px;
  font-size: 22px;
  line-height: 1.65;
}

.session-action-main > p {
  margin: 11px 0 0;
  color: rgb(255 255 255 / 55%);
  font-size: 11px;
  font-weight: 650;
  text-align: center;
}

.session-cta {
  min-height: 92px;
  padding: 14px 20px 14px 46px;
  border-radius: 15px;
  font-size: 23px;
  box-shadow: 0 11px 26px rgb(244 91 0 / 28%);
}

.session-cta > span:last-child {
  position: relative;
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  font-size: 0;
}

.session-cta > span:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 27px;
  height: 16px;
  background: currentColor;
  clip-path: polygon(0 39%, 61% 39%, 61% 8%, 100% 50%, 61% 92%, 61% 61%, 0 61%);
  transform: translate(-54%, -50%);
}

.session-cta > span:last-child::after {
  content: none;
}

/* Frequently asked questions */
.faq-section {
  position: relative;
  min-height: 930px;
  padding: 70px 0 76px;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 64%, #fbfcfd 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 76px;
}

.faq-heading {
  position: static;
  margin-bottom: 0;
}

.faq-heading .section-eyebrow {
  margin-bottom: 28px;
  font-size: 14px;
  white-space: nowrap;
}

.faq-heading .section-eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.faq-heading h2 {
  font-size: clamp(44px, 3.35vw, 54px);
  line-height: 1.5;
}

.faq-heading > p {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.95;
}

.faq-guide {
  margin-top: 43px;
  padding: 28px 28px 24px;
  border: 1px solid rgb(244 91 0 / 8%);
  border-left: 5px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(135deg, #fffaf5 0%, #ffffff 100%);
  box-shadow: 0 13px 34px rgb(7 27 58 / 6%);
}

.faq-guide-main {
  display: flex;
  align-items: center;
  gap: 21px;
}

.faq-guide-main > img {
  width: 104px;
  height: 104px;
  margin: -12px 0 -10px -12px;
  flex: 0 0 104px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.faq-guide-main span,
.faq-guide-main p,
.faq-guide > a {
  display: block;
}

.faq-guide-main span {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 850;
}

.faq-guide-main p {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.8;
}

.faq-guide > a {
  margin-top: 23px;
  padding-top: 19px;
  border-top: 1px solid rgb(7 27 58 / 12%);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.faq-guide > a span {
  margin-left: 25px;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
}

.faq-content {
  min-width: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid #e0e6eb;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 8px 24px rgb(7 27 58 / 4.5%);
}

.faq-list details[open] {
  border-color: rgb(244 91 0 / 26%);
  border-left: 5px solid var(--orange);
  background: linear-gradient(135deg, #fffaf6 0%, #ffffff 100%);
  box-shadow: 0 12px 31px rgb(244 91 0 / 7%);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 91px;
  padding: 18px 75px 18px 28px;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 26px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #edf4f8;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 500;
  transform: translateY(-50%);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--orange);
  color: var(--white);
  transform: translateY(-50%) rotate(180deg);
}

.faq-list details[open] summary {
  min-height: 96px;
  padding-bottom: 18px;
}

.faq-number {
  display: grid;
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
  place-items: center;
  border-radius: 14px;
  background: #fff0e7;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.faq-list summary strong {
  font-size: 17px;
  line-height: 1.6;
}

.faq-answer {
  display: flex;
  margin: 0 26px;
  padding: 0 22px 30px 50px;
  align-items: flex-start;
  gap: 21px;
  border-top: 1px solid rgb(7 27 58 / 12%);
}

.faq-answer > span {
  display: grid;
  width: 43px;
  height: 43px;
  margin-top: 25px;
  flex: 0 0 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.faq-answer p {
  margin: 24px 0 0;
  color: #586980;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.faq-contact {
  display: flex;
  margin-top: 26px;
  align-items: center;
  gap: 13px;
  color: #53647a;
  font-size: 16px;
  font-weight: 650;
}

.faq-contact::before,
.faq-contact::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #cbd3da;
}

.faq-contact img {
  width: 72px;
  height: 72px;
  margin: -14px;
  flex: 0 0 72px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.faq-contact em {
  color: var(--orange);
  font-style: normal;
  font-weight: 850;
}

.faq-contact > span:last-of-type {
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

/* Final call to action */
.final-cta-section {
  position: relative;
  padding: 54px 0;
  overflow: hidden;
  background: #020d24;
}

.final-cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(390px, 0.82fr);
  min-height: 680px;
  padding: 58px 62px;
  align-items: center;
  gap: 52px;
  overflow: hidden;
  border: 1px solid rgb(132 174 214 / 48%);
  border-radius: 36px;
  background:
    radial-gradient(circle at 41% 30%, rgb(18 79 142 / 23%), transparent 42%),
    linear-gradient(118deg, #061a39 0%, #08274f 58%, #071a39 100%);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 2%),
    0 30px 80px rgb(0 9 26 / 36%);
  color: var(--white);
}

.final-cta-panel::before,
.final-cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-panel::before {
  top: -370px;
  right: -330px;
  width: 680px;
  height: 680px;
  border: 1px solid rgb(104 166 224 / 22%);
  box-shadow: 0 0 0 76px rgb(71 133 196 / 4%),
    0 0 0 152px rgb(71 133 196 / 2.5%);
}

.final-cta-panel::after {
  bottom: -315px;
  left: -255px;
  width: 500px;
  height: 500px;
  border: 1px solid rgb(244 91 0 / 22%);
  box-shadow: 0 0 0 105px rgb(32 97 165 / 8%);
}

.final-cta-content,
.final-cta-output {
  position: relative;
  z-index: 1;
}

.final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: #ff7219;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.final-cta-eyebrow::before,
.final-cta-eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  flex: 0 0 34px;
  background: var(--orange);
}

.final-cta-content h2 {
  margin: 0;
  font-size: clamp(34px, 2.84vw, 41px);
  line-height: 1.82;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.final-cta-content h2 em {
  color: #ff6911;
  font-style: normal;
}

.final-cta-content > p {
  margin: 27px 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.final-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.final-cta-points li {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 17px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(177 202 229 / 38%);
  border-radius: 999px;
  background: rgb(2 18 45 / 28%);
  color: rgb(255 255 255 / 91%);
  font-size: 13px;
  font-weight: 700;
}

.final-cta-points li svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: #ff6911;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.final-cta-button {
  display: flex;
  width: min(100%, 610px);
  min-height: 88px;
  margin-top: 32px;
  padding: 14px 18px 14px 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 2px solid rgb(255 255 255 / 43%);
  border-radius: 17px;
  background: linear-gradient(110deg, #ff7a00 0%, #ff5800 58%, #ed4500 100%);
  box-shadow: 0 0 28px rgb(244 91 0 / 22%),
    0 16px 38px rgb(0 0 0 / 23%);
  color: var(--white);
  font-size: 23px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.final-cta-button > span:last-child {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0;
}

.final-cta-button > span:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 29px;
  height: 17px;
  background: currentColor;
  clip-path: polygon(0 39%, 61% 39%, 61% 8%, 100% 50%, 61% 92%, 61% 61%, 0 61%);
  transform: translate(-54%, -50%);
}

.final-cta-button > span:last-child::after {
  content: none;
}

.final-cta-button:hover,
.final-cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 17px 37px rgb(244 91 0 / 32%);
}

.final-cta-content > small {
  display: flex;
  width: min(100%, 610px);
  margin-top: 15px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgb(255 255 255 / 72%);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.final-cta-content > small i {
  width: 2px;
  height: 18px;
  background: #ff6911;
}

.final-cta-output {
  align-self: center;
  min-height: 566px;
  padding: 31px 30px 24px;
  overflow: hidden;
  border: 1px solid rgb(163 194 225 / 35%);
  border-radius: 28px;
  background: linear-gradient(145deg, rgb(18 50 89 / 78%), rgb(5 26 58 / 90%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 9%),
    0 24px 52px rgb(0 4 15 / 23%);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.final-cta-output:hover,
.final-cta-output:focus-visible {
  outline: none;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%),
    0 30px 62px rgb(0 4 15 / 30%);
  transform: translateY(-3px);
}

.final-cta-output-head {
  display: flex;
  min-height: 64px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.final-cta-output-copy > span,
.final-cta-output-copy > p {
  display: block;
  margin: 0;
}

.final-cta-output-copy > span {
  color: #ff6a10;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.final-cta-output-copy > p {
  margin-top: 7px;
  color: rgb(255 255 255 / 74%);
  font-size: 14px;
  font-weight: 600;
}

.final-cta-pdf {
  position: relative;
  display: grid;
  width: 43px;
  height: 55px;
  margin: -2px 5px 0 0;
  flex: 0 0 43px;
  place-items: end center;
  padding-bottom: 9px;
  overflow: hidden;
  border-radius: 3px 3px 6px 6px;
  background: linear-gradient(145deg, #ff8a2a, #ff4d00 72%);
  box-shadow: 0 8px 18px rgb(244 91 0 / 24%);
  color: var(--white);
}

.final-cta-pdf::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: linear-gradient(225deg, rgb(255 255 255 / 94%) 48%, #ffb37d 50%);
}

.final-cta-pdf b {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.final-cta-roadmap-picture {
  display: block;
  width: min(100%, 392px);
  aspect-ratio: 900 / 1125;
  margin: 2px auto 0;
  overflow: hidden;
}

.final-cta-roadmap-picture img {
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  object-fit: contain;
  transform: scale(1.17);
  transform-origin: center;
}

/* Footer */
.site-footer {
  position: relative;
  isolation: isolate;
  padding: 0 0 28px;
  overflow: hidden;
  border-top: 1px solid rgb(123 169 218 / 18%);
  background:
    radial-gradient(circle at 91% 8%, rgb(244 91 0 / 17%), transparent 25%),
    radial-gradient(circle at 10% 58%, rgb(25 92 157 / 20%), transparent 31%),
    linear-gradient(158deg, #071e3e 0%, #04152f 55%, #020d20 100%);
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgb(255 255 255 / 8%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 8%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.site-footer::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: min(38%, 560px);
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff6a0c 24%, #ff8d45 76%, transparent);
  transform: translateX(-50%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 96px), 1320px);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  gap: 76px;
  padding: 82px 0 70px;
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.footer-message {
  min-width: 0;
}

.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #ff7a2d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.footer-kicker::before,
.footer-kicker::after {
  content: "";
  width: 34px;
  height: 2px;
  flex: 0 0 34px;
  background: #ff6a0c;
}

.footer-message h2 {
  margin: 23px 0 0;
  color: var(--white);
  font-size: clamp(38px, 3.25vw, 52px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.footer-message h2 em {
  color: #ff7624;
  font-style: normal;
}

.footer-message > p {
  margin: 24px 0 0;
  color: rgb(255 255 255 / 63%);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
}

.footer-scene-panel {
  position: relative;
  min-height: 232px;
  padding: 30px 34px 27px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 4%, rgb(244 91 0 / 17%), transparent 35%),
    linear-gradient(145deg, rgb(18 53 94 / 74%), rgb(5 25 55 / 88%));
  box-shadow: 0 24px 52px rgb(0 5 18 / 25%), inset 0 1px 0 rgb(255 255 255 / 7%);
}

.footer-scene-panel::before {
  content: "";
  position: absolute;
  top: -112px;
  right: -93px;
  width: 230px;
  height: 230px;
  border: 1px solid rgb(244 91 0 / 16%);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgb(244 91 0 / 3%), 0 0 0 76px rgb(244 91 0 / 2%);
}

.footer-scene-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-scene-head small {
  color: #ff7a2d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.footer-scene-head > span {
  padding: 7px 10px 6px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 999px;
  color: rgb(255 255 255 / 42%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-scene-list {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.footer-scene-list li {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  min-height: 49px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-scene-list li > span {
  color: #ff7a2d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-scene-list strong {
  color: rgb(255 255 255 / 85%);
  font-size: 13px;
  font-weight: 700;
}

.footer-scene-list small {
  color: rgb(255 255 255 / 36%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(380px, 1.1fr) minmax(480px, 0.9fr);
  gap: 90px;
  padding: 57px 0 54px;
  align-items: start;
}

.footer-brand-block {
  min-width: 0;
}

.footer-brand {
  display: block;
  width: 284px;
  height: 73px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 12px 32px rgb(0 5 18 / 24%);
}

.footer-brand-image {
  display: block;
  width: 100%;
  height: 100%;
  background-image: image-set(
    url("img/shift-english-logo.webp") type("image/webp"),
    url("img/shift-english-logo.png") type("image/png")
  );
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 112% auto;
}

.footer-brand-block > p {
  width: 284px;
  margin: 17px 0 0;
  color: rgb(255 255 255 / 56%);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-align: right;
}

.footer-proof-list {
  display: flex;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.footer-proof-list li {
  min-width: 0;
  padding: 0 25px;
  border-left: 1px solid rgb(255 255 255 / 13%);
}

.footer-proof-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-proof-list strong,
.footer-proof-list span {
  display: block;
}

.footer-proof-list strong {
  color: #ff7a2d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.footer-proof-list span {
  margin-top: 8px;
  color: rgb(255 255 255 / 56%);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
}

.footer-nav-group {
  display: grid;
  align-content: start;
  gap: 15px;
}

.footer-nav-group > span {
  margin-bottom: 10px;
  color: #ff7624;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.footer-nav a {
  position: relative;
  width: fit-content;
  padding: 2px 20px 2px 0;
  color: rgb(255 255 255 / 76%);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.025em;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a::after {
  content: "›";
  position: absolute;
  top: 0;
  right: 0;
  color: rgb(255 122 45 / 72%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 72px;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 35%);
  font-family: Arial, Helvetica, sans-serif;
}

.footer-bottom > small {
  font-size: 9px;
  letter-spacing: 0.03em;
}

.footer-bottom > span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.footer-top-link {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 15px;
  color: rgb(255 255 255 / 62%);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  transition: color 180ms ease;
}

.footer-top-link i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  color: #ff7a2d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 900;
  font-style: normal;
  transition: transform 180ms ease, border-color 180ms ease;
}

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

.footer-top-link:hover i,
.footer-top-link:focus-visible i {
  border-color: rgb(255 122 45 / 60%);
  transform: translateY(-3px);
}

.footer-wordmark {
  position: relative;
  z-index: 0;
  width: max-content;
  margin: 12px auto -58px;
  color: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(94px, 11.3vw, 176px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  -webkit-text-stroke: 1px rgb(255 255 255 / 10%);
  user-select: none;
}

/* Tablet/compact desktop adjustments */
@media (max-width: 1240px) {
  .header-inner {
    width: min(calc(100% - 40px), 1180px);
    gap: 20px;
  }

  .brand {
    flex-basis: 238px;
    height: 60px;
  }

  .global-nav {
    gap: 20px;
  }

  .header-cta {
    width: 250px;
    min-width: 250px;
    height: 78px;
  }

  .hero-board {
    left: 3vw;
    width: 49vw;
  }

  .benefit-wrap {
    width: calc(100% - 48px);
  }

  .benefit-item {
    gap: 16px;
    padding-inline: 14px;
  }

  .benefit-icon {
    width: 64px;
    height: 64px;
  }

  .section-container {
    width: calc(100% - 56px);
  }

  .problem-layout {
    gap: 34px;
  }

  .problem-card {
    padding: 24px 22px;
  }

  .method-flow {
    grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr) 64px minmax(0, 1fr);
  }

  .method-card {
    padding-right: 23px;
    padding-left: 23px;
  }

  .roadmap-timeline {
    --roadmap-arrow-offset: 3.33px;
    gap: 20px;
  }

  .roadmap-phase {
    padding-right: 23px;
    padding-left: 23px;
  }

  .comparison-table th,
  .comparison-table td {
    padding-right: 19px;
    padding-left: 19px;
  }

  .coach-grid {
    gap: 19px;
  }

  .coach-card-body {
    padding-right: 22px;
    padding-left: 22px;
  }

  .coach-support-list > div {
    padding-right: 20px;
    padding-left: 20px;
  }

  .case-grid {
    gap: 18px;
  }

  .case-body {
    padding-right: 21px;
    padding-left: 21px;
  }

  .pricing-summary,
  .pricing-details {
    padding-right: 36px;
    padding-left: 36px;
  }

  .pricing-action {
    padding-right: 30px;
    padding-left: 30px;
  }

  .session-intro {
    gap: 40px;
  }

  .session-steps {
    gap: 60px;
  }

  .session-steps li:not(:last-child)::after {
    left: calc(100% + 30px);
  }

  .session-steps li {
    padding-right: 24px;
    padding-left: 24px;
  }

  .session-action {
    grid-template-columns: minmax(0, 0.78fr) minmax(240px, 0.62fr) minmax(360px, 1.05fr);
    padding-right: 29px;
    padding-left: 29px;
    gap: 8px 24px;
  }

  .faq-layout {
    gap: 50px;
  }

  .final-cta-panel {
    padding-right: 51px;
    padding-left: 51px;
    gap: 45px;
  }

  .final-cta-content h2 {
    font-size: 35px;
  }

  .footer-inner {
    width: min(calc(100% - 56px), 1180px);
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.68fr);
    gap: 45px;
  }

  .footer-scene-panel {
    padding-right: 28px;
    padding-left: 28px;
  }

  .footer-main {
    grid-template-columns: minmax(355px, 1fr) minmax(420px, 0.92fr);
    gap: 55px;
  }

  .footer-proof-list li {
    padding-inline: 18px;
  }
}

/* Smartphone layout */
@media (max-width: 767px) {
  /* Smartphone: shared foundation */
  html {
    scroll-padding-top: 82px;
  }

  body {
    min-width: 0;
    overflow-x: hidden;
  }

  body.menu-open {
    overflow: hidden;
  }

  .sp--only {
    display: initial;
  }

    .sp-only{
    display: block;
  }

   .pc-only{
    display: none;
  }

  /* Smartphone: header, navigation, fixed CTA, and demo modals */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 70px;
    background: rgb(255 255 255 / 98%);
    box-shadow: 0 5px 18px rgb(7 27 58 / 7%);
  }

  .header-inner {
    width: calc(100% - 24px);
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    width: min(100%, 205px);
    max-width: 205px;
    min-width: 0;
    height: 52px;
  }

  .brand-image {
    background-position: left center;
    background-size: 100% auto;
  }

  .global-nav {
    position: fixed;
    z-index: 90;
    inset: 70px 0 0;
    display: flex;
    height: calc(100dvh - 70px);
    padding: 25px 24px max(28px, env(safe-area-inset-bottom));
    overflow-y: auto;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    visibility: hidden;
    background:
      radial-gradient(circle at 100% 0%, rgb(244 91 0 / 7%), transparent 32%),
      linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    opacity: 0;
    transform: translateY(-9px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    white-space: normal;
  }

  .site-header.is-menu-open .global-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .global-nav > a {
    display: flex;
    width: 100%;
    min-height: 58px;
    padding: 16px 32px 16px 5px;
    align-items: center;
    border-bottom: 1px solid rgb(7 27 58 / 9%);
    color: var(--navy);
    font-size: 15px;
    font-weight: 750;
  }

  .global-nav > a::after {
    content: "›";
    top: 50%;
    right: 5px;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    background: none;
    color: var(--orange);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    transform: translateY(-52%);
  }

  .global-nav > a:hover::after,
  .global-nav > a:focus-visible::after {
    transform: translateY(-52%) translateX(3px);
  }

  .global-nav .mobile-nav-cta {
    display: block;
    width: 100%;
    max-width: 480px;
    min-height: 0;
    height: auto;
    margin: 24px auto 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .global-nav .mobile-nav-cta::after {
    content: none;
  }

  .global-nav .mobile-nav-cta img {
    width: 100%;
    height: auto;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    display: grid;
    width: 52px;
    height: 54px;
    padding: 7px 6px 5px;
    flex: 0 0 52px;
    place-items: center;
    grid-template-rows: 28px 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--navy);
    cursor: pointer;
  }

  .sp-fixed-cta {
    position: fixed;
    z-index: 85;
    right: 12px;
    bottom: max(14px, env(safe-area-inset-bottom));
    display: block;
    width: clamp(92px, 24vw, 106px);
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    filter: drop-shadow(0 9px 13px rgb(7 27 58 / 22%));
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .sp-fixed-cta:active {
    transform: scale(0.96);
  }

  .sp-fixed-cta img {
    border-radius: inherit;
    object-fit: cover;
  }

  body.menu-open .sp-fixed-cta,
  .sp-fixed-cta.is-context-hidden {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
    pointer-events: none;
  }

  .demo-modal {
    padding: 12px;
  }

  .demo-modal-dialog,
  .demo-pdf-modal .demo-modal-dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
  }

  .demo-modal-dialog > img {
    max-height: calc(100dvh - 24px);
  }

  .demo-modal-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .mobile-menu-lines {
    position: relative;
    display: block;
    width: 27px;
    height: 22px;
  }

  .mobile-menu-line {
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: top 180ms ease, transform 180ms ease, background-color 180ms ease;
  }

  .mobile-menu-line:first-child {
    top: 6px;
  }

  .mobile-menu-line:last-child {
    top: 16px;
  }

  .mobile-menu-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.11em;
  }

  .site-header.is-menu-open .mobile-menu-toggle {
    border-color: transparent;
    color: var(--orange);
  }

  .site-header.is-menu-open .mobile-menu-line:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-line:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  /* Smartphone: first view */
  .hero {
    padding-bottom: 38px;
  }

  .hero-stage {
    --hero-mobile-photo-height: clamp(400px, 112vw, 510px);
    --hero-mobile-board-height: min(calc(75vw - 12px), 360px);

    height: calc(
      var(--hero-mobile-photo-height) + var(--hero-mobile-board-height) + 16px
    );
    min-height: 0;
  }

  .hero-background {
    inset: 0 0 auto;
    height: var(--hero-mobile-photo-height);
    object-position: center 20%;
  }

  .hero-stage::after {
    inset: 0 0 auto;
    height: var(--hero-mobile-photo-height);
    background: linear-gradient(
      180deg,
      rgb(255 255 255 / 16%) 0%,
      transparent 35%,
      rgb(7 27 58 / 3%) 100%
    );
  }

  .hero-board {
    top: calc(var(--hero-mobile-photo-height) + 8px);
    left: 50%;
    width: min(calc(100% - 16px), 480px);
    aspect-ratio: 4 / 3;
    transform: translateX(-50%);
  }

  .hero-board-art {
    inset: 0;
    height: auto;
    overflow: visible;
    clip-path: none;
  }

  .hero-board-art img {
    position: static;
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .hero-board-badge {
    top: 2.5%;
    right: 3.6%;
    width: 19%;
  }

  .hero-board-actions {
    right: 8.5%;
    bottom: 10.5%;
    left: 8.5%;
  }

  .hero-cta {
    min-height: 46px;
    padding: 8px 48px 8px 13px;
    border-width: 1px;
    border-radius: 11px;
    font-size: clamp(12px, 3.45vw, 14px);
    line-height: 1.35;
  }

  .hero-cta-icon {
    right: 7px;
    width: 32px;
    height: 32px;
  }

  .hero-cta-icon svg {
    width: 19px;
    height: 19px;
    stroke-width: 2.4;
  }

  .hero-board-actions p {
    margin-top: 6px;
    font-size: 8.5px;
    letter-spacing: 0.01em;
  }

  /* Smartphone: first-view benefit cards */
  .benefit-wrap {
    width: min(calc(100% - 24px), 520px);
    margin-top: 16px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 10px 16px;
    border-radius: 20px;
  }

  .benefit-item {
    justify-content: flex-start;
    gap: 14px;
    padding: 13px 4px;
  }

  .benefit-item + .benefit-item::before {
    top: 0;
    right: 4px;
    bottom: auto;
    left: 4px;
    width: auto;
    height: 1px;
  }

  .benefit-icon {
    width: 52px;
    height: 52px;
  }

  .benefit-icon img {
    width: 46px;
    height: 46px;
  }

  .benefit-item h2 {
    margin-bottom: 3px;
    font-size: 14px;
  }

  .benefit-item p {
    font-size: 11px;
    line-height: 1.5;
  }

  /* Shared mobile section rhythm */
  .section-container,
  .roadmap-section .section-container,
  .dashboard-section .section-container,
  .comparison-section .section-container,
  .coach-section .section-container,
  .voice-section .section-container,
  .pricing-section .section-container {
    width: calc(100% - 32px);
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading-left,
  .section-heading-center {
    max-width: none;
  }

  .section-eyebrow {
    gap: 8px;
    margin-bottom: 15px;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.11em;
  }

  .section-eyebrow::before,
  .section-eyebrow::after {
    width: 24px;
    height: 1.5px;
    flex-basis: 24px;
  }

  .section-heading h2 {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.42;
    letter-spacing: -0.025em;
  }

  .section-heading > p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.85;
  }

  .section-heading > p br {
    display: none;
  }

  /* Business English challenges */
  .problem-section {
    padding: 72px 0 68px;
  }

  .problem-layout {
    display: block;
  }

  .problem-heading {
    margin-bottom: 24px;
    text-align: center;
  }

  .problem-heading .section-eyebrow {
    margin-bottom: 15px;
    font-size: 9px;
  }

  .problem-heading h2 {
    font-size: clamp(27px, 7.3vw, 29px);
    line-height: 1.45;
  }

  .problem-heading > p {
    margin-top: 15px;
    font-size: 12px;
  }

  .problem-visual {
    height: 330px;
    border-radius: 15px;
  }

  .problem-visual > img {
    object-position: center 42%;
  }

  .problem-visual figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    gap: 5px;
    padding: 13px 15px;
    border-radius: 12px;
  }

  .problem-visual figcaption strong {
    font-size: 15px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 28px;
  }

  .problem-card {
    min-height: 0;
    padding: 18px;
    border-radius: 15px;
  }

  .problem-card-head {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .problem-card-icon {
    width: 58px;
    height: 58px;
  }

  .problem-scene {
    min-height: 23px;
    margin-bottom: 8px;
    padding: 3px 10px;
    font-size: 9px;
  }

  .problem-card h3 {
    font-size: 16px;
    line-height: 1.55;
  }

  .problem-card p {
    margin: 11px 0 0 70px;
    font-size: 11px;
    line-height: 1.75;
  }

  .problem-answer {
    display: block;
    margin-top: 22px;
    padding: 21px 19px;
    border-radius: 15px;
  }

  .problem-answer > span {
    width: max-content;
    min-width: 82px;
    height: 34px;
    margin-bottom: 13px;
    font-size: 9px;
  }

  .problem-answer p {
    font-size: 15px;
    line-height: 1.8;
  }

  /* Learning method */
  .method-section {
    padding: 72px 0 70px;
  }

  .method-section .section-heading {
    margin-bottom: 34px;
  }

  .method-section .section-heading h2 {
    font-size: clamp(27px, 7.25vw, 29px);
    white-space: normal;
  }

  .method-section .section-heading h2 em {
    display: block;
  }

  .method-section .section-heading > p {
    margin-top: 16px;
    font-size: 13px;
  }

  .method-flow {
    grid-template-columns: 1fr;
  }

  .method-card {
    min-height: 0;
    padding: 21px 19px 20px;
    border-radius: 16px;
  }

  .method-card-top {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 13px;
  }

  .method-card-selected .method-card-top {
    padding-right: 24px;
  }

  .method-card-icon {
    width: 70px;
    height: 70px;
  }

  .method-card-icon img {
    width: 67px;
    height: 67px;
  }

  .method-card-head {
    gap: 10px;
    margin-bottom: 9px;
  }

  .method-number {
    font-size: 31px;
  }

  .method-kicker {
    min-width: 56px;
    height: 24px;
    font-size: 8px;
  }

  .method-card h3 {
    font-size: 18px;
  }

  .method-card > p {
    min-height: 0;
    margin: 17px 0 15px;
    padding-top: 16px;
    font-size: 11.5px;
  }

  .method-tags {
    gap: 6px;
  }

  .method-tags li {
    padding: 7px 9px;
    font-size: 10px;
  }

  .method-check {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .method-arrow {
    width: 40px;
    height: 48px;
    font-size: 39px;
    transform: rotate(90deg);
  }

  .method-result {
    display: grid;
    width: 100%;
    min-height: 0;
    margin-top: 34px;
    padding: 20px 18px;
    justify-items: center;
    gap: 13px;
    text-align: center;
  }

  .method-result-icon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .method-result-divider {
    display: none;
  }

  .method-result p {
    font-size: 14px;
    line-height: 1.7;
  }

  .method-result p > span {
    display: block;
    margin: 0;
  }

  .method-result strong {
    font-size: 1.08em;
  }

  /* 90-day roadmap */
  .roadmap-section {
    padding: 70px 0 68px;
  }

  .roadmap-section .section-container::before {
    display: none;
  }

  .roadmap-heading {
    margin-bottom: 33px;
  }

  .roadmap-heading .section-eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .roadmap-heading h2 {
    font-size: clamp(27px, 7.3vw, 29px);
    line-height: 1.42;
  }

  .roadmap-heading h2 em {
    display: block;
  }

  .roadmap-heading > p {
    margin-top: 15px;
    font-size: 13px;
  }

  .roadmap-track {
    display: none;
  }

  .roadmap-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .roadmap-phase {
    height: auto;
    min-height: 420px;
    padding: 22px 19px 21px;
    border-radius: 20px;
  }

  .roadmap-phase-featured .phase-days {
    margin-right: 55px;
  }

  .roadmap-phase-head {
    min-height: 48px;
    margin-bottom: 8px;
  }

  .phase-index strong {
    font-size: 32px;
  }

  .phase-index span,
  .phase-days {
    font-size: 9px;
  }

  .phase-days {
    min-height: 27px;
    padding: 5px 11px;
  }

  .phase-summary {
    min-height: 108px;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 15px;
  }

  .phase-icon {
    width: 68px;
    height: 68px;
  }

  .roadmap-phase h3 {
    font-size: 21px;
    white-space: normal;
  }

  .phase-description {
    margin-top: 7px;
    font-size: 11.5px;
  }

  .phase-tasks {
    gap: 8px;
    margin: 8px 0 14px;
    padding-top: 20px;
  }

  .phase-tasks li {
    font-size: 12px;
  }

  .phase-goal {
    min-height: 67px;
    padding: 9px 12px;
  }

  .phase-goal strong {
    font-size: 12.5px;
  }

  .roadmap-card-arrow {
    position: relative;
    top: auto;
    left: auto;
    width: 34px;
    height: 34px;
    margin: 8px auto;
    font-size: 0;
    line-height: 0;
    transform: none;
  }

  .roadmap-card-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: translate(-50%, -68%) rotate(45deg);
  }

  .roadmap-complete-badge {
    top: -20px;
    right: 7px;
    width: 76px;
    height: 76px;
    border-width: 3px;
  }

  .roadmap-complete-badge strong {
    font-size: 13px;
  }

  .roadmap-note {
    display: flex;
    width: 100%;
    min-height: 0;
    margin-top: 28px;
    padding: 22px 18px;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .roadmap-note-icon {
    position: relative;
    left: auto;
    width: 72px;
    height: 72px;
    margin-bottom: 13px;
  }

  .roadmap-note > strong {
    flex: none;
    font-size: 18px;
    white-space: normal;
  }

  .roadmap-note-divider {
    width: 60px;
    height: 1px;
    margin: 15px 0;
  }

  .roadmap-note p {
    font-size: 11.5px;
  }

  .roadmap-note p br {
    display: none;
  }

  /* Learning dashboard */
  .dashboard-section {
    min-height: 0;
    padding: 70px 0 68px;
  }

  .dashboard-heading {
    margin-bottom: 26px;
  }

  .dashboard-heading .section-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .dashboard-heading h2 {
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.35;
  }

  .dashboard-heading > p {
    margin-top: 14px;
    font-size: 12.5px;
  }

  .dashboard-showcase {
    height: 330px;
    aspect-ratio: auto;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    border-radius: 16px;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .dashboard-showcase img {
    position: static;
    width: auto;
    height: 100%;
    max-width: none;
    transform: none;
  }

  .dashboard-benefits {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 20px;
    border-radius: 16px;
  }

  .dashboard-benefit-lead {
    padding: 17px 16px;
    gap: 15px;
  }

  .dashboard-benefit-lead > strong {
    font-size: 16px;
  }

  .dashboard-benefit-item {
    padding: 14px 16px;
    gap: 14px;
  }

  .dashboard-benefit-item::before {
    top: 0;
    right: 16px;
    bottom: auto;
    left: 16px;
    width: auto;
    height: 1px;
  }

  .dashboard-benefit-item p strong {
    font-size: 13px;
  }

  .dashboard-benefit-item p small {
    font-size: 10px;
    white-space: normal;
  }

  .dashboard-effect-icon,
  .dashboard-benefit-lead .dashboard-effect-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  /* Service comparison */
  .comparison-section {
    min-height: 0;
    padding: 70px 0 66px;
  }

  .comparison-heading {
    margin-bottom: 28px;
  }

  .comparison-heading .section-eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .comparison-heading h2 {
    font-size: clamp(26px, 7vw, 28px);
    line-height: 1.48;
    white-space: normal;
  }

  .comparison-heading .sp-heading-line,
  .coach-heading .sp-heading-line {
    display: block;
  }

  .comparison-heading > p {
    margin-top: 14px;
    font-size: 12.5px;
  }

  .comparison-table-wrap {
    width: 100%;
    margin: 0;
    padding-top: 0;
    overflow: visible;
    overscroll-behavior: auto;
    overscroll-behavior-inline: contain;
    border-radius: 16px;
    touch-action: auto;
  }

  .comparison-table-scroll {
    margin-top: -32px;
    padding-top: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: inherit;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .comparison-table {
    width: 760px;
    min-width: 760px;
    table-layout: fixed;
  }

  .comparison-table th,
  .comparison-table td {
    height: 68px;
    padding: 0 14px;
  }

  .comparison-table thead th {
    height: 74px;
    font-size: 14px;
  }

  .comparison-table thead th:first-child {
    width: 155px;
    font-size: 12px;
  }

  .comparison-table .general-heading {
    width: 265px;
    font-size: 14px;
  }

  .comparison-table .shift-heading {
    width: 340px;
    font-size: 18px;
  }

  .comparison-table .shift-heading .shift-specialized {
    top: 2px;
    right: 82px;
    width: 154px;
    font-size: 9px;
  }

  .comparison-table .shift-heading .comparison-crown {
    top: -24px;
    right: -7px;
    width: 92px;
    height: 92px;
  }

  .comparison-table tbody th,
  .comparison-table tbody td,
  .comparison-table .shift-cell {
    font-size: 12px;
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    position: sticky;
    left: 0;
    z-index: 3;
  }

  .comparison-table thead th:first-child {
    z-index: 5;
  }

  .comparison-row-label {
    gap: 9px;
  }

  .comparison-row-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    transform: scale(0.82);
  }

  .general-mark,
  .shift-mark {
    width: 26px;
    height: 26px;
    margin-right: 8px;
  }

  .comparison-conclusion {
    min-height: 0;
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .comparison-conclusion::before {
    top: -26px;
  }

  .comparison-conclusion-lead {
    padding: 18px 16px;
    gap: 14px;
    border-radius: 17px 17px 0 0;
  }

  .comparison-target-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .comparison-conclusion-lead p {
    font-size: 14px;
    white-space: normal;
  }

  .comparison-conclusion-lead p strong {
    font-size: 15px;
  }

  .comparison-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--orange);
    border-radius: 0 0 17px 17px;
  }

  .comparison-pillars article {
    min-height: 157px;
    padding: 17px 10px 14px;
  }

  .comparison-pillars article:nth-child(3),
  .comparison-pillars article:nth-child(4) {
    border-top: 1px solid #dbe3ea;
  }

  .comparison-pillars article:nth-child(3)::before {
    content: none;
  }

  .comparison-pillars article + article::before {
    top: 18px;
    bottom: 18px;
  }

  .comparison-pillars article > strong {
    font-size: 11.5px;
    white-space: normal;
  }

  .comparison-pillars article > p {
    font-size: 9px;
  }

  .comparison-note {
    margin-top: 13px;
    font-size: 9px;
  }

  /* Professional coaches */
  .coach-section {
    height: auto;
    padding: 70px 0 68px;
  }

  .coach-heading {
    margin-bottom: 28px;
  }

  .coach-heading .section-eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .coach-heading h2 {
    font-size: clamp(25px, 6.8vw, 27px);
    line-height: 1.42;
    white-space: normal;
  }

  .coach-heading > p {
    margin-top: 14px;
    font-size: 12.5px;
  }

  .coach-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .coach-card {
    height: auto;
    padding: 8px 8px 0;
    border-radius: 15px;
  }

  .coach-portrait {
    height: 280px;
  }

  .coach-portrait > span {
    top: 12px;
    right: 8px;
    min-width: 102px;
    min-height: 31px;
    font-size: 11px;
  }

  .coach-card-body {
    padding: 13px 12px 19px;
  }

  .coach-role {
    width: 100%;
    flex-wrap: wrap;
    gap: 5px 8px;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    white-space: normal;
  }

  .coach-role strong {
    font-size: 15px;
  }

  .coach-card h3 {
    font-size: 19px;
    white-space: normal;
  }

  .coach-focus {
    font-size: 12.5px;
    white-space: normal;
  }

  .coach-description {
    min-height: 0;
    font-size: 12.5px;
  }

  .coach-tags {
    flex-wrap: wrap;
    gap: 7px;
  }

  .coach-tags li {
    min-width: 0;
    height: 31px;
    padding: 0 10px;
    flex: 1 1 auto;
    font-size: 11px;
  }

  .coach-matching-bar {
    width: 100%;
    height: auto;
    min-height: 72px;
    margin: 20px auto 12px;
    padding: 14px 16px;
    justify-content: flex-start;
    gap: 13px;
  }

  .coach-matching-icon {
    width: 48px;
    transform: scale(0.88);
  }

  .coach-matching-bar p {
    font-size: 14px;
    line-height: 1.55;
  }

  .coach-support-list {
    grid-template-columns: 1fr;
    height: auto;
    border-radius: 15px;
  }

  .coach-support-list > div {
    grid-template-columns: 46px 70px minmax(0, 1fr);
    gap: 11px;
    padding: 15px 12px;
  }

  .coach-support-list > div + div::before {
    top: 0;
    right: 12px;
    bottom: auto;
    left: 12px;
    width: auto;
    height: 1px;
  }

  .coach-support-number {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .coach-support-icon {
    width: 70px;
    height: 70px;
  }

  .coach-support-icon img {
    width: 52px;
    height: 52px;
  }

  .coach-support-list strong {
    margin-bottom: 4px;
    font-size: 14px;
    white-space: normal;
  }

  .coach-support-list small {
    font-size: 11px;
  }

  /* Portfolio model cases / Case stories */
  .voice-section {
    height: auto;
    padding: 70px 0 68px;
  }

  .case-heading {
    margin-bottom: 24px;
  }

  .case-heading .section-eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .case-heading h2 {
    font-size: clamp(25px, 6.8vw, 27px);
    line-height: 1.38;
  }

  .case-heading > p {
    margin-top: 14px;
    font-size: 12.5px;
  }

  .model-case-notice {
    width: 100%;
    height: auto;
    min-height: 50px;
    margin-bottom: 17px;
    padding: 10px 12px;
    align-items: flex-start;
    border-radius: 13px;
  }

  .model-case-notice p {
    font-size: 9.5px;
    line-height: 1.6;
    white-space: normal;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-card {
    height: auto;
    border-radius: 15px;
  }

  .case-visual {
    height: 220px;
  }

  .case-body {
    padding: 15px 14px 16px;
  }

  .case-meta {
    flex-wrap: wrap;
    gap: 5px 8px;
  }

  .case-profile {
    font-size: 9.5px;
  }

  .case-card h3 {
    font-size: 19px;
    white-space: normal;
  }

  .case-before,
  .case-after {
    height: auto;
    min-height: 86px;
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .case-before p,
  .case-after p {
    font-size: 12px;
  }

  .case-card blockquote {
    min-height: 62px;
    font-size: 11.5px;
  }

  .case-focus ul {
    flex-wrap: wrap;
    gap: 6px;
  }

  .case-focus li {
    min-width: calc(33.333% - 4px);
    padding: 0 6px;
    font-size: 9px;
  }

  .case-summary {
    height: auto;
    min-height: 0;
    margin-top: 21px;
    padding: 22px 19px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .case-summary > span {
    width: 139px;
    height: 34px;
    font-size: 9px;
  }

  .case-summary p {
    font-size: 16px;
    line-height: 1.75;
  }

  .case-summary p br {
    display: none;
  }

  .case-summary strong {
    font-size: 19px;
  }

  /* Course and pricing */
  .pricing-section {
    height: auto;
    padding: 70px 0 68px;
  }

  .pricing-heading {
    margin-bottom: 0;
  }

  .pricing-heading h2 {
    font-size: clamp(27px, 7.3vw, 29px);
  }

  .pricing-heading h2 em {
    display: block;
  }

  .pricing-heading > p {
    font-size: 12.5px;
    line-height: 1.8;
  }

  .pricing-card {
    display: block;
    height: auto;
    margin-top: 31px;
    border-radius: 21px;
  }

  .pricing-summary {
    padding: 27px 21px 24px;
    text-align: center;
  }

  .pricing-amount p {
    justify-content: center;
  }

  .pricing-plan-name > span {
    min-height: 30px;
    padding: 7px 13px;
    font-size: 9px;
  }

  .pricing-plan-name h3 {
    margin-top: 16px;
    font-size: 26px;
  }

  .pricing-plan-name p {
    font-size: 11.5px;
  }

  .pricing-amount {
    margin-top: 18px;
    padding-top: 16px;
  }

  .pricing-amount strong {
    font-size: clamp(54px, 17vw, 70px);
  }

  .pricing-amount b {
    padding-bottom: 7px;
    font-size: 21px;
  }

  .pricing-facts {
    margin-top: 22px;
    padding-top: 16px;
  }

  .pricing-facts > div {
    padding: 0 7px;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .pricing-facts img {
    width: 30px;
    height: 30px;
  }

  .pricing-facts strong {
    font-size: 9px;
    white-space: normal;
  }

  .pricing-facts small {
    font-size: 8px;
    white-space: normal;
  }

  .pricing-details {
    padding: 25px 17px 18px;
  }

  .pricing-details-head {
    height: auto;
    min-height: 48px;
    padding: 0 3px 16px;
  }

  .pricing-details-head h3 {
    font-size: 19px;
  }

  .pricing-includes {
    height: auto;
    grid-template-rows: none;
  }

  .pricing-includes-row {
    grid-template-columns: 1fr;
    padding: 15px 0;
  }

  .pricing-includes-label {
    display: flex;
    padding: 2px 4px 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }

  .pricing-includes-label img {
    width: 58px;
    height: 58px;
    margin: 0 auto 2px;
  }

  .pricing-includes-label strong {
    font-size: 15px;
  }

  .pricing-includes-label small {
    margin: 0;
    font-size: 10px;
  }

  .pricing-include {
    min-height: 82px;
    padding: 13px 4px;
    border-top: 1px solid rgb(7 27 58 / 9%);
    border-left: 0;
  }

  .include-check {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .pricing-include strong {
    font-size: 13px;
    white-space: normal;
  }

  .pricing-include small {
    margin-top: 5px;
    font-size: 11px;
  }

  .pricing-action {
    display: block;
    height: auto;
    margin-top: 15px;
    padding: 21px 17px 17px;
    border-radius: 18px;
  }

  .pricing-action-intro {
    gap: 10px;
  }

  .pricing-action-intro > img {
    width: 76px;
    height: 76px;
    margin: 0 -6px 0 -9px;
    flex-basis: 76px;
  }

  .pricing-action-intro span {
    font-size: 11px;
  }

  .pricing-action-intro strong {
    font-size: 13px;
  }

  .pricing-action-main {
    margin-top: 17px;
  }

  .pricing-cta {
    min-height: 72px;
    padding: 11px 11px 11px 18px;
    border-width: 1px;
    font-size: 16px;
    text-align: left;
  }

  .pricing-cta > span:last-child {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .pricing-cta > span:last-child::before {
    width: 23px;
    height: 14px;
  }

  .pricing-action-main > p {
    font-size: 9px;
    line-height: 1.6;
  }

  .pricing-note {
    margin-top: 20px;
    font-size: 9px;
  }

  /* Free roadmap session */
  .session-section {
    min-height: 0;
    padding: 70px 0 68px;
  }

  .session-eyebrow {
    margin-bottom: 33px;
    font-size: 10px;
  }

  .session-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .session-intro .section-heading {
    text-align: center;
  }

  .session-intro .section-heading h2 {
    font-size: clamp(26px, 7vw, 28px);
    line-height: 1.5;
  }

  .session-intro .section-heading > p {
    margin-top: 14px;
    font-size: 12.5px;
  }

  .session-gift {
    min-height: 185px;
    padding: 43px 19px 21px;
    gap: 15px;
    border-radius: 19px;
  }

  .session-gift-label {
    top: 14px;
    left: 16px;
    padding: 7px 13px;
    font-size: 8px;
  }

  .session-gift-icon {
    width: 79px;
    height: 96px;
    flex-basis: 79px;
  }

  .session-gift strong {
    font-size: 20px;
  }

  .session-gift small {
    font-size: 10.5px;
  }

  .session-steps {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 31px;
  }

  .session-steps li {
    min-height: 0;
    padding: 22px 19px;
    border-radius: 17px;
  }

  .session-steps li:not(:last-child)::after {
    content: "↓";
    top: calc(100% + 24px);
    left: 50%;
    width: 38px;
    height: 38px;
    font-size: 18px;
    box-shadow: 0 7px 16px rgb(244 91 0 / 24%);
    transform: translate(-50%, -50%);
  }

  .roadmap-phase h3,
  .case-card h3,
  .session-steps h3 {
    padding-left: 10px;
    border-left: 3px solid var(--orange);
  }

  .session-step-number {
    top: 16px;
    right: 16px;
    font-size: 44px;
  }

  .session-step-top {
    margin-bottom: 17px;
  }

  .session-step-icon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .session-steps h3 {
    margin-bottom: 10px;
    font-size: 19px;
  }

  .session-steps li > p:last-child {
    font-size: 12px;
  }

  .session-assurance {
    margin: 27px 0 25px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 9px;
    font-size: 13px;
    text-align: left;
  }

  .session-assurance::before {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    font-size: 13px;
  }

  .session-action {
    display: block;
    min-height: 0;
    padding: 23px 17px 18px;
    border-radius: 19px;
  }

  .session-meta > div {
    min-height: 92px;
    padding: 0 8px;
  }

  .session-meta img {
    width: 45px;
    height: 45px;
  }

  .session-meta strong {
    font-size: 11px;
    white-space: normal;
  }

  .session-action-copy {
    margin-top: 17px;
    text-align: center;
  }

  .session-action-copy strong {
    max-width: none;
    font-size: 17px;
  }

  .session-action-main {
    margin-top: 17px;
  }

  .session-cta {
    min-height: 72px;
    padding: 11px 10px 11px 18px;
    font-size: 17px;
  }

  .session-cta > span:last-child {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .session-cta > span:last-child::before {
    width: 23px;
    height: 14px;
  }

  /* Frequently asked questions */
  .faq-section {
    min-height: 0;
    padding: 70px 0 68px;
  }

  .faq-layout {
    display: block;
  }

  .faq-heading {
    margin-bottom: 31px;
    text-align: center;
  }

  .faq-heading .section-eyebrow {
    margin-bottom: 15px;
    margin-inline: auto;
    font-size: 9px;
    white-space: normal;
  }

  .faq-heading h2 {
    font-size: clamp(29px, 8.7vw, 36px);
    line-height: 1.45;
  }

  .faq-heading > p {
    margin-top: 15px;
    font-size: 12.5px;
  }

  .faq-guide {
    margin-top: 24px;
    padding: 18px 16px 16px;
    border-left-width: 4px;
    border-radius: 0 15px 15px 0;
  }

  .faq-guide-main {
    gap: 12px;
  }

  .faq-guide-main > img {
    width: 78px;
    height: 78px;
    margin: -6px 0 -5px -8px;
    flex-basis: 78px;
  }

  .faq-guide-main span {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .faq-guide-main p {
    font-size: 11px;
  }

  .faq-guide-main p br {
    display: none;
  }

  .faq-guide > a {
    margin-top: 16px;
    padding-top: 14px;
    font-size: 12px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-list details {
    border-radius: 13px;
  }

  .faq-list summary,
  .faq-list details[open] summary {
    min-height: 76px;
    padding: 13px 50px 13px 13px;
    gap: 11px;
  }

  .faq-list summary::after {
    right: 11px;
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .faq-number {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 11px;
    font-size: 11px;
  }

  .faq-list summary strong {
    font-size: 13px;
    line-height: 1.55;
  }

  .faq-answer {
    margin: 0 13px;
    padding: 0 3px 20px;
    gap: 10px;
  }

  .faq-answer > span {
    width: 35px;
    height: 35px;
    margin-top: 18px;
    flex-basis: 35px;
  }

  .faq-answer p {
    margin-top: 17px;
    font-size: 11.5px;
    line-height: 1.8;
  }

  .faq-contact {
    margin-top: 20px;
    gap: 8px;
    font-size: 12px;
  }

  .faq-contact img {
    width: 56px;
    height: 56px;
    margin: -10px;
    flex-basis: 56px;
  }

  /* Final call to action */
  .final-cta-section {
    width: 100vw;
    padding: 0;
  }

  .final-cta-section > .section-container {
    width: 100%;
    margin: 0;
  }

  .final-cta-panel {
    display: block;
    min-height: 0;
    padding: 54px 20px 44px;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 34% 20%, rgb(14 79 145 / 25%), transparent 34%),
      linear-gradient(158deg, #041734 0%, #08294f 55%, #061a39 100%);
    box-shadow: none;
  }

  .final-cta-panel::before {
    top: -220px;
    right: -215px;
    width: 420px;
    height: 420px;
    box-shadow: 0 0 0 54px rgb(71 133 196 / 4%);
  }

  .final-cta-panel::after {
    bottom: -320px;
    left: -315px;
    width: 520px;
    height: 520px;
    box-shadow: 0 0 0 84px rgb(32 97 165 / 7%);
  }

  .final-cta-content {
    text-align: center;
  }

  .final-cta-eyebrow {
    justify-content: center;
    margin-bottom: 25px;
    font-size: 10px;
  }

  .final-cta-eyebrow::before,
  .final-cta-eyebrow::after {
    width: 27px;
    flex-basis: 27px;
  }

  .final-cta-content h2 {
    font-size: clamp(21px, 5.75vw, 26px);
    line-height: 1.62;
    letter-spacing: -0.035em;
    white-space: nowrap;
  }

  .final-cta-content > p {
    margin-top: 23px;
    font-size: 14px;
    line-height: 1.9;
  }

  .final-cta-points {
    width: min(100%, 286px);
    margin: 25px auto 0;
    flex-direction: column;
    gap: 10px;
  }

  .final-cta-points li {
    width: 100%;
    min-height: 52px;
    padding: 11px 28px;
    justify-content: flex-start;
    font-size: 15px;
  }

  .final-cta-points li svg {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .final-cta-button {
    width: min(100%, 370px);
    min-height: 78px;
    margin: 28px auto 0;
    padding: 12px 12px 12px 23px;
    border-radius: 15px;
    font-size: 20px;
  }

  .final-cta-button > span:last-child {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 0;
  }

  .final-cta-content > small {
    width: 100%;
    margin-top: 15px;
    gap: 12px;
    font-size: 13px;
  }

  .final-cta-output {
    min-height: 0;
    margin-top: 34px;
    padding: 27px 18px 18px;
    border-radius: 24px;
  }

  .final-cta-output-head {
    min-height: 65px;
    padding-inline: 4px;
    text-align: left;
  }

  .final-cta-output-copy > span {
    font-size: 11px;
  }

  .final-cta-output-copy > p {
    font-size: 13px;
  }

  .final-cta-pdf {
    width: 40px;
    height: 51px;
    margin-right: 0;
    flex-basis: 40px;
  }

  .final-cta-roadmap-picture {
    width: min(100%, 330px);
    aspect-ratio: 760 / 1237;
    margin-top: 8px;
  }

  .final-cta-roadmap-picture img {
    transform: scale(1.08);
  }

  /* Footer */
  .site-footer {
    width: 100vw;
    padding-bottom: max(22px, env(safe-area-inset-bottom));
  }

  .site-footer::before {
    background-size: 48px 48px;
  }

  .footer-inner {
    width: calc(100% - 32px);
  }

  .footer-top {
    display: block;
    padding: 54px 0 43px;
  }

  .footer-kicker {
    display: flex;
    justify-content: center;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .footer-kicker::before,
  .footer-kicker::after {
    width: 22px;
    flex-basis: 22px;
  }

  .footer-message h2 {
    margin-top: 19px;
    font-size: 29px;
    line-height: 1.48;
    text-align: center;
  }

  .footer-message > p {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.9;
    text-align: center;
  }

  .footer-message > p br {
    display: none;
  }

  .footer-scene-panel {
    min-height: 0;
    margin-top: 31px;
    padding: 25px 22px 22px;
    border-radius: 22px;
  }

  .footer-scene-head small {
    font-size: 8px;
  }

  .footer-scene-list {
    margin-top: 18px;
  }

  .footer-scene-list li {
    grid-template-columns: 36px minmax(0, 1fr) auto;
  }

  .footer-main {
    display: block;
    padding: 40px 0 36px;
  }

  .footer-brand {
    width: min(100%, 280px);
    height: 72px;
    margin: 0 auto;
  }

  .footer-brand-image {
    background-size: 100% auto;
  }

  .footer-brand-block > p {
    width: min(100%, 280px);
    margin-right: auto;
    margin-left: auto;
    text-align: right;
  }

  .footer-proof-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }

  .footer-proof-list li {
    padding-inline: 8px;
    text-align: center;
  }

  .footer-proof-list li:first-child {
    padding-left: 0;
  }

  .footer-proof-list span {
    font-size: 8px;
    line-height: 1.55;
    white-space: normal;
  }

  .footer-nav {
    margin-top: 43px;
    gap: 20px;
  }

  .footer-nav-group {
    gap: 0;
  }

  .footer-nav-group > span {
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(255 255 255 / 13%);
  }

  .footer-nav a {
    display: flex;
    width: 100%;
    min-height: 44px;
    padding: 11px 20px 11px 0;
    align-items: center;
    font-size: 11px;
    line-height: 1.45;
  }

  .footer-nav a::after {
    top: 50%;
    transform: translateY(-52%);
  }

  .footer-bottom {
    display: flex;
    min-height: 0;
    padding: 23px 0 9px;
    align-items: center;
    flex-direction: column;
    gap: 17px;
  }

  .footer-bottom > small {
    order: 2;
    font-size: 8px;
    text-align: center;
  }

  .footer-bottom > span {
    display: none;
  }

  .footer-top-link {
    order: 1;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 6px 7px 6px 19px;
    justify-content: space-between;
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 14px;
    background: rgb(255 255 255 / 4%);
    color: rgb(255 255 255 / 78%);
    font-size: 13px;
    font-weight: 900;
  }

  .footer-top-link i {
    width: 43px;
    height: 43px;
    font-size: 23px;
  }

  .footer-wordmark {
    margin-top: 4px;
    margin-bottom: -29px;
    font-size: 54px;
    letter-spacing: 0.04em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
