:root {
  --color-primary: #e83c66;
  --color-secondary: #fcc031;
  --color-bg-dark: #0b1e28;
  --color-bg-soft: #f6f6f6;
  --color-text: #000000;
  --color-white: #ffffff;
  --color-muted: #5e5e5e;
  --radius-12: 12px;
  --radius-24: 24px;
  --radius-64: 64px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--color-bg-soft);
  color: var(--color-text);
  font-family: "Open Sans", sans-serif;
}

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

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

button {
  font: inherit;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  width: calc(100% - 32px);
}

.top-news {
  background: var(--color-primary);
  color: var(--color-white);
}

.top-news-inner {
  align-items: center;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  justify-content: space-between;
  min-height: 44px;
  padding: 6px 0;
}

.top-news-left {
  align-items: center;
  display: flex;
  font-size: 12px;
  gap: 8px;
  grid-column: 2;
  justify-content: center;
  line-height: 18px;
  min-width: 0;
  text-align: center;
}

.top-news-left span {
  display: block;
  max-width: 100%;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.top-news-right {
  align-items: center;
  display: flex;
  gap: 16px;
  grid-column: 3;
  justify-content: flex-end;
  justify-self: end;
}

.top-news-right a {
  align-items: center;
  display: inline-flex;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  gap: 6px;
  line-height: 20px;
}

.top-news-close {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  padding: 0;
}

.contact-strip {
  background: var(--color-bg-dark);
  border-bottom: 1px solid var(--color-bg-dark);
  color: #f6f6f6;
}

.contact-strip-inner {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 48px;
}

.contact-links {
  align-items: center;
  display: flex;
  gap: 24px;
}

.contact-links a {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  gap: 8px;
  line-height: 18px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-left: 24px;
}

.social-links a {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.hero {
  min-height: 629px;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 22%, rgba(0, 13, 26, 0.8) 100%);
  inset: 0;
  position: absolute;
}

.hero-nav-wrap {
  position: relative;
  z-index: 2;
}

.hero-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 80px;
  padding: 16px 0;
}

.brand {
  align-items: center;
  display: inline-flex;
  height: 40px;
  width: 128px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 32px;
}

.main-nav a {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  gap: 4px;
  line-height: 20px;
  padding: 10px 0;
}

.main-nav a.active {
  border-bottom: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 24px;
}

.btn-icon {
  align-items: center;
  background: #fcf0f3;
  border-radius: var(--radius-12);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  padding: 12px 24px;
}

.btn-login {
  align-items: center;
  background: var(--color-primary);
  border-radius: var(--radius-12);
  color: var(--color-white);
  display: inline-flex;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  gap: 6px;
  line-height: 20px;
  padding: 12px 24px;
}

.hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  left: 50%;
  position: absolute;
  top: 287px;
  transform: translateX(-50%);
  width: 792px;
  z-index: 3;
}

.hero-badge {
  align-items: center;
  background: var(--color-secondary);
  border-radius: var(--radius-24);
  color: #2b2108;
  display: inline-flex;
  font-size: 12px;
  gap: 8px;
  line-height: 18px;
  padding: 6px 12px;
}

.hero h1 {
  color: var(--color-white);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -1.04px;
  line-height: 56px;
  margin: 0;
  text-align: center;
}

.hero-cta {
  align-items: center;
  background: var(--color-primary);
  border-radius: var(--radius-64);
  color: var(--color-white);
  display: inline-flex;
  font-size: 20px;
  font-weight: 600;
  gap: 6px;
  letter-spacing: -0.4px;
  line-height: 28px;
  padding: 12px 24px;
}

.lesson-section {
  background: var(--color-bg-soft);
  padding: 48px 0;
}

.section-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-badge {
  align-items: center;
  background: var(--color-secondary);
  border-radius: var(--radius-24);
  display: inline-flex;
  font-size: 14px;
  gap: 8px;
  line-height: 20px;
  padding: 6px 12px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 48px;
  margin: 0;
  text-align: center;
}

.lesson-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.lesson-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lesson-image-wrap {
  background: #f4f6fb;
  border-radius: var(--radius-12);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  height: 378px;
  overflow: hidden;
}

.lesson-image-wrap img {
  --media-hover-scale: 1;
  --media-rest-scale: 1;
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.lesson-card h3 {
  align-items: center;
  display: flex;
  font-size: 24px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: -0.48px;
  line-height: 32px;
  margin: 0;
}

.lesson-icon {
  background: var(--color-primary);
  border-radius: 10px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  flex: 0 0 40px;
  width: 40px;
}

.lesson-icon-users {
  background-image: url("../img/icon-lesson-users.svg");
}

.lesson-icon-video {
  background-image: url("../img/icon-lesson-video.svg");
}

.lesson-icon-calendar {
  background-image: url("../img/icon-lesson-calendar.svg");
}

.lesson-card p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.first-look-section {
  background: #f3df98;
  padding: 64px 0 70px;
}

.first-look-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.first-look-heading h2 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.96px;
  line-height: 48px;
  margin: 0;
  text-align: center;
}

.first-look-video {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  height: 675px;
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}

.first-look-video::after {
  background: rgba(11, 19, 27, 0.35);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.first-look-video img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.first-look-video iframe,
.first-look-video video {
  border: 0;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.first-look-video.is-playing {
  background: #000000;
}

.first-look-video.is-playing::after,
.first-look-video.is-playing img,
.first-look-video.is-playing .video-play {
  display: none;
}

.video-play {
  align-items: center;
  background: #ffffff;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  display: inline-flex;
  height: 120px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  z-index: 2;
}

.video-play-icon {
  background: center / contain no-repeat url("../img/icon-play-outline.svg");
  display: block;
  height: 40px;
  margin-left: 6px;
  width: 36px;
}

.tools-section {
  background: #ffffff;
  padding: 0 0 36px;
}

.tools-section .section-heading h2 {
  max-width: 670px;
  white-space: normal;
}

.tools-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}

.tool-row {
  align-items: center;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
  display: grid;
  grid-template-columns: 564px 572px;
  overflow: hidden;
  padding: 32px;
}

.tool-row.theme-pink {
  background: #e83c66;
  color: #ffffff;
}

.tool-row.theme-yellow {
  background: #fcc031;
  border: 0;
  color: #000000;
}

.tool-row.theme-dark {
  background: #0b1e28;
  color: #ffffff;
}

.tool-row-reverse {
  grid-template-columns: 53% 47%;
}

.tool-row-first {
  min-height: 432px;
}

.tool-row-first .tool-media {
  background: #ffffff;
  box-shadow: none;
}

.tool-row-second {
  grid-template-columns: 572px 564px;
  min-height: 344px;
}

.tool-row-second .tool-content p {
  color: #000000;
  max-width: 508px;
}

.tool-row-third {
  min-height: 460px;
}

.tool-media-portal {
  border-radius: 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.tool-media-portal img {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}

.tool-media {
  border-radius: 12px;
  min-height: 368px;
  overflow: hidden;
  position: relative;
}

.tool-media-short {
  min-height: 280px;
}

.tool-media-tall {
  min-height: 396px;
}

.tool-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.tool-row-first .tool-media img {
  height: calc(100% + 10px);
  left: -8px;
  max-width: none;
  object-position: center;
  position: absolute;
  top: -5px;
  width: calc(100% + 16px);
}

.tool-media-resources {
  background: #c4c4c4;
}

.tool-media-resources-inner {
  border-radius: 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  height: 413px;
  left: -32px;
  overflow: hidden;
  position: absolute;
  top: -20px;
  width: 614px;
}

.tool-media-resources-inner img {
  height: 156.9%;
  left: 2.1%;
  max-width: none;
  object-fit: fill;
  position: absolute;
  top: 5%;
  width: 95.94%;
}

.tool-media-phone {
  align-items: center;
  background: radial-gradient(circle at 75% 20%, rgba(248, 208, 71, 0.3) 0%, rgba(248, 208, 71, 0) 38%);
  display: flex;
  justify-content: center;
}

.phone-stack {
  display: flex;
  justify-content: center;
  padding: 28px 20px;
  width: 100%;
}

.phone-shell {
  background: #060f17;
  border: 3px solid #32485a;
  border-radius: 30px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.42);
  height: 312px;
  padding: 12px;
  width: 178px;
}

.phone-notch {
  background: #2f4050;
  border-radius: 999px;
  height: 6px;
  margin: 0 auto 12px;
  width: 56px;
}

.phone-screen {
  background: linear-gradient(180deg, #1f2f3e 0%, #132736 56%, #102333 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: calc(100% - 18px);
  padding: 18px 14px;
}

.phone-line {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  height: 10px;
  width: 100%;
}

.phone-line.short {
  width: 70%;
}

.phone-pill {
  background: var(--color-primary);
  border-radius: 999px;
  height: 44px;
  margin-top: auto;
  width: 100%;
}

.tool-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  padding: 32px;
}

.tool-content-short {
  min-height: 280px;
}

.tool-content-tall {
  min-height: 396px;
}

.tool-content h3 {
  align-items: center;
  display: inline-flex;
  font-size: 24px;
  font-weight: 600;
  gap: 24px;
  letter-spacing: -0.48px;
  line-height: 32px;
  margin: 0;
}

.tool-icon {
  background: #ffffff;
  border-radius: 12px;
  height: 40px;
  position: relative;
  width: 40px;
}

.tool-icon-book {
  background-color: #ffffff;
  background-image: url("../img/icon-tool-book.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.tool-icon-book::before {
  display: none;
}

.tool-icon-portal {
  background-color: #ffffff;
  background-image: url("../img/icon-badge-star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.tool-icon-resource {
  background-color: #ffffff;
  background-image: url("../img/icon-tool-file.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.tool-content p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  max-width: 508px;
}

.theme-pink .tool-content p,
.theme-dark .tool-content p {
  color: #ffffff;
}

.theme-yellow .tool-content p {
  color: #000000;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tool-tags span {
  background: #ffffff;
  border-radius: 8px;
  color: #000000;
  font-size: 14px;
  line-height: 20px;
  padding: 4px 10px;
}

.tool-link {
  align-items: center;
  color: var(--color-primary);
  display: inline-flex;
  font-size: 20px;
  font-weight: 600;
  gap: 6px;
  letter-spacing: -0.4px;
  line-height: 28px;
}

.theme-pink .tool-link,
.theme-dark .tool-link {
  color: #ffffff;
}

.tool-link-label {
  border-bottom: 1px solid #ffffff;
  line-height: 1;
  padding-bottom: 3px;
}

.theme-yellow .tool-link-label {
  border-bottom-color: #000000;
}

.tool-link-full-underline {
  align-self: flex-start;
  border-bottom: 0;
  display: inline-flex;
  padding-bottom: 4px;
  position: relative;
  text-decoration: none;
  width: fit-content;
}

.tool-link-full-underline::after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1.5px;
  left: 0;
  position: absolute;
  right: 2px;
}

.homepage-effects .tool-link.tool-link-full-underline,
body.homepage-effects .tool-link.tool-link-full-underline {
  border-bottom: 0;
}

.tool-link-full-underline .tool-link-label {
  border-bottom: 0;
  padding-bottom: 0;
}

.tools-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.tools-cta .hero-cta {
  font-weight: 500;
  justify-content: center;
  letter-spacing: -0.2px;
  min-width: 273px;
}

.journey-section {
  background: #ffffff;
  padding: 28px 0 20px;
}

.journey-section .section-heading h2 {
  max-width: 670px;
  white-space: normal;
}

.journey-timeline {
  margin: 64px auto 0;
  max-width: 1200px;
  isolation: isolate;
  position: relative;
}

.journey-timeline::before,
.journey-timeline::after {
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 0;
}

.journey-timeline::before {
  background: #e7e7e7;
  height: 100%;
  top: 0;
  width: 4px;
}

.journey-timeline::after {
  background: var(--color-primary);
  height: 140px;
  top: 0;
  width: 4px;
}

.journey-step {
  display: grid;
  gap: 74px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
  min-height: 264px;
  isolation: isolate;
  position: relative;
  z-index: 1;
}

.journey-step:last-child {
  margin-bottom: 0;
}

.journey-step::after {
  background: #ffffff;
  border-radius: 999px;
  content: "";
  height: 108px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 108px;
  z-index: 2;
}

.journey-step-reverse .journey-image {
  grid-column: 2;
  grid-row: 1;
}

.journey-step-reverse .journey-content {
  grid-column: 1;
  grid-row: 1;
}

.journey-image {
  border-radius: 12px;
  height: 264px;
  overflow: hidden;
  position: relative;
}

.journey-image img {
  height: 213.26%;
  left: 0;
  max-width: none;
  object-fit: fill;
  position: absolute;
  top: 0;
  width: 100%;
}

.journey-step-1 .journey-image img {
  left: 0.07%;
  top: -0.18%;
}

.journey-step-2 .journey-image img {
  left: -0.06%;
  top: 0.05%;
}

.journey-step-3 .journey-image img {
  left: -0.03%;
  top: -0.14%;
}

.journey-content {
  align-self: center;
  background: #ffdbe4;
  border: 0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  min-height: 264px;
  justify-content: center;
  padding: 48px;
}

.journey-content h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 32px;
  margin: 0;
}

.journey-content p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  color: #0b1e28;
}

.journey-content .tool-link {
  --stroke-0: #000000;
  border-bottom: 1px solid #000000;
  color: #0b1e28;
  margin: 0 auto;
  padding-bottom: 3px;
}

.journey-content .tool-link .tool-link-label {
  border-bottom: 0;
  padding-bottom: 0;
}

.journey-content .tool-link img {
  filter: brightness(0) saturate(100%);
}

.journey-step-2 .journey-content {
  background: #fff6df;
  padding: 36px 48px;
}

.journey-step-3 .journey-content {
  background: #ffe49e;
  padding: 36px 48px;
}

.journey-number {
  align-items: center;
  background: var(--color-primary);
  border: 4px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
  color: #ffffff;
  display: inline-flex;
  font-size: 40px;
  font-weight: 400;
  height: 100px;
  justify-content: center;
  left: 50%;
  line-height: 48px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  z-index: 3;
}

.journey-step-2 .journey-number {
  background: #fcc031;
  color: #000000;
}

.journey-step-3 .journey-number {
  background: #0b1e28;
}

.journey-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  margin-top: 64px;
}

