:root {
  --red-main: #ec1212;
  --red-dark: #951f1e;
  --red-deep: #5a1512;
  --stone: #c8ac93;
  --bone: #eee3cf;
  --sand: #a89077;
  --black: #0b0b0c;
  --black-warm: #1a1210;
  --graphite: #2b2b2b;
  --gray-soft: #8a8278;

  --glass-bg: rgba(238, 227, 207, 0.09);
  --glass-border: rgba(238, 227, 207, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--bone);
  background:
    radial-gradient(circle at 12% 10%, rgba(236, 18, 18, 0.42), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(149, 31, 30, 0.35), transparent 34%),
    radial-gradient(circle at 48% 92%, rgba(200, 172, 147, 0.2), transparent 40%),
    linear-gradient(135deg, #070707 0%, #1a1210 48%, #2b0d0c 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(45px);
  pointer-events: none;
  z-index: -2;
}

body::before {
  top: 18%;
  left: -120px;
  background: rgba(236, 18, 18, 0.22);
  animation: liquidMove 10s ease-in-out infinite alternate;
}

body::after {
  right: -150px;
  bottom: 8%;
  background: rgba(200, 172, 147, 0.16);
  animation: liquidMove 12s ease-in-out infinite alternate-reverse;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 70px;
}

.header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(11, 11, 12, 0.58);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-avatar {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(238, 227, 207, 0.35);
  box-shadow: 0 0 28px rgba(236, 18, 18, 0.42);
}

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

.nav a {
  color: rgba(238, 227, 207, 0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--bone);
  background: rgba(238, 227, 207, 0.08);
}

.nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  box-shadow: 0 14px 34px rgba(236, 18, 18, 0.28);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(238, 227, 207, 0.08);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: var(--bone);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 44px;
  padding: 78px 0 28px;
}

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

.hero-badge,
.hero-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(238, 227, 207, 0.22);
  border-radius: 999px;
  background: rgba(238, 227, 207, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--bone);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 15px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

.hero-status {
  display: flex;
  color: var(--stone);
  background: rgba(149, 31, 30, 0.18);
}

h1 {
  margin-top: 12px;
  max-width: 720px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 950;
}

h1 span {
  display: block;
  width: fit-content;
  color: var(--red-main);
  text-shadow:
    0 0 28px rgba(236, 18, 18, 0.48),
    0 0 80px rgba(236, 18, 18, 0.25);
}

.hero-subtitle {
  max-width: 590px;
  margin-top: 26px;
  color: rgba(238, 227, 207, 0.92);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
  font-weight: 750;
}

.hero-text {
  max-width: 610px;
  margin-top: 16px;
  color: rgba(238, 227, 207, 0.66);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  box-shadow: 0 20px 58px rgba(236, 18, 18, 0.34);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(236, 18, 18, 0.46);
}

.btn-secondary {
  color: var(--bone);
  border: 1px solid rgba(238, 227, 207, 0.22);
  background: rgba(238, 227, 207, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(238, 227, 207, 0.13);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: rgba(238, 227, 207, 0.66);
  font-size: 14px;
  font-weight: 750;
}

.trust-line span {
  padding: 8px 11px;
  border: 1px solid rgba(238, 227, 207, 0.14);
  border-radius: 999px;
  background: rgba(11, 11, 12, 0.28);
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.course-card {
  position: relative;
  overflow: hidden;
  width: min(420px, 100%);
  padding: 30px;
  border: 1px solid rgba(238, 227, 207, 0.22);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(238, 227, 207, 0.13), rgba(149, 31, 30, 0.14)),
    rgba(11, 11, 12, 0.52);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(236, 18, 18, 0.17);
  transform: rotate(1.6deg);
}

.card-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 50% 0%, rgba(236, 18, 18, 0.32), transparent 38%),
    radial-gradient(circle at 20% 90%, rgba(200, 172, 147, 0.22), transparent 36%);
  pointer-events: none;
}

.course-avatar {
  position: relative;
  z-index: 1;
  display: block;
  width: 178px;
  height: 178px;
  object-fit: cover;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid rgba(238, 227, 207, 0.34);
  box-shadow:
    0 0 0 12px rgba(238, 227, 207, 0.05),
    0 0 70px rgba(236, 18, 18, 0.35);
}

.card-kicker,
.course-card h2,
.course-card ul {
  position: relative;
  z-index: 1;
}

.card-kicker {
  color: var(--red-main);
  font-weight: 950;
  text-align: center;
  letter-spacing: 0.06em;
  font-size: 14px;
}

.course-card h2 {
  margin: 8px auto 20px;
  max-width: 310px;
  text-align: center;
  color: var(--bone);
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.course-card ul {
  display: grid;
  gap: 11px;
  list-style: none;
}

.course-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid rgba(238, 227, 207, 0.14);
  border-radius: 18px;
  background: rgba(11, 11, 12, 0.3);
  color: rgba(238, 227, 207, 0.82);
  font-weight: 800;
}

.li-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: rgba(236, 18, 18, 0.16);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(238, 227, 207, 0.22);
  border-radius: 999px;
  background: rgba(238, 227, 207, 0.1);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  color: var(--bone);
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: float 4.4s ease-in-out infinite;
}

.chip-1 { top: 68px; left: 4px; }
.chip-2 { top: 114px; right: -8px; animation-delay: 0.4s; }
.chip-3 { left: -18px; top: 365px; animation-delay: 0.8s; }
.chip-4 { right: -8px; top: 410px; animation-delay: 1.2s; }
.chip-5 {
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  background: rgba(236, 18, 18, 0.18);
  animation-delay: 1.6s;
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes liquidMove {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(50px, -35px, 0) scale(1.12); }
}

