@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&family=Nunito:wght@500;600;700;800&family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

:root {
  --navy: #082d68;
  --blue: #1459e8;
  --blue-dark: #0a43c2;
  --teal: #00a99d;
  --violet: #7047eb;
  --yellow: #ffc83d;
  --ink: #102849;
  --muted: #62728a;
  --line: #dfe7f2;
  --surface: #f6f8fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(28, 67, 126, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section-shell,
.site-header,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-family: "Comfortaa", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #455b78;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.site-header nav > a:not(.nav-cta):hover,
footer > a:last-child:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 11px 20px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 58px;
  min-height: 650px;
  padding-block: 64px 86px;
}

.eyebrow,
.eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--teal);
  border: 3px solid #ccf6f2;
  border-radius: 50%;
  box-sizing: content-box;
}

.hero h1,
.section-heading h2,
.goals-copy h2,
.final-cta h2 {
  margin: 18px 0 0;
  color: var(--navy);
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 600px;
  font-size: clamp(48px, 5.2vw, 72px);
}

.hero h1 span,
.section-heading h2 span {
  color: var(--blue);
}

.hero-description {
  max-width: 545px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button svg,
.text-link svg,
.final-cta .button svg {
  width: 20px;
  height: 20px;
  margin-left: 9px;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(20, 89, 232, .24);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 30px rgba(20, 89, 232, .3);
}

.starting-price {
  display: flex;
  flex-direction: column;
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.starting-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.starting-price strong {
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.2;
}

.starting-price small {
  color: var(--muted);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 0;
  margin: 30px 0 0;
  color: #506581;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  padding: 2px;
  color: var(--teal);
  background: #ddf7f3;
  border-radius: 50%;
  stroke-width: 2.5;
}

.hero-visual {
  min-height: 500px;
  position: relative;
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.visual-glow-one {
  width: 340px;
  height: 340px;
  top: -12px;
  right: -30px;
  background: #e4edff;
}

.visual-glow-two {
  width: 300px;
  height: 300px;
  bottom: -10px;
  left: -30px;
  background: #e1f8f5;
}

.lesson-window {
  width: min(100%, 520px);
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 2;
  overflow: hidden;
  background: #fff;
  border: 8px solid #fff;
  border-radius: 27px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.window-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 44px;
  padding: 0 12px;
  color: #6f7d91;
  font-size: 10px;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  background: #dfe5ef;
  border-radius: 50%;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
  padding: 4px 7px;
  color: #d74f5c;
  background: #fff0f2;
  border-radius: 999px;
  font-size: 8px;
  letter-spacing: .08em;
}

.live-pill i {
  width: 5px;
  height: 5px;
  background: #ef5664;
  border-radius: 50%;
}

.video-area {
  height: 332px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #dff8f4 0%, #edf7ff 52%, #e4e8ff 100%);
  border-radius: 20px;
}

.video-area::before,
.video-area::after {
  content: "";
  position: absolute;
  border-radius: 48% 52% 0 0;
}

.video-area::before {
  width: 230px;
  height: 170px;
  right: -40px;
  bottom: -50px;
  background: rgba(112, 71, 235, .1);
  transform: rotate(-22deg);
}

.video-area::after {
  width: 170px;
  height: 120px;
  left: -25px;
  top: -44px;
  background: rgba(0, 169, 157, .1);
  transform: rotate(25deg);
}

.tutor-avatar {
  width: 218px;
  position: absolute;
  right: 23%;
  bottom: -4px;
  z-index: 1;
}

.tutor-avatar svg,
.student-avatar svg {
  width: 100%;
  height: auto;
  stroke: none;
}

.student-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 88px;
  height: 104px;
  padding: 10px 10px 6px;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(22, 48, 88, .15);
}

.student-avatar {
  width: 62px;
  overflow: hidden;
  border-radius: 12px;
}

.student-video span {
  margin-top: 2px;
  color: #526780;
  font-size: 9px;
  font-weight: 700;
}

.conversation-bubble {
  position: absolute;
  z-index: 3;
  padding: 9px 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 7px 22px rgba(19, 65, 114, .09);
  font-size: 11px;
  font-weight: 700;
}

.bubble-one {
  top: 42px;
  left: 25px;
  color: var(--navy);
}

.bubble-two {
  top: 98px;
  right: 24px;
  color: var(--violet);
}

.lesson-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 57px;
}

.lesson-controls span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #67768b;
  background: #f0f3f8;
  border-radius: 50%;
}