.reviews-section {
  background: #ffffff;
  padding: 132px 0 72px;
}

.reviews-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews-heading h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 48px;
  margin: 0;
  max-width: 667px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.reviews-grid > :nth-child(n + 4) {
  --review-rest-x: -73px;
}

.review-card {
  background: #f6f6f6;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
  min-height: 196px;
  padding: 24px;
}

.review-card-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.review-user {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.review-avatar {
  border-radius: 999px;
  height: 52px;
  width: 52px;
}

.review-user-text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.review-user-text span {
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.review-meta {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-rating {
  align-items: center;
  background: var(--color-primary);
  border-radius: 30px;
  color: #ffffff;
  display: inline-flex;
  font-size: 12px;
  gap: 3px;
  line-height: 18px;
  padding: 2px 12px;
}

.review-date {
  font-size: 12px;
  line-height: 18px;
}

.review-card p {
  font-size: 16px;
  line-height: 24px;
  margin: 24px 0 0;
}

.stats-section {
  background: #ffffff;
  padding: 72px 0 56px;
  text-align: center;
}

.stats-section h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 48px;
  margin: 0 auto;
  max-width: 586px;
}

.stats-grid {
  align-items: center;
  display: flex;
  gap: 127px;
  justify-content: center;
  margin-top: 32px;
}

.stats-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stats-card:nth-child(1) {
  width: 200px;
}

.stats-card:nth-child(2) {
  width: 238px;
}

.stats-card:nth-child(3) {
  width: 211px;
}

.stats-icon {
  align-items: center;
  background: #fcf0f3;
  border-radius: 12px;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.stats-card strong {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.72px;
  line-height: 44px;
}

.stats-card p {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

.stats-text-primary {
  color: var(--color-primary);
}

.stats-text-secondary {
  color: var(--color-secondary);
}

.stats-note {
  color: #737373;
  font-size: 14px;
  line-height: 20px;
  margin: 28px 0 0;
  text-align: center;
}

.faq-contact-section {
  background: #ffffff;
  padding: 64px 0 0;
}

.faq-contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.faq-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 580px 580px;
  justify-content: space-between;
}

.faq-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-intro .section-badge {
  align-self: flex-start;
}

.faq-intro h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 48px;
  margin: 0;
}

.faq-intro p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  min-height: var(--faq-list-stable-height, auto);
  overflow-anchor: none;
}

.faq-list details {
  border-bottom: 1px solid #d1d1d1;
  overflow: hidden;
  transition: background-color 260ms ease;
}

.faq-list details > :not(summary) {
  display: block;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 400;
  justify-content: space-between;
  line-height: 28px;
  list-style: none;
  padding: 24px;
}

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

.faq-list summary span {
  padding-right: 24px;
}

.faq-chevron {
  flex: 0 0 32px;
  height: 32px;
  width: 32px;
  transition: transform 460ms cubic-bezier(0.33, 0, 0.2, 1), opacity 260ms ease;
}

.faq-list details.is-open .faq-chevron,
.faq-list details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-list p {
  color: #000000;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  padding: 16px 20px;
}

.faq-list .faq-answer {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, -6px, 0);
  transition:
    max-height 760ms cubic-bezier(0.33, 0, 0.2, 1),
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.33, 0, 0.2, 1);
  will-change: max-height, opacity, transform;
}

.faq-list .faq-answer::before {
  background: #1f1f1f;
  content: "";
  display: block;
  height: 1px;
  margin: 0 20px;
  opacity: 0.28;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 620ms cubic-bezier(0.33, 0, 0.2, 1), opacity 420ms ease;
}

.faq-list .faq-answer p {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  transition: transform 620ms cubic-bezier(0.33, 0, 0.2, 1), opacity 420ms ease;
}

.faq-list details.is-open .faq-answer,
.faq-list details[open] .faq-answer {
  max-height: 460px;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.faq-list details.is-open .faq-answer::before,
.faq-list details[open] .faq-answer::before {
  opacity: 0.52;
  transform: scaleX(1);
}

.faq-list details.is-open .faq-answer p,
.faq-list details[open] .faq-answer p {
  opacity: 1;
  transition-delay: 90ms;
  transform: translate3d(0, 0, 0);
}

.contact-form-section {
  background: var(--color-primary);
  border-radius: 12px;
  overflow: hidden;
  padding: 64px;
}

.contact-form-wrap {
  display: grid;
  gap: 48px;
  grid-template-columns: 446px 578px;
  justify-content: space-between;
}

.contact-card {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.contact-card-visual {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  height: 191px;
  overflow: hidden;
  position: relative;
}

.contact-card-visual-link {
  display: block;
  height: 100%;
  inset: 0;
  position: relative;
  text-decoration: none;
  width: 100%;
  z-index: 2;
}

.contact-card-visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.contact-card h3 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 48px;
  margin: 24px 0 0;
}

.contact-card h4 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 32px;
  margin: 6px 0 0;
}

.contact-card p {
  font-size: 18px;
  line-height: 28px;
  margin: 6px 0 0;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 23px;
}

.contact-cta {
  align-items: center;
  border-radius: var(--radius-64);
  display: inline-flex;
  font-size: 20px;
  font-weight: 600;
  gap: 6px;
  justify-content: center;
  letter-spacing: -0.4px;
  line-height: 28px;
  min-height: 52px;
  padding: 12px 24px;
  width: 100%;
}

.contact-cta-primary {
  background: #ffffff;
  color: var(--color-bg-dark);
}

.contact-cta-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.contact-form {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

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

.contact-form label {
  color: #000000;
  display: flex;
  flex-direction: column;
  font-family: "SF Pro Text", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  gap: 4px;
  line-height: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  color: #000000;
  font-family: "SF Pro Text", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  min-height: 40px;
  padding: 10px 12px;
}

.contact-form input::placeholder,
.contact-form select,
.contact-form textarea::placeholder {
  color: #b0b0b0;
}

.phone-input-wrap {
  display: grid;
  gap: 6px;
  grid-template-columns: 79px 1fr;
}

.phone-prefix {
  min-width: 79px;
}

.contact-form textarea {
  min-height: 113px;
  resize: none;
}

.contact-submit {
  align-items: center;
  background: var(--color-primary);
  border: 0;
  border-radius: var(--radius-64);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  font-weight: 600;
  gap: 6px;
  justify-content: center;
  letter-spacing: -0.4px;
  line-height: 28px;
  min-height: 52px;
  padding: 12px 24px;
  width: 100%;
}

.contact-cta img,
.contact-submit img {
  height: 18px;
  width: 18px;
}

.contact-submit img {
  --stroke-0: #ffffff;
}

.contact-cta-outline img {
  --stroke-0: #ffffff;
}

.contact-cta-primary img {
  --stroke-0: #0b1e28;
  display: inline-block !important;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) !important;
  margin-left: 2px;
  opacity: 1 !important;
  visibility: visible !important;
}

.form-note {
  align-items: center;
  color: #000000;
  display: inline-flex;
  font-family: "SF Pro Text", "Inter", sans-serif;
  font-size: 14px;
  gap: 4px;
  justify-content: center;
  letter-spacing: -0.1504px;
  line-height: 20px;
  margin: 0;
}

.site-footer {
  background: #0b1e28;
  color: #f6f6f6;
  padding: 48px 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 33px;
}