@media (max-width: 980px) {
  .page {
    width: min(100% - 24px, 720px);
  }

  .header {
    top: 12px;
    border-radius: 26px;
  }

  .burger {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    background: rgba(11, 11, 12, 0.84);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

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

  .nav a {
    padding: 14px 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 54px;
  }

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

@media (max-width: 560px) {
  .page {
    width: min(100% - 18px, 460px);
    padding-top: 10px;
  }

  .brand span {
    font-size: 15px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-badge,
  .hero-status {
    font-size: 12px;
    padding: 9px 12px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 64px);
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-text {
    font-size: 15.5px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

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

  .course-card {
    width: 92%;
    padding: 24px;
    border-radius: 30px;
    transform: rotate(0deg);
  }

  .course-avatar {
    width: 145px;
    height: 145px;
  }

  .course-card h2 {
    font-size: 26px;
  }

  .floating-chip {
    font-size: 12px;
    padding: 10px 12px;
  }

  .chip-1 { top: 26px; left: 0; }
  .chip-2 { top: 86px; right: 0; }
  .chip-3 { left: 0; top: 345px; }
  .chip-4 { right: 0; top: 392px; }
  .chip-5 { bottom: -8px; }
}

/* ================================
   V3 — adaptive hero fitting update
   Makes the first screen scale better on laptops, large screens and phones.
   ================================ */

.page {
  width: min(1240px, calc(100% - clamp(18px, 4vw, 48px)));
  padding: clamp(12px, 2vh, 18px) 0 clamp(24px, 4vh, 48px);
}

.header {
  top: clamp(8px, 1.6vh, 16px);
  padding: 9px 12px;
}

.brand-avatar {
  width: 34px;
  height: 34px;
}

.nav a {
  font-size: 13px;
  padding: 10px 13px;
}

.hero {
  min-height: calc(100svh - 76px);
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(20px, 3.2vw, 42px);
  padding: clamp(34px, 6vh, 58px) 0 clamp(12px, 3vh, 24px);
}

.hero-badge {
  margin-bottom: 12px;
  font-size: clamp(12px, 1.05vw, 14px);
  padding: 9px 14px;
}

h1 {
  max-width: 680px;
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 0.91;
}

.hero-subtitle {
  max-width: 560px;
  margin-top: 20px;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.36;
}

.hero-text {
  max-width: 590px;
  margin-top: 14px;
  font-size: clamp(15px, 1.25vw, 16.5px);
  line-height: 1.58;
}

.hero-actions {
  margin-top: 24px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
}

.trust-line {
  margin-top: 16px;
  gap: 8px;
  font-size: 13px;
}

.trust-line span {
  padding: 7px 10px;
}

.hero-visual {
  min-height: clamp(430px, 62vh, 550px);
}

.course-card {
  width: min(390px, 88%);
  padding: clamp(22px, 2vw, 28px);
}

.course-avatar {
  width: clamp(132px, 13vw, 165px);
  height: clamp(132px, 13vw, 165px);
  margin-bottom: 18px;
}

.course-card h2 {
  max-width: 300px;
  font-size: clamp(24px, 2.1vw, 29px);
  margin-bottom: 16px;
}

.course-card li {
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 14px;
}

.li-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  font-size: 13px;
}

.floating-chip {
  padding: 10px 13px;
  font-size: 13px;
}

.chip-1 { top: 14%; left: -1%; }
.chip-2 { top: 24%; right: -4%; }
.chip-3 { left: -6%; top: 60%; }
.chip-4 { right: -3%; top: 69%; }
.chip-5 {
  left: auto;
  right: 22%;
  bottom: 2%;
  transform: none;
}

@media (max-height: 820px) and (min-width: 981px) {
  .page {
    width: min(1260px, calc(100% - 36px));
    padding-top: 10px;
    padding-bottom: 18px;
  }

  .header {
    padding: 8px 11px;
  }

  .brand-avatar {
    width: 32px;
    height: 32px;
  }

  .nav a {
    font-size: 12.5px;
    padding: 9px 12px;
  }

  .hero {
    min-height: calc(100svh - 68px);
    padding: 28px 0 8px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(38px, 5.15vw, 64px);
    line-height: 0.92;
  }

  .hero-badge {
    margin-bottom: 10px;
    padding: 8px 13px;
  }

  .hero-subtitle {
    margin-top: 16px;
    font-size: clamp(16px, 1.4vw, 19px);
  }

  .hero-text {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .btn {
    min-height: 48px;
    padding: 0 20px;
  }

  .trust-line {
    margin-top: 12px;
  }

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

  .course-card {
    width: 350px;
    padding: 22px;
  }

  .course-avatar {
    width: 132px;
    height: 132px;
    margin-bottom: 14px;
  }

  .card-kicker {
    font-size: 12px;
  }

  .course-card h2 {
    font-size: 23px;
    margin-bottom: 14px;
  }

  .course-card ul {
    gap: 8px;
  }

  .course-card li {
    padding: 9px 12px;
    font-size: 13px;
  }

  .floating-chip {
    padding: 9px 12px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
  }

  h1 {
    font-size: clamp(46px, 10vw, 78px);
  }
}

@media (max-width: 720px) {
  .header {
    border-radius: 24px;
  }

  .brand span {
    font-size: 14px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  h1 {
    font-size: clamp(39px, 13vw, 62px);
    letter-spacing: -0.065em;
  }

  .hero-subtitle,
  .hero-text {
    max-width: 100%;
  }

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

  .trust-line span {
    text-align: center;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 10px;
    padding-bottom: 0;
  }

  .course-card {
    order: 1;
    width: 100%;
    max-width: 420px;
    transform: rotate(0deg);
  }

  .floating-chip {
    position: static;
    order: 2;
    width: 100%;
    max-width: 420px;
    justify-content: center;
    text-align: center;
    animation: none;
    transform: none;
  }
}

@media (max-width: 420px) {
  .page {
    width: min(100% - 14px, 390px);
  }

  .brand-avatar {
    width: 30px;
    height: 30px;
  }

  .brand span {
    font-size: 13px;
  }

  h1 {
    font-size: clamp(36px, 12.5vw, 50px);
  }

  .hero-actions {
    gap: 10px;
  }

  .course-card {
    padding: 20px;
  }
}

/* ================================
   V4 — 30% larger desktop hero
   Enlarges the first screen by ~30% on desktop while keeping responsiveness.
   ================================ */
@media (min-width: 1200px) {
  .page {
    width: min(1420px, calc(100% - 42px));
    padding-top: 14px;
    padding-bottom: 28px;
  }

  .header {
    padding: 12px 16px;
  }

  .brand {
    gap: 12px;
    font-size: 1.25rem;
  }

  .brand-avatar {
    width: 42px;
    height: 42px;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    font-size: 16px;
    padding: 13px 18px;
  }

  .hero {
    min-height: calc(100svh - 86px);
    grid-template-columns: minmax(0, 1.12fr) minmax(460px, 0.88fr);
    gap: 42px;
    padding: 54px 0 18px;
  }

  .hero-badge {
    font-size: 18px;
    padding: 13px 20px;
    margin-bottom: 18px;
  }

  h1 {
    max-width: 800px;
    font-size: clamp(58px, 6.9vw, 102px);
    line-height: 0.9;
  }

  .hero-subtitle {
    max-width: 760px;
    margin-top: 28px;
    font-size: clamp(24px, 2.1vw, 30px);
    line-height: 1.34;
  }

  .hero-text {
    max-width: 760px;
    margin-top: 18px;
    font-size: clamp(20px, 1.35vw, 22px);
    line-height: 1.58;
  }

  .hero-actions {
    gap: 18px;
    margin-top: 34px;
  }

  .btn {
    min-height: 68px;
    padding: 0 30px;
    font-size: 21px;
  }

  .trust-line {
    gap: 12px;
    margin-top: 20px;
    font-size: 17px;
  }

  .trust-line span {
    padding: 10px 15px;
  }

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

  .course-card {
    width: min(500px, 100%);
    padding: 38px;
    border-radius: 42px;
  }

  .course-avatar {
    width: 210px;
    height: 210px;
    margin-bottom: 24px;
  }

  .card-kicker {
    font-size: 18px;
  }

  .course-card h2 {
    max-width: 380px;
    font-size: clamp(36px, 2.55vw, 42px);
    margin: 10px auto 24px;
  }

  .course-card ul {
    gap: 14px;
  }

  .course-card li {
    gap: 12px;
    padding: 16px 18px;
    font-size: 19px;
    border-radius: 20px;
  }

  .li-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 17px;
  }

  .floating-chip {
    padding: 15px 18px;
    font-size: 17px;
  }

  .chip-1 { top: 12%; left: -4%; }
  .chip-2 { top: 22%; right: -10%; }
  .chip-3 { left: -10%; top: 58%; }
  .chip-4 { right: -8%; top: 68%; }
  .chip-5 { right: 20%; bottom: 1%; }
}

@media (min-width: 1200px) and (max-height: 980px) {
  .hero {
    min-height: calc(100svh - 78px);
    padding-top: 36px;
    gap: 32px;
  }

  h1 {
    font-size: clamp(52px, 6.1vw, 88px);
  }

  .hero-subtitle {
    font-size: clamp(21px, 1.8vw, 25px);
  }

  .hero-text {
    font-size: clamp(18px, 1.2vw, 20px);
  }

  .btn {
    min-height: 62px;
    font-size: 19px;
  }

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

  .course-card {
    width: min(460px, 100%);
    padding: 32px;
  }

  .course-avatar {
    width: 184px;
    height: 184px;
  }

  .course-card h2 {
    font-size: clamp(31px, 2.2vw, 36px);
  }

  .course-card li {
    font-size: 17px;
    padding: 14px 16px;
  }

  .floating-chip {
    font-size: 15px;
    padding: 13px 16px;
  }
}


/* ================================
   SECTION 2 — Journey / timeline
   ================================ */
.journey {
  position: relative;
  padding: clamp(72px, 10vw, 126px) 0 32px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(238, 227, 207, 0.18);
  background: rgba(238, 227, 207, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--stone);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section-head h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.section-head h2 span {
  color: var(--red-main);
  text-shadow: 0 0 24px rgba(236, 18, 18, 0.28);
}

.section-head p {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(238, 227, 207, 0.74);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.5;
}

.journey-timeline {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.journey-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 84px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(236, 18, 18, 0.95), rgba(200, 172, 147, 0.76), rgba(181, 94, 255, 0.72));
  box-shadow: 0 0 28px rgba(236, 18, 18, 0.22);
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.journey-marker {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: 62px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(135deg, #ffb53f, var(--red-main));
  border: 3px solid rgba(255, 228, 200, 0.45);
  box-shadow: 0 0 0 12px rgba(236, 18, 18, 0.08), 0 18px 36px rgba(0, 0, 0, 0.22);
}

.journey-card {
  padding: 28px 32px;
  border-radius: 28px;
  border: 1px solid rgba(238, 227, 207, 0.14);
  background:
    linear-gradient(135deg, rgba(238, 227, 207, 0.08), rgba(149, 31, 30, 0.08)),
    rgba(11, 11, 12, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.journey-kicker {
  color: #ff8b1f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.journey-icon {
  margin-top: 20px;
  font-size: 34px;
}

.journey-card h3 {
  margin-top: 18px;
  color: var(--bone);
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.journey-card p:last-child {
  margin-top: 16px;
  color: rgba(238, 227, 207, 0.68);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.58;
}

.journey-step-final .journey-marker {
  background: linear-gradient(135deg, #c36dff, var(--red-main));
}

.journey-card-final {
  border-color: rgba(236, 18, 18, 0.18);
  background:
    linear-gradient(135deg, rgba(238, 227, 207, 0.11), rgba(195, 109, 255, 0.08)),
    rgba(11, 11, 12, 0.42);
}

@media (max-width: 980px) {
  .journey {
    padding-top: 56px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .journey-timeline {
    gap: 20px;
  }

  .journey-line {
    left: 30px;
  }

  .journey-step {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }

  .journey-marker {
    width: 38px;
    height: 38px;
    margin-left: 11px;
    font-size: 16px;
    box-shadow: 0 0 0 8px rgba(236, 18, 18, 0.08), 0 14px 28px rgba(0, 0, 0, 0.18);
  }

  .journey-card {
    padding: 22px 22px 24px;
    border-radius: 22px;
  }
}

@media (max-width: 720px) {
  .section-eyebrow {
    font-size: 13px;
  }

  .section-head h2 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .section-head p {
    font-size: 16px;
  }

  .journey-line {
    left: 22px;
  }

  .journey-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .journey-marker {
    width: 34px;
    height: 34px;
    margin-left: 5px;
    font-size: 14px;
    border-width: 2px;
  }

  .journey-card {
    padding: 18px 18px 20px;
    border-radius: 18px;
  }

  .journey-kicker {
    font-size: 12px;
  }

  .journey-icon {
    margin-top: 14px;
    font-size: 28px;
  }

  .journey-card h3 {
    margin-top: 14px;
    font-size: 24px;
  }

  .journey-card p:last-child {
    font-size: 15px;
    line-height: 1.52;
  }
}

@media (min-width: 1200px) {
  .journey {
    padding-top: 92px;
  }

  .section-head {
    max-width: 900px;
    margin-bottom: 64px;
  }

  .section-eyebrow {
    font-size: 16px;
    padding: 12px 18px;
  }

  .section-head h2 {
    font-size: clamp(54px, 5.2vw, 82px);
  }

  .section-head p {
    font-size: clamp(20px, 1.6vw, 24px);
  }

  .journey-timeline {
    max-width: 1120px;
    gap: 34px;
  }

  .journey-line {
    left: 94px;
  }

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

  .journey-marker {
    width: 52px;
    height: 52px;
    margin-left: 68px;
    font-size: 20px;
  }

  .journey-card {
    padding: 34px 38px;
    border-radius: 32px;
  }

  .journey-kicker {
    font-size: 16px;
  }

  .journey-icon {
    font-size: 38px;
  }

  .journey-card h3 {
    font-size: clamp(30px, 2.4vw, 46px);
  }

  .journey-card p:last-child {
    font-size: clamp(18px, 1.2vw, 22px);
  }
}


/* ================================
   V6 — content updates + hero ~18% smaller
   ================================ */
/* First block smaller by ~15–20% while preserving responsiveness */
.hero {
  min-height: calc(100svh - 68px);
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.86fr);
  gap: clamp(16px, 2.4vw, 30px);
  padding: clamp(26px, 4vh, 40px) 0 clamp(10px, 2vh, 20px);
}

.hero-badge {
  font-size: clamp(11px, 0.92vw, 13px);
  padding: 8px 13px;
  margin-bottom: 10px;
}

h1 {
  max-width: 620px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.92;
}

.hero-subtitle {
  max-width: 500px;
  margin-top: 16px;
  font-size: clamp(15px, 1.28vw, 18px);
  line-height: 1.34;
}

.hero-text {
  max-width: 540px;
  margin-top: 12px;
  font-size: clamp(14px, 1.05vw, 15px);
  line-height: 1.52;
}

.hero-actions {
  margin-top: 20px;
  gap: 10px;
}

.btn {
  min-height: 46px;
  padding: 0 20px;
  font-size: 15px;
}

.trust-line {
  margin-top: 14px;
  gap: 8px;
  font-size: 12px;
}

.trust-line span {
  padding: 6px 10px;
}

.hero-visual {
  min-height: clamp(390px, 52vh, 470px);
}

.course-card {
  width: min(350px, 86%);
  padding: 22px;
  border-radius: 30px;
}

.course-avatar {
  width: clamp(118px, 11vw, 145px);
  height: clamp(118px, 11vw, 145px);
  margin-bottom: 16px;
}

.card-kicker {
  font-size: 12px;
}

.course-card h2 {
  max-width: 280px;
  font-size: clamp(21px, 1.8vw, 25px);
  margin: 8px auto 14px;
}

.course-card ul {
  gap: 8px;
}

.course-card li {
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 14px;
}

.li-icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
  font-size: 12px;
}

.floating-chip {
  padding: 9px 12px;
  font-size: 12px;
}

.chip-1 { top: 12%; left: -3%; }
.chip-2 { top: 22%; right: -8%; }
.chip-3 { left: -8%; top: 58%; }
.chip-4 { right: -8%; top: 67%; }
.chip-5 { right: 16%; bottom: 0; }

/* Keep mobile comfortable */
@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 28px;
    gap: 22px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(40px, 10.2vw, 62px);
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-text {
    font-size: 15px;
  }

  .btn {
    min-height: 50px;
    font-size: 16px;
  }

  .hero-visual {
    min-height: auto;
  }

  .course-card {
    width: min(390px, 100%);
  }
}

@media (min-width: 1200px) {
  .hero {
    min-height: calc(100svh - 74px);
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.84fr);
    gap: 34px;
    padding-top: 34px;
    padding-bottom: 12px;
  }

  h1 {
    max-width: 700px;
    font-size: clamp(46px, 5.3vw, 78px);
  }

  .hero-subtitle {
    max-width: 590px;
    font-size: clamp(17px, 1.45vw, 21px);
  }

  .hero-text {
    max-width: 620px;
    font-size: clamp(15px, 1.05vw, 17px);
  }

  .btn {
    min-height: 52px;
    padding: 0 22px;
    font-size: 17px;
  }

  .trust-line {
    font-size: 13px;
  }

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

  .course-card {
    width: min(390px, 100%);
    padding: 24px;
  }

  .course-avatar {
    width: 150px;
    height: 150px;
  }

  .course-card h2 {
    font-size: clamp(24px, 1.9vw, 28px);
  }

  .course-card li {
    font-size: 14px;
  }

  .floating-chip {
    font-size: 13px;
    padding: 10px 13px;
  }
}

/* Journey section content tweaks */
.section-head {
  max-width: 1040px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(42px, 5.8vw, 86px);
}

.section-head p {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(18px, 1.9vw, 24px);
}

.journey-card h3 {
  max-width: 760px;
}

@media (max-width: 720px) {
  .section-head h2 {
    font-size: clamp(34px, 10.4vw, 52px);
  }

  .section-head p {
    font-size: 16px;
  }
}


/* ================================
   V7 — HERO FIT FIX
   Перший блок тепер влазить у ширину екрана.
   ================================ */
body {
  overflow-x: hidden;
}

.page {
  width: min(1260px, calc(100% - clamp(22px, 4vw, 58px)));
}

.hero,
.hero-content,
.hero-visual {
  min-width: 0;
}

.hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  padding: clamp(46px, 6vh, 72px) 0 clamp(28px, 4vh, 46px);
}

.hero-content {
  max-width: 100%;
}

.hero-badge {
  max-width: 100%;
  font-size: clamp(11px, 0.95vw, 13px);
  padding: 8px 13px;
}

h1 {
  max-width: 610px;
  font-size: clamp(38px, 4.65vw, 66px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero-subtitle {
  max-width: 560px;
  margin-top: 16px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.34;
}

.hero-text {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.52;
}

.hero-actions {
  margin-top: 20px;
  gap: 10px;
}

.btn {
  min-height: 48px;
  padding: 0 20px;
  font-size: 15px;
}

.trust-line {
  margin-top: 14px;
  gap: 8px;
  font-size: 12px;
}

.trust-line span {
  padding: 6px 10px;
}

.hero-visual {
  min-height: 470px;
  padding-inline: 38px;
  overflow: visible;
}

.course-card {
  width: min(350px, 100%);
  padding: 22px;
  border-radius: 30px;
}

.course-avatar {
  width: 138px;
  height: 138px;
  margin-bottom: 15px;
}

.card-kicker {
  font-size: 12px;
}

.course-card h2 {
  max-width: 270px;
  font-size: clamp(22px, 1.75vw, 26px);
  margin: 8px auto 14px;
}

.course-card ul {
  gap: 8px;
}

.course-card li {
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 14px;
}

.li-icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
  font-size: 12px;
}

.floating-chip {
  font-size: 12px;
  padding: 9px 12px;
  white-space: nowrap;
}

/* Бейджі більше не вилітають за екран */
.chip-1 { top: 14%; left: 6px; }
.chip-2 { top: 25%; right: 6px; }
.chip-3 { left: 6px; top: 58%; }
.chip-4 { right: 6px; top: 68%; }
.chip-5 { right: 42px; bottom: 4%; }

@media (min-width: 1200px) {
  .page {
    width: min(1320px, calc(100% - 60px));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 30px;
    padding-top: 52px;
    padding-bottom: 42px;
  }

  h1 {
    max-width: 635px;
    font-size: clamp(46px, 4.75vw, 72px);
  }

  .hero-subtitle,
  .hero-text {
    max-width: 600px;
  }

  .btn {
    min-height: 50px;
    padding: 0 22px;
    font-size: 16px;
  }

  .hero-visual {
    min-height: 500px;
    padding-inline: 46px;
  }

  .course-card {
    width: 365px;
    padding: 23px;
  }

  .course-avatar {
    width: 144px;
    height: 144px;
  }

  .course-card h2 {
    font-size: 26px;
  }

  .floating-chip {
    font-size: 12.5px;
    padding: 9px 12px;
  }

  .chip-1 { left: 12px; }
  .chip-2 { right: 12px; }
  .chip-3 { left: 10px; }
  .chip-4 { right: 10px; }
  .chip-5 { right: 56px; }
}

@media (min-width: 1500px) {
  .page {
    width: min(1400px, calc(100% - 80px));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
    gap: 42px;
  }

  h1 {
    max-width: 700px;
    font-size: clamp(54px, 4.65vw, 82px);
  }

  .hero-visual {
    min-height: 540px;
    padding-inline: 52px;
  }

  .course-card {
    width: 400px;
    padding: 26px;
  }

  .course-avatar {
    width: 154px;
    height: 154px;
  }

  .course-card h2 {
    font-size: 29px;
  }

  .floating-chip {
    font-size: 13px;
    padding: 10px 13px;
  }
}

@media (max-height: 820px) and (min-width: 981px) {
  .hero {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  h1 {
    font-size: clamp(36px, 4.2vw, 60px);
  }

  .hero-subtitle {
    font-size: clamp(15px, 1.15vw, 17px);
  }

  .hero-text {
    font-size: 14px;
  }

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

  .course-card {
    width: 330px;
    padding: 20px;
  }

  .course-avatar {
    width: 126px;
    height: 126px;
  }

  .course-card h2 {
    font-size: 22px;
  }

  .course-card li,
  .floating-chip {
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .page {
    width: min(100% - 24px, 720px);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(38px, 10vw, 62px);
  }

  .hero-visual {
    padding-inline: 0;
    min-height: auto;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .hero-badge {
    font-size: 11px;
  }

  .trust-line {
    grid-template-columns: 1fr 1fr;
  }
}


/* ================================
   V8 — hero fit improvements + sections
   ================================ */
body {
  overflow-x: hidden;
}

.page {
  width: min(1280px, calc(100% - clamp(24px, 4vw, 64px)));
}

.hero, .hero-content, .hero-visual {
  min-width: 0;
}

.hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(18px, 2.5vw, 30px);
  padding: clamp(42px, 6vh, 70px) 0 clamp(28px, 4vh, 44px);
}

.hero-badge {
  font-size: clamp(11px, 1vw, 14px);
  padding: 9px 14px;
  margin-bottom: 12px;
}

h1 {
  max-width: 590px;
  font-size: clamp(40px, 4.9vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero-subtitle {
  max-width: 540px;
  margin-top: 18px;
  font-size: clamp(16px, 1.28vw, 19px);
}

.hero-text {
  max-width: 540px;
  font-size: clamp(14px, 1vw, 16px);
}

.hero-actions {
  margin-top: 22px;
}

.btn {
  min-height: 48px;
  padding: 0 20px;
  font-size: 16px;
}

.trust-line {
  margin-top: 14px;
  gap: 8px;
  font-size: 12px;
}

.trust-line span {
  padding: 6px 10px;
}

.hero-visual {
  min-height: 480px;
  padding-inline: 20px;
}

.course-card {
  width: min(360px, 100%);
  padding: 22px;
  border-radius: 32px;
}

.course-avatar {
  width: 148px;
  height: 148px;
}

.course-card h2 {
  max-width: 280px;
  font-size: clamp(22px, 1.8vw, 27px);
}

.course-card ul {
  gap: 8px;
}

.course-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 14px;
}

.li-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: rgba(236, 18, 18, 0.16);
  font-size: 12px;
}

.floating-chip {
  padding: 9px 12px;
  font-size: 12px;
  max-width: calc(100% - 4px);
  white-space: nowrap;
}

.chip-1 { top: 14%; left: 0; }
.chip-2 { top: 25%; right: 0; }
.chip-3 { left: 0; top: 60%; }
.chip-4 { right: 0; top: 71%; }
.chip-5 { right: 8%; bottom: 3%; left: auto; transform: none; }

@media (min-width: 1200px) {
  .page {
    width: min(1340px, calc(100% - 72px));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 34px;
  }

  h1 {
    max-width: 640px;
    font-size: clamp(46px, 4.85vw, 72px);
  }

  .hero-visual {
    min-height: 510px;
    padding-inline: 32px;
  }

  .course-card {
    width: 380px;
    padding: 24px;
  }

  .floating-chip {
    font-size: 13px;
    padding: 10px 13px;
  }
}

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

  h1 {
    max-width: 100%;
    font-size: clamp(38px, 10vw, 62px);
  }

  .hero-visual {
    min-height: auto;
    padding-inline: 0;
  }
}

/* Principles section */
.principles {
  position: relative;
  padding: clamp(76px, 9vw, 122px) 0 clamp(52px, 8vw, 86px);
}

.principles::before {
  content: "";
  position: absolute;
  inset: 10% 8% auto;
  height: 520px;
  background: radial-gradient(circle at center, rgba(236, 18, 18, 0.26), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}

.principles-head {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto 40px;
  text-align: center;
}

.principles-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(238, 227, 207, 0.18);
  background: rgba(238, 227, 207, 0.08);
  color: var(--stone);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principles-head h2 {
  margin-top: 20px;
  color: var(--bone);
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.principles-head h2 span {
  color: var(--red-main);
  text-shadow: 0 0 28px rgba(236, 18, 18, 0.3);
}

.principles-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

.principle-card {
  min-height: 100%;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(238, 227, 207, 0.14);
  background: linear-gradient(180deg, rgba(149,31,30,0.12), rgba(11,11,12,0.58)), rgba(11,11,12,0.6);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
}

.principle-card-center {
  transform: translateY(-18px);
}

.principle-visual {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  margin-bottom: 24px;
  border-radius: 24px;
  border: 1px solid rgba(238, 227, 207, 0.1);
  background: linear-gradient(180deg, rgba(236,18,18,0.28), rgba(11,11,12,0.4));
}

.principle-visual::before {
  content: "";
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 90px;
  background: radial-gradient(circle at center, rgba(236,18,18,0.4), transparent 70%);
  filter: blur(16px);
}

.principle-visual-target {
  display: grid;
  place-items: center;
}

.principle-rings {
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  background: radial-gradient(circle at 24% 78%, rgba(255,255,255,0.16), transparent 14%), radial-gradient(circle at 24% 78%, rgba(255,255,255,0.12) 0 8%, transparent 8% 16%, rgba(255,255,255,0.08) 16% 21%, transparent 21% 28%, rgba(255,255,255,0.05) 28% 33%, transparent 33%), linear-gradient(180deg, rgba(236,18,18,0.22), rgba(20,10,10,0.1));
  opacity: 0.9;
}

.principle-emoji {
  position: relative;
  z-index: 1;
  font-size: clamp(110px, 10vw, 160px);
  filter: drop-shadow(0 16px 40px rgba(236, 18, 18, 0.42));
}

.principle-visual-support {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 30%, rgba(236,18,18,0.52), transparent 44%), linear-gradient(180deg, rgba(236,18,18,0.22), rgba(11,11,12,0.48));
}

.principle-avatar {
  position: relative;
  z-index: 1;
  width: 172px;
  height: 172px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(238, 227, 207, 0.28);
  box-shadow: 0 0 0 12px rgba(238, 227, 207, 0.05), 0 0 70px rgba(236, 18, 18, 0.32);
}

.support-bubble {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(238, 227, 207, 0.92);
  color: #2f241c;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.bubble-1 { top: 26px; right: 20px; }
.bubble-2 { left: 20px; bottom: 84px; }
.bubble-3 { right: 20px; bottom: 28px; }

.principle-visual-fresh {
  display: grid;
  place-items: center;
}

.fresh-plate {
  position: absolute;
  width: 240px;
  height: 150px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  font-size: clamp(48px, 4vw, 68px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(236, 18, 18, 0.8);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,240,240,0.88));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 0 34px rgba(255,255,255,0.24), 0 0 80px rgba(236,18,18,0.28);
  transform: rotate(-14deg);
}

.fresh-back {
  transform: rotate(10deg) translateY(28px);
  opacity: 0.88;
  background: linear-gradient(180deg, rgba(255,150,150,0.94), rgba(236,18,18,0.72));
  color: rgba(255,255,255,0.42);
}

.principle-card h3 {
  color: var(--bone);
  font-size: clamp(26px, 2.1vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.principle-card p {
  margin-top: 16px;
  color: rgba(238, 227, 207, 0.76);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.5;
}

/* Journey section */
.journey {
  position: relative;
  padding: clamp(74px, 9vw, 110px) 0 40px;
}

.section-head {
  max-width: 1040px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  color: var(--bone);
  font-size: clamp(42px, 5.3vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.section-head h2 span {
  color: var(--red-main);
}

.section-head p {
  max-width: 860px;
  margin: 18px auto 0;
  color: rgba(238, 227, 207, 0.74);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
}

.journey-timeline {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.journey-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 84px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(236,18,18,0.95), rgba(200,172,147,0.76), rgba(181,94,255,0.72));
  box-shadow: 0 0 28px rgba(236, 18, 18, 0.22);
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.journey-marker {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: 62px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(135deg, #ffb53f, var(--red-main));
  border: 3px solid rgba(255, 228, 200, 0.45);
  box-shadow: 0 0 0 12px rgba(236, 18, 18, 0.08), 0 18px 36px rgba(0, 0, 0, 0.22);
}

.journey-card {
  padding: 28px 32px;
  border-radius: 28px;
  border: 1px solid rgba(238, 227, 207, 0.14);
  background: linear-gradient(135deg, rgba(238, 227, 207, 0.08), rgba(149, 31, 30, 0.08)), rgba(11, 11, 12, 0.4);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.journey-kicker {
  color: #ff8b1f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.journey-icon {
  margin-top: 20px;
  font-size: 34px;
}

.journey-card h3 {
  margin-top: 16px;
  color: var(--bone);
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.journey-card p:last-child {
  margin-top: 14px;
  color: rgba(238, 227, 207, 0.7);
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.58;
}

.journey-step-final .journey-marker {
  background: linear-gradient(135deg, #c36dff, var(--red-main));
}

.journey-card-final {
  border-color: rgba(236, 18, 18, 0.18);
  background: linear-gradient(135deg, rgba(238, 227, 207, 0.11), rgba(195, 109, 255, 0.08)), rgba(11, 11, 12, 0.42);
}

@media (max-width: 980px) {
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .principle-card-center {
    transform: none;
  }

  .principles-head h2,
  .section-head h2 {
    font-size: clamp(34px, 8.8vw, 58px);
  }

  .principle-visual {
    min-height: 250px;
  }

  .journey-line {
    left: 30px;
  }

  .journey-step {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }

  .journey-marker {
    width: 38px;
    height: 38px;
    margin-left: 11px;
    font-size: 16px;
    box-shadow: 0 0 0 8px rgba(236, 18, 18, 0.08), 0 14px 28px rgba(0, 0, 0, 0.18);
  }

  .journey-card {
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .principles-kicker {
    font-size: 12px;
  }

  .principles-head h2,
  .section-head h2 {
    font-size: clamp(30px, 10.5vw, 48px);
  }

  .principle-card,
  .journey-card {
    padding: 18px;
    border-radius: 22px;
  }

  .principle-visual {
    min-height: 220px;
    border-radius: 20px;
    margin-bottom: 18px;
  }

  .principle-avatar {
    width: 132px;
    height: 132px;
  }

  .support-bubble {
    max-width: 160px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .bubble-1 { top: 16px; right: 12px; }
  .bubble-2 { left: 12px; bottom: 64px; }
  .bubble-3 { right: 12px; bottom: 18px; }

  .fresh-plate {
    width: 180px;
    height: 118px;
    border-radius: 22px;
  }

  .principle-card h3,
  .journey-card h3 {
    font-size: 24px;
  }

  .principle-card p,
  .journey-card p:last-child,
  .section-head p {
    font-size: 15px;
  }

  .journey-line {
    left: 22px;
  }

  .journey-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .journey-marker {
    width: 34px;
    height: 34px;
    margin-left: 5px;
    font-size: 14px;
    border-width: 2px;
  }

  .journey-icon {
    font-size: 28px;
    margin-top: 14px;
  }
}


/* ================================
   V10 — Course includes block
   ================================ */
.course-includes {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0 clamp(54px, 8vw, 90px);
}

.course-includes::before {
  content: "";
  position: absolute;
  inset: 8% -12% auto;
  height: 560px;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(236, 18, 18, 0.22), transparent 36%),
    radial-gradient(circle at 75% 22%, rgba(200, 172, 147, 0.12), transparent 34%);
  filter: blur(18px);
  z-index: 0;
}

.includes-head {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto 38px;
  text-align: center;
}

.includes-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(238, 227, 207, 0.18);
  background: rgba(238, 227, 207, 0.08);
  color: var(--stone);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.includes-head h2 {
  margin-top: 20px;
  color: var(--bone);
  font-size: clamp(40px, 5vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.includes-head h2 span {
  color: var(--red-main);
  text-shadow: 0 0 28px rgba(236, 18, 18, 0.28);
}

.includes-head p {
  max-width: 840px;
  margin: 18px auto 0;
  color: rgba(238, 227, 207, 0.72);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.includes-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.include-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(238, 227, 207, 0.14);
  background:
    linear-gradient(135deg, rgba(238, 227, 207, 0.09), rgba(149, 31, 30, 0.08)),
    rgba(11, 11, 12, 0.44);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.include-card::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(236, 18, 18, 0.18);
  filter: blur(20px);
  opacity: 0.8;
}

.include-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 18, 18, 0.35);
  background:
    linear-gradient(135deg, rgba(238, 227, 207, 0.12), rgba(236, 18, 18, 0.11)),
    rgba(11, 11, 12, 0.5);
}

.include-featured {
  border-color: rgba(236, 18, 18, 0.28);
  background:
    linear-gradient(135deg, rgba(236, 18, 18, 0.16), rgba(238, 227, 207, 0.08)),
    rgba(11, 11, 12, 0.48);
}

.include-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  border: 1px solid rgba(238, 227, 207, 0.15);
  background: rgba(238, 227, 207, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 35px rgba(0, 0, 0, 0.18);
  font-size: 30px;
}

.include-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  color: var(--bone);
  font-size: clamp(25px, 2vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.include-card p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: rgba(238, 227, 207, 0.7);
  font-size: clamp(15.5px, 1.02vw, 18px);
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .includes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .course-includes {
    padding-top: 56px;
  }

  .includes-head h2 {
    font-size: clamp(31px, 10vw, 48px);
  }

  .includes-head p {
    font-size: 15px;
  }

  .includes-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .include-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .include-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 26px;
  }

  .include-card h3 {
    margin-top: 22px;
    font-size: 25px;
  }

  .include-card p {
    font-size: 15px;
  }
}


/* ================================
   V12 — Program accordion section
   ================================ */
.program-section {
  position: relative;
  padding: clamp(76px, 9vw, 118px) 0 clamp(48px, 7vw, 86px);
}

.program-head {
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: center;
}

.program-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(238, 227, 207, 0.18);
  background: rgba(238, 227, 207, 0.08);
  color: var(--stone);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.program-head h2 {
  margin-top: 18px;
  color: var(--bone);
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.program-head h2 span {
  color: var(--red-main);
  text-shadow: 0 0 30px rgba(236, 18, 18, 0.28);
}

.program-head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(238, 227, 207, 0.72);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.52;
}

.program-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 40px;
  flex-wrap: wrap;
}

.program-tab {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(238, 227, 207, 0.18);
  background: rgba(238, 227, 207, 0.08);
  color: rgba(238, 227, 207, 0.82);
  font-weight: 850;
}

.program-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  border-color: rgba(236, 18, 18, 0.52);
  box-shadow: 0 18px 46px rgba(236, 18, 18, 0.22);
}

.program-list {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.program-list::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, rgba(236, 18, 18, 0.9), rgba(200, 172, 147, 0.25));
  opacity: 0.7;
}

.program-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(238, 227, 207, 0.14);
  background:
    linear-gradient(135deg, rgba(238, 227, 207, 0.08), rgba(149, 31, 30, 0.1)),
    rgba(11, 11, 12, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.program-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red-main), #ff9f2f);
  opacity: 0.85;
}

.program-toggle {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 64px 1fr auto 42px;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.program-num {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: rgba(238, 227, 207, 0.12);
  border: 1px solid rgba(238, 227, 207, 0.14);
  color: var(--red-main);
  font-weight: 950;
  font-size: 18px;
}

.program-title-wrap {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.program-title {
  color: var(--bone);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.program-count {
  color: rgba(238, 227, 207, 0.56);
  font-size: 14px;
  font-weight: 750;
}

.program-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(236, 18, 18, 0.28);
  background: rgba(236, 18, 18, 0.1);
  color: var(--bone);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 850;
}

.program-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(238, 227, 207, 0.08);
  color: rgba(238, 227, 207, 0.72);
  font-size: 22px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.program-item.is-open .program-arrow {
  transform: rotate(180deg);
  background: rgba(236, 18, 18, 0.16);
  color: #fff;
}

.program-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.program-content > ul {
  overflow: hidden;
}

.program-item.is-open .program-content {
  grid-template-rows: 1fr;
}

.program-content ul {
  list-style: none;
  padding: 0 28px 22px 104px;
  display: grid;
  gap: 10px;
}

.program-content li {
  position: relative;
  padding-left: 24px;
  color: rgba(238, 227, 207, 0.75);
  font-size: 16px;
  line-height: 1.45;
}

.program-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-main);
  box-shadow: 0 0 18px rgba(236, 18, 18, 0.42);
}

.program-live {
  border-color: rgba(236, 18, 18, 0.36);
  box-shadow: 0 22px 76px rgba(236, 18, 18, 0.12), 0 18px 58px rgba(0, 0, 0, 0.22);
}

.program-live::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 20% 50%, rgba(236, 18, 18, 0.2), transparent 38%);
  pointer-events: none;
}

.live-num {
  gap: 4px;
  color: #fff;
  background: rgba(236, 18, 18, 0.18);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red-main);
  box-shadow: 0 0 0 0 rgba(236, 18, 18, 0.72);
  animation: livePulse 1.45s ease-in-out infinite;
}

.live-badge {
  color: #fff;
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  border-color: rgba(236, 18, 18, 0.55);
  box-shadow: 0 0 28px rgba(236, 18, 18, 0.26);
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(236, 18, 18, 0.72); }
  70% { box-shadow: 0 0 0 10px rgba(236, 18, 18, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 18, 18, 0); }
}

@media (max-width: 760px) {
  .program-toggle {
    grid-template-columns: 52px 1fr 36px;
    gap: 12px;
    padding: 16px;
  }

  .program-num {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 16px;
  }

  .program-title {
    font-size: 21px;
  }

  .program-badge {
    grid-column: 2 / 3;
    width: fit-content;
    min-height: 30px;
    font-size: 12px;
    padding: 0 10px;
  }

  .program-arrow {
    grid-column: 3;
    grid-row: 1;
    width: 34px;
    height: 34px;
  }

  .program-content ul {
    padding: 0 18px 18px 80px;
  }

  .program-content li {
    font-size: 14.5px;
  }

  .program-list::before {
    left: 25px;
  }
}


/* ================================
   V13 — Program cleanup
   - removed course type tabs
   - removed Base/LIVE badges near lessons
   - all lesson lists are hidden by default
   ================================ */
.program-tabs,
.program-tab,
.program-badge {
  display: none !important;
}

.program-head {
  margin-bottom: 46px;
}

.program-toggle {
  grid-template-columns: 64px minmax(0, 1fr) 42px;
}

.program-content {
  grid-template-rows: 0fr;
}

.program-item:not(.is-open) .program-content {
  grid-template-rows: 0fr !important;
}

.program-content > ul {
  min-height: 0;
  overflow: hidden;
}

.program-item.is-open .program-content {
  grid-template-rows: 1fr;
}

.program-item.is-open .program-toggle {
  padding-bottom: 14px;
}

@media (max-width: 760px) {
  .program-toggle {
    grid-template-columns: 52px minmax(0, 1fr) 36px;
  }
}


/* ================================
   V14 — Program accordion visibility + LIVE label
   ================================ */
/* By default show only the module title row. */
.program-count {
  display: none !important;
}

/* Fix hidden lesson lists so no first lesson leaks out when closed. */
.program-content {
  display: block !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.22s ease;
}

.program-item.is-open .program-content {
  max-height: 520px !important;
  opacity: 1;
}

.program-content ul {
  padding-top: 0 !important;
}

.program-item:not(.is-open) .program-content,
.program-item:not(.is-open) .program-content ul,
.program-item:not(.is-open) .program-content li {
  max-height: 0 !important;
  opacity: 0 !important;
  pointer-events: none;
}

/* LIVE module: dot and label near the arrow, not inside the number. */
.program-live .program-toggle {
  grid-template-columns: 64px minmax(0, 1fr) auto 42px;
}

.program-live .program-arrow {
  grid-column: 4;
}

.live-num {
  color: #fff;
  background: rgba(236, 18, 18, 0.18);
}

.live-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(236, 18, 18, 0.35);
  background: rgba(236, 18, 18, 0.12);
  color: var(--bone);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-main);
  box-shadow: 0 0 0 0 rgba(236, 18, 18, 0.72);
  animation: livePulse 1.45s ease-in-out infinite;
}

@media (max-width: 760px) {
  .program-live .program-toggle {
    grid-template-columns: 52px minmax(0, 1fr) 36px;
  }

  .program-live .program-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .live-status {
    grid-column: 2 / 4;
    width: fit-content;
    min-height: 30px;
    margin-top: 6px;
    padding: 0 10px;
    font-size: 12px;
  }
}

/* ================================
   V15 — centered program arrow fix
   ================================ */
.program-arrow {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  font-size: 0 !important;
  text-indent: -9999px;
  overflow: hidden;
  transform: none !important;
}

.program-arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.program-item.is-open .program-arrow {
  transform: none !important;
}

.program-item.is-open .program-arrow::before {
  transform: rotate(225deg) translate(-1px, -2px);
}

@media (max-width: 760px) {
  .program-arrow::before {
    width: 9px;
    height: 9px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
  }
}


/* ================================
   V17 — Pricing / tariffs section
   ================================ */
.pricing {
  position: relative;
  padding: clamp(82px, 10vw, 132px) 0 clamp(52px, 7vw, 90px);
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 8% -10% auto;
  height: 560px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 35%, rgba(236, 18, 18, 0.28), transparent 44%),
    radial-gradient(circle at 16% 68%, rgba(200, 172, 147, 0.13), transparent 34%);
  filter: blur(20px);
  z-index: 0;
}

.pricing-head {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.pricing-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(238, 227, 207, 0.18);
  background: rgba(238, 227, 207, 0.08);
  color: var(--stone);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-head h2 {
  margin-top: 20px;
  color: var(--bone);
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.pricing-head h2 span {
  color: var(--red-main);
  text-shadow: 0 0 30px rgba(236, 18, 18, 0.32);
}

.pricing-head p {
  max-width: 760px;
  margin: 20px auto 0;
  color: rgba(238, 227, 207, 0.72);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.52;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid rgba(238, 227, 207, 0.14);
  background:
    linear-gradient(180deg, rgba(149, 31, 30, 0.14), rgba(11, 11, 12, 0.62)),
    rgba(11, 11, 12, 0.58);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: -30% -40% auto;
  height: 220px;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(236, 18, 18, 0.24), transparent 58%);
  filter: blur(24px);
}

.pricing-card-popular {
  border-color: rgba(236, 18, 18, 0.34);
  box-shadow: 0 30px 110px rgba(236, 18, 18, 0.14), 0 26px 90px rgba(0, 0, 0, 0.3);
  transform: translateY(-16px);
}

.pricing-card-premium {
  border-color: rgba(200, 172, 147, 0.32);
}

.pricing-badge {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  box-shadow: 0 16px 38px rgba(236, 18, 18, 0.32);
}

.pricing-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 220px;
  border-radius: 26px;
  border: 1px solid rgba(238, 227, 207, 0.12);
  background:
    radial-gradient(circle at 50% 42%, rgba(236, 18, 18, 0.4), transparent 45%),
    linear-gradient(180deg, rgba(236, 18, 18, 0.18), rgba(11, 11, 12, 0.45));
}

.pricing-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.9;
  filter: contrast(1.06) saturate(1.05);
}

.pricing-top {
  position: relative;
  z-index: 1;
  padding: 22px 8px 14px;
}

.pricing-label {
  color: var(--red-main);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-top: 10px;
  color: var(--bone);
  font-size: clamp(28px, 2.2vw, 40px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.pricing-price {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
  text-shadow: 0 0 30px rgba(236, 18, 18, 0.28);
}

.pricing-desc {
  margin-top: 14px;
  color: rgba(238, 227, 207, 0.68);
  font-size: 15px;
  line-height: 1.48;
}

.pricing-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 4px 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(238, 227, 207, 0.18);
  background: rgba(238, 227, 207, 0.08);
  color: var(--bone);
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  transition: 0.25s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  background: rgba(238, 227, 207, 0.12);
}

.pricing-btn-primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  box-shadow: 0 18px 48px rgba(236, 18, 18, 0.24);
}

.pricing-features {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  padding: 0 8px 6px;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 30px;
  color: rgba(238, 227, 207, 0.82);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(236, 18, 18, 0.95), rgba(149, 31, 30, 0.95));
  box-shadow: 0 0 18px rgba(236, 18, 18, 0.18);
}

.pricing-features li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.pricing-features li span {
  display: inline-flex;
  margin-left: 4px;
  color: var(--stone);
  font-weight: 900;
}

.pricing-features li.is-disabled {
  color: rgba(238, 227, 207, 0.34);
}

.pricing-features li.is-disabled::before {
  background: rgba(238, 227, 207, 0.12);
  box-shadow: none;
}

.pricing-features li.is-disabled::after {
  left: 5px;
  top: 5px;
  width: 9px;
  height: 9px;
  border: 0;
  background:
    linear-gradient(45deg, transparent 44%, rgba(238,227,207,0.65) 44% 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, rgba(238,227,207,0.65) 44% 56%, transparent 56%);
  transform: none;
}

.pricing-features li.is-disabled span {
  color: rgba(238, 227, 207, 0.42);
}

@media (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .pricing-card-popular {
    transform: none;
  }

  .pricing-photo {
    height: 280px;
  }
}

@media (max-width: 720px) {
  .pricing {
    padding-top: 58px;
  }

  .pricing-head h2 {
    font-size: clamp(34px, 10.5vw, 52px);
  }

  .pricing-head p {
    font-size: 15px;
  }

  .pricing-card {
    padding: 14px;
    border-radius: 26px;
  }

  .pricing-photo {
    height: 210px;
    border-radius: 20px;
  }

  .pricing-card h3 {
    font-size: 30px;
  }

  .pricing-price {
    font-size: 46px;
  }

  .pricing-features li {
    font-size: 13px;
  }
}


/* ================================
   V18 — pricing fixes
   ================================ */
.pricing-photo {
  height: clamp(260px, 18vw, 330px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(236, 18, 18, 0.55), transparent 44%),
    linear-gradient(180deg, rgba(236, 18, 18, 0.18), rgba(11, 11, 12, 0.58));
}

.pricing-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 1;
}

.pricing-top {
  padding-bottom: 8px;
}

.pricing-desc {
  display: none !important;
}

.pricing-btn,
.pricing-btn-primary {
  border: 1px solid rgba(102, 255, 114, 0.28);
  color: #fff;
  background:
    linear-gradient(110deg, #008b12 0%, #00c52e 42%, #7dff89 50%, #00a827 58%, #006d0f 100%);
  background-size: 220% 100%;
  box-shadow:
    0 18px 48px rgba(0, 194, 45, 0.28),
    inset 0 0 18px rgba(255, 255, 255, 0.08);
  animation: greenButtonFlow 2.8s ease-in-out infinite;
}

.pricing-btn:hover,
.pricing-btn-primary:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow:
    0 22px 58px rgba(0, 214, 50, 0.38),
    inset 0 0 20px rgba(255, 255, 255, 0.12);
}

@keyframes greenButtonFlow {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
}

.pricing-features li::before {
  position: relative;
  left: auto;
  top: auto;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  margin-top: 0;
}

.pricing-features li::after {
  left: 7px;
  top: 8px;
}

.pricing-features li.is-disabled::after {
  left: 6px;
  top: 6px;
  width: 9px;
  height: 9px;
}

@supports selector(.pricing-features li::before) {
  .pricing-features li::after {
    transform: translate(0, 0) rotate(-45deg);
  }

  .pricing-features li.is-disabled::after {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .pricing-photo {
    height: clamp(250px, 42vw, 360px);
  }
}

@media (max-width: 720px) {
  .pricing-photo {
    height: 240px;
  }

  .pricing-btn {
    min-height: 54px;
  }
}


/* ================================
   V19 — pricing photo 4:3 + disabled text + centered icons
   ================================ */
.pricing-photo {
  aspect-ratio: 4 / 3;
  height: auto !important;
  min-height: 0;
}

.pricing-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.pricing-features li {
  position: relative;
  display: block !important;
  padding-left: 34px !important;
  min-height: 22px;
  line-height: 1.38;
}

.pricing-features li::before {
  content: "";
  position: absolute !important;
  left: 0 !important;
  top: 0.05em !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(236, 18, 18, 0.95), rgba(149, 31, 30, 0.95));
  box-shadow: 0 0 18px rgba(236, 18, 18, 0.18);
}

.pricing-features li::after {
  content: "✓";
  position: absolute !important;
  left: 0 !important;
  top: 0.05em !important;
  width: 22px !important;
  height: 22px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  border: 0 !important;
  background: none !important;
  transform: none !important;
}

.pricing-features li.is-disabled {
  color: rgba(238, 227, 207, 0.34);
}

.pricing-features li.is-disabled::before {
  background: rgba(238, 227, 207, 0.12) !important;
  box-shadow: none !important;
}

.pricing-features li.is-disabled::after {
  content: "×";
  left: 0 !important;
  top: 0.05em !important;
  width: 22px !important;
  height: 22px !important;
  color: rgba(238, 227, 207, 0.6);
  font-size: 18px;
  font-weight: 900;
  background: none !important;
  transform: none !important;
}

.pricing-features li.is-disabled span {
  display: none !important;
}

@media (max-width: 1180px) {
  .pricing-photo {
    aspect-ratio: 4 / 3;
    height: auto !important;
  }
}

@media (max-width: 720px) {
  .pricing-photo {
    aspect-ratio: 4 / 3;
    height: auto !important;
  }
}

/* ================================
   V20 — pricing photo fill + centered disabled cross
   ================================ */
.pricing-photo {
  position: relative;
  overflow: visible !important;
}

.pricing-photo img {
  position: absolute;
  left: 50%;
  bottom: -2%;
  width: 108%;
  height: 112%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
}

.pricing-features li.is-disabled::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.05em !important;
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  background:
    linear-gradient(45deg, transparent calc(50% - 1px), rgba(238, 227, 207, 0.72) calc(50% - 1px), rgba(238, 227, 207, 0.72) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(-45deg, transparent calc(50% - 1px), rgba(238, 227, 207, 0.72) calc(50% - 1px), rgba(238, 227, 207, 0.72) calc(50% + 1px), transparent calc(50% + 1px)) !important;
  background-size: 11px 11px, 11px 11px !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border: 0 !important;
  transform: none !important;
}

@media (max-width: 1180px) {
  .pricing-photo img {
    width: 106%;
    height: 110%;
  }
}

@media (max-width: 720px) {
  .pricing-photo img {
    width: 104%;
    height: 108%;
  }
}

/* ================================
   V21 — premium pricing polish
   Richer shadows, luxury borders, hover lift, stronger photo stage.
   ================================ */
.pricing {
  position: relative;
  isolation: isolate;
}

.pricing::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  width: min(980px, 78vw);
  height: 520px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 45%, rgba(236, 18, 18, 0.32), transparent 58%),
    radial-gradient(circle at 35% 55%, rgba(238, 227, 207, 0.12), transparent 42%);
  filter: blur(18px);
}

.pricing-head h2 {
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(238, 227, 207, 0.18);
  background:
    linear-gradient(180deg, rgba(238, 227, 207, 0.08), rgba(236, 18, 18, 0.07) 42%, rgba(11, 11, 12, 0.72)),
    rgba(20, 10, 10, 0.82);
  box-shadow:
    0 30px 110px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(238, 227, 207, 0.28), rgba(236, 18, 18, 0.42), rgba(238, 227, 207, 0.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.58;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(236, 18, 18, 0.38);
  box-shadow:
    0 42px 140px rgba(0, 0, 0, 0.48),
    0 0 80px rgba(236, 18, 18, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-card-popular {
  border-color: rgba(236, 18, 18, 0.58);
  box-shadow:
    0 40px 150px rgba(0, 0, 0, 0.48),
    0 0 90px rgba(236, 18, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-card-popular::before {
  opacity: 0.9;
  background: linear-gradient(135deg, rgba(236, 18, 18, 0.9), rgba(238, 227, 207, 0.22), rgba(236, 18, 18, 0.55));
}

.pricing-badge {
  z-index: 5;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #ff1f1f, #9d1515);
  box-shadow:
    0 18px 44px rgba(236, 18, 18, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pricing-photo {
  border-radius: 28px;
  border: 1px solid rgba(238, 227, 207, 0.18);
  background:
    radial-gradient(circle at 50% 38%, rgba(236, 18, 18, 0.62), transparent 44%),
    radial-gradient(circle at 50% 100%, rgba(238, 227, 207, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(236, 18, 18, 0.2), rgba(11, 11, 12, 0.64));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -50px 70px rgba(0, 0, 0, 0.34),
    0 18px 60px rgba(0, 0, 0, 0.2);
}

.pricing-photo::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -10%;
  height: 22%;
  background: radial-gradient(ellipse at center, rgba(236, 18, 18, 0.36), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
}

.pricing-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.22));
}

.pricing-photo img {
  filter: contrast(1.08) saturate(1.08) drop-shadow(0 26px 38px rgba(0, 0, 0, 0.46));
}

.pricing-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(236, 18, 18, 0.24);
  background: rgba(236, 18, 18, 0.08);
  color: #ff2b2b;
  text-shadow: 0 0 18px rgba(236, 18, 18, 0.3);
}

.pricing-card h3 {
  margin-top: 14px;
}

.pricing-price {
  margin-top: 20px;
  color: #fff;
  text-shadow:
    0 0 30px rgba(236, 18, 18, 0.32),
    0 18px 46px rgba(0, 0, 0, 0.42);
}

.pricing-btn,
.pricing-btn-primary {
  min-height: 58px;
  border-color: rgba(150, 255, 150, 0.32);
  background:
    linear-gradient(100deg, #006f0f 0%, #00c531 34%, #9cff9e 50%, #00b92b 66%, #00620d 100%);
  background-size: 250% 100%;
  box-shadow:
    0 24px 70px rgba(0, 203, 47, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -22px 36px rgba(0, 0, 0, 0.16);
}

.pricing-btn::after,
.pricing-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.28) 45%, transparent 56% 100%);
  transform: translateX(-120%);
  animation: premiumButtonShine 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes premiumButtonShine {
  0%, 22% { transform: translateX(-120%); }
  52%, 100% { transform: translateX(120%); }
}

.pricing-features {
  gap: 10px;
}

.pricing-features li {
  padding: 9px 0 9px 36px !important;
  border-bottom: 1px solid rgba(238, 227, 207, 0.055);
}

.pricing-features li:last-child {
  border-bottom: 0;
}

.pricing-features li::before {
  top: 9px !important;
  background: linear-gradient(135deg, #ff2c2c, #9f1717) !important;
  box-shadow:
    0 0 18px rgba(236, 18, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.pricing-features li::after {
  top: 9px !important;
}

.pricing-features li.is-disabled::before,
.pricing-features li.is-disabled::after {
  top: 9px !important;
}

@media (max-width: 1180px) {
  .pricing-card:hover {
    transform: none;
  }

  .pricing-card-popular {
    transform: none;
  }
}

@media (max-width: 720px) {
  .pricing-card {
    border-radius: 28px;
  }

  .pricing-photo {
    border-radius: 22px;
  }

  .pricing-btn,
  .pricing-btn-primary {
    min-height: 54px;
  }
}

/* ================================
   V22 — pricing photo scale like reference + button shine fix
   ================================ */
.pricing-photo {
  overflow: visible !important;
}

/* Global default for better fill */
.pricing-photo img {
  position: absolute !important;
  left: 50% !important;
  bottom: -1% !important;
  width: 114% !important;
  height: 116% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform: translateX(-50%) !important;
}

/* Per-card tuning to better match the reference composition */
.pricing-grid .pricing-card:nth-child(1) .pricing-photo img {
  width: 112% !important;
  height: 118% !important;
  bottom: -2% !important;
  object-position: center 8% !important;
}

.pricing-grid .pricing-card:nth-child(2) .pricing-photo img {
  width: 118% !important;
  height: 122% !important;
  bottom: -2% !important;
  object-position: center 6% !important;
}

.pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
  width: 116% !important;
  height: 118% !important;
  bottom: -1% !important;
  object-position: center 10% !important;
}

/* Keep the shine inside the button, not under it */
.pricing-btn,
.pricing-btn-primary {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.pricing-btn::after,
.pricing-btn-primary::after {
  z-index: 0 !important;
}

/* Center the check / cross icons perfectly in the circles */
.pricing-features li::before {
  left: 0 !important;
  top: 50% !important;
  width: 22px !important;
  height: 22px !important;
  transform: translateY(-50%) !important;
}

.pricing-features li::after {
  left: 7px !important;
  top: 50% !important;
  width: 7px !important;
  height: 4px !important;
  transform: translateY(-60%) rotate(-45deg) !important;
}

.pricing-features li.is-disabled::after {
  left: 5px !important;
  top: 50% !important;
  width: 12px !important;
  height: 12px !important;
  background-size: 12px 12px, 12px 12px !important;
  background-position: center center !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 1180px) {
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img {
    width: 110% !important;
    height: 116% !important;
  }

  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img {
    width: 116% !important;
    height: 120% !important;
  }

  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    width: 114% !important;
    height: 116% !important;
  }
}

@media (max-width: 720px) {
  .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    width: 108% !important;
    height: 112% !important;
    object-position: center top !important;
  }
}

/* ================================
   V23 — pricing icons centering + photo fit correction
   ================================ */
/* Make the square photos sit naturally in the 4:3 frame:
   full body stays inside at the bottom, while the top can slightly rise above the frame. */
.pricing-photo {
  overflow: visible !important;
}

.pricing-photo img {
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  width: 102% !important;
  height: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  object-fit: unset !important;
  object-position: unset !important;
  transform: translateX(-50%) !important;
}

.pricing-grid .pricing-card:nth-child(1) .pricing-photo img {
  width: 103% !important;
  bottom: 0 !important;
}

.pricing-grid .pricing-card:nth-child(2) .pricing-photo img {
  width: 104% !important;
  bottom: 0 !important;
}

.pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
  width: 103% !important;
  bottom: 0 !important;
}

/* Perfectly centered feature icons */
.pricing-features li {
  padding-left: 36px !important;
}

.pricing-features li::before {
  left: 0 !important;
  top: 50% !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  transform: translateY(-50%) !important;
}

.pricing-features li::after {
  content: "" !important;
  position: absolute !important;
  left: 6px !important;
  top: 50% !important;
  width: 12px !important;
  height: 12px !important;
  transform: translateY(-50%) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 12px 12px !important;
  border: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.2 4.5 8.7 10 3.3' fill='none' stroke='white' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.pricing-features li.is-disabled::before {
  background: rgba(238, 227, 207, 0.12) !important;
  box-shadow: none !important;
}

.pricing-features li.is-disabled::after {
  content: "" !important;
  position: absolute !important;
  left: 6px !important;
  top: 50% !important;
  width: 12px !important;
  height: 12px !important;
  transform: translateY(-50%) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 12px 12px !important;
  border: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.2 2.2 9.8 9.8M9.8 2.2 2.2 9.8' fill='none' stroke='%23e7dcc7' stroke-opacity='.92' stroke-width='2.1' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

@media (max-width: 1180px) {
  .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    width: 100% !important;
  }
}

/* ================================
   V24 — pricing image aspect fix + perfect icon centering
   ================================ */
/* Keep photo proportions natural: no stretching.
   Full body stays inside from the bottom, top may overflow slightly above frame. */
.pricing-photo {
  overflow: visible !important;
}

.pricing-photo img,
.pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
.pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
.pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  width: auto !important;
  max-width: none !important;
  height: 112% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: translateX(-50%) !important;
}

.pricing-grid .pricing-card:nth-child(1) .pricing-photo img {
  height: 114% !important;
}

.pricing-grid .pricing-card:nth-child(2) .pricing-photo img {
  height: 116% !important;
}

.pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
  height: 114% !important;
}

/* Rebuild icons so both checkmarks and crosses are optically centered in the circles */
.pricing-features li {
  position: relative !important;
  padding-left: 44px !important;
}

.pricing-features li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  transform: translateY(-50%) !important;
  background: linear-gradient(180deg, #ff4b42 0%, #d91616 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12) !important;
}

.pricing-features li::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 28px !important;
  height: 28px !important;
  transform: translateY(-50%) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 14px 14px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.pricing-features li.is-disabled::before {
  background: rgba(238, 227, 207, 0.13) !important;
  box-shadow: none !important;
}

.pricing-features li.is-disabled::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 28px !important;
  height: 28px !important;
  transform: translateY(-50%) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 13px 13px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7l10 10M17 7L7 17' fill='none' stroke='%23e7dcc7' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

@media (max-width: 1180px) {
  .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    height: 108% !important;
    width: auto !important;
  }
}

@media (max-width: 720px) {
  .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    height: 104% !important;
    width: auto !important;
  }
}

/* ================================
   V25 — exact center alignment for pricing crosses/checkmarks
   ================================ */
.pricing-features li::after {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 28px !important;
  height: 28px !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: none !important;
  color: #ffffff !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-align: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pricing-features li.is-disabled::after {
  content: "×" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 28px !important;
  height: 28px !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: none !important;
  color: rgba(231, 220, 199, 0.95) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ================================
   V26 — force perfect center for disabled X icons
   ================================ */
.pricing-features li.is-disabled::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 28px !important;
  height: 28px !important;
  transform: translateY(-50%) !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 14px 14px, 14px 14px !important;
  background-image:
    linear-gradient(45deg, transparent 42%, rgba(231,220,199,0.96) 42%, rgba(231,220,199,0.96) 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, rgba(231,220,199,0.96) 42%, rgba(231,220,199,0.96) 58%, transparent 58%) !important;
}

/* ================================
   V27 — nudge disabled X upward for exact visual centering
   ================================ */
.pricing-features li.is-disabled::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: calc(50% - 2px) !important;
  width: 28px !important;
  height: 28px !important;
  transform: translateY(-50%) !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent no-repeat center center !important;
  background-position: center 45% !important;
  background-size: 14px 14px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M2 2 L12 12 M12 2 L2 12' stroke='%23e7dcc7' stroke-width='2.4' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") !important;
}


