/* Sales home and psychometric coming soon */
.sales-home {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 78px;
}

.sales-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.sales-hero-copy {
  max-width: 700px;
}

.sales-hero-copy h1 {
  margin: 10px 0 22px;
  color: var(--navy);
  font-size: clamp(4.2rem, 7.4vw, 7.8rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.sales-hero-copy h1 span {
  color: var(--blue);
}

.sales-hero-lead {
  max-width: 640px;
  margin: 0;
  color: var(--slate);
  font-size: clamp(1.14rem, 1.6vw, 1.38rem);
  line-height: 1.8;
}

.sales-hero-actions,
.psychometric-coming-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.sales-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.sales-proof span {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.sales-portrait {
  position: absolute;
  inset: 0 0 58px 74px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--soft-blue);
  box-shadow: 0 26px 70px rgba(11, 50, 99, 0.14);
}

.sales-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(8, 47, 94, 0.18));
}

.sales-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 38%;
}

.sales-method-card {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: min(330px, 78%);
  display: grid;
  gap: 9px;
  padding: 24px 26px;
  border: 1px solid rgba(213, 226, 238, 0.95);
  border-radius: 22px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(11, 50, 99, 0.16);
}

.sales-method-card span {
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 800;
}

.sales-method-card strong {
  font-size: 1.02rem;
}

.sales-method-card i {
  width: 2px;
  height: 10px;
  margin-right: 8px;
  background: var(--aqua);
}

.sales-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 120px);
  margin: 54px 0;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(94, 206, 224, 0.18), transparent 30%),
    var(--navy);
}

.sales-intro h2,
.sales-products h2,
.sales-final-cta h2 {
  margin: 8px 0 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.sales-intro .eyebrow {
  color: #8be1ed;
}

.sales-intro-copy {
  align-self: end;
}

.sales-intro-copy p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.85;
}

.sales-intro-copy a {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-weight: 900;
}

.sales-products {
  padding: 78px 0 34px;
}

.sales-products > header {
  max-width: 760px;
  margin-bottom: 30px;
}

.sales-products h2,
.sales-final-cta h2 {
  color: var(--navy);
}

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

.sales-product-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 16px 44px rgba(11, 50, 99, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sales-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(11, 50, 99, 0.12);
}

.sales-product-card.featured {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.sales-product-number {
  font-size: 0.86rem;
  font-weight: 900;
  opacity: 0.58;
}

.sales-product-kicker {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
}

.sales-product-card.featured .sales-product-kicker {
  color: #83dbe8;
}

.sales-product-card h3 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.sales-product-card p {
  max-width: 540px;
  margin: 0;
  color: var(--slate);
  line-height: 1.75;
}

.sales-product-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.sales-final-cta {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 56px;
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 50%, rgba(92, 205, 224, 0.14), transparent 34%),
    #f8fbfd;
}

.sales-final-cta p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--slate);
}

.psychometric-coming-page {
  width: min(1240px, calc(100% - 48px));
  min-height: calc(100vh - 210px);
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 54px 0 70px;
}

.psychometric-coming-card {
  position: relative;
  width: 100%;
  min-height: 590px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(38px, 7vw, 86px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 10%, rgba(89, 206, 225, 0.18), transparent 29%),
    linear-gradient(145deg, #fff 0%, #f4f9fc 100%);
  box-shadow: 0 26px 80px rgba(11, 50, 99, 0.11);
}

.psychometric-coming-copy h1 {
  margin: 12px 0 22px;
  color: var(--navy);
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.psychometric-coming-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--slate);
  font-size: 1.13rem;
  line-height: 1.8;
}

.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--blue);
  background: #e7f5f8;
  font-size: 0.86rem;
  font-weight: 900;
}

.coming-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31b5c8;
  box-shadow: 0 0 0 5px rgba(49, 181, 200, 0.13);
}

.psychometric-build-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 38px;
  border-radius: 30px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 24px 60px rgba(8, 46, 91, 0.2);
}

.build-logo {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: #fff;
}

.build-logo img {
  width: 62px;
}

.build-progress > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 800;
}