.footer-top {
  align-items: flex-start;
  display: grid;
  gap: 40px;
  grid-template-columns: 492px 1fr;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-newsletter p {
  color: #f6f6f6;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 279px;
}

.footer-newsletter-form label {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  font-family: "SF Pro Text", "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  gap: 4px;
  line-height: 20px;
}

.footer-newsletter-form input {
  background: transparent;
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  color: #ffffff;
  font-family: "SF Pro Text", "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  min-height: 48px;
  padding: 14px 16px;
}

.footer-newsletter-form input::placeholder {
  color: #888888;
}

.footer-newsletter-btn {
  align-items: center;
  background: var(--color-primary);
  border: 0;
  border-radius: var(--radius-64);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  gap: 6px;
  justify-content: center;
  line-height: 20px;
  padding: 12px 24px;
  width: fit-content;
}

.footer-newsletter-note {
  color: #f6f6f6;
  font-size: 12px;
  line-height: 18px;
}

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

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col h4 {
  color: #f6f6f6;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.footer-links-col a {
  color: #f6f6f6;
  font-size: 16px;
  line-height: 24px;
}

.footer-contact-link {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  width: 264px;
}

.footer-contact-icon {
  align-items: center;
  background: #344b63;
  border-radius: 10px;
  display: inline-flex;
  flex: 0 0 40px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.footer-contact-address {
  align-items: flex-start;
}

.footer-contact-address span:last-child {
  line-height: 24px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid #344b63;
  display: grid;
  grid-template-columns: auto auto auto;
  padding-top: 33px;
}

.footer-copy {
  color: #f6f6f6;
  font-size: 14px;
  line-height: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-self: center;
}

.footer-social a {
  align-items: center;
  background: #344b63;
  border-radius: 10px;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  justify-self: end;
}

.footer-legal a {
  color: #f6f6f6;
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 1200px) {
  .hero-content {
    width: calc(100% - 64px);
  }

  .main-nav {
    gap: 20px;
  }

  .lesson-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lesson-card h3 {
    font-size: 26px;
    line-height: 34px;
  }

  .first-look-heading h2 {
    font-size: 42px;
    line-height: 46px;
  }

  .first-look-video {
    height: 560px;
  }

  .tool-content h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .journey-content {
    padding: 28px 32px;
  }

  .journey-content h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid > :nth-child(n + 4) {
    --review-rest-x: 0px;
  }

  .stats-section h2,
  .faq-intro h2 {
    font-size: 36px;
    line-height: 40px;
  }

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

  .contact-form-section {
    padding: 40px;
  }

  .contact-form-wrap {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    gap: 16px;
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }

  .footer-social,
  .footer-legal {
    justify-self: flex-start;
  }
}

@media (max-width: 1199px),
  ((max-width: 1366px) and (pointer: coarse)),
  ((max-width: 1366px) and (hover: none)) {
  .lesson-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 960px) {
  .top-news-inner,
  .contact-strip-inner,
  .hero-nav {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 12px 0;
  }

  .main-nav {
    justify-content: center;
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    top: 340px;
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: 38px;
    line-height: 44px;
  }

  .lesson-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lesson-image-wrap {
    height: 320px;
  }

  .first-look-section {
    padding: 56px 0;
  }

  .first-look-heading h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .first-look-video {
    height: 440px;
    margin-top: 36px;
  }

  .tools-section {
    padding: 56px 0 72px;
  }

  .tool-row,
  .tool-row-reverse,
  .tool-row-second {
    grid-template-columns: 1fr;
  }

  .tool-row-first {
    border-radius: 12px;
    padding: 14px;
  }

  .tool-row-first .tool-media {
    min-height: 240px;
  }

  .tool-row-first .tool-content {
    padding: 18px 10px 6px;
  }

  .tool-row-first .tool-content h3 {
    font-size: 30px;
    line-height: 34px;
  }

  .tool-row-first .tool-content p {
    line-height: 23px;
  }

  .tool-row-second {
    border-radius: 12px;
    min-height: auto;
    padding: 14px;
  }

  .tool-row-second .tool-content {
    gap: 16px;
    padding: 22px 10px 8px;
  }

  .tool-row-second .tool-content p {
    line-height: 23px;
    max-width: none;
  }

  .tool-media-portal {
    min-height: 260px;
  }

  .tool-media,
  .tool-media-short,
  .tool-media-tall {
    min-height: 300px;
  }

  .tool-content,
  .tool-content-short,
  .tool-content-tall {
    min-height: auto;
    padding: 24px;
  }

  .tool-content h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .journey-section {
    padding: 56px 0 72px;
  }

  .journey-timeline {
    margin-top: 40px;
  }

  .journey-timeline::before,
  .journey-timeline::after {
    display: none;
  }

  .journey-step,
  .journey-step-reverse {
    gap: 20px;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .journey-step-reverse .journey-image,
  .journey-step-reverse .journey-content {
    grid-column: auto;
    grid-row: auto;
  }

  .journey-image {
    height: 260px;
  }

  .journey-content {
    min-height: auto;
    padding: 24px;
  }

  .journey-content h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .journey-number {
    display: none;
  }

  .journey-cta {
    margin-top: 24px;
  }

  .reviews-section {
    padding: 72px 0 56px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .reviews-grid > :nth-child(n + 4) {
    --review-rest-x: 0px;
  }

  .stats-section {
    padding: 56px 0 40px;
  }

  .faq-contact-section {
    padding: 48px 0 0;
  }

  .contact-form-section {
    padding: 28px;
  }

  .stats-grid {
    align-items: center;
    flex-direction: column;
    gap: 24px;
  }

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

  .stats-section h2,
  .faq-intro h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .stats-card strong {
    font-size: 38px;
    line-height: 40px;
  }

  .stats-card p,
  .faq-intro p,
  .faq-list p,
  .contact-card p {
    font-size: 18px;
    line-height: 26px;
  }

  .faq-list summary {
    font-size: 24px;
    line-height: 30px;
  }

  .contact-card h3 {
    font-size: 38px;
    line-height: 40px;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    gap: 10px;
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 24px);
  }

  .top-news-left,
  .top-news-right a,
  .contact-links a,
  .main-nav a,
  .section-badge {
    font-size: 12px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    gap: 20px;
    top: 310px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .hero-cta {
    font-size: 18px;
    line-height: 24px;
  }

  .section-heading h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .first-look-heading h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .first-look-video {
    height: 260px;
    margin-top: 28px;
  }

  .video-play {
    height: 84px;
    width: 84px;
  }

  .video-play-icon {
    height: 28px;
    margin-left: 4px;
    width: 25px;
  }

  .tools-stack {
    gap: 24px;
    margin-top: 32px;
  }

  .tool-row,
  .tool-row-reverse {
    grid-template-columns: 42% 58%;
  }

  .tool-row-reverse {
    grid-template-columns: 58% 42%;
  }

  .tool-row-second {
    grid-template-columns: 58% 42%;
    padding: 10px;
  }

  .tool-row-reverse .tool-media {
    order: 2;
  }

  .tool-row-reverse .tool-content {
    order: 1;
  }

  .tool-media,
  .tool-media-short,
  .tool-media-tall {
    min-height: 186px;
  }

  .tool-row-first {
    border-radius: 10px;
    padding: 10px;
  }

  .tool-row-first .tool-media {
    border-radius: 8px;
    min-height: 170px;
  }

  .tool-row-first .tool-content {
    gap: 7px;
    padding: 10px 6px 10px 12px;
  }

  .tool-row-first .tool-content h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .tool-row-first .tool-content p {
    font-size: 11px;
    line-height: 16px;
  }

  .tool-row-first .tool-link {
    font-size: 12px;
  }

  .tool-row-first .tool-link-label {
    padding-bottom: 2px;
  }

  .tool-row-second .tool-content {
    gap: 8px;
    padding: 12px;
  }

  .tool-row-second .tool-content h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .tool-row-second .tool-content p {
    font-size: 12px;
    line-height: 17px;
  }

  .tool-media-portal {
    border-radius: 8px;
    min-height: 186px;
  }

  .tool-content {
    gap: 8px;
    justify-content: center;
    padding: 12px;
  }

  .tool-content h3 {
    font-size: 18px;
    gap: 8px;
    line-height: 22px;
  }

  .tool-content p {
    font-size: 12px;
    line-height: 17px;
  }

  .tool-link {
    font-size: 12px;
    font-weight: 700;
    line-height: 17px;
  }

  .tool-icon {
    border-radius: 8px;
    height: 24px;
    width: 24px;
  }

  .tool-icon::before {
    height: 10px;
    width: 10px;
  }

  .tool-tags {
    display: none;
  }

  .phone-stack {
    padding: 12px;
  }

  .phone-shell {
    border-radius: 22px;
    height: 166px;
    padding: 7px;
    width: 92px;
  }

  .phone-notch {
    height: 4px;
    margin-bottom: 6px;
    width: 34px;
  }

  .phone-screen {
    border-radius: 12px;
    gap: 7px;
    padding: 8px;
  }

  .phone-line {
    height: 6px;
  }

  .phone-pill {
    height: 22px;
  }

  .tools-cta {
    margin-top: 28px;
  }

  .journey-timeline {
    margin-top: 32px;
  }

  .journey-timeline::before,
  .journey-timeline::after {
    display: block;
  }

  .journey-timeline::before {
    height: 100%;
    top: 0;
    width: 2px;
  }

  .journey-timeline::after {
    height: 120px;
    top: 0;
    width: 2px;
  }

  .journey-step,
  .journey-step-reverse {
    align-items: stretch;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 14px;
    min-height: 132px;
  }

  .journey-step::after {
    height: 32px;
    top: 52px;
    width: 32px;
  }

  .journey-step-reverse .journey-image {
    grid-column: 2;
    grid-row: 1;
  }

  .journey-step-reverse .journey-content {
    grid-column: 1;
    grid-row: 1;
  }

  .journey-image {
    border-radius: 10px;
    height: auto;
    min-height: 132px;
  }

  .journey-content {
    align-self: stretch;
    border-color: #f1d5de;
    border-radius: 10px;
    gap: 8px;
    min-height: 132px;
    padding: 10px;
  }

  .journey-step:nth-child(2) .journey-content {
    background: #fff8e7;
    border-color: #f6ddae;
  }

  .journey-step:nth-child(3) .journey-content {
    background: #f3f9fd;
    border-color: #d5e4ee;
  }

  .journey-content h3 {
    font-size: 15px;
    line-height: 19px;
  }

  .journey-content p {
    font-size: 12px;
    line-height: 16px;
  }

  .journey-content .tool-link {
    font-size: 12px;
    line-height: 16px;
  }

  .journey-number {
    border-width: 2px;
    display: inline-flex;
    font-size: 14px;
    height: 28px;
    line-height: 16px;
    top: 52px;
    width: 28px;
  }

  .stats-section h2,
  .faq-intro h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .reviews-heading h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .review-card {
    min-height: 0;
    padding: 16px;
  }

  .review-user-text strong {
    font-size: 16px;
    line-height: 24px;
  }

  .review-user-text span,
  .review-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .stats-card p,
  .faq-intro p,
  .faq-list p,
  .contact-card p {
    font-size: 16px;
    line-height: 24px;
  }

  .faq-list summary {
    font-size: 16px;
    line-height: 24px;
    padding: 16px 0;
  }

  .faq-list p {
    padding: 0 0 16px;
  }

  .contact-form-section {
    padding: 20px;
  }

  .contact-card-visual {
    height: 160px;
  }

  .contact-card h3 {
    font-size: 36px;
    line-height: 36px;
  }

  .contact-card h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .contact-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .contact-cta,
  .contact-submit {
    font-size: 18px;
    justify-content: center;
    width: 100%;
  }

  .contact-form {
    padding: 16px;
  }

  .contact-form label {
    font-size: 13px;
    line-height: 17px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 14px;
    min-height: 40px;
  }

  .site-footer {
    padding: 40px 0;
  }

  .footer-newsletter {
    gap: 20px;
  }

  .footer-newsletter-form {
    width: 100%;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .lesson-card h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .lesson-card p {
    font-size: 16px;
    line-height: 24px;
  }
}

body.homepage-effects {
  overflow-x: hidden;
}

.homepage-effects .site-wrapper {
  isolation: isolate;
  position: relative;
}

.homepage-effects .top-news-right a,
.homepage-effects .social-links a,
.homepage-effects .main-nav > a,
.homepage-effects .main-nav > .mega-nav-item > .mega-trigger,
.homepage-effects .btn-cart,
.homepage-effects .btn-login,
.homepage-effects .footer-social a,
.homepage-effects .footer-links-col a,
.homepage-effects .footer-legal a,
.homepage-effects .hero-cta,
.homepage-effects .contact-cta,
.homepage-effects .contact-submit,
.homepage-effects .footer-newsletter-btn,
.homepage-effects .tool-link,
.homepage-effects .video-play,
.homepage-effects .section-badge,
.homepage-effects .hero-badge,
.homepage-effects .faq-chevron,
.homepage-effects .contact-form input,
.homepage-effects .contact-form select,
.homepage-effects .contact-form textarea {
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 280ms ease,
    background-color 280ms ease,
    color 280ms ease,
    filter 320ms ease,
    opacity 280ms ease;
}

.homepage-effects .hero {
  --hero-bg-x: 0px;
  --hero-bg-y: 0px;
  --hero-content-x: 0px;
  --hero-content-y: 0px;
  --hero-glow-x: 0px;
  --hero-glow-y: 0px;
  isolation: isolate;
}

.homepage-effects .hero::before,
.homepage-effects .hero::after {
  border-radius: 999px;
  content: "";
  filter: blur(10px);
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.homepage-effects .hero::before {
  background:
    radial-gradient(circle, rgba(252, 192, 49, 0.72) 0%, rgba(252, 192, 49, 0.16) 36%, rgba(252, 192, 49, 0) 70%);
  height: 420px;
  right: -80px;
  top: 92px;
  transform: translate3d(var(--hero-glow-x), var(--hero-glow-y), 0);
  width: 420px;
}

.homepage-effects .hero::after {
  background:
    radial-gradient(circle, rgba(232, 60, 102, 0.5) 0%, rgba(232, 60, 102, 0.18) 38%, rgba(232, 60, 102, 0) 72%);
  height: 320px;
  left: -96px;
  top: 214px;
  transform: translate3d(var(--hero-glow-x), var(--hero-glow-y), 0);
  width: 320px;
}

.homepage-effects .hero-bg {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.08) translate3d(var(--hero-bg-x), var(--hero-bg-y), 0);
  transform-origin: center center;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease;
  will-change: transform;
}

.homepage-effects .hero-overlay {
  background:
    radial-gradient(circle at 18% 26%, rgba(252, 192, 49, 0.22) 0%, rgba(252, 192, 49, 0) 28%),
    radial-gradient(circle at 78% 18%, rgba(232, 60, 102, 0.26) 0%, rgba(232, 60, 102, 0) 30%),
    linear-gradient(180deg, rgba(0, 10, 24, 0.12) 18%, rgba(0, 13, 26, 0.84) 100%);
}

.homepage-effects .hero-content {
  transform: translateX(-50%) translate3d(var(--hero-content-x), var(--hero-content-y), 0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.homepage-effects .hero-badge {
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 34px rgba(11, 30, 40, 0.22);
  overflow: hidden;
  position: relative;
  animation: homeFadeUp 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.homepage-effects .hero-badge::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0) 100%);
  content: "";
  inset: 0;
  opacity: 0.8;
  position: absolute;
  transform: translateX(-130%);
  animation: homeBadgeSweep 4.8s ease-in-out 1.2s infinite;
}

.homepage-effects .hero h1 {
  max-width: 14ch;
  text-shadow: 0 22px 54px rgba(0, 0, 0, 0.35);
  animation: homeFadeUp 980ms cubic-bezier(0.22, 1, 0.36, 1) 90ms both;
}

.homepage-effects .hero-cta {
  box-shadow: 0 24px 40px rgba(232, 60, 102, 0.28);
  overflow: hidden;
  position: relative;
  animation: homeFadeUp 1040ms cubic-bezier(0.22, 1, 0.36, 1) 170ms both;
}

.homepage-effects .tools-cta .hero-cta {
  box-shadow: none;
}

.homepage-effects .journey-cta .hero-cta {
  box-shadow: none;
}

.homepage-effects .contact-cta,
.homepage-effects .contact-submit,
.homepage-effects .footer-newsletter-btn,
.homepage-effects .btn-login {
  overflow: hidden;
  position: relative;
}

.homepage-effects .hero-cta::before,
.homepage-effects .contact-cta::before,
.homepage-effects .contact-submit::before,
.homepage-effects .footer-newsletter-btn::before,
.homepage-effects .btn-login::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.24) 50%, rgba(255, 255, 255, 0) 82%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-120%);
  transition: opacity 280ms ease;
}

.homepage-effects .section-badge {
  box-shadow: 0 10px 24px rgba(11, 30, 40, 0.08);
}

.homepage-effects .lesson-section,
.homepage-effects .first-look-section,
.homepage-effects .tools-section,
.homepage-effects .journey-section,
.homepage-effects .reviews-section,
.homepage-effects .faq-contact-section,
.homepage-effects .stats-section {
  overflow-x: hidden;
  overflow-x: clip;
  position: relative;
}

@media (min-width: 961px) {
  .homepage-effects .tools-section {
    padding-top: 28px;
  }
}

.homepage-effects .site-footer {
  margin-top: 0;
}

.homepage-effects .first-look-section::before,
.homepage-effects .tools-section::before,
.homepage-effects .reviews-section::before,
.homepage-effects .faq-contact-section::after {
  border-radius: 999px;
  content: "";
  pointer-events: none;
  position: absolute;
}

.homepage-effects .first-look-section::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 72%);
  height: 320px;
  right: -80px;
  top: -120px;
  width: 320px;
}