/* ================================
   V29 — disabled X drawn inside the same circle layer
   This fixes the visible offset: the grey circle and X are now one pseudo-element,
   so the X cannot drop below the circle center.
   ================================ */
.pricing-features li.is-disabled::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  transform: translateY(-50%) !important;
  box-shadow: none !important;
  background:
    linear-gradient(45deg,
      transparent calc(50% - 1.35px),
      rgba(231, 220, 199, 0.96) calc(50% - 1.35px),
      rgba(231, 220, 199, 0.96) calc(50% + 1.35px),
      transparent calc(50% + 1.35px)
    ) center / 15px 15px no-repeat,
    linear-gradient(-45deg,
      transparent calc(50% - 1.35px),
      rgba(231, 220, 199, 0.96) calc(50% - 1.35px),
      rgba(231, 220, 199, 0.96) calc(50% + 1.35px),
      transparent calc(50% + 1.35px)
    ) center / 15px 15px no-repeat,
    rgba(238, 227, 207, 0.13) !important;
}

.pricing-features li.is-disabled::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* ================================
   V30 — tariff card hover lift + glow
   ================================ */
.pricing-card {
  will-change: transform, box-shadow, border-color, filter;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.85, 0.25, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease,
    filter 0.32s ease !important;
}

.pricing-card::before,
.pricing-card::after,
.pricing-photo,
.pricing-price {
  transition:
    opacity 0.32s ease,
    filter 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    text-shadow 0.32s ease !important;
}