.build-progress > i {
  height: 9px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.build-progress > i b {
  width: 68%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #60d4e4, #fff);
}

.psychometric-build-visual > p {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .sales-hero,
  .psychometric-coming-card {
    grid-template-columns: 1fr;
  }

  .sales-hero {
    padding-top: 18px;
  }

  .sales-hero-visual {
    min-height: 470px;
  }

  .sales-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .psychometric-build-visual {
    min-height: 290px;
  }
}

@media (max-width: 680px) {
  .sales-home,
  .psychometric-coming-page {
    width: min(100% - 24px, 1320px);
  }

  .sales-home {
    padding-top: 30px;
  }

  .sales-hero {
    min-height: auto;
    gap: 34px;
  }

  .sales-hero-copy h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .sales-hero-visual {
    min-height: 410px;
  }

  .sales-portrait {
    inset: 0 0 52px 34px;
    border-radius: 24px;
  }

  .sales-product-grid {
    grid-template-columns: 1fr;
  }

  .sales-product-card {
    min-height: 290px;
  }

  .sales-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .psychometric-coming-card {
    min-height: auto;
    padding: 28px 22px;
    border-radius: 26px;
  }

  .psychometric-coming-copy h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .psychometric-coming-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .psychometric-coming-actions .button {
    justify-content: center;
    text-align: center;
  }
}

/* 2026 home redesign */
.sales-home {
  --home-navy: #072f63;
  --home-blue: #0b4f9c;
  --home-cyan: #60cddd;
  --home-ink: #11233c;
  --home-muted: #607087;
  --home-line: #d9e5ec;
  --home-paper: #f7fafb;
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 88px;
}

.sales-home .sales-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(470px, 0.88fr) minmax(590px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  padding: clamp(70px, 8vh, 110px) 0;
}

.sales-home .sales-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 5% auto auto 56%;
  width: min(44vw, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 205, 221, 0.16), rgba(96, 205, 221, 0) 68%);
  pointer-events: none;
}

.sales-home .sales-hero-copy {
  max-width: 670px;
}

.home-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 8px 13px;
  border: 1px solid #cfe4e8;
  border-radius: 999px;
  color: var(--home-navy);
  background: rgba(235, 248, 249, 0.78);
  font-size: 0.83rem;
  font-weight: 900;
}

.home-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29b5c8;
  box-shadow: 0 0 0 5px rgba(41, 181, 200, 0.12);
}

.sales-home .sales-hero-copy h1 {
  max-width: 680px;
  margin: 0 0 25px;
  color: var(--home-navy);
  font-size: clamp(4rem, 6vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.sales-home .sales-hero-copy h1 em {
  color: var(--home-blue);
  font-style: normal;
}

.sales-home .sales-hero-lead {
  max-width: 610px;
  color: var(--home-muted);
  font-size: clamp(1.12rem, 1.5vw, 1.34rem);
  line-height: 1.8;
}

.sales-home .sales-hero-actions {
  margin-top: 30px;
}

.home-primary-action {
  gap: 18px;
}

.home-primary-action span {
  font-size: 1.15rem;
  transition: transform 160ms ease;
}

.home-primary-action:hover span {
  transform: translateX(-4px);
}

.sales-home .sales-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--home-muted);
  list-style: none;
  font-size: 0.89rem;
  font-weight: 800;
}

.sales-home .sales-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.sales-home .sales-proof li span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  color: var(--home-blue);
  background: #e7f3f6;
  font-size: 0.76rem;
}

.product-preview {
  position: relative;
  min-width: 0;
  padding: 0 0 36px 34px;
  direction: rtl;
}

.preview-window {
  overflow: hidden;
  border: 1px solid #cfdee7;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 34px 80px rgba(7, 47, 99, 0.15),
    0 4px 16px rgba(7, 47, 99, 0.06);
}

.preview-window-bar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  border-bottom: 1px solid var(--home-line);
  direction: ltr;
}

.preview-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8e3e9;
}

.preview-window-bar span:first-child {
  background: var(--home-cyan);
}

.preview-window-bar strong {
  margin-left: auto;
  color: var(--home-navy);
  font-size: 0.82rem;
}

.preview-workspace {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 174px;
  background: var(--home-paper);
}

.preview-question {
  padding: 22px;
}

.preview-question-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--home-muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.preview-question-head > div {
  display: flex;
  gap: 5px;
}

.preview-question-head b {
  padding: 7px 11px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  background: #fff;
}

.preview-question-head b.active {
  color: #fff;
  border-color: var(--home-blue);
  background: var(--home-blue);
}

.preview-solution {
  min-height: 430px;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--home-line);
  border-top: 4px solid var(--home-blue);
  border-radius: 15px;
  background: #fff;
}

.preview-kicker {
  margin: 0 0 6px;
  color: var(--home-blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.preview-solution h2 {
  margin: 0 0 28px;
  color: var(--home-navy);
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  letter-spacing: -0.035em;
}

.preview-step {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 12px;
  margin-top: 17px;
}

.preview-step > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--home-blue);
  background: #eaf3f7;
  font-weight: 900;
}