.lesson-controls svg {
  width: 14px;
  height: 14px;
}

.lesson-controls .end-call {
  color: #fff;
  background: #ef5664;
}

.progress-card {
  width: 210px;
  padding: 17px 17px 13px;
  position: absolute;
  left: -18px;
  bottom: 11px;
  z-index: 5;
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(27, 68, 122, .18);
  transform: rotate(-3deg);
}

.progress-heading,
.progress-heading > div {
  display: flex;
  align-items: center;
}

.progress-heading {
  justify-content: space-between;
}

.progress-heading > div {
  flex-direction: column;
  align-items: flex-start;
}

.progress-heading span {
  color: #7a8798;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.progress-heading strong {
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 22px;
}

.progress-heading svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  color: var(--teal);
  background: #ddf7f3;
  border-radius: 8px;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 62px;
  margin-top: 8px;
}

.mini-chart span {
  flex: 1;
  height: var(--bar);
  background: linear-gradient(180deg, #5a83f2, #1459e8);
  border-radius: 4px 4px 2px 2px;
}

.chart-labels {
  display: flex;
  justify-content: space-around;
  margin-top: 4px;
  color: #9ba6b4;
  font-size: 7px;
}

.next-session-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  position: absolute;
  right: -22px;
  bottom: -7px;
  z-index: 6;
  background: var(--navy);
  border-radius: 15px;
  box-shadow: 0 14px 28px rgba(8, 45, 104, .22);
  transform: rotate(2deg);
}

.calendar-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--yellow);
  background: rgba(255, 255, 255, .12);
  border-radius: 10px;
}

.calendar-icon svg {
  width: 17px;
  height: 17px;
}

.next-session-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.next-session-card small {
  color: #bfcce2;
  font-size: 8px;
}

.next-session-card strong {
  color: #fff;
  font-size: 10px;
}

.quick-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-benefits article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 4px 25px;
  border-right: 1px solid var(--line);
}

.quick-benefits article:first-child {
  padding-left: 0;
}

.quick-benefits article:last-child {
  padding-right: 0;
  border-right: 0;
}

.icon-box {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.icon-box svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.8;
}