.pricing-card:hover {
  transform: translateY(-14px) scale(1.012) !important;
  border-color: rgba(236, 18, 18, 0.62) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(236, 18, 18, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(238, 227, 207, 0.1), rgba(236, 18, 18, 0.1) 42%, rgba(11, 11, 12, 0.76)),
    rgba(20, 10, 10, 0.88) !important;
  box-shadow:
    0 54px 150px rgba(0, 0, 0, 0.58),
    0 0 95px rgba(236, 18, 18, 0.24),
    0 0 0 1px rgba(236, 18, 18, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  filter: brightness(1.055);
}

.pricing-card:hover::before {
  opacity: 1 !important;
}

.pricing-card:hover::after {
  opacity: 1 !important;
  filter: blur(18px) !important;
}

.pricing-card:hover .pricing-photo {
  border-color: rgba(236, 18, 18, 0.34) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -50px 70px rgba(0, 0, 0, 0.3),
    0 24px 72px rgba(236, 18, 18, 0.18),
    0 20px 72px rgba(0, 0, 0, 0.28) !important;
}

.pricing-card:hover .pricing-price {
  text-shadow:
    0 0 38px rgba(236, 18, 18, 0.52),
    0 18px 46px rgba(0, 0, 0, 0.48) !important;
}

.pricing-card-popular:hover {
  transform: translateY(-30px) scale(1.012) !important;
}

@media (hover: none) {
  .pricing-card:hover,
  .pricing-card-popular:hover {
    transform: none !important;
    filter: none !important;
  }
}

/* ================================
   V31 — performance optimization without changing the visual style
   - keeps the Liquid Glass look
   - reduces constant repaints from blur/filter/background animation
   - keeps tariff hover lift + glow, but makes it lighter
   ================================ */

/* Tell the browser which moving layers are important, without applying will-change to everything. */
body::before,
body::after,
.floating-chip,
.pricing-card,
.pricing-btn::after,
.pricing-btn-primary::after {
  will-change: transform;
}

.pricing-card,
.include-card,
.floating-chip,
.btn,
.pricing-btn,
.pricing-btn-primary {
  backface-visibility: hidden;
  transform-style: flat;
}

/* Keep glassmorphism, but reduce the most expensive backdrop blur values. */
.header {
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

.hero-badge,
.hero-status,
.btn-secondary,
.floating-chip {
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.course-card {
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.journey-card,
.principle-card,
.include-card,
.program-item,
.pricing-card {
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

/* Smaller blur radius on decorative glow layers: visually similar, less repaint cost. */
body::before,
body::after {
  filter: blur(34px) !important;
}

.pricing::before,
.pricing::after,
.principles::before {
  filter: blur(14px) !important;
}

.include-card::before,
.pricing-card::after,
.pricing-photo::before,
.principle-visual::before {
  filter: blur(12px) !important;
}

/* Optimize the tariff hover: animate only transform + opacity/border instead of filter/background/huge shadow. */
.pricing-card {
  transform: translateZ(0);
  transition:
    transform 0.3s cubic-bezier(0.2, 0.85, 0.25, 1),
    border-color 0.3s ease !important;
}

.pricing-card::before,
.pricing-card::after {
  transition: opacity 0.3s ease !important;
}

.pricing-card::after {
  opacity: 0.7;
}

.pricing-card:hover {
  transform: translateY(-12px) translateZ(0) !important;
  border-color: rgba(236, 18, 18, 0.58) !important;
  filter: none !important;
  background:
    linear-gradient(180deg, rgba(238, 227, 207, 0.08), rgba(236, 18, 18, 0.07) 42%, rgba(11, 11, 12, 0.72)),
    rgba(20, 10, 10, 0.82) !important;
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.48),
    0 0 72px rgba(236, 18, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.pricing-card-popular:hover {
  transform: translateY(-28px) translateZ(0) !important;
}

.pricing-card:hover::before,
.pricing-card:hover::after {
  opacity: 1 !important;
}

.pricing-card:hover .pricing-photo {
  border-color: rgba(236, 18, 18, 0.32) !important;
}

.pricing-card:hover .pricing-price {
  text-shadow:
    0 0 32px rgba(236, 18, 18, 0.42),
    0 18px 46px rgba(0, 0, 0, 0.46) !important;
}

/* Keep the green button premium look, but remove the constant background-position animation. */
.pricing-btn,
.pricing-btn-primary {
  animation: none !important;
  background-position: 50% 0 !important;
}

.pricing-btn::after,
.pricing-btn-primary::after {
  will-change: transform;
  animation-duration: 4.8s !important;
}

/* Let off-screen sections be skipped by the browser until the user scrolls near them. */
@supports (content-visibility: auto) {
  .journey,
  .course-includes,
  .program-section,
  .principles,
  .pricing {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}

/* Respect reduced-motion settings and provide an instant performance-safe mode for affected devices. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 720px) {
  body::before,
  body::after {
    filter: blur(24px) !important;
  }

  .course-card,
  .journey-card,
  .principle-card,
  .include-card,
  .program-item,
  .pricing-card {
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  .pricing-card:hover,
  .pricing-card-popular:hover {
    transform: none !important;
  }
}

/* ================================
   V32 — smoother performance + invisible section blending
   - removes content-visibility seams between blocks
   - replaces expensive real blur on repeated cards with glass-like gradients
   - makes tariff hover GPU-friendly: transform + lightweight overlay only
   - makes accordion clicks lighter
   ================================ */

/* The previous content-visibility optimization caused visible hard transitions between sections. */
@supports (content-visibility: auto) {
  .journey,
  .course-includes,
  .program-section,
  .principles,
  .pricing {
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
    contain: none !important;
  }
}

/* Stop constant repainting from decorative moving glows. The same visual remains, just static. */
body::before,
body::after,
.floating-chip {
  animation: none !important;
}

/* Keep the premium look, but avoid real backdrop-filter on repeated card grids. */
.journey-card,
.principle-card,
.include-card,
.program-item,
.pricing-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.journey-card,
.principle-card,
.include-card,
.program-item {
  background:
    linear-gradient(135deg, rgba(238, 227, 207, 0.085), rgba(236, 18, 18, 0.07)),
    rgba(18, 10, 10, 0.78) !important;
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
}

/* Remove expensive filtered glow layers that were creating micro-freezes. */
.pricing-card::after,
.pricing-photo::before,
.include-card::before,
.principle-visual::before,
.pricing::before,
.pricing::after,
.principles::before,
.course-includes::before {
  filter: none !important;
}

/* Tariff cards: hover is now transform + opacity only. */
.pricing-card {
  contain: paint;
  will-change: transform;
  background:
    linear-gradient(180deg, rgba(238, 227, 207, 0.085), rgba(236, 18, 18, 0.075) 42%, rgba(11, 11, 12, 0.74)),
    rgba(20, 10, 10, 0.88) !important;
  box-shadow:
    0 30px 105px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  transition:
    transform 0.24s cubic-bezier(0.2, 0.85, 0.25, 1),
    border-color 0.24s ease !important;
}

.pricing-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  border-radius: inherit !important;
  padding: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(236, 18, 18, 0.26), transparent 42%),
    linear-gradient(135deg, rgba(238, 227, 207, 0.08), rgba(236, 18, 18, 0.08), rgba(238, 227, 207, 0.035)) !important;
  -webkit-mask: none !important;
  mask: none !important;
  opacity: 0.34 !important;
  transition: opacity 0.24s ease !important;
}

.pricing-card::after {
  opacity: 0.26 !important;
  transform: translateZ(0) !important;
  transition: opacity 0.24s ease !important;
}

.pricing-card:hover {
  transform: translate3d(0, -8px, 0) !important;
  border-color: rgba(236, 18, 18, 0.56) !important;
  filter: none !important;
  background:
    linear-gradient(180deg, rgba(238, 227, 207, 0.085), rgba(236, 18, 18, 0.075) 42%, rgba(11, 11, 12, 0.74)),
    rgba(20, 10, 10, 0.88) !important;
  box-shadow:
    0 30px 105px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

.pricing-card:hover::before {
  opacity: 0.58 !important;
}

.pricing-card:hover::after {
  opacity: 0.42 !important;
}

.pricing-card-popular {
  transform: translateY(-16px) translateZ(0) !important;
}

.pricing-card-popular:hover {
  transform: translate3d(0, -23px, 0) !important;
}

.pricing-card:hover .pricing-photo,
.pricing-card:hover .pricing-price {
  filter: none !important;
}

/* Keep photo stage rich, but do not animate shadows/text-shadow on hover. */
.pricing-photo,
.pricing-price {
  transition: border-color 0.24s ease !important;
}

.pricing-card:hover .pricing-photo {
  border-color: rgba(236, 18, 18, 0.34) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -50px 70px rgba(0, 0, 0, 0.34),
    0 18px 60px rgba(0, 0, 0, 0.2) !important;
}

.pricing-card:hover .pricing-price {
  text-shadow:
    0 0 30px rgba(236, 18, 18, 0.32),
    0 18px 46px rgba(0, 0, 0, 0.42) !important;
}

/* Buttons keep the green premium look, but without infinite shine repaint. */
.pricing-btn::after,
.pricing-btn-primary::after {
  animation: none !important;
  opacity: 0.34 !important;
  transform: translateX(0) !important;
}

/* Accordion: reduce paint cost during arrow clicks. */
.program-item {
  contain: paint;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
}

.program-content {
  transition: max-height 0.22s ease !important;
  opacity: 1 !important;
}

.program-item:not(.is-open) .program-content,
.program-item:not(.is-open) .program-content ul,
.program-item:not(.is-open) .program-content li {
  opacity: 1 !important;
}

.program-arrow,
.program-arrow::before {
  transition: transform 0.2s ease, background 0.2s ease !important;
}

/* The live dot stays visible without a constant pulse animation. */
.live-dot {
  animation: none !important;
  box-shadow: 0 0 12px rgba(236, 18, 18, 0.72) !important;
}

@media (max-width: 1180px) {
  .pricing-card,
  .pricing-card-popular,
  .pricing-card:hover,
  .pricing-card-popular:hover {
    transform: translateZ(0) !important;
  }
}


/* ================================
   V33 — seamless sections + lighter interactions
   - removes visible rectangular transitions between blocks
   - keeps red/liquid depth with soft full-section glows
   - makes tariff hover and program arrows even cheaper to render
   ================================ */

/* Avoid hard rectangular glow edges between sections. */
.journey,
.course-includes,
.principles,
.program-section,
.pricing {
  background: transparent !important;
  isolation: isolate;
}

/* Keep section atmosphere, but make each glow larger than the section area so its edges fade out invisibly. */
.course-includes::before,
.principles::before,
.pricing::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: -220px !important;
  right: -22% !important;
  bottom: -220px !important;
  left: -22% !important;
  height: auto !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.72 !important;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(236, 18, 18, 0.20), transparent 58%),
    radial-gradient(ellipse at 14% 62%, rgba(200, 172, 147, 0.095), transparent 48%),
    radial-gradient(ellipse at 88% 56%, rgba(149, 31, 30, 0.13), transparent 50%) !important;
  filter: blur(12px) !important;
  transform: translateZ(0) !important;
  contain: paint;
}

/* Pricing had two decorative layers; keep only one soft layer to avoid extra repainting and seams. */
.pricing::after,
.course-includes::after,
.principles::after {
  display: none !important;
}

/* Ensure section content stays above the soft glow. */
.section-head,
.includes-head,
.includes-grid,
.principles-head,
.principles-grid,
.program-head,
.program-list,
.pricing-head,
.pricing-grid {
  position: relative;
  z-index: 1;
}

/* Tariff hover: only transform + overlay opacity. No shadow/filter/text-shadow changes on hover. */
.pricing-card {
  will-change: auto !important;
  transition: transform 0.18s cubic-bezier(0.2, 0.85, 0.25, 1), border-color 0.18s ease !important;
}

.pricing-card:hover {
  transform: translate3d(0, -6px, 0) !important;
  border-color: rgba(236, 18, 18, 0.52) !important;
}

.pricing-card-popular:hover {
  transform: translate3d(0, -20px, 0) !important;
}

.pricing-card:hover .pricing-photo,
.pricing-card:hover .pricing-price {
  box-shadow: inherit !important;
  text-shadow: inherit !important;
  filter: none !important;
}

.pricing-photo,
.pricing-price {
  transition: none !important;
}

/* Accordion: remove layout-heavy opening animation; arrow still turns smoothly. */
.program-content {
  transition: none !important;
}

.program-item.is-open .program-content {
  max-height: none !important;
}

.program-arrow,
.program-arrow::before {
  transition: transform 0.16s ease !important;
}

.program-item,
.program-toggle {
  will-change: auto !important;
}

@media (max-width: 1180px) {
  .pricing-card:hover,
  .pricing-card-popular:hover {
    transform: translateZ(0) !important;
  }
}


/* ================================
   V34 — tariff photos: no top cropping
   Keeps the same card visual, but forces each tariff image to stay fully inside
   the rounded photo frame so heads/hats are not cut by the top of the card.
   ================================ */
.pricing-photo {
  overflow: hidden !important;
}

.pricing-photo img,
.pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
.pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
.pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  width: auto !important;
  height: 96% !important;
  max-width: none !important;
  max-height: 96% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: translate3d(-50%, 0, 0) !important;
}

/* The middle tariff has the badge above the image, so it gets a tiny bit more breathing room. */
.pricing-grid .pricing-card:nth-child(2) .pricing-photo img {
  height: 94% !important;
  max-height: 94% !important;
}

@media (max-width: 1180px) {
  .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    height: 94% !important;
    max-height: 94% !important;
  }
}

@media (max-width: 720px) {
  .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    height: 92% !important;
    max-height: 92% !important;
  }
}

/* ================================
   V35 — bigger tariff photos, anchored at bottom
   - increases character size in each tariff card
   - keeps the bottom edge locked inside the photo frame
   - allows only the top part to rise slightly, matching the requested look
   ================================ */
.pricing-photo {
  overflow: visible !important;
}

.pricing-photo img,
.pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
.pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
.pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: translateX(-50%) translateZ(0) !important;
  transform-origin: center bottom !important;
}