@media (min-width: 961px) {
  .homepage-effects .stats-section {
    padding-bottom: 28px;
  }

  .homepage-effects .site-footer {
    padding-top: 52px;
  }
}

.homepage-effects .tools-section::before {
  background: radial-gradient(circle, rgba(232, 60, 102, 0.08) 0%, rgba(232, 60, 102, 0) 76%);
  height: 420px;
  left: -180px;
  top: 120px;
  width: 420px;
}

.homepage-effects .reviews-section::before {
  background: radial-gradient(circle, rgba(252, 192, 49, 0.12) 0%, rgba(252, 192, 49, 0) 76%);
  height: 360px;
  right: -120px;
  top: 0;
  width: 360px;
}

.homepage-effects .faq-contact-section::after {
  background: radial-gradient(circle, rgba(232, 60, 102, 0.12) 0%, rgba(232, 60, 102, 0) 76%);
  bottom: 120px;
  height: 360px;
  left: -120px;
  width: 360px;
}

.homepage-effects .first-look-video,
.homepage-effects .lesson-card,
.homepage-effects .tool-row,
.homepage-effects .journey-image,
.homepage-effects .journey-content,
.homepage-effects .review-card,
.homepage-effects .stats-card,
.homepage-effects .faq-list details,
.homepage-effects .contact-card,
.homepage-effects .contact-form,
.homepage-effects .footer-newsletter,
.homepage-effects .footer-links-col {
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    background-color 320ms ease;
}

.homepage-effects .lesson-image-wrap,
.homepage-effects .first-look-video,
.homepage-effects .tool-media,
.homepage-effects .tool-media-portal,
.homepage-effects .tool-media-resources-inner,
.homepage-effects .journey-image,
.homepage-effects .contact-card-visual {
  overflow: hidden;
}

.homepage-effects .lesson-image-wrap img,
.homepage-effects .first-look-video img,
.homepage-effects .tool-media img,
.homepage-effects .tool-media-portal img,
.homepage-effects .tool-media-resources-inner img,
.homepage-effects .journey-image img,
.homepage-effects .contact-card-visual img {
  transform: scale(var(--media-rest-scale, 1));
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
  will-change: transform;
}

@media (min-width: 961px) {
  .homepage-effects .tool-row-first .tool-media img {
    --media-rest-scale: 1;
    --media-hover-scale: 1.04;
    height: calc(100% + 10px);
    left: -8px;
    max-width: none;
    object-fit: cover;
    object-position: center 44%;
    position: absolute;
    top: -5px;
    width: calc(100% + 16px);
  }
}

.homepage-effects .hero-cta img,
.homepage-effects .contact-cta img,
.homepage-effects .contact-submit img,
.homepage-effects .footer-newsletter-btn img,
.homepage-effects .tool-link img {
  transition: transform 280ms ease;
}

.homepage-effects .tool-row {
  position: relative;
}

.homepage-effects .tool-row::after {
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 320ms ease;
}

.homepage-effects .tool-row.theme-pink::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.homepage-effects .tool-row.theme-yellow::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.homepage-effects .tool-row.theme-dark::after {
  background: linear-gradient(135deg, rgba(252, 192, 49, 0.1), rgba(255, 255, 255, 0));
}

.homepage-effects .journey-timeline::after {
  height: var(--journey-progress, 140px);
  transition: height 220ms ease-out;
}

.homepage-effects .journey-image {
  box-shadow: 0 16px 30px rgba(11, 30, 40, 0.12);
}

.homepage-effects .journey-content {
  border: 1px solid rgba(11, 30, 40, 0.06);
  box-shadow: 0 18px 36px rgba(11, 30, 40, 0.08);
}

.homepage-effects .journey-number {
  box-shadow: 0 18px 28px rgba(11, 30, 40, 0.18);
}

.homepage-effects .review-card {
  --review-rest-x: 0px;
  animation: homeReviewFloat 8.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 30, 40, 0.04);
  box-shadow: 0 18px 32px rgba(11, 30, 40, 0.08);
  backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
  transform-origin: center bottom;
  will-change: transform;
}

.homepage-effects .review-card::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 46%);
  content: "";
  inset: 1px;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
}

.homepage-effects .review-card:nth-child(2n) {
  animation-delay: -2.4s;
}

.homepage-effects .review-card:nth-child(3n) {
  animation-delay: -4.8s;
}

.homepage-effects .review-card:nth-child(4n) {
  animation-duration: 10.2s;
}

.homepage-effects .review-card:nth-child(5n) {
  animation-delay: -6.1s;
}

.homepage-effects .stats-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.homepage-effects .faq-list details {
  border-bottom-color: rgba(11, 30, 40, 0.1);
  border-radius: 16px;
}

.homepage-effects .faq-list details.is-open,
.homepage-effects .faq-list details[open] {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 34px rgba(11, 30, 40, 0.08);
}

.homepage-effects .contact-form-section {
  box-shadow: 0 32px 60px rgba(232, 60, 102, 0.18);
  position: relative;
}

.homepage-effects .contact-form-section::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
  border-radius: 999px;
  content: "";
  height: 260px;
  pointer-events: none;
  position: absolute;
  right: -40px;
  top: -60px;
  width: 260px;
}

.homepage-effects .contact-card,
.homepage-effects .contact-form {
  box-shadow: 0 24px 44px rgba(11, 30, 40, 0.12);
}

.homepage-effects .contact-form input:focus,
.homepage-effects .contact-form select:focus,
.homepage-effects .contact-form textarea:focus {
  border-color: rgba(232, 60, 102, 0.42);
  box-shadow: 0 0 0 4px rgba(232, 60, 102, 0.14);
  outline: none;
}

.homepage-effects .footer-newsletter,
.homepage-effects .footer-links-col {
  border-radius: 20px;
}

.homepage-effects.homepage-scrolled .site-header {
  box-shadow: 0 18px 38px rgba(11, 30, 40, 0.12);
}

