:root {
  --red: rgb(184, 62, 24);
  --red-dark: #8f2d18;
  --red-soft: #f9ded4;
  --red-pale: #fff3ef;
  --cream: #fffaf6;
  --ink: #24140f;
  --text: #51332a;
  --muted: #6e4c45;
  --gold: #c89d42;
  --gold-lt: #f0d898;
  --gold-h: #d4af37;
  --green: #188a57;
  --border: rgba(201, 81, 42, 0.16);
  --card: rgba(255, 255, 255, 0.9);
  --sh-sm: 0 8px 28px rgba(116, 42, 20, 0.1);
  --sh-md: 0 22px 70px rgba(116, 42, 20, 0.14);
  --sh-lg: 0 40px 100px rgba(116, 42, 20, 0.2);
  --r: 16px;
  --rmd: 20px;
  --rlg: 28px;
  --ease: cubic-bezier(0.22, 0.68, 0, 1.1);
  --t: 0.32s var(--ease);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text);
  overflow-x: hidden;
  background: var(--cream);
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
textarea {
  font: inherit;
  border: none;
  cursor: pointer;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}
@keyframes floatA {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-12px) rotate(-1.5deg);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInR {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-load-1 {
  animation: heroFade 0.7s var(--ease) 0.1s both;
}
.hero-load-2 {
  animation: heroFade 0.7s var(--ease) 0.25s both;
}
.hero-load-3 {
  animation: heroFade 0.7s var(--ease) 0.4s both;
}
.hero-load-4 {
  animation: heroFade 0.7s var(--ease) 0.55s both;
}
.hero-load-5 {
  animation: heroFade 0.7s var(--ease) 0.7s both;
}
.hero-img-load {
  animation: slideInR 0.9s var(--ease) 0.25s both;
}
.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.stagger > *.up {
  opacity: 1;
  transform: translateY(0);
}
body.has-cursor {
  cursor: none;
}
.cursor,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.cursor {
  width: 10px;
  height: 10px;
  background: var(--red);
  mix-blend-mode: multiply;
  transition:
    width 0.2s,
    height 0.2s;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--red);
  opacity: 0.4;
  transition:
    width 0.28s,
    height 0.28s;
  z-index: 9998;
}
@media (hover: none) {
  .cursor,
  .cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
}
.wrap {
  width: min(1280px, calc(100% - 32px));
  margin-inline: auto;
}
.wrap-md {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}
section {
  position: relative;
  padding: 80px 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: clamp(0.68rem, 1.4vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--red);
  opacity: 0.35;
  flex-shrink: 0;
}
.title {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4.2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.07;
  margin-bottom: 16px;
}
em {
  color: var(--red);
  font-style: italic;
}
.title em {
  color: var(--red);
}
.sub {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(0.88rem, 1.6vw, 0.98rem);
  line-height: 1.82;
}
.btn-red,
.btn-ghost,
.btn-white,
.btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 10px;
  border: 0;
  font-size: clamp(0.74rem, 1.4vw, 0.84rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition:
    transform var(--t),
    box-shadow var(--t),
    background var(--t);
  cursor: pointer;
}
.btn-red,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 10px 28px rgba(201, 81, 42, 0.3);
}
.btn-red::after,
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: translateX(-110%);
  transition: transform 0.55s;
}
.btn-red:hover::after,
.btn-primary:hover::after {
  transform: translateX(110%);
}
.btn-red:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(201, 81, 42, 0.38);
}
.btn-ghost {
  color: var(--red);
  background: rgba(255, 255, 255, 0.68);
  border: 1.5px solid rgba(201, 81, 42, 0.3);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 10px 28px rgba(201, 81, 42, 0.14);
}
.btn-white {
  color: var(--red);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
header {
  position: fixed;
  top: 10px;
  z-index: 900;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  max-width: 1280px;
  border-radius: 20px;
  background: rgba(255, 250, 246, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 81, 42, 0.1);
  box-shadow: 0 10px 36px rgba(116, 42, 20, 0.08);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
header.scrolled {
  background: rgba(255, 250, 246, 0.96);
  box-shadow: 0 14px 48px rgba(116, 42, 20, 0.13);
}
.nav-inner,
.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
  border-radius: 14px;
  transition: transform 0.3s;
}
.brand::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(201, 81, 42, 0.07), transparent 65%);
  z-index: 0;
  opacity: 0.8;
}
.brand:hover {
  transform: translateY(-2px);
}
.brand > * {
  position: relative;
  z-index: 2;
}
.logo {
  height: clamp(40px, 5.5vw, 62px);
  width: auto;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 15px;
  box-shadow: none;
  filter: drop-shadow(0 3px 10px rgba(201, 81, 42, 0.18));
  flex-shrink: 0;
  transition:
    transform 0.35s,
    filter 0.35s;
}
.logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 5px 16px rgba(201, 81, 42, 0.28));
}
.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.brand-text span {
  font-size: clamp(0.52rem, 1vw, 0.64rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.9;
  white-space: nowrap;
  margin-top: 2px;
}
nav {
  display: flex;
  gap: clamp(10px, 1.8vw, 24px);
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}
nav a {
  color: var(--muted);
  font-size: clamp(0.66rem, 1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.25s;
}
nav a:hover {
  color: var(--red);
}
nav a:hover::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  background: transparent;
  color: var(--ink);
  font-size: 1.5rem;
  padding: 6px;
  line-height: 1;
  flex-shrink: 0;
  border: none;
}
.mob-nav {
  position: fixed;
  top: 76px;
  left: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  background: #fffaf6;
  border-radius: 18px;
  border: 1px solid rgba(201, 81, 42, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  z-index: 9999999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}
.mob-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mob-nav a {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(201, 81, 42, 0.08);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fffaf6;
}
.mob-nav a:last-child {
  border-bottom: none;
}
.mob-nav a:hover {
  color: var(--red);
  background: var(--red-pale);
}
.float-btns {
  position: fixed;
  right: 18px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  flex-shrink: 0;
}
.float-btn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}
.fb-wa {
  background: #25d366;
}
.fb-ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.fb-yt {
  background: #ff0000;
}
.fb-fb {
  background: #1877f2;
}
#hero {
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 30%,
      rgba(201, 81, 42, 0.16),
      transparent 65%
    ),
    radial-gradient(
      ellipse 48% 42% at 5% 90%,
      rgba(200, 157, 66, 0.15),
      transparent 60%
    ),
    linear-gradient(180deg, #fffaf6, #fff0ea 70%, #fffaf6);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}
.hero-kicker,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 15px;
  border: 1px solid rgba(201, 81, 42, 0.26);
  border-radius: 999px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.62rem, 1.2vw, 0.7rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-kicker span,
.kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.hero-h {
  color: var(--gold-h);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-desc,
.hero-copy {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(0.88rem, 1.6vw, 1.04rem);
  line-height: 1.82;
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 26px rgba(116, 42, 20, 0.09);
  overflow: hidden;
  margin-bottom: 24px;
}
.stat-item {
  flex: 1;
  min-width: 90px;
  padding: 13px 15px;
  border-right: 1px solid var(--border);
  transition: background var(--t);
}
.stat-item:last-child {
  border-right: 0;
}
.stat-item:hover {
  background: rgba(201, 81, 42, 0.05);
}
.stat-num1 {
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  margin-top: 4px;
  color: var(--muted);
  font-size: clamp(0.56rem, 0.7vw, 0.66rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-social-label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.hero-social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.hero-social-icon.fb-wa {
  background: #25d366;
}
.hero-social-icon.fb-ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}
.hero-social-icon.fb-yt {
  background: #ff0000;
}
.hero-social-icon.fb-fb {
  background: #1877f2;
}
.hero-portrait-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
}
.hero-portrait-glow {
  position: absolute;
  width: 72%;
  height: 78%;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 81, 42, 0.26),
    rgba(200, 157, 66, 0.12) 50%,
    transparent 75%
  );
  filter: blur(50px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}
.hero-portrait,
.img-luxury {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  border-radius: var(--rlg);
  object-fit: cover;
  object-position: center top;
  border: 4px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 32px 80px rgba(116, 42, 20, 0.22),
    0 0 0 1px rgba(201, 81, 42, 0.08);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s ease;
}
.hero-portrait:hover,
.img-luxury:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 48px 110px rgba(116, 42, 20, 0.3);
}
.hero-badge {
  position: absolute;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 44px rgba(116, 42, 20, 0.14);
  z-index: 2;
}
.hb-1 {
  bottom: 18%;
  left: -6%;
  animation: floatA 5s ease-in-out infinite;
}
.hb-2 {
  top: 12%;
  right: 0%;
  animation: floatB 6s ease-in-out infinite;
}
.hb-val {
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 700;
  line-height: 1;
}
.hb-tag {
  color: var(--muted);
  font-size: clamp(0.58rem, 1vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hb-price .hb-val {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
}
.light-band {
  background: linear-gradient(180deg, var(--cream), #fff0ea 60%, var(--cream));
}
.red-band {
  background:
    radial-gradient(
      ellipse 60% 70% at 88% 10%,
      rgba(255, 255, 255, 0.16),
      transparent 60%
    ),
    linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
}
.red-band .title,
.red-band .sub,
.red-band .eyebrow {
  color: #fff;
}
.red-band .eyebrow::before,
.red-band .eyebrow::after {
  background: #fff;
}
.ico {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 12px;
  color: var(--red);
  background: var(--red-pale);
  border: 1px solid var(--border);
  font-size: 1.1rem;
}
.card,
.issue-card,
.learn-card,
.pillar-card,
.program-card,
.promise-card,
.testi-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--card);
  box-shadow: 0 10px 30px rgba(116, 42, 20, 0.08);
}
.issue-list {
  display: grid;
  gap: 10px;
}
.issue-card,
.promise-card {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 12px 15px;
  transition:
    transform 0.28s,
    border-color 0.28s,
    box-shadow 0.28s;
}
.issue-card:hover,
.promise-card:hover {
  transform: translateX(6px);
  border-color: rgba(201, 81, 42, 0.3);
  box-shadow: 0 14px 40px rgba(116, 42, 20, 0.12);
}
.card-text strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}
.card-text span {
  color: var(--muted);
  font-size: 0.82rem;
}
.learn-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.learn-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
  margin-top: 44px;
}
.pillar-card {
  padding: 20px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.pillar-n {
  color: rgba(201, 81, 42, 0.2);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.pillar-card h3 {
  margin: 11px 0 7px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.25;
}
.pillar-card p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 81, 42, 0.2);
}
.card h3 {
  margin: 10px 0 7px;
}
.card p {
  font-size: 0.86rem;
}
.card {
  padding: 22px;
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.program-card {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.program-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-md);
}
.program-card.featured {
  border-color: rgba(201, 81, 42, 0.36);
  background: linear-gradient(180deg, #fff, #fff3ef);
}
.program-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(201, 81, 42, 0.05) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: shimmer 3.5s ease infinite;
  pointer-events: none;
}
.badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge.soft {
  color: var(--red);
  background: var(--red-pale);
  border: 1px solid var(--border);
}
.program-label {
  color: var(--red);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}