.preview-step strong {
  display: block;
  color: var(--home-ink);
  font-size: 0.94rem;
}

.preview-step p {
  margin: 4px 0 0;
  color: var(--home-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.preview-formula {
  width: min(320px, 82%);
  margin: 22px auto;
  padding: 17px 20px;
  border: 1px solid #d6e5ec;
  border-radius: 12px;
  color: var(--home-navy);
  background: #f6fafc;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
}

.preview-formula span {
  white-space: nowrap;
}

.preview-step.compact {
  align-items: center;
}

.mini-sign-line {
  width: min(230px, 100%);
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: center;
  margin-top: 10px;
  direction: ltr;
}

.mini-sign-line::before,
.mini-sign-line::after {
  content: "";
  grid-row: 1;
  height: 2px;
  background: #bfd2dd;
}

.mini-sign-line::before {
  grid-column: 1;
}

.mini-sign-line::after {
  grid-column: 3;
}

.mini-sign-line i,
.mini-sign-line b {
  grid-row: 1;
  text-align: center;
}

.mini-sign-line i:first-of-type {
  grid-column: 1;
}

.mini-sign-line i:last-of-type {
  grid-column: 3;
}

.mini-sign-line b {
  grid-column: 2;
  color: var(--home-blue);
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 14px;
  border-right: 1px solid var(--home-line);
  background: #fff;
}

.preview-sidebar > p {
  margin: 0 8px 8px;
  color: var(--home-muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.preview-sidebar .preview-topic {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 10px;
  border: 0;
  border-radius: 10px;
  color: var(--home-muted);
  background: transparent;
  text-align: right;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
}

.preview-sidebar .preview-topic span {
  min-width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #718095;
  background: #eef3f6;
  font-size: 0.69rem;
}

.preview-sidebar .preview-topic.selected {
  color: #fff;
  background: var(--home-blue);
  box-shadow: 0 8px 20px rgba(11, 79, 156, 0.2);
}

.preview-sidebar .preview-topic.selected span {
  color: var(--home-blue);
  background: #fff;
}

.preview-progress {
  margin-top: auto;
  padding: 14px 10px 6px;
  border-top: 1px solid var(--home-line);
}

.preview-progress span {
  display: block;
  color: var(--home-muted);
  font-size: 0.67rem;
  font-weight: 800;
}

.preview-progress strong {
  display: block;
  margin: 2px 0 8px;
  color: var(--home-navy);
}

.preview-progress i {
  height: 6px;
  display: block;
  overflow: hidden;
  border-radius: 99px;
  background: #e5edf1;
}

.preview-progress i b {
  width: 36%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--home-cyan);
}

.preview-float-card {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  width: min(270px, 60%);
  padding: 16px;
  border: 1px solid #d1e2e8;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 42px rgba(7, 47, 99, 0.14);
}

.preview-float-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--home-blue);
  font-weight: 900;
}

.preview-float-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.71rem;
  line-height: 1.5;
}

.preview-float-card strong {
  display: block;
  color: var(--home-navy);
  font-size: 0.82rem;
}

.home-trust-strip {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 25px clamp(24px, 4vw, 48px);
  border: 1px solid var(--home-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(7, 47, 99, 0.05);
}

.home-trust-strip > p {
  max-width: 250px;
  margin: 0;
  color: var(--home-navy);
  font-weight: 900;
}

.home-trust-strip > div {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.5vw, 36px);
  color: var(--home-muted);
  font-size: 0.87rem;
  font-weight: 800;
}

.home-trust-strip span {
  white-space: nowrap;
}

.home-trust-strip span b {
  margin-left: 5px;
  color: var(--home-cyan);
  font-size: 0.7rem;
}

.home-trust-strip i {
  width: clamp(26px, 4vw, 70px);
  height: 1px;
  background: #cfdde4;
}

.home-method {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding: clamp(100px, 11vw, 160px) 0;
}

.home-method > header {
  max-width: 600px;
}