.pricing-grid .pricing-card:nth-child(1) .pricing-photo img {
  height: 126% !important;
}

.pricing-grid .pricing-card:nth-child(2) .pricing-photo img {
  height: 128% !important;
}

.pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
  height: 126% !important;
}

/* Keep the badge above the slightly raised middle image. */
.pricing-badge {
  z-index: 8 !important;
}

@media (max-width: 1180px) {
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    height: 118% !important;
    width: auto !important;
  }
}

@media (max-width: 720px) {
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    height: 112% !important;
    width: auto !important;
  }
}


/* ================================
   V36 — tariff photos may exit only above the photo frame
   - larger characters stay anchored to the bottom
   - top can go beyond the inner frame
   - left/right/bottom remain clipped to the frame
   ================================ */
.pricing-photo {
  overflow: visible !important;
}

.pricing-photo img,
.pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
.pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
.pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
  bottom: 0 !important;
  z-index: 2 !important;
  clip-path: inset(-84px 0 0 0 round 26px) !important;
  -webkit-clip-path: inset(-84px 0 0 0 round 26px) !important;
}

.pricing-photo::before,
.pricing-photo::after {
  z-index: 3;
}

@media (max-width: 1180px) {
  .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    clip-path: inset(-64px 0 0 0 round 24px) !important;
    -webkit-clip-path: inset(-64px 0 0 0 round 24px) !important;
  }
}

@media (max-width: 720px) {
  .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    clip-path: inset(-38px 0 0 0 round 22px) !important;
    -webkit-clip-path: inset(-38px 0 0 0 round 22px) !important;
  }
}


/* ================================
   V37 — let tariff photos escape upward without being cut by the card
   The previous version allowed the image to leave the photo frame, but the tariff card itself still clipped it.
   ================================ */
.pricing-card,
.pricing-card-popular,
.pricing-card-premium {
  overflow: visible !important;
}

.pricing-photo {
  overflow: visible !important;
  z-index: 3 !important;
}

.pricing-badge {
  z-index: 8 !important;
}

.pricing-top,
.pricing-btn,
.pricing-btn-primary,
.pricing-features {
  position: relative !important;
  z-index: 5 !important;
}

.pricing-photo img,
.pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
.pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
.pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
  bottom: 0 !important;
  top: auto !important;
  z-index: 4 !important;
  clip-path: inset(-160px 0 0 0 round 26px) !important;
  -webkit-clip-path: inset(-160px 0 0 0 round 26px) !important;
}

/* Keep the decorative photo overlays inside the visual frame while the actual image can go above it. */
.pricing-photo::after {
  z-index: 6 !important;
}

.pricing-photo::before {
  z-index: 1 !important;
}

@media (max-width: 1180px) {
  .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    clip-path: inset(-110px 0 0 0 round 24px) !important;
    -webkit-clip-path: inset(-110px 0 0 0 round 24px) !important;
  }
}

@media (max-width: 720px) {
  .pricing-card,
  .pricing-card-popular,
  .pricing-card-premium {
    overflow: hidden !important;
  }

  .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    clip-path: inset(0 0 0 0 round 22px) !important;
    -webkit-clip-path: inset(0 0 0 0 round 22px) !important;
  }
}


/* ================================
   V38 — final fix: photos are not clipped by performance containment
   Problem was not only overflow. The optimized tariff cards had contain: paint,
   which clips everything that exits the card, so the top of enlarged images could not appear.
   ================================ */
.pricing,
.pricing-grid,
.pricing-card,
.pricing-card-popular,
.pricing-card-premium,
.pricing-photo {
  overflow: visible !important;
  contain: none !important;
}

.pricing-card,
.pricing-card-popular,
.pricing-card-premium {
  isolation: auto !important;
}

.pricing-photo {
  position: relative !important;
  z-index: 3 !important;
}

.pricing-photo img,
.pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
.pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
.pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  top: auto !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: translateX(-50%) translateZ(0) !important;
  transform-origin: center bottom !important;
  z-index: 5 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

.pricing-grid .pricing-card:nth-child(1) .pricing-photo img {
  height: 126% !important;
}

.pricing-grid .pricing-card:nth-child(2) .pricing-photo img {
  height: 128% !important;
}

.pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
  height: 126% !important;
}

.pricing-photo::before {
  z-index: 1 !important;
}

.pricing-photo::after {
  z-index: 6 !important;
}

.pricing-badge {
  z-index: 12 !important;
}

.pricing-top,
.pricing-btn,
.pricing-btn-primary,
.pricing-features {
  position: relative !important;
  z-index: 7 !important;
}

@media (max-width: 1180px) {
  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    height: 118% !important;
  }
}