.program-card h3 {
  margin: 7px 0 10px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
}
.program-card > p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}
.program-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}
.program-card li {
  display: flex;
  gap: 9px;
  color: var(--text);
  font-size: 0.83rem;
}
.program-card li::before {
  content: "\2192";
  color: var(--red);
  font-weight: 800;
}
.program-price {
  margin-top: auto;
  padding-top: 14px;
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
}
.program-price small {
  color: var(--muted);
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.testi-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
  align-items: stretch;
}
.testi-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 0.93rem;
}
.testi-card blockquote {
  flex: 1;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.82;
}
.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(201, 81, 42, 0.12);
}
.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--gold));
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.avatar-img {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(201, 81, 42, 0.14);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.avatar-img:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}
.author strong,
.author-info strong {
  display: block;
  color: var(--ink);
  font-size: 0.88rem;
}
.author span,
.author-info span {
  color: var(--muted);
  font-size: 0.74rem;
}
.testimonial-strip {
  display: flex;
  gap: 12px;
  margin: 28px 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.testimonial-strip::-webkit-scrollbar {
  display: none;
}
.testimonial-strip img {
  height: 100px;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.75;
  border: 1px solid var(--border);
}
.masterclass {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 40px;
}
.master-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--rlg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 75px rgba(87, 25, 10, 0.26);
}
.master-panel::after {
  content: "SPF";
  position: absolute;
  right: -18px;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.05);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.master-title {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.07;
  margin-bottom: 12px;
}
.master-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}
.master-list li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}
.master-list li::before {
  content: "\2192";
  color: #ffe1ce;
  flex-shrink: 0;
}
.detail-card {
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--sh-md);
  backdrop-filter: blur(14px);
}
.price {
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
}
.detail-card dl {
  display: grid;
  gap: 11px;
  margin: 16px 0 20px;
}
.detail-card dt {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.detail-card dd {
  color: var(--ink);
  font-weight: 700;
}
.price-tag {
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1;
}
.price-card {
  padding: clamp(20px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--sh-md);
  backdrop-filter: blur(14px);
}
.price-card h2 {
  margin: 14px 0 9px;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-family: "Cormorant Garamond", serif;
}
.price-card > p {
  font-size: 0.9rem;
}
.price-card ul {
  list-style: none;
  margin: 18px 0 6px;
  display: grid;
  gap: 0;
  padding: 0;
}
.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  border-bottom: 1px solid rgba(201, 81, 42, 0.1);
  transition:
    background 0.25s,
    padding-left 0.25s;
}
.price-card ul li:first-child {
  border-top: 1px solid rgba(201, 81, 42, 0.1);
  border-radius: 10px 10px 0 0;
}
.price-card ul li:last-child {
  border-bottom: none;
  border-radius: 0 0 10px 10px;
}
.price-card ul li:hover {
  background: rgba(201, 81, 42, 0.05);
  padding-left: 18px;
}
.price-card ul li::before {
  content: "\2192";
  color: var(--red);
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.85;
}
.price-card .btn {
  width: 100%;
  margin-top: 20px;
}
.detail-list {
  margin-top: 18px;
  display: grid;
  gap: 0;
}
.detail {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
}
.detail span {
  color: var(--muted);
}
.detail strong {
  color: var(--ink);
  text-align: right;
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  align-items: stretch;
  margin-top: 44px;
}
.ba-col {
  padding: clamp(18px, 3vw, 28px) clamp(14px, 3vw, 24px);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  background: #fff;
  box-shadow: 0 12px 38px rgba(116, 42, 20, 0.08);
}
.ba-col.before {
  border-top: 4px solid var(--red);
}
.ba-col.after {
  border-top: 4px solid var(--green);
}
.ba-col h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ba-col ul {
  display: grid;
  gap: 11px;
}
.ba-col li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}
.ba-col li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 5px;
}
.ba-col.after li::before {
  background: var(--green);
}
.ba-mid {
  display: grid;
  place-items: center;
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.why-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.why-item {
  padding: 15px 19px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--rmd);
  background: rgba(255, 255, 255, 0.1);
  font-size: clamp(0.84rem, 1.6vw, 0.92rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  transition:
    background var(--t),
    transform var(--t);
}
.why-item:hover {
  background: rgba(255, 255, 255, 0.17);
  transform: translateY(-3px);
}
.event-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.event-img-glow {
  position: absolute;
  inset: -22px;
  border-radius: 36px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.14),
    transparent 72%
  );
  filter: blur(36px);
  z-index: 0;
}
.event-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4/5.2;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.4s;
}
.event-img:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 40px 96px rgba(0, 0, 0, 0.3);
}
.mentor-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fff0ea, var(--cream) 60%, #fff0ea);
}
.mentor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}
.mentor-card {
  position: sticky;
  top: 90px;
  overflow: hidden;
  border-radius: var(--rlg);
  box-shadow: var(--sh-lg);
  background: #fff;
}
.mentor-card-img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 4/5;
  transition: transform 0.6s;
}
.mentor-card:hover .mentor-card-img {
  transform: scale(1.03);
}
.mentor-card-footer {
  padding: 18px 22px;
  background: linear-gradient(135deg, #fff, #fff3ef);
  border-top: 1px solid var(--border);
}
.mentor-card-footer h3 {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.mentor-card-footer p {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}
.mentor-copy,
.mentor-bio {
  padding-top: 10px;
}
.mentor-copy p,
.mentor-bio p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.mentor-copy strong,
.mentor-bio strong {
  color: var(--ink);
}
.mentor-photo {
  border-radius: var(--rlg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: #fff;
  aspect-ratio: 4/5;
}
.cred-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.cred-box div {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: #fff;
  box-shadow: 0 8px 22px rgba(116, 42, 20, 0.07);
}
.cred-box strong {
  display: block;
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}
.cred-box span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 4px;
}
.about-mission {
  margin-top: 28px;
  padding: 26px 28px;
  border-radius: var(--rmd);
  border: 1px solid rgba(201, 81, 42, 0.18);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 243, 239, 0.82)
  );
  box-shadow: 0 12px 40px rgba(116, 42, 20, 0.09);
  position: relative;
  overflow: hidden;
}
.about-mission::before {
  content: "Mission";
  position: absolute;
  right: -12px;
  bottom: -22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(201, 81, 42, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.about-mission h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-mission ul {
  list-style: none;
  display: grid;
  gap: 0;
  padding: 0;
}
.about-mission ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
  border-bottom: 1px solid rgba(201, 81, 42, 0.09);
  transition:
    color 0.2s,
    gap 0.2s;
}
.about-mission ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.about-mission ul li:hover {
  color: var(--ink);
  gap: 16px;
}
.about-mission ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 1px;
  background: var(--red);
  opacity: 0.75;
  transform: rotate(45deg);
  margin-top: 7px;
  flex-shrink: 0;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.about-mission ul li:hover::before {
  opacity: 1;
  transform: rotate(45deg) scale(1.15);
}
.belief-box {
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: var(--rmd);
  border-left: 4px solid var(--red);
  border-top: 1px solid rgba(201, 81, 42, 0.14);
  border-right: 1px solid rgba(201, 81, 42, 0.14);
  border-bottom: 1px solid rgba(201, 81, 42, 0.14);
  background: linear-gradient(135deg, #fff3ef, rgba(255, 255, 255, 0.94));
  box-shadow: 0 10px 36px rgba(116, 42, 20, 0.1);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.72;
  position: relative;
  overflow: hidden;
}
.belief-box::before {
  content: "\201C";
  position: absolute;
  top: -14px;
  left: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(201, 81, 42, 0.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.belief-box strong {
  color: var(--ink);
  font-weight: 800;
}
.final-cta {
  overflow: hidden;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.final-cta-content .title {
  color: #fff;
  margin-bottom: 16px;
}
.final-cta-content .sub {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  line-height: 1.86;
  margin-bottom: 28px;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.final-cta-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.final-cta-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.22),
    transparent 70%
  );
  filter: blur(42px);
  z-index: 0;
}
.final-cta-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  object-fit: contain;
  object-position: center top;
  border-radius: var(--rlg);
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.final-cta-img:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 46px 110px rgba(0, 0, 0, 0.34);
}
.faq-col {
  max-width: 800px;
  display: grid;
  gap: 10px;
  margin: 44px auto 0;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--card);
  box-shadow: 0 8px 28px rgba(116, 42, 20, 0.07);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 17px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  font-size: clamp(0.84rem, 1.8vw, 0.96rem);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
  transition:
    max-height 0.35s,
    padding 0.25s;
}
.faq-item.open .faq-a {
  max-height: 280px;
  padding-bottom: 18px;
}
.faq-ico {
  color: var(--red);
  font-size: 1.1rem;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
}
.contact-form {
  margin-top: 44px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--rlg);
  border: 1px solid var(--border);
  box-shadow: 0 18px 55px rgba(116, 42, 20, 0.1);
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(201, 81, 42, 0.18);
  background: #fff;
  color: var(--ink);
  outline: none;
  font: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(201, 81, 42, 0.09);
}
.contact-form textarea {
  min-height: 120px;
  resize: none;
}
.contact-actions {
  display: flex;
  gap: 13px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.85;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    opacity 0.3s;
}
.footer-social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  opacity: 1;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}
.footer-social-btn.fb-wa {
  background: #25d366;
}
.footer-social-btn.fb-ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}
.footer-social-btn.fb-yt {
  background: #ff0000;
}
.footer-social-btn.fb-fb {
  background: #1877f2;
}
footer {
  padding: 56px 0 0;
  background: #1f120d;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 28px;
}
footer h4 {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.28);
  font-family: "Outfit", sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