.home-method h2,
.sales-products h2,
.teacher-proof h2,
.sales-final-cta h2 {
  margin: 8px 0 20px;
  color: var(--home-navy);
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.home-method > header > p:not(.eyebrow) {
  margin: 0;
  color: var(--home-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.method-comparison {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.method-card {
  min-height: 380px;
  padding: 28px;
  border-radius: 22px;
}

.method-card > span {
  display: inline-block;
  margin-bottom: 34px;
  font-size: 0.8rem;
  font-weight: 900;
}

.method-card ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-card li {
  position: relative;
  padding-right: 30px;
  line-height: 1.55;
  font-weight: 800;
}

.method-card li::before {
  position: absolute;
  right: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.7rem;
}

.muted-card {
  border: 1px solid var(--home-line);
  color: #718095;
  background: #f2f5f6;
}

.muted-card > span {
  color: #7b8797;
}

.muted-card li::before {
  content: "×";
  color: #7b8797;
  background: #e2e8eb;
}

.academy-card {
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, rgba(96, 205, 221, 0.24), transparent 33%),
    var(--home-navy);
  box-shadow: 0 24px 54px rgba(7, 47, 99, 0.2);
}

.academy-card > span {
  color: #8ce3ed;
}

.academy-card li::before {
  content: "✓";
  color: var(--home-navy);
  background: var(--home-cyan);
}

.sales-home .sales-products {
  padding: 18px 0 clamp(100px, 11vw, 160px);
}

.products-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
}

.products-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.products-heading > p {
  margin: 0 0 7px;
  color: var(--home-muted);
  line-height: 1.8;
}

.sales-home .sales-product-grid {
  gap: 20px;
}

.sales-home .sales-product-card {
  min-height: 430px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(7, 47, 99, 0.07);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--home-muted);
  background: #f1f5f7;
  font-size: 0.74rem;
  font-weight: 900;
}

.product-status.live {
  color: #b9f4f8;
  background: rgba(255, 255, 255, 0.1);
}

.product-status.live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-cyan);
}

.sales-home .sales-product-card h3 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  letter-spacing: -0.04em;
}

.sales-home .sales-product-card p {
  max-width: 590px;
  font-size: 1.02rem;
}

.sales-home .sales-product-card > strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sales-home .sales-product-card.featured {
  background:
    linear-gradient(145deg, rgba(96, 205, 221, 0.08), transparent 45%),
    var(--home-navy);
}

.sales-home .course-pilot-card {
  min-height: 270px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(320px, 1.45fr) auto;
  align-items: center;
  background:
    radial-gradient(circle at 8% 20%, rgba(96, 205, 221, 0.15), transparent 28%),
    linear-gradient(115deg, #fff 0%, #f4faf9 54%, #edf5fb 100%);
}

.course-pilot-status {
  color: #075a55;
  background: #dff6ef;
}

.course-pilot-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2c8e8b;
}

.sales-home .course-pilot-card h3 {
  font-size: clamp(2.35rem, 4vw, 4.4rem);
}

.sales-home .course-pilot-card > strong {
  max-width: 210px;
  justify-content: flex-end;
  color: var(--home-blue);
  text-align: left;
}

.teacher-proof {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
  padding: clamp(44px, 6vw, 80px);
  border-radius: 32px;
  background: #eaf3f6;
}

.teacher-proof-photo {
  position: relative;
  min-height: 510px;
}

.teacher-proof-photo::before {
  content: "";
  position: absolute;
  inset: 22px 28px -18px -18px;
  border: 1px solid rgba(11, 79, 156, 0.25);
  border-radius: 25px;
}

.teacher-proof-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 48%;
  border-radius: 25px;
  filter: saturate(0.82) contrast(1.03);
}

.teacher-proof-photo > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border-radius: 10px;
  color: var(--home-navy);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(9px);
}

.teacher-proof-copy {
  max-width: 720px;
}