.homepage-effects .fx-reveal {
  --reveal-translate-x: 0px;
  --reveal-translate-y: 38px;
  filter: blur(14px);
  opacity: 0;
  transform: translate3d(var(--reveal-translate-x), var(--reveal-translate-y), 0) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

.homepage-effects .fx-reveal.fx-from-left {
  --reveal-translate-x: -48px;
  --reveal-translate-y: 0px;
}

.homepage-effects .fx-reveal.fx-from-right {
  --reveal-translate-x: 48px;
  --reveal-translate-y: 0px;
}

.homepage-effects .fx-reveal.fx-from-small {
  --reveal-translate-y: 22px;
}

.homepage-effects .fx-reveal.is-visible {
  filter: blur(0);
  opacity: 1;
  transform: none;
}

.homepage-effects .video-play {
  animation: homePlayPulse 3.6s ease-in-out infinite;
}

@media (hover: hover) and (pointer: fine) {
  .homepage-effects .top-news-right a:hover,
  .homepage-effects .social-links a:hover,
  .homepage-effects .footer-social a:hover,
  .homepage-effects .footer-links-col a:hover,
  .homepage-effects .footer-legal a:hover {
    transform: translateY(-2px);
  }

  .homepage-effects .main-nav > a:hover,
  .homepage-effects .main-nav > .mega-nav-item > .mega-trigger:hover {
    color: var(--color-primary);
  }

  .homepage-effects .hero-cta:hover,
  .homepage-effects .contact-cta:hover,
  .homepage-effects .contact-submit:hover,
  .homepage-effects .footer-newsletter-btn:hover,
  .homepage-effects .btn-login:hover {
    box-shadow: 0 30px 46px rgba(232, 60, 102, 0.24);
    transform: translateY(-4px);
  }

  .homepage-effects .tools-cta .hero-cta:hover {
    box-shadow: none;
  }

  .homepage-effects .journey-cta .hero-cta:hover {
    box-shadow: none;
  }

  .homepage-effects .btn-cart:hover {
    box-shadow: 0 18px 30px rgba(11, 30, 40, 0.12);
    transform: translateY(-3px);
  }

  .homepage-effects .hero-cta:hover::before,
  .homepage-effects .contact-cta:hover::before,
  .homepage-effects .contact-submit:hover::before,
  .homepage-effects .footer-newsletter-btn:hover::before,
  .homepage-effects .btn-login:hover::before {
    opacity: 1;
    transform: translateX(120%);
    transition: transform 720ms ease, opacity 240ms ease;
  }

  .homepage-effects .hero-cta:hover img,
  .homepage-effects .contact-cta:hover img,
  .homepage-effects .contact-submit:hover img,
  .homepage-effects .footer-newsletter-btn:hover img,
  .homepage-effects .tool-link:hover img {
    transform: translateX(4px);
  }

  .homepage-effects .first-look-video:hover {
    box-shadow: 0 34px 58px rgba(11, 30, 40, 0.22);
    transform: translateY(-10px);
  }

  .homepage-effects .first-look-video:hover img {
    transform: scale(1.03);
  }

.homepage-effects .first-look-video:hover .video-play {
  transform: translate(-50%, -50%) scale(1.06);
}

.homepage-effects .first-look-video.is-playing:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: none;
}

  .homepage-effects .lesson-card:hover {
    transform: translateY(-10px);
  }

  .homepage-effects .lesson-card:hover .lesson-image-wrap {
    box-shadow: 0 22px 42px rgba(11, 30, 40, 0.16);
  }

  .homepage-effects .lesson-card:hover .lesson-image-wrap img,
  .homepage-effects .tool-row:hover .tool-media img,
  .homepage-effects .tool-row:hover .tool-media-portal img,
  .homepage-effects .tool-row:hover .tool-media-resources-inner img,
  .homepage-effects .journey-step:hover .journey-image img,
  .homepage-effects .contact-card:hover .contact-card-visual img {
    filter: saturate(1.05);
    transform: scale(var(--media-hover-scale, 1.05));
  }

  .homepage-effects .tool-row:hover {
    box-shadow: 0 34px 56px rgba(11, 30, 40, 0.18);
    transform: translateY(-12px);
  }

  .homepage-effects .tool-row:hover::after {
    opacity: 1;
  }

  .homepage-effects .journey-step:hover .journey-image,
  .homepage-effects .journey-step:hover .journey-content {
    transform: translateY(-8px);
  }

  .homepage-effects .review-card:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 44px rgba(11, 30, 40, 0.12);
  }

  .homepage-effects .review-card:hover::before {
    opacity: 1;
  }

  .homepage-effects .stats-card:hover {
    box-shadow: none;
    transform: translateY(-8px);
  }

  .homepage-effects .faq-list details:hover {
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 22px 34px rgba(11, 30, 40, 0.08);
    transform: translateY(-4px);
  }

  .homepage-effects .faq-list details:hover .faq-chevron,
  .homepage-effects .faq-list details.is-open .faq-chevron,
  .homepage-effects .faq-list details[open] .faq-chevron {
    transform: rotate(180deg) scale(1.05);
  }

  .homepage-effects .contact-card:hover,
  .homepage-effects .contact-form:hover {
    transform: translateY(-8px);
  }
}

.homepage-effects .main-nav > a:focus-visible,
.homepage-effects .main-nav > .mega-nav-item > .mega-trigger:focus-visible,
.homepage-effects .hero-cta:focus-visible,
.homepage-effects .contact-cta:focus-visible,
.homepage-effects .contact-submit:focus-visible,
.homepage-effects .btn-cart:focus-visible,
.homepage-effects .btn-login:focus-visible,
.homepage-effects .footer-newsletter-btn:focus-visible,
.homepage-effects .tool-link:focus-visible,
.homepage-effects .video-play:focus-visible {
  outline: 3px solid rgba(252, 192, 49, 0.9);
  outline-offset: 4px;
}

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeBadgeSweep {
  0%,
  24% {
    transform: translateX(-130%);
  }

  56%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes homePlayPulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  }

  50% {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  }
}