@media (max-width: 720px) {
  .pricing-card,
  .pricing-card-popular,
  .pricing-card-premium {
    overflow: hidden !important;
  }

  .pricing-photo {
    overflow: hidden !important;
  }

  .pricing-grid .pricing-card:nth-child(1) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(2) .pricing-photo img,
  .pricing-grid .pricing-card:nth-child(3) .pricing-photo img {
    height: 112% !important;
  }
}


/* ================================
   V39 — pricing buttons moved to the bottom + installment payment button
   ================================ */
.pricing-card,
.pricing-card-popular,
.pricing-card-premium {
  display: flex !important;
  flex-direction: column !important;
}

.pricing-top,
.pricing-features,
.pricing-footer,
.pricing-actions,
.pricing-installment {
  position: relative;
  z-index: 8;
}

.pricing-features {
  margin-bottom: 0 !important;
}

.pricing-footer {
  margin-top: auto;
  padding-top: 22px;
}

.pricing-installment {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(238, 227, 207, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(236,18,18,0.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.pricing-installment-title,
.pricing-installment-sub {
  margin: 0;
}

.pricing-installment-title {
  color: rgba(238, 227, 207, 0.92);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.pricing-installment-sub {
  margin-top: 4px;
  color: rgba(238, 227, 207, 0.82);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.pricing-installment-sub span {
  color: #ffffff;
  font-weight: 900;
}

.pricing-actions {
  display: grid;
  gap: 12px;
}

.pricing-btn,
.pricing-btn-secondary {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.pricing-btn-secondary {
  position: relative;
  overflow: hidden;
  color: #f7efe3;
  border: 1px solid rgba(236, 18, 18, 0.34);
  background: linear-gradient(180deg, rgba(236,18,18,0.18), rgba(80,14,14,0.3)), rgba(20, 10, 10, 0.58);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transition:
    transform 0.28s cubic-bezier(0.2, 0.85, 0.25, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.pricing-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 63, 63, 0.52);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.26),
    0 0 40px rgba(236, 18, 18, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(236,18,18,0.24), rgba(80,14,14,0.36)), rgba(20, 10, 10, 0.64);
}

@media (max-width: 720px) {
  .pricing-installment {
    padding: 12px 14px;
  }

  .pricing-installment-title,
  .pricing-installment-sub {
    font-size: 14px;
  }

  .pricing-btn,
  .pricing-btn-secondary {
    min-height: 54px;
    font-size: 17px;
  }
}


/* ================================
   V40 — correct installment blocks + equal green/orange buttons on all cards
   ================================ */
.pricing-footer-no-installment {
  padding-top: 10px;
}

.pricing-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pricing-actions > a {
  box-sizing: border-box;
}

.pricing-btn,
.pricing-btn-secondary {
  width: 100%;
  min-height: 62px;
  padding: 0 22px;
  border-radius: 999px;
}

.pricing-btn-secondary {
  color: #fff6ea;
  border: 1px solid rgba(255, 170, 72, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 183, 77, 0.28), rgba(180, 74, 0, 0.32)),
    linear-gradient(100deg, #6a2e00 0%, #c75a00 35%, #ffb24f 52%, #c95500 68%, #6c2c00 100%);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.22),
    0 0 36px rgba(255, 140, 0, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -20px 34px rgba(0, 0, 0, 0.14);
}

.pricing-btn-secondary:hover {
  border-color: rgba(255, 190, 100, 0.72);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.24),
    0 0 46px rgba(255, 153, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -20px 34px rgba(0, 0, 0, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 192, 91, 0.3), rgba(192, 82, 0, 0.36)),
    linear-gradient(100deg, #733000 0%, #d76400 35%, #ffbd67 52%, #d46000 68%, #743000 100%);
}

.pricing-installment-sub span {
  letter-spacing: -0.01em;
}

@media (max-width: 720px) {
  .pricing-btn,
  .pricing-btn-secondary {
    min-height: 58px;
  }
}


/* ================================
   V41 — tighter aligned pricing buttons + rounded whole-dollar installment amounts
   ================================ */
.pricing-footer,
.pricing-footer-no-installment {
  width: 100%;
}

.pricing-footer-no-installment {
  margin-top: auto;
  padding-top: 6px;
}

.pricing-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: 100% !important;
}

.pricing-actions .pricing-btn,
.pricing-actions .pricing-btn-secondary {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.pricing-installment {
  margin-bottom: 10px !important;
}

.pricing-btn,
.pricing-btn-secondary {
  min-height: 60px !important;
}

@media (max-width: 720px) {
  .pricing-actions {
    gap: 7px !important;
  }

  .pricing-installment {
    margin-bottom: 8px !important;
  }

  .pricing-btn,
  .pricing-btn-secondary {
    min-height: 56px !important;
  }
}


/* ================================
   V43 — FAQ accordion section
   ================================ */
.faq {
  position: relative;
  padding: 92px var(--page-pad) 110px;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 6% -10% auto;
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 34%, rgba(236, 18, 18, 0.22), transparent 36%),
    radial-gradient(circle at 76% 18%, rgba(238, 227, 207, 0.1), transparent 34%);
  filter: blur(22px);
  opacity: 0.9;
}

.faq-head {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(238, 227, 207, 0.16);
  color: rgba(238, 227, 207, 0.82);
  background: rgba(238, 227, 207, 0.055);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-head h2 {
  margin: 24px 0 12px;
  color: var(--milk);
  font-size: clamp(46px, 6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.faq-head h2 span {
  color: var(--red-main);
}

.faq-head p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(238, 227, 207, 0.68);
  font-size: 18px;
  line-height: 1.55;
}

.faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  max-width: 1500px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(238, 227, 207, 0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(236,18,18,0.035)),
    rgba(11, 11, 12, 0.9);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.faq-item.is-open {
  border-color: rgba(236, 18, 18, 0.24);
  background:
    radial-gradient(circle at 92% 0%, rgba(236,18,18,0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(236,18,18,0.055)),
    rgba(11, 11, 12, 0.92);
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.3),
    0 0 50px rgba(236, 18, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.faq-question {
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 22px;
  align-items: center;
  padding: 26px 26px 26px 56px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question > span:first-child {
  font-size: clamp(25px, 2.55vw, 43px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.faq-plus {
  position: relative;
  justify-self: end;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: #f7f7f7;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.3),
    inset 0 -8px 18px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.28s cubic-bezier(0.2, 0.85, 0.25, 1),
    box-shadow 0.28s ease;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #202020, #111111 72%, #e21b1b);
  transform: translate(-50%, -50%);
  box-shadow: 5px 5px 0 rgba(236, 18, 18, 0.28);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
  box-shadow:
    0 18px 48px rgba(236, 18, 18, 0.24),
    inset 0 -8px 18px rgba(0, 0, 0, 0.08);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 148px 34px 56px;
  color: rgba(238, 227, 207, 0.75);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.55;
  font-weight: 500;
}

@media (max-width: 980px) {
  .faq {
    padding: 78px var(--page-pad) 92px;
  }

  .faq-question {
    grid-template-columns: 1fr 72px;
    min-height: 96px;
    padding: 22px 20px 22px 28px;
  }

  .faq-plus {
    width: 62px;
    height: 62px;
    border-radius: 16px;
  }

  .faq-plus::before,
  .faq-plus::after {
    width: 32px;
    height: 4px;
  }

  .faq-answer p {
    padding: 0 104px 28px 28px;
  }
}

@media (max-width: 620px) {
  .faq-list {
    gap: 12px;
  }

  .faq-question {
    grid-template-columns: 1fr 58px;
    gap: 14px;
    min-height: 82px;
    padding: 18px 14px 18px 18px;
  }

  .faq-question > span:first-child {
    font-size: 21px;
    letter-spacing: -0.035em;
  }

  .faq-plus {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .faq-plus::before,
  .faq-plus::after {
    width: 27px;
    height: 4px;
  }

  .faq-answer p {
    padding: 0 22px 24px 18px;
    font-size: 16px;
  }
}


/* ================================
   V44 — visual polish: brighter continuous background, tighter section rhythm,
   seamless block transitions, livelier but performant buttons/effects
   ================================ */

:root {
  --section-top-tight: clamp(44px, 6vw, 72px);
  --section-bottom-tight: clamp(28px, 4vw, 50px);
}

body {
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 58, 58, 0.48), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255, 110, 72, 0.20), transparent 26%),
    radial-gradient(circle at 16% 44%, rgba(236, 18, 18, 0.24), transparent 26%),
    radial-gradient(circle at 86% 42%, rgba(236, 18, 18, 0.20), transparent 24%),
    radial-gradient(circle at 28% 74%, rgba(255, 72, 72, 0.20), transparent 24%),
    radial-gradient(circle at 78% 78%, rgba(255, 142, 84, 0.12), transparent 20%),
    linear-gradient(180deg, #2a0909 0%, #240909 52%, #220808 100%) !important;
}

body::before,
body::after {
  width: 560px !important;
  height: 560px !important;
  filter: blur(56px) !important;
  opacity: 0.92 !important;
}

body::before {
  top: 8% !important;
  left: -120px !important;
  background: rgba(255, 48, 48, 0.24) !important;
}

body::after {
  right: -160px !important;
  bottom: 16% !important;
  background: rgba(255, 110, 72, 0.12) !important;
}

.page {
  padding-bottom: 52px !important;
}

/* 1) seamless transitions between blocks */
.hero,
.journey,
.course-includes,
.principles,
.program-section,
.pricing,
.faq {
  position: relative;
  background: transparent !important;
  isolation: isolate;
}

.hero::before,
.journey::before,
.course-includes::before,
.principles::before,
.program-section::before,
.pricing::before,
.faq::before {
  content: "" !important;
  position: absolute !important;
  inset: -8% -12% !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.82 !important;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(236, 18, 18, 0.17), transparent 34%),
    radial-gradient(ellipse at 76% 42%, rgba(255, 96, 68, 0.10), transparent 30%),
    radial-gradient(ellipse at 50% 72%, rgba(238, 227, 207, 0.04), transparent 34%) !important;
  filter: blur(16px) !important;
}

.hero::after,
.journey::after,
.course-includes::after,
.principles::after,
.program-section::after,
.pricing::after,
.faq::after {
  display: none !important;
}

.hero-content,
.hero-visual,
.section-head,
.includes-head,
.includes-grid,
.principles-head,
.principles-grid,
.program-head,
.program-list,
.pricing-head,
.pricing-grid,
.faq-head,
.faq-list {
  position: relative;
  z-index: 1;
}

/* 2) tighter spacing between blocks */
.hero {
  padding-top: 64px !important;
  padding-bottom: 8px !important;
  gap: 34px !important;
}

.journey,
.course-includes,
.principles,
.program-section,
.pricing,
.faq {
  padding-top: var(--section-top-tight) !important;
  padding-bottom: var(--section-bottom-tight) !important;
}

.section-head,
.includes-head,
.principles-head,
.program-head,
.pricing-head,
.faq-head {
  margin-bottom: 22px !important;
}

.section-head h2,
.includes-head h2,
.principles-head h2,
.program-head h2,
.pricing-head h2,
.faq-head h2 {
  margin-bottom: 10px !important;
}

.pricing {
  padding-top: clamp(34px, 5vw, 56px) !important;
}

.faq {
  padding-top: clamp(40px, 5vw, 60px) !important;
  padding-bottom: clamp(42px, 5vw, 64px) !important;
}

/* 3) hero stays brighter and the whole site keeps the same vivid atmosphere */
.hero::before {
  inset: -6% -14% -12% -10% !important;
  opacity: 0.96 !important;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 60, 60, 0.30), transparent 28%),
    radial-gradient(circle at 66% 18%, rgba(236, 18, 18, 0.18), transparent 34%),
    radial-gradient(circle at 52% 64%, rgba(255, 130, 80, 0.08), transparent 30%) !important;
}

/* 4) buttons and small accents feel more alive while staying performant */
.nav .nav-cta,
.btn,
.pricing-btn,
.pricing-btn-secondary,
.program-toggle,
.faq-question {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.nav .nav-cta,
.btn-primary,
.btn-secondary,
.pricing-btn,
.pricing-btn-secondary {
  position: relative;
  overflow: hidden;
}

.nav .nav-cta::after,
.btn-primary::after,
.btn-secondary::after,
.pricing-btn::after,
.pricing-btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 0 38%, rgba(255,255,255,0.22) 48%, transparent 58% 100%);
  transform: translateX(-135%);
  animation: buttonSweep 5.4s ease-in-out infinite;
}

.nav .nav-cta:hover,
.btn:hover,
.pricing-btn:hover,
.pricing-btn-secondary:hover {
  transform: translateY(-2px) translateZ(0) !important;
}

.nav .nav-cta {
  box-shadow:
    0 16px 38px rgba(236, 18, 18, 0.22),
    0 0 28px rgba(236, 18, 18, 0.10) !important;
}

.btn-primary {
  box-shadow:
    0 18px 46px rgba(236, 18, 18, 0.24),
    0 0 30px rgba(236, 18, 18, 0.10) !important;
}

.btn-secondary {
  border-color: rgba(238, 227, 207, 0.24) !important;
  background: rgba(238, 227, 207, 0.09) !important;
}

.pricing-btn {
  box-shadow:
    0 16px 40px rgba(16, 104, 20, 0.20),
    0 0 24px rgba(80, 255, 110, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -18px 32px rgba(0, 0, 0, 0.08) !important;
}

.pricing-btn-secondary {
  box-shadow:
    0 16px 40px rgba(128, 62, 0, 0.18),
    0 0 24px rgba(255, 163, 59, 0.11),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -18px 32px rgba(0, 0, 0, 0.10) !important;
}

.program-toggle {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease !important;
}

.program-toggle:hover {
  transform: translateY(-1px);
}

.faq-item {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease !important;
}

.faq-item:hover {
  transform: translateY(-1px);
}

.floating-chip {
  animation: chipFloatLite 6s ease-in-out infinite !important;
}

.floating-chip:nth-child(2) { animation-duration: 6.8s !important; }
.floating-chip:nth-child(3) { animation-duration: 5.8s !important; }
.floating-chip:nth-child(4) { animation-duration: 7.2s !important; }
.floating-chip:nth-child(5) { animation-duration: 6.4s !important; }

@keyframes chipFloatLite {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -4px, 0); }
}

@keyframes buttonSweep {
  0%, 72% { transform: translateX(-135%); }
  88% { transform: translateX(135%); }
  100% { transform: translateX(135%); }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 48px !important;
    padding-bottom: 0 !important;
    gap: 28px !important;
  }

  .journey,
  .course-includes,
  .principles,
  .program-section,
  .pricing,
  .faq {
    padding-top: clamp(34px, 6vw, 48px) !important;
    padding-bottom: clamp(24px, 4vw, 38px) !important;
  }
}

@media (max-width: 720px) {
  body::before,
  body::after {
    width: 420px !important;
    height: 420px !important;
    filter: blur(42px) !important;
  }

  .hero,
  .journey,
  .course-includes,
  .principles,
  .program-section,
  .pricing,
  .faq {
    padding-top: 28px !important;
    padding-bottom: 24px !important;
  }

  .nav .nav-cta::after,
  .btn-primary::after,
  .btn-secondary::after,
  .pricing-btn::after,
  .pricing-btn-secondary::after {
    animation-duration: 6.2s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav .nav-cta::after,
  .btn-primary::after,
  .btn-secondary::after,
  .pricing-btn::after,
  .pricing-btn-secondary::after,
  .floating-chip {
    animation: none !important;
  }
}


/* ================================
   V45 — darker readable hero + premium buttons + subtle luxury accents
   ================================ */

/* Header: simplified nav after removing Reviews/Bonuses */
.nav {
  gap: 8px !important;
}

/* Hero readability */
.hero-content {
  position: relative;
  isolation: isolate;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -40px -16px -26px -46px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 0, 0, 0.28), transparent 44%),
    linear-gradient(90deg, rgba(8, 4, 4, 0.34) 0%, rgba(8, 4, 4, 0.18) 42%, transparent 86%);
  filter: blur(10px);
}

.hero::before {
  background:
    radial-gradient(circle at 14% 28%, rgba(255, 70, 70, 0.22), transparent 24%),
    radial-gradient(circle at 66% 18%, rgba(236, 18, 18, 0.14), transparent 32%),
    radial-gradient(circle at 52% 64%, rgba(255, 130, 80, 0.06), transparent 28%) !important;
}

h1,
.hero-subtitle,
.hero-text,
.hero-badge,
.trust-line span {
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

h1 span {
  color: #ff2a2a !important;
  text-shadow:
    0 0 18px rgba(236, 18, 18, 0.22),
    0 10px 34px rgba(0, 0, 0, 0.22) !important;
}

.hero-subtitle {
  color: rgba(250, 239, 223, 0.95) !important;
}

.hero-text {
  color: rgba(238, 227, 207, 0.78) !important;
}

/* Premium button system */
.nav .nav-cta::after,
.btn-primary::after,
.btn-secondary::after,
.pricing-btn::after,
.pricing-btn-secondary::after {
  background: linear-gradient(110deg,
    transparent 0 26%,
    rgba(255,255,255,0.06) 40%,
    rgba(255,255,255,0.14) 49%,
    rgba(255,255,255,0.06) 58%,
    transparent 72% 100%) !important;
  animation: premiumSweep 4.6s cubic-bezier(0.22, 0.7, 0.2, 1) infinite !important;
}

@keyframes premiumSweep {
  0%, 18% { transform: translateX(-145%); }
  62% { transform: translateX(145%); }
  100% { transform: translateX(145%); }
}

.pricing-btn {
  color: #f5fff5 !important;
  border: 1px solid rgba(117, 214, 132, 0.34) !important;
  background:
    linear-gradient(180deg, rgba(88, 170, 97, 0.16), rgba(3, 41, 12, 0.26)),
    linear-gradient(100deg, #05250f 0%, #0a4119 28%, #116024 50%, #0a451a 72%, #041e0c 100%) !important;
  box-shadow:
    0 18px 46px rgba(7, 49, 18, 0.36),
    0 0 28px rgba(50, 170, 76, 0.12),
    inset 0 1px 0 rgba(208, 255, 219, 0.14),
    inset 0 -16px 24px rgba(0, 0, 0, 0.12) !important;
}

.pricing-btn::after {
  background: linear-gradient(110deg,
    transparent 0 28%,
    rgba(171, 245, 181, 0.07) 42%,
    rgba(213, 255, 219, 0.14) 50%,
    rgba(171, 245, 181, 0.07) 58%,
    transparent 72% 100%) !important;
}

.pricing-btn:hover {
  border-color: rgba(142, 236, 154, 0.46) !important;
  box-shadow:
    0 22px 54px rgba(7, 49, 18, 0.42),
    0 0 32px rgba(69, 194, 95, 0.18),
    inset 0 1px 0 rgba(208, 255, 219, 0.16),
    inset 0 -16px 24px rgba(0, 0, 0, 0.14) !important;
}

.pricing-btn-secondary {
  box-shadow:
    0 18px 46px rgba(120, 58, 0, 0.26),
    0 0 26px rgba(255, 160, 60, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -16px 24px rgba(0, 0, 0, 0.10) !important;
}

.pricing-btn-secondary:hover {
  box-shadow:
    0 22px 56px rgba(120, 58, 0, 0.28),
    0 0 32px rgba(255, 160, 60, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -16px 24px rgba(0, 0, 0, 0.12) !important;
}

/* Premium accents across sections, optimized: transitions only, no heavy continuous animation */
.course-card,
.journey-card,
.include-card,
.principle-card,
.program-item,
.faq-item,
.pricing-card {
  border-color: rgba(238, 227, 207, 0.09) !important;
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 0 0 1px rgba(255, 255, 255, 0.016) !important;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease !important;
}

.course-card:hover,
.journey-card:hover,
.include-card:hover,
.principle-card:hover,
.program-item:hover,
.faq-item:hover,
.pricing-card:hover {
  border-color: rgba(255, 112, 86, 0.22) !important;
  box-shadow:
    0 26px 74px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(236, 18, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 178, 160, 0.035) !important;
}

/* subtle premium outline on pills/chips */
.hero-badge,
.hero-status,
.section-eyebrow,
.includes-eyebrow,
.principles-eyebrow,
.program-eyebrow,
.pricing-eyebrow,
.faq-kicker,
.floating-chip,
.trust-line span,
.pricing-label,
.program-meta,
.program-live,
.program-note {
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.06) !important;
}

/* cheaper premium hover on nav links */
.nav a:not(.nav-cta) {
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease !important;
}

.nav a:not(.nav-cta):hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .hero-content::before {
    inset: -24px -8px -18px -18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav .nav-cta::after,
  .btn-primary::after,
  .btn-secondary::after,
  .pricing-btn::after,
  .pricing-btn-secondary::after {
    animation: none !important;
  }
}


/* ================================
   V46 — hero text shadow removed + shine added to pricing purchase buttons
   ================================ */

/* 1) Remove shadow behind text in the first (hero) block */
.hero-badge,
.hero-subtitle,
.hero-text,
.trust-line span,
h1,
h1 span {
  text-shadow: none !important;
}

/* 2) Make the green “Придбати курс” buttons clearly get the flowing shine */
.pricing-btn {
  position: relative;
  overflow: hidden;
}

.pricing-btn::after {
  content: "" !important;
  position: absolute !important;
  inset: -1px !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  background: linear-gradient(110deg,
    transparent 0 22%,
    rgba(175, 247, 184, 0.00) 34%,
    rgba(205, 255, 212, 0.18) 46%,
    rgba(240, 255, 242, 0.28) 50%,
    rgba(205, 255, 212, 0.18) 54%,
    rgba(175, 247, 184, 0.00) 66%,
    transparent 78% 100%) !important;
  transform: translateX(-155%) !important;
  animation: pricingButtonSweep 4.8s cubic-bezier(0.22, 0.7, 0.2, 1) infinite !important;
  opacity: 1 !important;
}

@keyframes pricingButtonSweep {
  0%, 16% { transform: translateX(-155%); }
  60% { transform: translateX(155%); }
  100% { transform: translateX(155%); }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-btn::after {
    animation: none !important;
  }
}


/* ================================
   V47 — remove hero left shadow and upgrade course-includes cards visually
   ================================ */

/* 1) remove the dark shadow area behind text in the first block */
.hero-content::before {
  display: none !important;
}

/* 2) premium bright effects for the “Що всередині курсу” cards */
.include-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 182, 167, 0.14) !important;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 130, 92, 0.06), transparent 22%),
    linear-gradient(135deg, rgba(255, 248, 241, 0.05), rgba(145, 18, 18, 0.08)),
    rgba(18, 8, 8, 0.78) !important;
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.26),
    0 0 28px rgba(236, 18, 18, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.055),
    inset 0 0 0 1px rgba(255,255,255,0.016) !important;
}

.include-card::before {
  inset: -34% -28% auto auto !important;
  width: 210px !important;
  height: 210px !important;
  background:
    radial-gradient(circle, rgba(255, 78, 60, 0.26) 0%, rgba(255, 78, 60, 0.08) 42%, transparent 70%) !important;
  filter: blur(14px) !important;
  opacity: 0.95 !important;
}

.include-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), transparent 18%),
    radial-gradient(circle at 100% 0%, rgba(255, 96, 68, 0.15), transparent 30%),
    linear-gradient(135deg, rgba(255, 188, 171, 0.16), rgba(255, 110, 78, 0.08) 32%, transparent 58%);
  opacity: 0.72;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.include-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(255, 120, 92, 0.28) !important;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 130, 92, 0.08), transparent 22%),
    linear-gradient(135deg, rgba(255, 248, 241, 0.065), rgba(169, 20, 20, 0.12)),
    rgba(18, 8, 8, 0.82) !important;
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.30),
    0 0 38px rgba(236, 18, 18, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255, 194, 176, 0.03) !important;
}