.teacher-proof-copy > p:not(.eyebrow) {
  margin: 0 0 16px;
  color: var(--home-muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.teacher-proof-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.teacher-proof-meta span {
  padding: 14px 0;
  border-top: 1px solid #c5d9e1;
  color: var(--home-muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.teacher-proof-meta strong {
  display: block;
  margin-bottom: 3px;
  color: var(--home-navy);
  font-size: 1rem;
}

.teacher-proof-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--home-blue);
  font-weight: 900;
}

.sales-home .sales-final-cta {
  min-height: 340px;
  margin-top: clamp(80px, 10vw, 140px);
  padding: clamp(42px, 6vw, 76px);
  border: 0;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 9% 50%, rgba(96, 205, 221, 0.22), transparent 32%),
    var(--home-navy);
  box-shadow: 0 24px 64px rgba(7, 47, 99, 0.17);
}

.sales-home .sales-final-cta h2 {
  max-width: 760px;
  color: #fff;
}

.sales-home .sales-final-cta .eyebrow {
  color: #8ce3ed;
}

.sales-home .sales-final-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sales-home .sales-final-cta .button.primary {
  color: var(--home-navy);
  background: #fff;
}

.final-whatsapp {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}

@media (max-width: 1120px) {
  .sales-home .sales-hero {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 38px;
  }

  .preview-workspace {
    grid-template-columns: minmax(0, 1fr) 145px;
  }

  .preview-sidebar {
    padding-inline: 9px;
  }

  .sales-home .sales-proof {
    display: grid;
  }

  .home-method {
    gap: 50px;
  }
}

@media (max-width: 920px) {
  .sales-home .sales-hero,
  .home-method,
  .teacher-proof {
    grid-template-columns: 1fr;
  }

  .sales-home .sales-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .sales-home .sales-hero-copy {
    max-width: 760px;
  }

  .sales-home .sales-proof {
    display: flex;
  }

  .product-preview {
    max-width: 760px;
  }

  .home-trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-trust-strip > p {
    max-width: none;
  }

  .home-trust-strip > div {
    width: 100%;
    justify-content: space-between;
  }

  .home-method {
    padding-block: 110px;
  }

  .method-comparison {
    max-width: 760px;
  }

  .teacher-proof-photo {
    width: min(470px, 100%);
    min-height: 520px;
  }

  .teacher-proof-copy {
    max-width: 760px;
  }

  .sales-home .course-pilot-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .sales-home .course-pilot-card > strong {
    max-width: none;
    justify-content: flex-start;
    text-align: right;
  }
}

@media (max-width: 680px) {
  .sales-home {
    width: min(100% - 24px, 1420px);
    padding-bottom: 48px;
  }

  .sales-home .sales-hero {
    gap: 44px;
    padding: 38px 0 66px;
  }

  .home-badge {
    align-items: flex-start;
    border-radius: 14px;
    line-height: 1.5;
  }

  .home-badge span {
    flex: 0 0 auto;
    margin-top: 5px;
  }

  .sales-home .sales-hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
    line-height: 1;
  }

  .sales-home .sales-hero-lead {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .sales-home .sales-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sales-home .sales-proof {
    display: grid;
    gap: 10px;
  }

  .product-preview {
    padding: 0 0 28px 10px;
  }

  .preview-window {
    border-radius: 17px;
  }

  .preview-window-bar {
    height: 43px;
    padding-inline: 14px;
  }

  .preview-workspace {
    min-height: 440px;
    grid-template-columns: minmax(0, 1fr) 92px;
  }

  .preview-question {
    padding: 10px;
  }

  .preview-question-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 9px;
  }

  .preview-question-head > div {
    width: 100%;
  }

  .preview-question-head b {
    flex: 1;
    padding: 5px;
    text-align: center;
  }

  .preview-solution {
    min-height: 360px;
    padding: 18px 14px;
  }

  .preview-solution h2 {
    margin-bottom: 18px;
    font-size: 1.45rem;
  }

  .preview-step {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
  }

  .preview-step > span {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .preview-step p {
    display: none;
  }

  .preview-formula {
    width: 100%;
    padding: 13px 7px;
    font-size: 0.95rem;
  }

  .preview-sidebar {
    padding: 12px 6px;
  }

  .preview-sidebar > p {
    margin-inline: 3px;
    font-size: 0.62rem;
  }

  .preview-sidebar .preview-topic {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 6px;
    font-size: 0.61rem;
  }

  .preview-sidebar .preview-topic span {
    min-width: 20px;
    height: 20px;
  }

  .preview-progress {
    display: none;
  }

  .preview-float-card {
    width: 190px;
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 10px;
  }

  .preview-float-card > span {
    width: 32px;
    height: 32px;
  }

  .preview-float-card p {
    font-size: 0.61rem;
  }

  .preview-float-card strong {
    font-size: 0.69rem;
  }

  .home-trust-strip {
    gap: 18px;
    padding: 22px 18px;
  }

  .home-trust-strip > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .home-trust-strip i {
    display: none;
  }

  .home-method {
    gap: 34px;
    padding-block: 88px;
  }

  .home-method h2,
  .sales-products h2,
  .teacher-proof h2,
  .sales-final-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

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

  .method-card {
    min-height: 0;
  }

  .products-heading {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .sales-home .sales-product-card {
    min-height: 360px;
  }

  .sales-home .course-pilot-card {
    min-height: 360px;
  }

  .teacher-proof {
    gap: 45px;
    padding: 34px 22px;
    border-radius: 24px;
  }

  .teacher-proof-photo {
    min-height: 410px;
  }

  .teacher-proof-meta {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sales-home .sales-final-cta {
    align-items: stretch;
    gap: 30px;
    min-height: 0;
    padding: 38px 24px;
    border-radius: 24px;
  }

  .final-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sales-home *,
  .sales-home *::before,
  .sales-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