.icon-blue { color: var(--blue); background: #e9f0ff; }
.icon-teal { color: var(--teal); background: #e1f8f5; }
.icon-violet { color: var(--violet); background: #eee9ff; }
.icon-yellow { color: #c28700; background: #fff5d3; }

.quick-benefits article > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.quick-benefits strong {
  color: var(--navy);
  font-size: 14px;
}

.quick-benefits article > div span {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.path-section,
.pricing-section {
  padding-block: 118px;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.goals-copy h2,
.final-cta h2 {
  font-size: clamp(36px, 4vw, 50px);
}

.section-heading p,
.goals-copy > p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.learning-path {
  display: grid;
  grid-template-columns: 1fr 100px 1fr 100px 1fr;
  align-items: center;
  margin-top: 62px;
}

.path-step {
  min-height: 282px;
  padding: 29px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(25, 57, 105, .07);
}

.path-step::after {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  right: -55px;
  bottom: -55px;
  background: #eff4ff;
  border-radius: 50%;
}

.featured-step {
  color: #fff;
  background: linear-gradient(145deg, #1459e8, #093caa);
  border-color: transparent;
  box-shadow: 0 22px 50px rgba(20, 89, 232, .22);
  transform: translateY(-12px);
}

.featured-step::after {
  background: rgba(255, 255, 255, .07);
}

.step-number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: #d8e1ed;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.featured-step .step-number {
  color: rgba(255, 255, 255, .25);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--blue);
  background: #eaf1ff;
  border-radius: 18px;
}

.featured-step .step-icon {
  color: var(--yellow);
  background: rgba(255, 255, 255, .12);
}

.step-icon svg {
  width: 31px;
  height: 31px;
}

.path-step h3 {
  margin: 26px 0 9px;
  color: var(--navy);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 21px;
}

.path-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.featured-step h3,
.featured-step p {
  color: #fff;
}

.featured-step p {
  color: #cedcff;
}

.path-arrow svg {
  width: 76px;
  height: 32px;
  margin: auto;
  color: #b6c3d5;
  stroke-dasharray: 5 5;
}

.goals-section {
  padding-block: 106px;
  background: var(--surface);
}

.goals-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 80px;
}

.goals-copy h2 {
  margin-top: 17px;
}

.goals-copy > p {
  margin-left: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 25px;
  color: var(--blue);
  font-weight: 700;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link svg {
  transition: transform .2s ease;
}

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

.goal-card {
  min-height: 210px;
  padding: 25px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(25, 57, 105, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.goal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(25, 57, 105, .12);
}

.goal-card > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
}

.goal-card svg {
  width: 25px;
  height: 25px;
}

.goal-work > span { color: var(--blue); background: #e9f0ff; }
.goal-talk > span { color: var(--teal); background: #e1f8f5; }
.goal-interview > span { color: var(--violet); background: #eee9ff; }
.goal-start > span { color: #b98000; background: #fff3ca; }

.goal-card h3 {
  margin: 20px 0 6px;
  color: var(--navy);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 18px;
}

.goal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.pricing-section {
  padding-bottom: 90px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
  margin-top: 60px;
}

.price-card {
  display: flex;
  min-height: 490px;
  flex-direction: column;
  padding: 30px;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px;
}

.recommended-plan {
  color: #fff;
  background: linear-gradient(155deg, #123b89 0%, #082d68 55%, #052456 100%);
  border-color: transparent;
  box-shadow: 0 22px 55px rgba(8, 45, 104, .23);
  transform: translateY(-12px);
}

.popular-badge {
  padding: 6px 11px;
  position: absolute;
  top: -13px;
  right: 24px;
  color: #6d4b00;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-topline h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 22px;
}

.plan-topline > span {
  padding: 6px 10px;
  color: var(--blue);
  background: #eaf1ff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.recommended-plan .plan-topline h3 {
  color: #fff;
}

.recommended-plan .plan-topline > span {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.plan-for {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.recommended-plan .plan-for {
  color: #b9cae8;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 25px 0;
  margin-top: 21px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.recommended-plan .plan-price {
  border-color: rgba(255, 255, 255, .13);
}

.plan-price strong {
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 42px;
  letter-spacing: -.04em;
}

.recommended-plan .plan-price strong {
  color: #fff;
}

.plan-price span {
  color: var(--muted);
  font-size: 12px;
}

.recommended-plan .plan-price span {
  color: #b9cae8;
}

.price-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 30px;
  color: #526780;
  font-size: 13px;
  list-style: none;
}

.recommended-plan ul {
  color: #d4dff2;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.price-card li svg {
  width: 18px;
  height: 18px;
  padding: 2px;
  color: var(--teal);
  background: #ddf7f3;
  border-radius: 50%;
  stroke-width: 2.5;
}

.recommended-plan li svg {
  color: var(--yellow);
  background: rgba(255, 255, 255, .11);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.button-secondary {
  color: var(--blue);
  background: #fff;
  border-color: #bcd0fa;
}

.button-secondary:hover {
  background: #edf3ff;
}

.button-light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.button-light:hover {
  background: #f1f5ff;
}

.policy-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
  padding: 24px;
  background: var(--surface);
  border-radius: 20px;
}

.policy-strip article {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 23px;
  border-right: 1px solid var(--line);
}

.policy-strip article:first-child {
  padding-left: 0;
}

.policy-strip article:last-child {
  padding-right: 0;
  border-right: 0;
}

.policy-strip svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.policy-strip span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 11px;
}

.policy-strip strong {
  color: var(--navy);
  font-size: 13px;
}

.policy-note {
  margin: 16px 0 0;
  color: #7b899b;
  font-size: 11px;
  text-align: center;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 250px;
  padding: 50px 58px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #1459e8 0%, #0e4fd6 58%, #7047eb 100%);
  border-radius: 30px;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
}

.final-cta::before {
  width: 320px;
  height: 320px;
  right: 110px;
  bottom: -250px;
}

.final-cta::after {
  width: 210px;
  height: 210px;
  top: -150px;
  left: 44%;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta > div {
  max-width: 720px;
}

.final-cta .eyebrow-label {
  color: #bff6ed;
}

.final-cta h2 {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(30px, 3.8vw, 44px);
}

.button-white {
  flex: 0 0 auto;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 12px 28px rgba(10, 35, 91, .2);
}

.button-white:hover {
  background: #f0f5ff;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 150px;
  color: var(--muted);
  font-size: 12px;
}

.footer-brand {
  font-size: 18px;
}

footer p {
  margin: 0;
}

footer > a:last-child {
  justify-self: end;
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: .85fr 1.15fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .learning-path {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .path-arrow {
    display: none;
  }

  .goals-layout {
    gap: 45px;
  }

  .quick-benefits article {
    padding-inline: 15px;
  }
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .hero-copy {
    max-width: 650px;
    text-align: center;
    margin: auto;
  }

  .eyebrow,
  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    width: min(620px, 100%);
    margin: 15px auto 0;
  }

  .lesson-window {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(1deg);
  }

  .progress-card {
    left: 2%;
  }

  .next-session-card {
    right: 2%;
  }

  .quick-benefits {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }

  .quick-benefits article:nth-child(2) {
    border-right: 0;
  }

  .quick-benefits article:nth-child(3) {
    padding-left: 0;
  }

  .goals-layout {
    grid-template-columns: 1fr;
  }

  .goals-copy {
    max-width: 620px;
    text-align: center;
    margin: auto;
  }

  .goals-copy > p {
    margin-left: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 570px;
    margin-inline: auto;
  }

  .recommended-plan {
    transform: none;
  }

  .policy-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .policy-strip article,
  .policy-strip article:first-child,
  .policy-strip article:last-child {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .policy-strip article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .final-cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .site-header,
  footer {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 70px;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .site-header nav > a:not(.nav-cta) {
    display: none;
  }

  .site-header nav {
    gap: 0;
  }

  .nav-cta {
    padding: 9px 15px;
    font-size: 12px;
  }

  .hero {
    gap: 30px;
    min-height: auto;
    padding-block: 40px 55px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(42px, 13vw, 56px);
  }

  .hero-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 17px;
  }

  .button {
    min-height: 49px;
    padding: 12px 18px;
  }

  .starting-price {
    padding-left: 17px;
    text-align: left;
  }

  .starting-price strong {
    font-size: 22px;
  }

  .hero-points {
    gap: 9px 12px;
    margin-top: 25px;
    font-size: 11px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .lesson-window {
    width: 92%;
    border-width: 6px;
    border-radius: 22px;
  }

  .video-area {
    height: 248px;
  }

  .tutor-avatar {
    width: 170px;
    right: 19%;
  }

  .student-video {
    width: 70px;
    height: 83px;
    padding: 7px 7px 4px;
  }

  .student-avatar {
    width: 49px;
  }

  .conversation-bubble {
    padding: 7px 9px;
    font-size: 9px;
  }

  .bubble-one {
    top: 28px;
    left: 15px;
  }

  .bubble-two {
    top: 72px;
    right: 14px;
  }

  .lesson-controls {
    height: 48px;
  }

  .progress-card {
    width: 164px;
    padding: 12px;
    left: -3px;
    bottom: -1px;
  }

  .progress-heading strong {
    font-size: 18px;
  }

  .mini-chart {
    height: 46px;
    gap: 5px;
  }

  .next-session-card {
    right: -4px;
    bottom: -25px;
  }

  .quick-benefits {
    grid-template-columns: 1fr;
    padding-block: 24px;
  }

  .quick-benefits article,
  .quick-benefits article:first-child,
  .quick-benefits article:nth-child(3),
  .quick-benefits article:last-child {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-benefits article:last-child {
    border-bottom: 0;
  }

  .quick-benefits article > div span {
    white-space: normal;
  }

  .path-section,
  .pricing-section {
    padding-block: 84px;
  }

  .section-heading h2,
  .goals-copy h2 {
    font-size: 36px;
  }

  .section-heading p,
  .goals-copy > p {
    font-size: 15px;
  }

  .learning-path {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 42px;
  }

  .path-step {
    min-height: auto;
    padding: 25px;
  }

  .featured-step {
    transform: none;
  }

  .goals-section {
    padding-block: 80px;
  }

  .goals-layout {
    gap: 36px;
  }

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

  .goal-card {
    min-height: auto;
    padding: 22px;
  }

  .pricing-grid {
    margin-top: 45px;
  }

  .price-card {
    min-height: 470px;
    padding: 25px;
  }

  .policy-strip {
    padding: 22px;
  }

  .final-cta {
    width: min(100% - 24px, 1180px);
    min-height: 310px;
    padding: 42px 24px;
    border-radius: 24px;
  }

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

  .final-cta .button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding-block: 34px;
    text-align: center;
  }

  footer > a:last-child {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