@keyframes homeReviewFloat {
  0%,
  100% {
    transform: translate3d(var(--review-rest-x, 0px), 0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate3d(calc(var(--review-rest-x, 0px) - 4px), -10px, 0) scale(1.008) rotate(-0.55deg);
  }

  50% {
    transform: translate3d(calc(var(--review-rest-x, 0px) + 4px), -16px, 0) scale(1.015) rotate(0.5deg);
  }

  75% {
    transform: translate3d(calc(var(--review-rest-x, 0px) - 3px), -8px, 0) scale(1.006) rotate(-0.3deg);
  }
}

@media (max-width: 960px) {
  .homepage-effects .hero::before {
    height: 280px;
    right: -80px;
    top: 140px;
    width: 280px;
  }

  .homepage-effects .hero::after {
    height: 220px;
    left: -80px;
    top: 250px;
    width: 220px;
  }

  .homepage-effects .stats-card {
    width: min(100%, 320px);
  }

  .homepage-effects .fx-reveal {
    --reveal-translate-y: 28px;
    filter: blur(10px);
  }

  .homepage-effects .reviews-grid.reviews-slider-mode {
    display: block;
    height: var(--reviews-slider-height, 252px);
    margin-top: 36px;
    position: relative;
  }

  .homepage-effects .reviews-grid.reviews-slider-mode > :nth-child(n + 4) {
    --review-rest-x: 0px;
  }

  .homepage-effects .reviews-grid.reviews-slider-mode .review-card {
    --review-rest-x: 0px;
    animation: none;
    left: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translate3d(18%, 0, 0) scale(0.92);
    transition:
      transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 540ms ease,
      filter 540ms ease,
      box-shadow 540ms ease;
    width: 100%;
  }

  .homepage-effects .reviews-grid.reviews-slider-mode .review-card.is-active {
    box-shadow: 0 28px 46px rgba(11, 30, 40, 0.16);
    filter: blur(0);
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    z-index: 3;
  }

  .homepage-effects .reviews-grid.reviews-slider-mode .review-card.is-prev {
    filter: blur(1px);
    opacity: 0.18;
    transform: translate3d(-16%, 10px, 0) scale(0.93);
    z-index: 1;
  }

  .homepage-effects .reviews-grid.reviews-slider-mode .review-card.is-next {
    filter: blur(1px);
    opacity: 0.28;
    transform: translate3d(16%, 10px, 0) scale(0.93);
    z-index: 2;
  }

  .homepage-effects .reviews-slider-dots {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 22px;
  }

  .homepage-effects .reviews-slider-dots[hidden] {
    display: none;
  }

  .homepage-effects .reviews-slider-dot {
    background: rgba(11, 30, 40, 0.16);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 10px;
    padding: 0;
    transition:
      width 320ms cubic-bezier(0.22, 1, 0.36, 1),
      background-color 320ms ease,
      transform 320ms ease;
    width: 10px;
  }

  .homepage-effects .reviews-slider-dot.is-active {
    background: var(--color-primary);
    width: 34px;
  }

  body.homepage-effects .faq-list {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  body.homepage-effects .faq-list details {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  body.homepage-effects .faq-list details.is-open,
  body.homepage-effects .faq-list details[open] {
    background: transparent;
    box-shadow: none;
  }

  body.homepage-effects .faq-list summary {
    padding: 18px 0;
  }

  body.homepage-effects .faq-list p {
    padding: 0 0 18px;
  }

  body.homepage-effects .faq-list .faq-answer::before,
  body.homepage-effects .faq-list details.is-open .faq-answer::before,
  body.homepage-effects .faq-list details[open] .faq-answer::before {
    display: none;
  }
}

@media (max-width: 1199px),
  ((max-width: 1366px) and (pointer: coarse)),
  ((max-width: 1366px) and (hover: none)) {
  .homepage-effects .hero h1 {
    max-width: none;
  }

  .homepage-effects .hero::before,
  .homepage-effects .hero::after,
  .homepage-effects .first-look-section::before,
  .homepage-effects .tools-section::before,
  .homepage-effects .reviews-section::before,
  .homepage-effects .faq-contact-section::after,
  .homepage-effects .contact-form-section::before {
    opacity: 0.55;
  }

  .homepage-effects .stats-card {
    border-radius: 0;
    padding: 0;
  }

  .homepage-effects .review-card,
  .homepage-effects .contact-card,
  .homepage-effects .contact-form {
    box-shadow: 0 16px 28px rgba(11, 30, 40, 0.08);
  }

  .homepage-effects .reviews-grid.reviews-slider-mode {
    height: var(--reviews-slider-height, 236px);
    margin-top: 28px;
  }

  .homepage-effects .reviews-grid.reviews-slider-mode .review-card {
    transform: translate3d(20%, 0, 0) scale(0.92);
  }

  .homepage-effects .reviews-grid.reviews-slider-mode .review-card.is-prev {
    transform: translate3d(-18%, 8px, 0) scale(0.92);
  }

  .homepage-effects .reviews-grid.reviews-slider-mode .review-card.is-next {
    transform: translate3d(18%, 8px, 0) scale(0.92);
  }
}

@media (max-width: 1199px),
  ((max-width: 1366px) and (pointer: coarse)),
  ((max-width: 1366px) and (hover: none)) {
  body.homepage-effects.mobile-nav-open {
    overflow: hidden;
  }

  body.homepage-effects::before {
    background: rgba(7, 17, 28, 0.34);
    backdrop-filter: blur(10px);
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 240ms ease;
    z-index: 41;
  }

  body.homepage-effects.mobile-nav-open::before {
    opacity: 1;
  }

  body.homepage-effects .container {
    width: calc(100% - 32px);
  }

  body.homepage-effects .top-news {
    z-index: 40;
  }

  body.homepage-effects .top-news-inner {
    align-items: center;
    display: grid;
    flex-wrap: wrap;
    gap: 12px;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    justify-content: center;
    min-height: 44px;
    padding: 6px 0;
  }

  body.homepage-effects .top-news-left {
    flex: 0 1 auto;
    grid-column: 2;
    justify-content: center;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    text-align: center;
    white-space: normal;
  }

  body.homepage-effects .top-news-left span {
    display: block;
    max-width: 100%;
    overflow: visible;
    text-align: center;
    text-overflow: clip;
    white-space: normal;
  }

  body.homepage-effects .top-news-right {
    gap: 12px;
    grid-column: 3;
    justify-content: flex-end;
    justify-self: end;
  }

  body.homepage-effects .top-news-right a {
    font-size: 14px;
    gap: 4px;
    line-height: 20px;
    white-space: nowrap;
  }

  body.homepage-effects .contact-strip {
    z-index: 41;
  }

  body.homepage-effects .contact-strip-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    min-height: 36px;
    padding: 0;
  }

  body.homepage-effects .contact-links {
    gap: 0;
  }

  body.homepage-effects .contact-links a:first-child {
    display: none;
  }

  body.homepage-effects .social-links {
    margin-left: 0;
  }

  body.homepage-effects .site-header {
    z-index: 42;
  }

  body.homepage-effects .site-header .header-inner {
    align-items: center;
    min-height: 72px;
    padding: 8px 0;
    width: calc(100% - 32px);
  }

  body.homepage-effects .site-header .brand {
    margin-right: auto;
  }

  body.homepage-effects .site-header .main-nav {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(11, 30, 40, 0.24);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    margin-right: 0;
    max-height: calc(100vh - 164px);
    opacity: 0;
    overflow-y: auto;
    padding: 16px 16px 18px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition: opacity 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
    width: auto;
  }

  body.homepage-effects .site-header.mobile-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  body.homepage-effects .site-header .main-nav > a,
  body.homepage-effects .site-header .main-nav > .mega-nav-item > .mega-trigger {
    border-bottom: 1px solid #e7e7e7;
    color: #0b1e28;
    justify-content: space-between;
    padding: 13px 0;
    width: 100%;
  }

  body.homepage-effects .site-header .main-nav > a.active,
  body.homepage-effects .site-header .main-nav > .mega-nav-item > .mega-trigger.active {
    background: #fcf0f3;
    border-bottom-color: transparent;
    border-radius: 12px;
    color: #e83c66;
    font-weight: 700;
    margin-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
  }

  body.homepage-effects .site-header .main-nav > a:last-child,
  body.homepage-effects .site-header .main-nav > .mega-nav-item:last-child > .mega-trigger {
    border-bottom: 0;
  }

  body.homepage-effects .site-header .mega-nav-item {
    display: block;
    width: 100%;
  }

  body.homepage-effects .site-header .mega-menu-panel {
    display: none !important;
  }

  body.homepage-effects .site-header .mobile-nav-extras {
    border-top: 1px solid #e7e7e7;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
    padding-top: 16px;
  }

  body.homepage-effects .site-header .mobile-nav-cta {
    align-items: center;
    background: #e83c66;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(232, 60, 102, 0.22);
    color: #ffffff;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    gap: 6px;
    justify-content: center;
    line-height: 24px;
    min-height: 44px;
    width: 100%;
  }

  body.homepage-effects .site-header .mobile-nav-support {
    background: #fcf6f8;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
  }

  body.homepage-effects .site-header .mobile-nav-support::before {
    color: #697586;
    content: "Hızlı İletişim";
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 16px;
    text-transform: uppercase;
  }

  body.homepage-effects .site-header .mobile-nav-support-link {
    align-items: center;
    color: #0b1e28;
    display: inline-flex;
    font-size: 13px;
    gap: 8px;
    line-height: 18px;
  }

  body.homepage-effects .site-header .nav-actions {
    gap: 16px;
    margin-left: 16px;
  }

  body.homepage-effects .site-header .btn-cart,
  body.homepage-effects .site-header .btn-login {
    align-items: center;
    border-radius: 12px;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    min-height: 48px;
    min-width: 48px;
    padding: 0;
    position: relative;
    width: 48px;
  }

  body.homepage-effects .site-header .btn-cart {
    background: #fcf0f3;
  }

  body.homepage-effects .site-header .btn-login {
    background: #fcf0f3;
    color: transparent;
    font-size: 0;
    gap: 0;
  }

  body.homepage-effects .site-header .btn-login img,
  body.homepage-effects .site-header .btn-login-label {
    display: none;
  }

  body.homepage-effects .site-header .btn-menu-icon {
    background: #e83c66;
    border-radius: 999px;
    display: block;
    height: 2px;
    position: relative;
    transition: transform 0.24s ease, background-color 0.24s ease;
    width: 24px;
  }

  body.homepage-effects .site-header .btn-menu-icon::before,
  body.homepage-effects .site-header .btn-menu-icon::after {
    background: #e83c66;
    border-radius: 999px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: transform 0.24s ease, top 0.24s ease, opacity 0.24s ease;
    width: 24px;
  }

  body.homepage-effects .site-header .btn-menu-icon::before {
    top: -7px;
  }

  body.homepage-effects .site-header .btn-menu-icon::after {
    top: 7px;
  }

  body.homepage-effects .site-header.mobile-menu-open .btn-login {
    background: #e83c66;
    box-shadow: 0 12px 28px rgba(232, 60, 102, 0.24);
    transform: translateY(-1px);
  }

  body.homepage-effects .site-header.mobile-menu-open .btn-menu-icon,
  body.homepage-effects .site-header.mobile-menu-open .btn-menu-icon::before,
  body.homepage-effects .site-header.mobile-menu-open .btn-menu-icon::after {
    background: #ffffff;
  }

  body.homepage-effects .site-header.mobile-menu-open .btn-menu-icon {
    transform: rotate(45deg);
  }

  body.homepage-effects .site-header.mobile-menu-open .btn-menu-icon::before {
    opacity: 0;
    top: 0;
  }

  body.homepage-effects .site-header.mobile-menu-open .btn-menu-icon::after {
    top: 0;
    transform: rotate(90deg);
  }

  body.homepage-effects .hero {
    min-height: 596px;
  }

  body.homepage-effects .hero-overlay {
    background: linear-gradient(180deg, rgba(15, 8, 8, 0.1) 16%, rgba(8, 20, 31, 0.82) 100%);
  }

  body.homepage-effects .hero-content {
    gap: 24px;
    isolation: isolate;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    top: 238px;
    width: 100%;
  }

  body.homepage-effects .hero-content::before,
  body.homepage-effects .hero-content::after {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: -1;
  }

  body.homepage-effects .hero-content::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%),
      radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 42%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    box-shadow: 0 24px 44px rgba(11, 30, 40, 0.16);
    inset: -18px -10px -20px;
    opacity: 0.76;
    transform: translate3d(var(--hero-content-x), var(--hero-content-y), 0);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
  }

  body.homepage-effects .hero-content::after {
    background: radial-gradient(circle at 82% 8%, rgba(252, 192, 49, 0.2) 0%, rgba(252, 192, 49, 0) 44%);
    border-radius: 999px;
    filter: blur(10px);
    inset: -32px -26px 8px 24%;
    opacity: 0.74;
    transform: translate3d(var(--hero-glow-x), var(--hero-glow-y), 0) scale(0.74);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
  }

  body.homepage-effects .hero-badge {
    font-size: 12px;
    line-height: 18px;
  }

  body.homepage-effects .hero h1 {
    font-size: 36px;
    letter-spacing: -0.72px;
    line-height: 44px;
    text-align: center;
  }

  body.homepage-effects .hero-badge,
  body.homepage-effects .hero h1,
  body.homepage-effects .hero-cta {
    animation: none;
    opacity: 1;
    transform: none;
  }

  body.homepage-effects .hero-cta,
  body.homepage-effects .tools-cta .hero-cta,
  body.homepage-effects .journey-cta .hero-cta {
    background: #e83c66;
    box-shadow: 0 16px 32px rgba(232, 60, 102, 0.22);
    justify-content: center;
    min-height: 44px;
    width: 100%;
  }

  body.homepage-effects .tools-cta .hero-cta {
    box-shadow: none;
  }

  body.homepage-effects .journey-cta .hero-cta {
    box-shadow: none;
  }

  body.homepage-effects .lesson-section,
  body.homepage-effects .first-look-section,
  body.homepage-effects .tools-section,
  body.homepage-effects .journey-section,
  body.homepage-effects .reviews-section,
  body.homepage-effects .faq-contact-section,
  body.homepage-effects .stats-section {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  body.homepage-effects .tools-section .section-heading {
    padding-top: 10px;
  }

  body.homepage-effects .section-heading,
  body.homepage-effects .first-look-heading,
  body.homepage-effects .reviews-heading,
  body.homepage-effects .faq-intro {
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  body.homepage-effects .section-heading h2,
  body.homepage-effects .first-look-heading h2,
  body.homepage-effects .reviews-heading h2,
  body.homepage-effects .faq-intro h2,
  body.homepage-effects .stats-section h2 {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  body.homepage-effects .lesson-grid {
    gap: 32px;
    margin-top: 40px;
  }

  body.homepage-effects .lesson-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  body.homepage-effects .lesson-image-wrap {
    border-radius: 12px;
    height: 343px;
    margin-bottom: 24px;
  }

  body.homepage-effects .lesson-card h3 {
    align-items: center;
    display: flex;
    font-size: 20px;
    gap: 12px;
    line-height: 28px;
    margin: 0 0 16px;
  }

  body.homepage-effects .lesson-icon {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    border-radius: 12px;
    flex: 0 0 auto;
    height: 40px;
    width: 40px;
  }

  body.homepage-effects .lesson-card p {
    font-size: 16px;
    line-height: 24px;
  }

  body.homepage-effects .first-look-video {
    border-radius: 12px;
    height: 200px;
    margin-top: 40px;
  }

  body.homepage-effects .tools-stack {
    gap: 24px;
    margin-top: 40px;
  }

  body.homepage-effects .tool-row,
  body.homepage-effects .tool-row-reverse,
  body.homepage-effects .tool-row-second,
  body.homepage-effects .tool-row-third {
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
    padding: 16px;
  }

  body.homepage-effects .tool-media,
  body.homepage-effects .tool-media-short,
  body.homepage-effects .tool-media-tall,
  body.homepage-effects .tool-media-portal {
    border-radius: 12px;
    height: 200px;
    min-height: 200px;
    width: 100%;
  }

  body.homepage-effects .tool-row-first .tool-media {
    background: #ffffff;
    box-shadow: none;
  }

  body.homepage-effects .tool-row-first .tool-media img {
    --media-hover-scale: 1;
    --media-rest-scale: 1;
    height: calc(100% + 24px);
    left: -18px;
    max-width: none;
    object-fit: cover;
    object-position: center 45%;
    position: absolute;
    top: -12px;
    transform: none;
    width: calc(100% + 36px);
  }

  body.homepage-effects .tool-content,
  body.homepage-effects .tool-content-short,
  body.homepage-effects .tool-content-tall,
  body.homepage-effects .tool-row-first .tool-content,
  body.homepage-effects .tool-row-second .tool-content {
    gap: 20px;
    min-height: 0;
    padding: 0 12px;
  }

  body.homepage-effects .tool-content h3,
  body.homepage-effects .tool-row-first .tool-content h3,
  body.homepage-effects .tool-row-second .tool-content h3 {
    align-items: center;
    font-size: 20px;
    gap: 12px;
    line-height: 28px;
  }

  body.homepage-effects .tool-content p,
  body.homepage-effects .tool-row-first .tool-content p,
  body.homepage-effects .tool-row-second .tool-content p {
    font-size: 16px;
    line-height: 24px;
    max-width: none;
  }

  body.homepage-effects .tool-icon {
    border-radius: 12px;
    flex: 0 0 auto;
    height: 40px;
    width: 40px;
  }

  body.homepage-effects .tool-icon::before {
    height: 20px;
    width: 20px;
  }

  body.homepage-effects .tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  body.homepage-effects .tool-tags span {
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    padding: 4px 10px;
  }

  body.homepage-effects .tool-link {
    align-items: center;
    border-bottom: 1px solid currentColor;
    display: inline-flex;
    font-size: 18px;
    font-weight: 600;
    gap: 6px;
    line-height: 28px;
    padding-bottom: 0;
    width: max-content;
  }

  body.homepage-effects .tool-link-label {
    padding-bottom: 0;
  }

  body.homepage-effects .tools-cta {
    margin-top: 40px;
  }

  body.homepage-effects .journey-section {
    padding-top: 40px;
  }

  body.homepage-effects .journey-timeline {
    margin-top: 40px;
    padding-left: 0;
  }

  body.homepage-effects .journey-timeline::before,
  body.homepage-effects .journey-timeline::after {
    display: block;
    left: 26px;
    transform: none;
    width: 4px;
  }

  body.homepage-effects .journey-timeline::before {
    background: #e7e7e7;
    height: 100%;
    top: 0;
  }

  body.homepage-effects .journey-timeline::after {
    background: #e83c66;
    height: var(--journey-progress, 140px);
    top: 0;
  }

  body.homepage-effects .journey-step,
  body.homepage-effects .journey-step-reverse {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 0 24px 48px;
    min-height: 0;
    width: calc(100% - 48px);
  }

  body.homepage-effects .journey-step::after {
    display: none;
  }

  body.homepage-effects .journey-step-reverse .journey-image,
  body.homepage-effects .journey-step-reverse .journey-content {
    grid-column: auto;
    grid-row: auto;
  }

  body.homepage-effects .journey-image {
    border-radius: 12px;
    height: 200px;
    min-height: 200px;
  }

  body.homepage-effects .journey-content {
    align-items: center;
    border: 0;
    border-radius: 12px;
    gap: 24px;
    min-height: 0;
    padding: 16px;
    text-align: center;
  }

  body.homepage-effects .journey-step:nth-child(1) .journey-content {
    background: #ffdbe4;
  }

  body.homepage-effects .journey-step:nth-child(2) .journey-content {
    background: #fff6df;
  }

  body.homepage-effects .journey-step:nth-child(3) .journey-content {
    background: #ffe49e;
  }

  body.homepage-effects .journey-content h3 {
    font-size: 20px;
    line-height: 28px;
  }

  body.homepage-effects .journey-content p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  body.homepage-effects .journey-content .tool-link {
    font-size: 18px;
    line-height: 28px;
  }

  body.homepage-effects .journey-number {
    border: 4px solid #ffffff;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
    display: inline-flex;
    font-size: 36px;
    height: 80px;
    left: -22px;
    line-height: 44px;
    top: 212px;
    width: 80px;
  }

  body.homepage-effects .journey-step:nth-child(1) .journey-number {
    background: #e83c66;
    color: #ffffff;
  }

  body.homepage-effects .journey-step:nth-child(2) .journey-number {
    background: #fcc031;
    color: #000000;
    left: -22px;
  }

  body.homepage-effects .journey-step:nth-child(3) .journey-number {
    background: #ffe49e;
    color: #000000;
  }

  body.homepage-effects .journey-cta {
    margin-top: 16px;
  }

  body.homepage-effects .reviews-section {
    padding-top: 40px;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail.reviews-compact-mode {
    display: block;
    height: auto;
    margin: 40px -6px 0;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail.reviews-compact-mode > .review-card {
    display: none;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail.reviews-compact-mode .reviews-compact-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail.reviews-compact-mode .reviews-compact-row {
    -ms-overflow-style: none;
    display: flex;
    gap: 16px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
    overscroll-behavior-x: contain;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 20px 8px;
    scroll-behavior: smooth;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail.reviews-compact-mode .reviews-compact-row::-webkit-scrollbar {
    display: none;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail.reviews-compact-mode .reviews-compact-row .review-card {
    animation: none;
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 246, 246, 0.96) 100%);
    border: 1px solid rgba(209, 209, 209, 0.9);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.09);
    display: flex;
    flex-direction: column;
    filter: saturate(0.94);
    height: 228px;
    flex: 0 0 min(82vw, 312px);
    min-height: 228px;
    opacity: 1;
    padding: 12px;
    pointer-events: auto;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition: box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease, transform 220ms ease;
    transform: none !important;
    will-change: transform;
    width: min(82vw, 312px);
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail.reviews-compact-mode .reviews-compact-row .review-card p {
    display: -webkit-box;
    margin-top: 16px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail .review-card::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 100%);
    inset: 1px;
    opacity: 0.28;
    z-index: 0;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail .review-card::after {
    background:
      radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 58%, rgba(232, 60, 102, 0.08) 100%);
    border-radius: inherit;
    content: "";
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
    position: absolute;
    z-index: 0;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail .review-card-head,
  body.homepage-effects .reviews-grid.reviews-slider-rail .review-card p {
    position: relative;
    z-index: 1;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail .review-card.is-active {
    border-color: rgba(232, 60, 102, 0.18);
    box-shadow: 0 18px 38px rgba(11, 30, 40, 0.15);
    filter: saturate(1.02);
    transform: translateY(-4px) scale(1.01) !important;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail .review-card.is-prev,
  body.homepage-effects .reviews-grid.reviews-slider-rail .review-card.is-next {
    filter: saturate(0.96);
    opacity: 0.96;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail .review-user-text strong {
    font-size: 14px;
    line-height: 20px;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail .review-user-text span,
  body.homepage-effects .reviews-grid.reviews-slider-rail .review-date,
  body.homepage-effects .reviews-grid.reviews-slider-rail .review-card p {
    font-size: 12px;
    line-height: 18px;
  }

  body.homepage-effects .reviews-grid.reviews-slider-rail + .reviews-slider-dots {
    display: none !important;
  }

  body.homepage-effects .faq-contact-section {
    padding-top: 40px;
  }

  body.homepage-effects .faq-contact-wrap,
  body.homepage-effects .faq-grid {
    gap: 24px;
  }

  body.homepage-effects .faq-intro p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  body.homepage-effects .faq-intro .section-badge {
    align-self: center;
  }

  body.homepage-effects .faq-list {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  body.homepage-effects .faq-list details {
    background: transparent;
    border-bottom: 1px solid #d1d1d1;
    border-radius: 0;
    overflow: hidden;
    transition: background-color 260ms ease;
    padding: 0;
  }

  body.homepage-effects .faq-list details > :not(summary) {
    display: block;
  }

  body.homepage-effects .faq-list details:last-child {
    border-bottom: 0;
  }

  body.homepage-effects .faq-list details.is-open,
  body.homepage-effects .faq-list details[open] {
    background: transparent;
  }

  body.homepage-effects .faq-list summary {
    align-items: flex-start;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    gap: 16px;
    line-height: 20px;
    padding: 18px 0;
  }

  body.homepage-effects .faq-list p {
    color: #454545;
    font-size: 16px;
    line-height: 24px;
    padding: 0 0 18px;
  }

  body.homepage-effects .faq-list .faq-answer {
    max-height: 0;
    min-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translate3d(0, -6px, 0);
    transition:
      max-height 760ms cubic-bezier(0.33, 0, 0.2, 1),
      opacity 520ms ease,
      transform 760ms cubic-bezier(0.33, 0, 0.2, 1);
    will-change: max-height, opacity, transform;
  }

  body.homepage-effects .faq-list .faq-answer::before {
    display: none;
  }

  body.homepage-effects .faq-list .faq-answer p {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
    transition: transform 620ms cubic-bezier(0.33, 0, 0.2, 1), opacity 420ms ease;
  }

  body.homepage-effects .faq-list details.is-open .faq-answer,
  body.homepage-effects .faq-list details[open] .faq-answer {
    max-height: 460px;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  body.homepage-effects .faq-list details.is-open .faq-answer::before,
  body.homepage-effects .faq-list details[open] .faq-answer::before {
    display: none;
  }

  body.homepage-effects .faq-list details.is-open .faq-answer p,
  body.homepage-effects .faq-list details[open] .faq-answer p {
    opacity: 1;
    transition-delay: 90ms;
    transform: translate3d(0, 0, 0);
  }

  body.homepage-effects .contact-form-section {
    background: transparent;
    padding: 0;
  }

  body.homepage-effects .contact-form-wrap {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  body.homepage-effects .contact-card {
    background: #e83c66;
    border-radius: 12px;
    box-shadow: none;
    color: #ffffff;
    gap: 24px;
    padding: 16px;
  }

  body.homepage-effects .contact-card-visual {
    border-radius: 12px;
    height: 144px;
  }

  body.homepage-effects .contact-card h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 32px;
  }

  body.homepage-effects .contact-card h4 {
    color: #ffffff;
    font-size: 20px;
    line-height: 28px;
  }

  body.homepage-effects .contact-card p {
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
  }

  body.homepage-effects .contact-buttons {
    gap: 16px;
  }

  body.homepage-effects .contact-cta {
    min-height: 44px;
  }

  body.homepage-effects .contact-cta-primary {
    background: #ffffff;
    color: #0b1e28;
  }

  body.homepage-effects .contact-cta-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
  }

  body.homepage-effects .contact-form {
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
    gap: 24px;
    padding: 16px;
  }

  body.homepage-effects .contact-form label {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
  }

  body.homepage-effects .contact-form input,
  body.homepage-effects .contact-form select,
  body.homepage-effects .contact-form textarea {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    min-height: 40px;
  }

  body.homepage-effects .contact-form textarea {
    min-height: 113px;
  }

  body.homepage-effects .contact-submit {
    font-size: 16px;
    line-height: 24px;
    min-height: 40px;
  }

  body.homepage-effects .form-note {
    font-size: 14px;
    justify-content: center;
    line-height: 20px;
    width: 100%;
  }

  body.homepage-effects .stats-section {
    padding-bottom: 40px;
  }

  body.homepage-effects .stats-grid {
    gap: 24px;
    margin-top: 40px;
  }

  body.homepage-effects .stats-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  body.homepage-effects .stats-icon {
    background: #fcf0f3;
    border-radius: 12px;
    height: 44px;
    width: 44px;
  }

  body.homepage-effects .stats-card strong {
    font-size: 36px;
    letter-spacing: -0.72px;
    line-height: 44px;
  }

  body.homepage-effects .stats-card p {
    font-size: 16px;
    line-height: 24px;
    max-width: 238px;
    text-align: center;
  }

  body.homepage-effects .stats-text-primary {
    color: #e83c66;
  }

  body.homepage-effects .stats-text-secondary {
    color: #fcc031;
  }

  body.homepage-effects .stats-note {
    color: #737373;
    font-size: 12px;
    line-height: 18px;
    margin-top: 24px;
    text-align: center;
  }

  body.homepage-effects .site-footer {
    padding: 24px 0;
  }

  body.homepage-effects .footer-container {
    gap: 24px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  body.homepage-effects .footer-top {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  body.homepage-effects .footer-newsletter {
    gap: 16px;
  }

  body.homepage-effects .footer-newsletter-form {
    max-width: none;
    width: 100%;
  }

  body.homepage-effects .footer-newsletter-btn {
    border-radius: 12px;
    width: 100%;
  }

  body.homepage-effects .footer-links-grid {
    gap: 0;
  }

  body.homepage-effects .footer-links-col {
    border-bottom: 1px solid #344b63;
    padding: 12px 0;
  }

  body.homepage-effects .footer-links-col:last-child {
    border-bottom: 1px solid #344b63;
  }

  body.homepage-effects .footer-links-col h4 {
    align-items: center;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    line-height: 20px;
    margin: 0;
  }

  body.homepage-effects .footer-links-col h4::after {
    border-bottom: 1.5px solid #ffffff;
    border-right: 1.5px solid #ffffff;
    content: "";
    flex: 0 0 auto;
    height: 10px;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    width: 10px;
  }

  body.homepage-effects .footer-links-col:not(.is-collapsed) h4::after {
    transform: rotate(-135deg) translate(-1px, -1px);
  }

  body.homepage-effects .footer-links-col.is-collapsed > :not(h4) {
    display: none;
  }

  body.homepage-effects .footer-links-col:not(.is-collapsed) > :not(h4) {
    margin-top: 12px;
  }

  body.homepage-effects .footer-links-col:not(.is-collapsed) .footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  body.homepage-effects .footer-links-col:not(.is-collapsed) .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  body.homepage-effects .footer-links-col:not(.is-collapsed) .footer-contact-link,
  body.homepage-effects .footer-links-col:not(.is-collapsed) .footer-contact-address {
    display: flex;
  }

  body.homepage-effects .footer-bottom {
    align-items: center;
    border-top: 0;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 16px;
    text-align: center;
    width: 100%;
  }

  body.homepage-effects .footer-copy {
    font-size: 14px;
    line-height: 20px;
    margin-inline: auto;
    order: 3;
    text-align: center;
  }

  body.homepage-effects .footer-social {
    justify-self: center;
    margin-inline: auto;
    order: 1;
    justify-content: center;
  }

  body.homepage-effects .footer-legal {
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-self: center;
    justify-content: center;
    margin-inline: auto;
    order: 2;
  }
}

@media (min-width: 641px) and (max-width: 1199px),
  (min-width: 641px) and (max-width: 1366px) and (pointer: coarse),
  (min-width: 641px) and (max-width: 1366px) and (hover: none) {
  body.homepage-effects .hero.hero-maraton90 > .container,
  body.homepage-effects main > section > .container,
  body.homepage-effects .site-footer .footer-container {
    width: calc(100% - 72px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-effects .hero-bg,
  .homepage-effects .hero-content,
  .homepage-effects .hero-badge,
  .homepage-effects .hero h1,
  .homepage-effects .hero-cta,
  .homepage-effects .fx-reveal,
  .homepage-effects .journey-timeline::after,
  .homepage-effects .lesson-image-wrap img,
  .homepage-effects .first-look-video img,
  .homepage-effects .tool-media img,
  .homepage-effects .tool-media-portal img,
  .homepage-effects .tool-media-resources-inner img,
  .homepage-effects .journey-image img,
  .homepage-effects .contact-card-visual img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .homepage-effects .video-play {
    animation: none !important;
    transition: none !important;
    transform: translate(-50%, -50%) !important;
  }

  .homepage-effects .review-card {
    animation: none !important;
  }

  .homepage-effects .reviews-grid.reviews-slider-mode .review-card {
    transition: none !important;
  }

  .homepage-effects .hero-content::before,
  .homepage-effects .hero-content::after,
  .homepage-effects .faq-list .faq-answer,
  .homepage-effects .faq-list .faq-answer::before,
  .homepage-effects .faq-list .faq-answer p {
    transition: none !important;
    transform: none !important;
  }

  .homepage-effects .fx-reveal {
    filter: none;
    opacity: 1;
  }
}

/* Lesson card visuals stay large on tablet, but shrink on phones. */
.lesson-image-wrap {
  aspect-ratio: 1 / 1;
  height: auto;
}

@media (max-width: 1199px),
  ((max-width: 1366px) and (pointer: coarse)),
  ((max-width: 1366px) and (hover: none)) {
  .lesson-image-wrap,
  body.homepage-effects .lesson-image-wrap {
    aspect-ratio: 1 / 1;
    height: auto;
    margin-inline: auto;
    width: min(100%, 640px);
  }
}

@media (max-width: 640px) {
  .lesson-section .lesson-image-wrap,
  body.homepage-effects .lesson-section .lesson-image-wrap {
    width: min(70%, 448px);
  }
}

/* FAQ visual flattening: keep accordion motion, remove white card shells */
body.homepage-effects .faq-list {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible;
}

body.homepage-effects .faq-list details,
body.homepage-effects .faq-list details.is-open,
body.homepage-effects .faq-list details[open],
body.homepage-effects .faq-list details:hover {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.homepage-effects .faq-list .faq-answer::before,
body.homepage-effects .faq-list details.is-open .faq-answer::before,
body.homepage-effects .faq-list details[open] .faq-answer::before {
  display: none !important;
}

body.homepage-effects .faq-list summary {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.homepage-effects .faq-list p {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Kampus-style FAQ accordion support */
.faq-list .kampus-faq-item {
  border-bottom: 1px solid #d1d1d1;
  overflow: hidden;
  transition:
    background-color 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease;
}

.faq-list .kampus-faq-item:last-child {
  border-bottom: 0;
}

.faq-list .kampus-faq-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  color: #000000;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 400;
  justify-content: space-between;
  line-height: 28px;
  padding: 24px;
  text-align: left;
  width: 100%;
}

.faq-list .kampus-faq-trigger span {
  flex: 1;
  min-width: 0;
  padding-right: 24px;
}

.faq-list .kampus-faq-icon {
  flex: 0 0 auto;
  transform: rotate(0deg);
  transition: transform 460ms cubic-bezier(0.33, 0, 0.2, 1), opacity 260ms ease;
}

.faq-list .kampus-faq-item.is-active .kampus-faq-icon {
  transform: rotate(180deg);
}

.faq-list .kampus-faq-panel {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, -6px, 0);
  transition:
    max-height 760ms cubic-bezier(0.33, 0, 0.2, 1),
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.33, 0, 0.2, 1);
  will-change: max-height, opacity, transform;
}

.faq-list .kampus-faq-item.is-active .kampus-faq-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.faq-list .kampus-faq-panel-inner {
  color: #000000;
  font-size: 16px;
  line-height: 26px;
  opacity: 0;
  padding: 16px 20px;
  transform: translate3d(0, -10px, 0);
  transition: transform 620ms cubic-bezier(0.33, 0, 0.2, 1), opacity 420ms ease;
}

.faq-list .kampus-faq-panel-inner::before {
  background: #1f1f1f;
  content: "";
  display: block;
  height: 1px;
  margin: 0 0 16px;
  opacity: 0.28;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 620ms cubic-bezier(0.33, 0, 0.2, 1), opacity 420ms ease;
}

.faq-list .kampus-faq-item.is-active .kampus-faq-panel-inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 90ms;
}

.faq-list .kampus-faq-item.is-active .kampus-faq-panel-inner::before {
  opacity: 0.52;
  transform: scaleX(1);
}

.homepage-effects .faq-list .kampus-faq-item {
  border-bottom-color: rgba(11, 30, 40, 0.1);
  border-radius: 16px;
}

body.homepage-effects .faq-list .kampus-faq-item,
body.homepage-effects .faq-list .kampus-faq-item.is-active,
body.homepage-effects .faq-list .kampus-faq-item:hover {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.homepage-effects .faq-list .kampus-faq-panel-inner::before {
  display: none !important;
}

body.homepage-effects .faq-list .kampus-faq-trigger {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.homepage-effects .faq-list .kampus-faq-panel-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 1199px),
  ((max-width: 1366px) and (pointer: coarse)),
  ((max-width: 1366px) and (hover: none)) {
  .faq-list .kampus-faq-trigger {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .faq-list .kampus-faq-trigger {
    font-family: "Poppins", "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    padding: 22px 16px;
  }

  .faq-list .kampus-faq-trigger span {
    padding-right: 12px;
  }

  .faq-list .kampus-faq-panel-inner {
    color: #454545;
    line-height: 24px;
    padding: 12px 16px 16px;
  }

  .faq-list .kampus-faq-panel-inner::before {
    margin-bottom: 12px;
  }
}

body.homepage-effects .reviews-section .review-card {
  backdrop-filter: none;
  background: #ffffff;
  border-color: rgba(11, 30, 40, 0.14);
  box-shadow: 0 16px 34px rgba(11, 30, 40, 0.12);
  color: #151515;
}

body.homepage-effects .reviews-section .review-card::before,
body.homepage-effects .reviews-section .review-card::after {
  opacity: 0;
}

body.homepage-effects .reviews-section .review-card p,
body.homepage-effects .reviews-section .review-user-text strong {
  color: #151515;
  opacity: 1;
}

body.homepage-effects .reviews-section .review-user-text span,
body.homepage-effects .reviews-section .review-date {
  color: #454545;
  opacity: 1;
}

body.homepage-effects .reviews-section .reviews-grid.reviews-slider-mode .review-card.is-prev,
body.homepage-effects .reviews-section .reviews-grid.reviews-slider-mode .review-card.is-next {
  filter: none;
  opacity: 0.78;
}

body.homepage-effects .reviews-section .reviews-grid.reviews-slider-rail .review-card.is-prev,
body.homepage-effects .reviews-section .reviews-grid.reviews-slider-rail .review-card.is-next,
body.homepage-effects .reviews-section .reviews-grid.reviews-slider-rail.reviews-compact-mode .reviews-compact-row .review-card {
  backdrop-filter: none;
  background: #ffffff;
  filter: none;
  opacity: 1;
}

.reviews-slider-arrows {
  display: none;
}

.reviews-slider-arrow {
  align-items: center;
  background: var(--color-white);
  border: 1px solid #454545;
  border-radius: var(--radius-64);
  color: #0b1e28;
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: border-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease, transform 220ms ease;
  width: 44px;
}

.reviews-slider-arrow:disabled {
  border-color: #d1d1d1;
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.reviews-slider-arrow:not(:disabled):active {
  transform: scale(0.96);
}

@media (max-width: 960px) {
  body.homepage-effects .tool-row-first .tool-media {
    background: #ffffff !important;
    box-shadow: none !important;
  }

  body.homepage-effects .tool-row-first .tool-media img {
    height: calc(100% + 34px) !important;
    left: -26px !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 45% !important;
    position: absolute !important;
    top: -17px !important;
    transform: none !important;
    width: calc(100% + 52px) !important;
  }
}

@media (max-width: 768px) {
  body.homepage-effects .reviews-section .reviews-slider-arrows {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
  }

  body.homepage-effects .reviews-section .reviews-slider-arrows[hidden] {
    display: none;
  }

  body.homepage-effects .reviews-section .reviews-grid.reviews-slider-mode .review-card.is-prev,
  body.homepage-effects .reviews-section .reviews-grid.reviews-slider-mode .review-card.is-next {
    filter: none;
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.96);
  }
}

@media (max-width: 640px) {
  body.homepage-effects .contact-card {
    gap: 12px;
  }

  body.homepage-effects .contact-card-visual {
    aspect-ratio: 1350 / 760;
    height: auto;
  }

  body.homepage-effects .contact-card h3,
  body.homepage-effects .contact-card h4,
  body.homepage-effects .contact-card p {
    margin: 0;
  }

  body.homepage-effects .contact-card p {
    line-height: 22px;
  }

  body.homepage-effects .contact-buttons {
    margin-top: 4px;
  }
}