footer li,
.footer-links a {
  margin-bottom: 8px;
  display: block;
  font-size: 0.86rem;
  transition: color 0.2s;
}
footer a:hover,
.footer-links a:hover {
  color: #fff;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.footer-brand-mark,
.footer-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(201, 81, 42, 0.24);
}
.footer-brand-text {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}
.footer-brand-text span {
  display: block;
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.84rem;
}
.footer-desc {
  font-size: 0.85rem;
  max-width: 290px;
  line-height: 1.68;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.26);
  font-size: 0.76rem;
}
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px 14px;
  background: rgba(36, 20, 15, 0.54);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.modal {
  width: min(100%, 480px);
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  overscroll-behavior: contain;
  margin: auto;
  padding: clamp(18px, 4vw, 38px);
  border: 1px solid rgba(201, 81, 42, 0.2);
  border-radius: 20px;
  background: linear-gradient(160deg, #fff, #fff0ea);
  box-shadow: 0 28px 80px rgba(36, 20, 15, 0.26);
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 81, 42, 0.25) transparent;
}
.modal::-webkit-scrollbar {
  width: 4px;
}
.modal::-webkit-scrollbar-track {
  background: transparent;
}
.modal::-webkit-scrollbar-thumb {
  background: rgba(201, 81, 42, 0.25);
  border-radius: 4px;
}
.modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  background: transparent;
  color: var(--muted);
  font-size: 1.3rem;
  padding: 4px 8px;
  line-height: 1;
  z-index: 1;
}
.modal h2 {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.1;
  text-align: center;
}
.modal .mini {
  margin: 7px 0 18px;
  color: var(--muted);
  text-align: center;
  font-size: 0.86rem;
}
.form-grid {
  display: grid;
  gap: 12px;
}
label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(201, 81, 42, 0.09);
}
.error {
  display: none;
  color: var(--red);
  font-size: 0.8rem;
  text-align: center;
}
.upi-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 11px;
}
.upi-opt {
  padding: 11px 7px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
}
.success-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--gold));
  font-size: 1.8rem;
}
.login-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--card);
  box-shadow: var(--sh-md);
}
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.78s var(--ease),
    transform 0.78s var(--ease);
}
.reveal {
  transform: translateY(34px);
}
.reveal-left {
  transform: translateX(-34px);
}
.reveal-right {
  transform: translateX(34px);
}
.reveal.up,
.reveal-left.up,
.reveal-right.up {
  opacity: 1;
  transform: translate(0);
}
@media (max-width: 1200px) {
  .topics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .hero-grid,
  .grid-2,
  .masterclass,
  .mentor-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 36px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .why-list {
    max-width: 520px;
    margin-inline: auto;
  }
  .event-img-wrap {
    order: -1;
  }
  .event-img {
    max-width: 360px;
    width: 100%;
  }
  .final-cta-img-wrap {
    order: -1;
    justify-content: center;
  }
  .final-cta-grid {
    text-align: center;
  }
  .final-cta-actions {
    justify-content: center;
  }
  .final-cta-content .sub {
    margin-inline: auto;
  }
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .learn-grid,
  .program-grid,
  .promise-grid,
  .testi-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mentor-card {
    position: static;
  }
  .hero-portrait-wrap {
    justify-content: center;
  }
  .hero-portrait,
  .img-luxury {
    max-width: 420px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: span 2;
  }
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .masterclass {
    grid-template-columns: 1fr;
  }
  .hero-right {
    position: static;
  }
  .price-card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }
  body {
    cursor: auto;
  }
  .wrap,
  .wrap-md {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  header {
    top: 8px;
    left: 8px;
    right: 8px;
    width: auto;
    transform: none;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav-inner {
    min-height: 60px;
    padding: 0 14px;
  }
  nav,
  .nav-actions .btn-red {
    display: none;
  }
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding: 8px;
  }
  .logo {
    height: 40px;
  }
  .brand-text strong {
    font-size: 14px;
  }
  .brand-text span {
    font-size: 10px;
  }
  .mob-nav {
    top: 76px;
    left: 8px;
    right: 8px;
    border-radius: 16px;
    z-index: 890;
  }
  .title {
    font-size: 30px;
    line-height: 1.12;
  }
  .sub {
    font-size: 15px;
    line-height: 1.72;
  }
  #hero {
    padding-top: 96px;
    padding-bottom: 52px;
    background:
      radial-gradient(
        ellipse 80% 50% at 80% 20%,
        rgba(201, 81, 42, 0.1),
        transparent 65%
      ),
      linear-gradient(180deg, #fffaf6, #fff0ea 70%, #fffaf6);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-left {
    text-align: center;
  }
  .hero-h {
    font-size: 32px;
    line-height: 1.1;
  }
  .hero-desc,
  .hero-copy {
    font-size: 15px;
    line-height: 1.75;
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .hero-btns .btn-red,
  .hero-btns .btn-ghost {
    width: 100%;
  }
  .hero-portrait-wrap {
    width: 100%;
    justify-content: center;
    overflow: visible;
  }
  .hero-portrait,
  .img-luxury {
    width: 100%;
    max-width: 300px;
    max-height: none;
    height: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    margin: 0 auto;
  }
  .hero-badge {
    display: none;
  }
  .hero-social-row {
    justify-content: center;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border: none;
    background: transparent;
    box-shadow: none;
  }
  .stat-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--sh-sm);
    padding: 12px 14px;
    border-right: 1px solid var(--border) !important;
  }
  .hero-portrait-glow,
  .event-img-glow,
  .final-cta-glow {
    filter: blur(20px);
    opacity: 0.5;
  }
  .program-card.featured::before {
    animation: none;
    background: none;
  }
  .grid-2,
  .learn-grid,
  .program-grid,
  .promise-grid,
  .testi-grid,
  .testimonials-grid,
  .topics-grid,
  .pillars,
  .masterclass,
  .mentor-grid,
  .final-cta-grid,
  .why-grid,
  .before-after {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .before-after {
    margin-top: 28px;
  }
  .ba-mid {
    display: none;
  }
  .ba-col {
    padding: 20px 18px;
  }
  .ba-col h3 {
    font-size: 0.68rem;
    margin-bottom: 12px;
  }
  .ba-col li {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .ba-col ul {
    gap: 9px;
  }
  .masterclass {
    margin-top: 24px;
  }
  .master-panel::after {
    display: none;
  }
  .master-list {
    gap: 8px;
    margin: 12px 0 16px;
  }
  .pillars {
    gap: 12px;
    margin-top: 24px;
  }
  .learn-grid,
  .topics-grid {
    gap: 12px;
    margin-top: 24px;
  }
  .testi-grid,
  .testimonials-grid {
    gap: 14px;
    margin-top: 28px;
  }
  .promise-grid {
    gap: 12px;
    margin-top: 24px;
  }
  .program-grid {
    gap: 16px;
    margin-top: 28px;
  }
  .faq-col {
    gap: 8px;
    margin-top: 28px;
  }
  .card,
  .learn-card,
  .program-card,
  .testi-card,
  .pillar-card,
  .promise-card,
  .issue-card {
    padding: 16px;
  }
  .testi-card blockquote {
    font-size: 0.9rem;
    line-height: 1.78;
  }
  .faq-a {
    font-size: 0.875rem;
    line-height: 1.78;
  }
  .faq-q {
    font-size: 0.88rem;
    padding: 14px 16px;
  }
  .faq-item.open .faq-a {
    padding: 0 16px 14px;
  }
  .card p,
  .learn-card .card-text span,
  .promise-card .card-text span {
    font-size: 0.875rem;
    line-height: 1.75;
  }
  .program-price {
    font-size: 1.9rem;
    padding-top: 10px;
  }
  .program-card > p,
  .program-card li {
    font-size: 0.875rem;
  }
  .program-card ul {
    margin: 10px 0;
  }
  .program-card .btn-red {
    width: 100%;
    margin-top: 10px;
  }
  .cred-box {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
  }
  .about-mission {
    margin-top: 18px;
    padding: 18px;
  }
  .belief-box {
    margin-top: 12px;
    padding: 16px 18px 16px 18px;
  }
  .mentor-card {
    position: static;
  }
  .mentor-grid {
    gap: 24px;
  }
  .final-cta-img-wrap {
    order: -1;
    width: 100%;
    overflow: visible;
  }
  .final-cta-img {
    max-width: 280px;
    max-height: none;
    height: auto;
    object-fit: contain;
    object-position: center top;
    margin: 0 auto;
  }
  .final-cta-grid {
    text-align: center;
    gap: 28px;
  }
  .final-cta-actions {
    justify-content: center;
  }
  .final-cta-content .sub {
    margin-inline: auto;
  }
  .event-img {
    max-width: 280px;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    margin: 0 auto;
  }
  .event-img-wrap {
    order: -1;
  }
  .why-grid {
    gap: 24px;
    text-align: center;
  }
  .why-list {
    max-width: 100%;
    margin-inline: 0;
    gap: 10px;
  }
  .why-item {
    padding: 13px 16px;
    font-size: 0.88rem;
  }
  .contact-form {
    padding: 18px;
    margin-top: 28px;
  }
  .contact-form .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-actions {
    flex-direction: column;
    gap: 10px;
  }
  .contact-actions a,
  .contact-actions button {
    width: 100%;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-grid > div:first-child {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  footer {
    padding-top: 40px;
  }
  footer li,
  .footer-desc {
    font-size: 0.875rem;
  }
  .float-btns {
    right: 12px;
    bottom: 16px;
    gap: 8px;
  }
  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
  .btn-red,
  .btn-ghost,
  .btn-white,
  .btn,
  .btn-primary {
    white-space: normal;
    text-align: center;
  }
  .detail {
    flex-direction: column;
    gap: 2px;
  }
  .detail strong {
    text-align: left;
  }
  .upi-options {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .hero-h {
    font-size: 28px;
  }
  .title {
    font-size: 26px;
  }
  .hero-portrait,
  .img-luxury {
    max-width: 260px;
  }
  .final-cta-img {
    max-width: 240px;
  }
  .stat-num {
    font-size: 1.3rem;
  }
  .cred-box {
    grid-template-columns: 1fr;
  }
  .master-title {
    font-size: 22px;
  }
  .price,
  .price-tag {
    font-size: 2.4rem;
  }
  .program-price {
    font-size: 1.7rem;
  }
  .hb-1,
  .hb-2 {
    display: none;
  }
  header {
    z-index: 900;
  }
  .hamburger {
    position: relative;
    z-index: 901;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 375px) {
  .brand-text {
    display: none;
  }
  .logo {
    height: 36px;
  }
  .nav-inner {
    padding: 0 10px;
  }
  .mob-nav {
    top: 66px;
    left: 6px;
    right: 6px;
  }
  header {
    left: 6px;
    right: 6px;
  }
  .hero-h {
    font-size: 26px;
  }
  .hero-portrait,
  .img-luxury {
    max-width: 240px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.wa-modal {
  max-width: 460px;
}
.wa-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.3);
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-icon-orange {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 40px rgba(201, 81, 42, 0.28);
  animation: none;
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 18px 52px rgba(37, 211, 102, 0.45);
    transform: scale(1.05);
  }
}
.wa-name {
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.wa-name:empty {
  display: none;
}
.wa-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  text-align: left;
}
.wa-step {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 12px 16px;
  border: 1px solid rgba(201, 81, 42, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.55;
}
.wa-step-n {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition:
    transform 0.28s,
    box-shadow 0.28s;
}
.btn-wa + .btn-wa {
  margin-top: 10px;
}
.btn-wa-join {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}
.btn-wa-join:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.4);
}
.btn-wa-verify {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 10px 28px rgba(201, 81, 42, 0.28);
}
.btn-wa-verify:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(201, 81, 42, 0.38);
}
.wa-gate-overlay {
  z-index: 3000;
}
.coming-soon-modal {
  max-width: 500px;
  overflow: visible;
}
.cs-burst {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cs-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(201, 81, 42, 0.18);
  animation: csExpand 2.8s ease-out infinite;
  pointer-events: none;
}
.cs-ring-1 {
  width: 72px;
  height: 72px;
  animation-delay: 0s;
}
.cs-ring-2 {
  width: 54px;
  height: 54px;
  animation-delay: 0.4s;
  border-color: rgba(201, 81, 42, 0.28);
}
.cs-ring-3 {
  width: 36px;
  height: 36px;
  animation-delay: 0.8s;
  border-color: rgba(201, 81, 42, 0.4);
}
@keyframes csExpand {
  0% {
    opacity: 0.9;
    transform: scale(1);
  }
  70% {
    opacity: 0.2;
    transform: scale(1.6);
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}
.cs-icon {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 10px 28px rgba(201, 81, 42, 0.36);
  animation: csRocket 3s ease-in-out infinite;
}
@keyframes csRocket {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-5px) rotate(-10deg);
  }
}
.cs-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--red-pale);
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}
.cs-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--red), var(--gold-h));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-sub {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.72;
  max-width: 380px;
  margin: 0 auto 16px;
}
.cs-features {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}
.cs-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.cs-feat i {
  color: var(--red);
  width: 15px;
  text-align: center;
  flex-shrink: 0;
}
.cs-notify-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cs-notify-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.cs-input {
  flex: 1;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.87rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.cs-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(201, 81, 42, 0.09);
}
.cs-mini-note {
  margin-top: 7px;
  font-size: 0.78rem;
  min-height: 16px;
}
button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}
@media (max-width: 768px) {
  .wa-steps {
    gap: 8px;
  }
  .wa-step {
    font-size: 0.82rem;
    padding: 10px 12px;
  }
  .cs-notify-row {
    flex-direction: column;
  }
  .cs-notify-row .btn-red {
    width: 100%;
  }
  .cs-sub {
    font-size: 0.83rem;
  }
  .cs-feat {
    font-size: 0.8rem;
    padding: 8px 11px;
  }
  .coming-soon-modal {
    padding: 20px 16px 24px;
  }
}
@media (max-width: 480px) {
  .cs-burst {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  .cs-ring-1 {
    width: 60px;
    height: 60px;
  }
  .cs-ring-2 {
    width: 44px;
    height: 44px;
  }
  .cs-ring-3 {
    width: 30px;
    height: 30px;
  }
  .cs-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .cs-title {
    font-size: 1.55rem;
  }
  .cs-badge {
    font-size: 0.58rem;
  }
}
body.overlay-open {
  overflow: hidden !important;
}
.stats-band {
  background: var(--red);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
}
.stat-block {
  background: rgba(0, 0, 0, 0.12);
  padding: 32px 16px;
  text-align: center;
}
.stat-ico {
  font-size: 22px;
  margin-bottom: 10px;
  opacity: 0.7;
}
.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}
.stat-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(245, 200, 66, 0.18);
  color: #f5c842;
  padding: 2px 10px;
  border-radius: 20px;
}

/* Premium Horizontal Program Banner */
.program-banner {
  margin-top: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  padding: 40px;
  box-shadow: var(--sh-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  transition: var(--t);
  text-align: left;
}
.program-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(184, 62, 24, 0.3);
}
.program-banner-left {
  flex: 2;
}
.program-banner-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid var(--border);
  padding-left: 40px;
  min-width: 240px;
}
.program-banner-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.program-banner-features li {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.program-banner-features li i {
  color: var(--red);
}

@media (max-width: 991px) {
  .program-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 30px;
    gap: 30px;
  }
  .program-banner-right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 30px;
    align-items: center;
    text-align: center;
  }
}