.include-card:hover::after {
  opacity: 0.96;
}

.include-featured {
  border-color: rgba(255, 102, 72, 0.26) !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 120, 82, 0.10), transparent 26%),
    linear-gradient(135deg, rgba(255, 88, 66, 0.14), rgba(255, 245, 235, 0.06)),
    rgba(18, 8, 8, 0.82) !important;
  box-shadow:
    0 26px 78px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(236, 18, 18, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255, 194, 176, 0.035) !important;
}

.include-icon {
  border-color: rgba(255, 210, 190, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255, 120, 92, 0.06)),
    rgba(255,255,255,0.05) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 16px 34px rgba(0, 0, 0, 0.18),
    0 0 24px rgba(255, 98, 72, 0.08) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

.include-card:hover .include-icon {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255, 182, 162, 0.24) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 38px rgba(0, 0, 0, 0.20),
    0 0 30px rgba(255, 98, 72, 0.14) !important;
}

.include-card h3 {
  transition: color 0.22s ease, text-shadow 0.22s ease !important;
}

.include-card:hover h3 {
  color: #fff4e8 !important;
  text-shadow: 0 0 18px rgba(255, 102, 72, 0.10);
}

.include-card p {
  color: rgba(238, 227, 207, 0.76) !important;
}


/* ================================
   V48 — subtle shadow for text and elements in the first hero block
   ================================ */

/* light readable shadow only on the first block text */
.hero h1 {
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important;
}

.hero h1 span {
  text-shadow: 0 3px 10px rgba(120, 0, 0, 0.10) !important;
}

.hero .hero-subtitle {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.10) !important;
}

.hero .hero-text {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

/* subtle shadow for badge, buttons and chips in hero */
.hero .hero-badge,
.hero .btn,
.hero .trust-line span {
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

.hero .btn-primary {
  box-shadow:
    0 14px 30px rgba(140, 10, 10, 0.16),
    0 0 20px rgba(236, 18, 18, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

.hero .btn-secondary {
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.06) !important;
}


/* ================================
   V49 — animated gradient for Journey step labels + live-style pulse markers
   ================================ */

.journey-kicker {
  display: inline-block;
  color: #ff9b38 !important;
  background: linear-gradient(90deg,
    #ff9b38 0%,
    #ffd54a 26%,
    #ff5a3d 52%,
    #b85cff 78%,
    #ff9b38 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none !important;
  animation: journeyKickerFlow 5.8s linear infinite;
}

@keyframes journeyKickerFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 260% 50%; }
}

.journey-step:not(.journey-step-final) .journey-marker {
  position: relative;
  overflow: visible;
  animation: liveMarkerBeat 1.9s ease-in-out infinite;
  box-shadow:
    0 0 0 0 rgba(255, 90, 61, 0.24),
    0 0 0 10px rgba(236, 18, 18, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.22) !important;
}

.journey-step:not(.journey-step-final) .journey-marker::before,
.journey-step:not(.journey-step-final) .journey-marker::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  pointer-events: none;
}

.journey-step:not(.journey-step-final) .journey-marker::before {
  border: 2px solid rgba(255, 119, 82, 0.44);
  opacity: 0;
  animation: liveMarkerRing 1.9s ease-out infinite;
}

.journey-step:not(.journey-step-final) .journey-marker::after {
  inset: 6px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 68%);
  opacity: 0.55;
}

@keyframes liveMarkerBeat {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 90, 61, 0.20),
      0 0 0 10px rgba(236, 18, 18, 0.08),
      0 16px 34px rgba(0, 0, 0, 0.22);
  }
  18% {
    transform: scale(1.08);
    box-shadow:
      0 0 0 6px rgba(255, 90, 61, 0.08),
      0 0 0 12px rgba(236, 18, 18, 0.10),
      0 18px 38px rgba(0, 0, 0, 0.24);
  }
  34% {
    transform: scale(0.98);
  }
  52% {
    transform: scale(1.06);
    box-shadow:
      0 0 0 10px rgba(255, 90, 61, 0.05),
      0 0 0 13px rgba(236, 18, 18, 0.10),
      0 18px 38px rgba(0, 0, 0, 0.24);
  }
}

@keyframes liveMarkerRing {
  0% {
    transform: scale(0.86);
    opacity: 0;
  }
  18% {
    opacity: 0.58;
  }
  58% {
    opacity: 0.12;
  }
  100% {
    transform: scale(1.42);
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .journey-kicker {
    background-size: 240% 100%;
    animation-duration: 6.2s;
  }

  .journey-step:not(.journey-step-final) .journey-marker,
  .journey-step:not(.journey-step-final) .journey-marker::before {
    animation-duration: 2.1s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-kicker,
  .journey-step:not(.journey-step-final) .journey-marker,
  .journey-step:not(.journey-step-final) .journey-marker::before {
    animation: none !important;
  }
}


/* ================================
   V50 — seamless infinite gradient flow for Journey labels and Course Includes titles
   ================================ */

/* Rebuild the animated gradient so the end state equals the start state */
.journey-kicker,
.include-card h3 {
  display: inline-block;
  background-image: linear-gradient(90deg,
    #ff9b38 0%,
    #ffd54a 12.5%,
    #ff5a3d 25%,
    #b85cff 37.5%,
    #ff9b38 50%,
    #ffd54a 62.5%,
    #ff5a3d 75%,
    #b85cff 87.5%,
    #ff9b38 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  animation: seamlessGradientFlow 7.5s linear infinite;
  will-change: background-position;
}

/* Keep headings premium on hover without breaking the animated gradient */
.include-card:hover h3 {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 0 18px rgba(255, 102, 72, 0.08) !important;
}

@keyframes seamlessGradientFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@media (max-width: 720px) {
  .journey-kicker,
  .include-card h3 {
    animation-duration: 8.2s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-kicker,
  .include-card h3 {
    animation: none !important;
    background-position: 0 50% !important;
  }
}


/* ================================
   V51 — faster seamless heading gradient animation
   ================================ */
.journey-kicker,
.include-card h3 {
  animation-duration: 5.6s !important;
}

@media (max-width: 720px) {
  .journey-kicker,
  .include-card h3 {
    animation-duration: 6.1s !important;
  }
}


/* ================================
   V52 — white description text in course include cards
   ================================ */
.include-card p {
  color: rgba(255, 255, 255, 0.92) !important;
}


/* ================================
   V53 — subtle floating animation for principle cards
   ================================ */
.principles-grid {
  align-items: start !important;
}

.principle-card {
  will-change: transform;
  animation: principleFloatA 6.8s ease-in-out infinite;
}

.principle-card:nth-child(2) {
  animation-name: principleFloatB;
  animation-duration: 7.6s;
  animation-delay: -1.4s;
}

.principle-card:nth-child(3) {
  animation-name: principleFloatC;
  animation-duration: 7.1s;
  animation-delay: -2.1s;
}

.principle-card-center {
  transform: translateY(-18px);
}

@keyframes principleFloatA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes principleFloatB {
  0%, 100% { transform: translate3d(0, -18px, 0); }
  50% { transform: translate3d(0, -30px, 0); }
}

@keyframes principleFloatC {
  0%, 100% { transform: translate3d(0, -4px, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@media (max-width: 980px) {
  .principle-card,
  .principle-card:nth-child(2),
  .principle-card:nth-child(3) {
    animation-duration: 7.8s;
  }

  @keyframes principleFloatA {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -7px, 0); }
  }

  @keyframes principleFloatB {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
  }

  @keyframes principleFloatC {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -7px, 0); }
  }

  .principle-card-center {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .principle-card,
  .principle-card:nth-child(2),
  .principle-card:nth-child(3) {
    animation: none !important;
  }
}


/* ================================
   V54 — brighter pricing buttons + fast glass-like shine
   ================================ */

.pricing-btn,
.pricing-btn-secondary {
  position: relative;
  overflow: hidden;
}

.pricing-btn {
  border-color: rgba(146, 255, 165, 0.52) !important;
  background:
    linear-gradient(180deg, rgba(145, 255, 168, 0.14), rgba(8, 58, 21, 0.18)),
    linear-gradient(100deg, #0a3a16 0%, #0f5a23 24%, #169332 50%, #0f6226 76%, #082d12 100%) !important;
  box-shadow:
    0 20px 52px rgba(6, 68, 23, 0.34),
    0 0 34px rgba(60, 255, 110, 0.20),
    inset 0 1px 0 rgba(233, 255, 238, 0.18),
    inset 0 -14px 24px rgba(0, 0, 0, 0.10) !important;
}

.pricing-btn:hover {
  border-color: rgba(170, 255, 186, 0.68) !important;
  box-shadow:
    0 22px 58px rgba(6, 68, 23, 0.38),
    0 0 42px rgba(60, 255, 110, 0.26),
    inset 0 1px 0 rgba(233, 255, 238, 0.22),
    inset 0 -14px 24px rgba(0, 0, 0, 0.10) !important;
}

.pricing-btn-secondary {
  border-color: rgba(255, 200, 106, 0.52) !important;
  background:
    linear-gradient(180deg, rgba(255, 220, 156, 0.14), rgba(110, 53, 0, 0.16)),
    linear-gradient(100deg, #8a4600 0%, #bc6200 26%, #ef961e 50%, #c56800 74%, #7f3d00 100%) !important;
  box-shadow:
    0 20px 52px rgba(110, 53, 0, 0.30),
    0 0 34px rgba(255, 173, 63, 0.18),
    inset 0 1px 0 rgba(255, 247, 228, 0.18),
    inset 0 -14px 24px rgba(0, 0, 0, 0.10) !important;
}

.pricing-btn-secondary:hover {
  border-color: rgba(255, 214, 138, 0.68) !important;
  box-shadow:
    0 22px 58px rgba(110, 53, 0, 0.34),
    0 0 42px rgba(255, 173, 63, 0.24),
    inset 0 1px 0 rgba(255, 247, 228, 0.22),
    inset 0 -14px 24px rgba(0, 0, 0, 0.10) !important;
}

.pricing-btn::before,
.pricing-btn-secondary::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04) 32%, transparent 58%);
  opacity: 0.9;
}

.pricing-btn::after,
.pricing-btn-secondary::after {
  content: "" !important;
  position: absolute !important;
  inset: -8% !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  background: linear-gradient(110deg,
    transparent 0 18%,
    rgba(255,255,255,0.00) 28%,
    rgba(255,255,255,0.10) 36%,
    rgba(255,255,255,0.28) 46%,
    rgba(255,255,255,0.42) 50%,
    rgba(255,255,255,0.28) 54%,
    rgba(255,255,255,0.10) 64%,
    rgba(255,255,255,0.00) 72%,
    transparent 82% 100%) !important;
  mix-blend-mode: screen;
  transform: translateX(-165%) skewX(-10deg) !important;
  animation: pricingGlassSweep 1.25s linear infinite !important;
  opacity: 0.95 !important;
}

@keyframes pricingGlassSweep {
  0% {
    transform: translateX(-165%) skewX(-10deg);
  }
  100% {
    transform: translateX(165%) skewX(-10deg);
  }
}

@media (max-width: 720px) {
  .pricing-btn::after,
  .pricing-btn-secondary::after {
    animation-duration: 1.35s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-btn::after,
  .pricing-btn-secondary::after {
    animation: none !important;
  }
}


/* ================================
   V55 — clearly visible fast glass shimmer on pricing buttons
   ================================ */
.pricing-btn,
.pricing-btn-secondary {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.pricing-btn > *,
.pricing-btn-secondary > * {
  position: relative;
  z-index: 4;
}

/* soft glass top reflection */
.pricing-btn::before,
.pricing-btn-secondary::before {
  content: "" !important;
  position: absolute !important;
  inset: 1px !important;
  z-index: 1 !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.06) 34%, transparent 62%) !important;
  opacity: 0.85 !important;
}

/* strong moving glass flare */
.pricing-btn::after,
.pricing-btn-secondary::after {
  content: "" !important;
  position: absolute !important;
  top: -35% !important;
  bottom: -35% !important;
  left: -85% !important;
  width: 72% !important;
  z-index: 3 !important;
  border-radius: 999px !important;
  pointer-events: none !important;
  background:
    linear-gradient(105deg,
      transparent 0%,
      rgba(255,255,255,0.00) 20%,
      rgba(255,255,255,0.24) 38%,
      rgba(255,255,255,0.72) 49%,
      rgba(255,255,255,0.32) 60%,
      rgba(255,255,255,0.00) 78%,
      transparent 100%) !important;
  filter: blur(0.2px);
  transform: translate3d(-40%, 0, 0) skewX(-18deg) !important;
  animation: visibleGlassSweep 1.18s cubic-bezier(0.35, 0.02, 0.18, 1) infinite !important;
  opacity: 0.92 !important;
  mix-blend-mode: screen;
}

@keyframes visibleGlassSweep {
  0% {
    transform: translate3d(-65%, 0, 0) skewX(-18deg);
  }
  100% {
    transform: translate3d(330%, 0, 0) skewX(-18deg);
  }
}

/* make text stay readable above the shine */
.pricing-btn,
.pricing-btn-secondary {
  text-shadow: 0 2px 8px rgba(0,0,0,0.16);
}

/* extra thin specular line for a more glass-like pass */
.pricing-actions .pricing-btn,
.pricing-actions .pricing-btn-secondary {
  background-clip: padding-box !important;
}

@media (max-width: 720px) {
  .pricing-btn::after,
  .pricing-btn-secondary::after {
    animation-duration: 1.28s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-btn::after,
  .pricing-btn-secondary::after {
    animation: none !important;
    opacity: 0.2 !important;
  }
}


/* ================================
   V56 — pricing buttons use the exact same shine effect as “Отримати доступ”
   ================================ */

/* disable the custom glass layers from previous versions */
.pricing-btn::before,
.pricing-btn-secondary::before {
  display: none !important;
  content: none !important;
}

/* use exactly the same moving shine logic as .btn-primary */
.pricing-btn::after,
.pricing-btn-secondary::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  left: auto !important;
  top: auto !important;
  bottom: auto !important;
  width: auto !important;
  z-index: 2 !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  background: linear-gradient(110deg,
    transparent 0 26%,
    rgba(255,255,255,0.06) 40%,
    rgba(255,255,255,0.14) 49%,
    rgba(255,255,255,0.06) 58%,
    transparent 72% 100%) !important;
  transform: translateX(-145%) !important;
  animation: premiumSweep 4.6s cubic-bezier(0.22, 0.7, 0.2, 1) infinite !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.pricing-btn,
.pricing-btn-secondary {
  overflow: hidden !important;
  position: relative !important;
}

.pricing-btn > *,
.pricing-btn-secondary > * {
  position: relative;
  z-index: 3;
}


/* ================================
   V57 — real visible shine for tariff buttons
   Uses background-position instead of transform, because previous transform !important
   kept the shine layer outside the button.
   ================================ */
.pricing-btn,
.pricing-btn-secondary {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.pricing-btn::after,
.pricing-btn-secondary::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  border-radius: inherit !important;
  pointer-events: none !important;

  /* same type of shine as “Отримати доступ”, but animated by background-position */
  background-image: linear-gradient(
    110deg,
    transparent 0%,
    transparent 34%,
    rgba(255,255,255,0.07) 43%,
    rgba(255,255,255,0.20) 49%,
    rgba(255,255,255,0.07) 55%,
    transparent 66%,
    transparent 100%
  ) !important;
  background-size: 260% 100% !important;
  background-repeat: no-repeat !important;
  transform: none !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: screen !important;
  animation: pricingButtonRealShine 1.35s ease-in-out infinite !important;
}

@keyframes pricingButtonRealShine {
  0% {
    background-position: 150% 0;
  }
  100% {
    background-position: -150% 0;
  }
}

/* keep text above the colored button base, but below the transparent shine */
.pricing-btn,
.pricing-btn-secondary {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-btn::after,
  .pricing-btn-secondary::after {
    animation: none !important;
    background-position: 50% 0 !important;
  }
}


/* ================================
   V58 — guaranteed visible shine on the exact tariff buttons
   This uses a real child element inside .pricing-actions buttons, not ::after,
   so older pseudo-element rules cannot override it.
   ================================ */

/* Disable all previous pseudo shines on tariff buttons so they do not conflict */
.pricing .pricing-actions .pricing-btn::before,
.pricing .pricing-actions .pricing-btn::after,
.pricing .pricing-actions .pricing-btn-secondary::before,
.pricing .pricing-actions .pricing-btn-secondary::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

/* Target exactly the buttons inside the pricing/tariff cards */
.pricing .pricing-actions .pricing-btn,
.pricing .pricing-actions .pricing-btn-secondary {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.pricing .pricing-actions .pricing-btn-text {
  position: relative;
  z-index: 3;
}

/* Visible glass sweep */
.pricing .pricing-actions .pricing-glass-shine {
  position: absolute;
  z-index: 2;
  top: -35%;
  bottom: -35%;
  left: -75%;
  width: 58%;
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.00) 22%,
    rgba(255,255,255,0.18) 38%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0.18) 62%,
    rgba(255,255,255,0.00) 78%,
    transparent 100%
  );
  transform: translate3d(0, 0, 0) skewX(-18deg);
  animation: tariffRealGlassShine 1.25s ease-in-out infinite;
  opacity: 0.9;
  mix-blend-mode: screen;
}

/* Extra thin hot highlight like on glass */
.pricing .pricing-actions .pricing-glass-shine::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  filter: blur(0.6px);
}

@keyframes tariffRealGlassShine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing .pricing-actions .pricing-glass-shine {
    animation: none !important;
    opacity: 0.18 !important;
    left: 46% !important;
  }
}


/* ================================
   V59 — softer, smoother tariff button glass shine
   ================================ */
.pricing .pricing-actions .pricing-glass-shine {
  width: 46% !important;
  top: -22% !important;
  bottom: -22% !important;
  opacity: 0.42 !important;
  filter: blur(1.8px) !important;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.00) 26%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.08) 60%,
    rgba(255,255,255,0.00) 74%,
    transparent 100%
  ) !important;
  animation-duration: 1.55s !important;
  animation-timing-function: cubic-bezier(0.42, 0, 0.28, 1) !important;
}

.pricing .pricing-actions .pricing-glass-shine::after {
  width: 3px !important;
  left: 50% !important;
  background: rgba(255,255,255,0.28) !important;
  filter: blur(2px) !important;
}

@keyframes tariffRealGlassShine {
  0% {
    left: -62%;
  }
  100% {
    left: 118%;
  }
}


/* ================================
   V60 — invisible transition between pricing and FAQ blocks
   ================================ */

/* The FAQ glow was clipped by the section and created a visible rectangle.
   Make the atmosphere layers larger than the section and let them fade naturally. */
.pricing,
.faq {
  background: transparent !important;
  overflow: visible !important;
  isolation: isolate;
}

.pricing::before,
.faq::before {
  content: "" !important;
  position: absolute !important;
  top: -260px !important;
  right: -26% !important;
  bottom: -240px !important;
  left: -26% !important;
  height: auto !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.68 !important;
  background:
    radial-gradient(ellipse at 50% 28%, rgba(236, 18, 18, 0.16), transparent 58%),
    radial-gradient(ellipse at 18% 54%, rgba(255, 94, 76, 0.10), transparent 46%),
    radial-gradient(ellipse at 84% 58%, rgba(238, 227, 207, 0.045), transparent 48%) !important;
  filter: blur(24px) !important;
  transform: translateZ(0);
}

.pricing::after,
.faq::after {
  display: none !important;
}

/* Add a soft shared bridge between the tariff cards and FAQ so there is no hard horizontal seam. */
.pricing {
  margin-bottom: -18px !important;
  padding-bottom: clamp(44px, 5vw, 72px) !important;
}

.faq {
  margin-top: -18px !important;
  padding-top: clamp(44px, 5vw, 72px) !important;
}

.faq-head,
.faq-list,
.pricing-head,
.pricing-grid {
  position: relative;
  z-index: 1;
}

/* Keep it lighter on mobile. */
@media (max-width: 720px) {
  .pricing::before,
  .faq::before {
    top: -160px !important;
    bottom: -150px !important;
    left: -18% !important;
    right: -18% !important;
    filter: blur(18px) !important;
    opacity: 0.58 !important;
  }

  .pricing,
  .faq {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}


/* ================================
   V61 — performance optimization without visual quality loss
   Especially smoother FAQ open/close clicks
   ================================ */

/* FAQ: do not calculate/set max-height from JS anymore.
   CSS grid makes opening smooth and avoids scrollHeight layout reads. */
.faq-list {
  contain: layout style;
}

.faq-item {
  contain: layout paint;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: auto !important;
}

/* Keep the visual premium, but do not animate heavy properties during FAQ opening. */
.faq-item,
.faq-item.is-open {
  transition:
    transform 0.18s ease,
    border-color 0.18s ease !important;
}

.faq-answer {
  display: grid !important;
  grid-template-rows: 0fr;
  max-height: none !important;
  overflow: hidden !important;
  transition: grid-template-rows 0.26s cubic-bezier(0.22, 0.7, 0.2, 1) !important;
  will-change: grid-template-rows;
}

.faq-answer > p {
  min-height: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

/* The plus/cross animation is now GPU-only, so clicking does not repaint the whole FAQ card. */
.faq-plus {
  transform: translateZ(0);
  will-change: transform;
  transition:
    transform 0.22s cubic-bezier(0.22, 0.7, 0.2, 1),
    box-shadow 0.22s ease !important;
}

.faq-plus::before,
.faq-plus::after {
  will-change: transform, opacity;
  transition:
    transform 0.22s cubic-bezier(0.22, 0.7, 0.2, 1),
    opacity 0.22s ease !important;
}

/* Prevent expensive hover repaint on the exact moment of opening/closing. */
.faq-question {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:active .faq-plus {
  transform: scale(0.96) translateZ(0);
}

/* Keep the opened FAQ look, but avoid large shadow animation on every click. */
.faq-item.is-open {
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.30),
    0 0 50px rgba(236, 18, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
}

/* General micro-optimization: only animate transforms/opacity on repeated interactive elements. */
.program-content {
  contain: layout paint;
}

.program-toggle,
.program-arrow,
.faq-question,
.faq-plus,
.pricing .pricing-actions .pricing-glass-shine,
.journey-marker,
.principle-card,
.floating-chip {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Make scroll rendering smoother without hiding upcoming content. */
.journey-card,
.include-card,
.principle-card,
.program-item,
.pricing-card,
.faq-item {
  content-visibility: auto;
  contain-intrinsic-size: 320px;
}

/* But keep cards currently in view fully rendered. */
.faq-item,
.pricing-card {
  contain-intrinsic-size: auto 160px;
}

@media (max-width: 720px) {
  .faq-answer {
    transition-duration: 0.22s !important;
  }
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
  .faq-answer {
    transition: none !important;
  }

  .faq-plus,
  .faq-plus::before,
  .faq-plus::after {
    transition: none !important;
  }
}


/* ================================
   V62 — deep performance pass: smooth scrolling + instant-light FAQ toggle
   Keeps the visual style/effects, but prevents expensive work during scroll/click.
   ================================ */

/* 1) Stop content-visibility from rendering sections/cards exactly while scrolling.
   It can create visible micro-freezes when large blocks enter the viewport. */
.journey-card,
.include-card,
.principle-card,
.program-item,
.pricing-card,
.faq-item,
.journey,
.course-includes,
.principles,
.program-section,
.pricing,
.faq {
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important;
}

/* 2) Fixed blur layers and sticky blur are expensive during scroll.
   Replace real blur with already-soft gradients. Visual stays close, repaint cost drops. */
body::before,
body::after,
.hero::before,
.journey::before,
.course-includes::before,
.principles::before,
.program-section::before,
.pricing::before,
.faq::before {
  filter: none !important;
  transform: translateZ(0);
  will-change: auto !important;
}

.header {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background:
    linear-gradient(180deg, rgba(38, 14, 14, 0.86), rgba(20, 8, 8, 0.82)),
    rgba(16, 8, 8, 0.86) !important;
}

/* Fullscreen noise overlay can cause scroll repaint on some devices. Keep it, but cheaper. */
.noise {
  opacity: 0.075 !important;
  transform: translateZ(0);
  contain: paint;
}

/* 3) Pause decorative animations only while the user is scrolling/clicking accordions.
   They resume immediately after, so the design still feels alive. */
body.is-scrolling .floating-chip,
body.is-scrolling .principle-card,
body.is-scrolling .journey-marker,
body.is-scrolling .journey-kicker,
body.is-scrolling .include-card h3,
body.is-scrolling .pricing-glass-shine,
body.is-interacting .floating-chip,
body.is-interacting .principle-card,
body.is-interacting .journey-marker,
body.is-interacting .journey-kicker,
body.is-interacting .include-card h3,
body.is-interacting .pricing-glass-shine {
  animation-play-state: paused !important;
}

/* 4) FAQ was the main freeze point.
   Avoid animating height/layout. Height changes instantly; the answer fades/slides softly. */
.faq-list {
  contain: layout paint style;
}

.faq-item {
  contain: paint;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: auto !important;
  transition:
    border-color 0.16s ease,
    transform 0.16s ease !important;
}

.faq-item:hover {
  transform: translateZ(0) !important;
}

.faq-item.is-open {
  background:
    radial-gradient(circle at 92% 0%, rgba(236,18,18,0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(236,18,18,0.045)),
    rgba(11, 11, 12, 0.92) !important;
  box-shadow:
    0 22px 66px rgba(0, 0, 0, 0.26),
    0 0 34px rgba(236, 18, 18, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.052) !important;
}

.faq-answer {
  display: block !important;
  grid-template-rows: none !important;
  max-height: 0 !important;
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  overflow: hidden !important;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease !important;
  will-change: opacity, transform;
}

.faq-answer > p {
  min-height: 0;
  overflow: visible !important;
}

.faq-item.is-open .faq-answer {
  max-height: 520px !important;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* GPU-only plus/cross movement. No big paint animation on click. */
.faq-plus {
  will-change: transform;
  transform: translateZ(0);
  transition:
    transform 0.2s cubic-bezier(0.22, 0.7, 0.2, 1) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 -7px 16px rgba(0, 0, 0, 0.07) !important;
}

.faq-plus::before,
.faq-plus::after {
  will-change: transform, opacity;
  transition:
    transform 0.2s cubic-bezier(0.22, 0.7, 0.2, 1),
    opacity 0.2s ease !important;
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg) translateZ(0) !important;
}

.faq-question {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* 5) Avoid heavy hover repaint on repeated cards while scrolling. */
body.is-scrolling .course-card:hover,
body.is-scrolling .journey-card:hover,
body.is-scrolling .include-card:hover,
body.is-scrolling .principle-card:hover,
body.is-scrolling .program-item:hover,
body.is-scrolling .faq-item:hover,
body.is-scrolling .pricing-card:hover {
  transform: translateZ(0) !important;
}

/* 6) Keep tariff button glass shine, but make sure it does not force layout. */
.pricing .pricing-actions .pricing-glass-shine {
  will-change: left, transform;
  transform: translate3d(0, 0, 0) skewX(-18deg);
}

/* 7) On mobile/weak devices the biggest win is removing unnecessary filters completely. */
@media (max-width: 720px) {
  .hero-badge,
  .hero-status,
  .btn-secondary,
  .floating-chip,
  .course-card,
  .journey-card,
  .principle-card,
  .include-card,
  .program-item,
  .pricing-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .faq-answer {
    transition-duration: 0.14s !important;
  }
}

/* Reduced-motion fallback remains clean. */
@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-plus,
  .faq-plus::before,
  .faq-plus::after {
    transition: none !important;
  }
}


/* ================================
   V63 — hide visual seams between blocks
   ================================ */

/* Let atmosphere spill across section boundaries */
.journey,
.course-includes,
.principles,
.program-section,
.pricing,
.faq {
  position: relative;
  background: transparent !important;
  overflow: visible !important;
  isolation: isolate;
}

/* Make the section glows much larger so their edges are never visible */
.journey::before,
.course-includes::before,
.principles::before,
.program-section::before,
.pricing::before,
.faq::before {
  content: "" !important;
  position: absolute !important;
  top: -170px !important;
  right: -18% !important;
  bottom: -170px !important;
  left: -18% !important;
  height: auto !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.62 !important;
  background:
    radial-gradient(ellipse at 20% 28%, rgba(236, 18, 18, 0.14), transparent 42%),
    radial-gradient(ellipse at 78% 34%, rgba(255, 96, 68, 0.09), transparent 38%),
    radial-gradient(ellipse at 50% 76%, rgba(238, 227, 207, 0.035), transparent 34%) !important;
  filter: none !important;
}

/* Add a soft bridge after each block so the next one starts seamlessly */
.journey::after,
.course-includes::after,
.principles::after,
.program-section::after,
.pricing::after {
  content: "" !important;
  position: absolute !important;
  left: -14% !important;
  right: -14% !important;
  bottom: -130px !important;
  height: 240px !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.72 !important;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(236, 18, 18, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(120, 30, 20, 0.05) 0%, rgba(120, 30, 20, 0.02) 38%, transparent 100%) !important;
  filter: none !important;
}

/* Slightly overlap neighboring sections so no horizontal band is visible */
.course-includes,
.principles,
.program-section,
.pricing,
.faq {
  margin-top: -18px !important;
}

.journey,
.course-includes,
.principles,
.program-section,
.pricing {
  margin-bottom: -18px !important;
}

/* Keep content above the atmosphere layers */
.section-head,
.includes-head,
.principles-head,
.program-head,
.pricing-head,
.faq-head,
.journey-grid,
.includes-grid,
.principles-grid,
.program-list,
.pricing-grid,
.faq-list {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .journey::before,
  .course-includes::before,
  .principles::before,
  .program-section::before,
  .pricing::before,
  .faq::before {
    top: -120px !important;
    bottom: -120px !important;
    left: -12% !important;
    right: -12% !important;
    opacity: 0.56 !important;
  }

  .journey::after,
  .course-includes::after,
  .principles::after,
  .program-section::after,
  .pricing::after {
    bottom: -90px !important;
    height: 160px !important;
    opacity: 0.64 !important;
  }

  .course-includes,
  .principles,
  .program-section,
  .pricing,
  .faq,
  .journey {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
