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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: #f7f8fa;
}

:root {
  /* Backgrounds */
  --cream: #f7f8fa;
  --cream-light: #eef3f8;
  --cream-dark: #e5ecf4;

  /* Primary Brand */
  --navy: #143d73;
  --navy-light: #25508e;

  /* Primary CTA */
  --crimson: #f97316;
  --crimson-dark: #ea580c;
  --crimson-light: #fb923c;
  --rose: #fdba74;

  /* Gold */
  --gold: #d4a017;
  --gold-light: #fff3cd;

  /* Success */
  --green: #15803d;
  --green-light: #eaf7ee;

  /* Error */
  --red: #dc2626;

  /* Base */
  --white: #ffffff;

  /* Typography */
  --text-dark: #1f2937;
  --text-mid: #4b5563;
  --text-light: #6b7280;

  /* Shadows */
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 35px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.1);
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  position: relative;
  overflow: hidden;
}

/* ===== CTA ===== */
.cta-btn {
  display: inline-block;
  padding: 18px 48px;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--crimson) 0%, var(--rose) 100%);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.28);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(165, 32, 68, 0.4);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn .strike {
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 500;
  margin-right: 4px;
}

.cta-btn-wrap {
  text-align: center;
  margin: 28px 0 0;
}

.tag {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--rose) 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.sec-title {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--navy);
}

.sec-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .sec-title {
    font-size: 26px;
  }

  .wrap {
    padding: 0 16px;
  }

  .cta-btn-wrap .cta-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
  }

  .tag {
    font-size: 13px;
    padding: 8px 20px;
  }
}

/* ===== COUNTDOWN ===== */
.countdown-strip {
  background: linear-gradient(
    90deg,
    var(--crimson-dark) 0%,
    var(--crimson) 100%
  );
  padding: 12px 24px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 200;
  display: none !important;
}

.countdown-strip .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #fff;
}

.countdown-strip .text {
  font-size: 14px;
  font-weight: 600;
}

.countdown-strip .timer {
  display: flex;
  gap: 4px;
}

.countdown-strip .timer .unit {
  background: rgba(0, 0, 0, 0.25);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  min-width: 38px;
  text-align: center;
  color: #fff;
}

.countdown-strip .timer .sep {
  font-size: 16px;
  font-weight: 800;
  opacity: 0.6;
  display: flex;
  align-items: center;
  color: #fff;
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: var(--cream);
  padding: 48px 0 56px;
  position: relative;
}

.hero-top {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.hero-hook {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--navy);
}

.hero h1 .highlight,
.highlight_s {
  color: var(--crimson);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 0;
}

.hero-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-photo-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.hero-columns > * {
  min-width: 0;
}

/* Outer frame */
.video-outer-frame {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 45, 90, 0.18);
  background: #14060d;
  position: relative;
  cursor: pointer;
}

.video-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background-color: #0e0408;
  background-image: url("./Images/thumbnail.png");
  background-size: cover;
  background-position: center;
}

.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(10 2 6 / 16%);
  z-index: 0;
}

.video-thumb-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.vplay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.vplay-btn:hover {
  transform: scale(1.1);
}

.vplay-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  cursor: pointer;
  animation: vplay-glow 2s ease-in-out infinite;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.vplay-btn:hover .vplay-circle {
  background: rgba(255, 255, 255, 0.42);
  border-color: #fff;
}

.vplay-circle::before,
.vplay-circle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 76px;
  height: 76px;
  animation: vplay-ring 2s ease-out infinite;
}

.vplay-circle::after {
  animation-delay: 0.7s;
}

@keyframes vplay-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes vplay-glow {
  0%,
  100% {
    box-shadow:
      0 0 16px 6px rgba(255, 255, 255, 0.2),
      0 0 36px 12px rgba(255, 255, 255, 0.08);
  }

  50% {
    box-shadow:
      0 0 28px 12px rgba(255, 255, 255, 0.35),
      0 0 60px 24px rgba(255, 255, 255, 0.15);
  }
}

.vplay-triangle {
  color: #fff;
  font-size: 26px;
  margin-left: 5px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.video-watch-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.vwc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  flex-shrink: 0;
}

.video-watch-caption .vwc-text {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}

.video-responsive-wrap {
  display: none;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.video-responsive-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .hero-photo-side {
    align-items: stretch;
  }

  .video-outer-frame {
    max-width: 100%;
    margin: 0;
  }
}

.hero-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-detail-card {
  background: var(--white);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-detail-card .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hero-detail-card .detail-text .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-detail-card .detail-text .value {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2px;
}

.hero-cta-wrap {
  text-align: center;
  margin-top: 8px;
}

.hero-cta-wrap .cta-btn {
  width: 100%;
  padding: 18px 24px;
  font-size: 17px;
}

.limited-text {
  text-align: center;
  font-size: 15px;
  color: var(--crimson);
  font-weight: 600;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .hero {
    padding: 15px 0 36px;
  }

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

  .hero-hook {
    font-size: 16px;
  }

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

  .hero-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-details-grid {
    max-width: 100%;
    margin: 0;
  }

  .hero-detail-card {
    padding: 12px 12px;
    gap: 10px;
  }

  .hero-detail-card .icon-circle {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .hero-detail-card .detail-text .value {
    font-size: 13px;
  }

  .hero-detail-card .detail-text .label {
    font-size: 10px;
  }

  .hero-cta-wrap {
    max-width: 100%;
    margin: 8px 0 0;
  }

  .hero-cta-wrap .cta-btn {
    font-size: 16px;
    padding: 16px 20px;
  }
}

/* ===========================
   PROBLEM
   =========================== */
.problem {
  background: var(--white);
  padding: 64px 0;
}

.problem .sec-title {
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.problem-card {
  padding: 24px 22px;
  background: var(--cream-light);
  border-radius: 16px;
  border-left: 4px solid var(--red);
  transition: transform 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.problem-card .emoji {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

.problem-close {
  text-align: center;
  padding: 28px 24px;
  background: linear-gradient(135deg, #eef6ff 0%, #f7fbff 100%);
  border-radius: 16px;
}

.problem-close p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}

.problem-close .bold {
  font-weight: 700;
  color: var(--crimson);
  font-size: 18px;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .problem {
    padding: 48px 0;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ===========================
   RELIEF
   =========================== */
.relief {
  background: var(--cream);
  padding: 64px 0;
  text-align: center;
}

.relief-open {
  font-size: 22px;
  font-weight: 700;
  color: var(--crimson);
  margin-bottom: 16px;
}

.relief p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 10px;
}

.relief .bold-line {
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
}

.relief-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  margin: 28px auto 0;
  max-width: 620px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(165, 32, 68, 0.08);
}

.relief-card p {
  margin-bottom: 8px;
}

.relief-transition {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 700;
  color: var(--crimson);
}

.divider {
  width: 50px;
  height: 3px;
  background: var(--crimson);
  border-radius: 4px;
  margin: 0 auto 20px;
}

@media (max-width: 768px) {
  .relief {
    padding: 48px 0;
  }

  .relief-open {
    font-size: 19px;
  }

  .relief-card {
    padding: 24px 20px;
  }
}

/* ===========================
   LEARN
   =========================== */
.learn {
  background: var(--white);
  padding: 64px 0;
}

.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 750px;
  margin: 0 auto 32px;
}

.learn-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  background: var(--cream-light);
  border-radius: 14px;
  border-left: 4px solid var(--green);
  transition: transform 0.2s ease;
}

.learn-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.learn-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.learn-card p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}

.learn-bottom {
  text-align: center;
  padding: 24px;
  max-width: 620px;
  margin: 0 auto;
  background: var(--green-light);
  border-radius: 14px;
}

.learn-bottom p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

.learn-bottom strong {
  color: var(--green);
}

@media (max-width: 768px) {
  .learn {
    padding: 48px 0;
  }

  .learn-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ===========================
   COMPARE
   =========================== */
.compare {
  background: var(--cream);
  padding: 64px 0;
  text-align: center;
}

.compare-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto 32px;
}

.compare-box {
  padding: 28px 24px;
  border-radius: 16px;
  text-align: left;
}

.compare-box.bad {
  background: var(--white);
  border: 2px solid rgba(214, 48, 49, 0.15);
}

.compare-box.good {
  background: var(--white);
  border: 2px solid var(--green);
  box-shadow: var(--shadow-md);
}

.compare-label {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-box.bad .compare-label {
  color: var(--red);
}

.compare-box.good .compare-label {
  color: var(--green);
}

.compare-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-box li {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  line-height: 1.4;
}

.compare-box li .ico {
  font-size: 18px;
  flex-shrink: 0;
}

.compare-core {
  max-width: 620px;
  margin: 0 auto;
  padding: 24px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.compare-core p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}

.compare-core strong {
  color: var(--navy);
}

.compare-core .trust-line {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .compare {
    padding: 48px 0;
  }

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

/* ===== TESTIMONIALS (WhatsApp) ===== */

.video-section {
  padding: 60px 20px;
  background: #fff;
}

.video-wrapper {
  max-width: 1200px;
  margin: auto;

  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.video-card {
  flex: 1;
  max-width: 420px;

  background: #fff;
  border-radius: 24px;
  overflow: hidden;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
}

.video-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;

  transition: 0.3s ease;
}

.video-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
.play-button {
  width: 90px;
  height: 90px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.95);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 38px;
  color: #9d183a;

  box-shadow: 0 0 0 0 rgba(157, 24, 58, 0.5);

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(157, 24, 58, 0.45);
  }

  70% {
    box-shadow: 0 0 0 25px rgba(157, 24, 58, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(157, 24, 58, 0);
  }
}
.video-card video {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.12);
  transform-origin: center top;
  margin-top: -72px;
}

/* Tablet */

@media (max-width: 992px) {
  .video-wrapper {
    gap: 18px;
  }

  .video-card {
    max-width: 360px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .video-section {
    padding: 6px 16px 40px;
  }

  .video-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .video-card {
    width: 100%;
    max-width: 420px;
  }
}

.testi-wa {
  background: var(--white);
  padding: 64px 0;
  text-align: center;
}

.testi-wa-header {
  margin-bottom: 36px;
}

.testi-wa-header .tag {
  background: var(--green);
  border: none;
}

.testi-wa-header .sec-title {
  margin-bottom: 8px;
}

.testi-wa-header .sec-sub {
  margin-bottom: 0;
}

.testi-wa-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 0;
}

.testi-wa-card {
  flex: 0 0 calc(25% - 11px);
  max-width: calc(25% - 11px);
  background: var(--cream-light);
  border-radius: 16px;
  overflow: hidden;
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.testi-wa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-wa-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 8px;
  background: #fff;
  border-bottom: 1px solid rgba(46, 125, 79, 0.1);
}

.twa-wa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.twa-wa-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testi-wa-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .testi-wa-card {
    flex: 0 0 calc(33.33% - 10px);
    max-width: calc(33.33% - 10px);
  }
}

@media (max-width: 600px) {
  .testi-wa {
    padding: 48px 0;
  }
  .testi-wa-grid {
    gap: 12px;
  }
  .testi-wa-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ===========================
   WORKSHOP
   =========================== */
.workshop {
  background: linear-gradient(135deg, #143d73 0%, #1d4f91 50%, #2e65aa 100%);
  padding: 64px 0;
  text-align: center;
  color: #fff;
  position: relative;
}

.workshop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.workshop .inner {
  position: relative;
  z-index: 2;
}

.workshop .tag {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
}

.workshop .sec-title {
  color: #fff;
  font-size: 34px;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 32px;
}

.ws-detail {
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.ws-detail .emoji {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.ws-detail .label {
  font-size: 11px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ws-detail .val {
  font-size: 15px;
  font-weight: 700;
  margin-top: 4px;
}

.price-hero {
  margin: 32px auto;
  padding: 28px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
}

.price-old {
  font-size: 22px;
  text-decoration: line-through;
  opacity: 0.5;
  font-weight: 500;
}

.price-new {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--gold-light);
}

.price-label {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 4px;
}

.ws-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.ws-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

.workshop .cta-btn {
  background: linear-gradient(135deg, var(--white) 0%, #f5f5f5 100%);
  color: var(--crimson-dark);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.workshop .cta-btn:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.ws-urgency {
  margin-top: 16px;
  font-size: 15px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ws-comfort {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .workshop {
    padding: 40px 0;
  }

  .workshop .sec-title {
    font-size: 22px;
  }

  .workshop-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
  }

  .price-hero {
    max-width: 100%;
    padding: 20px;
  }

  .price-new {
    font-size: 40px;
  }

  .ws-badges {
    gap: 8px;
  }

  .ws-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* ===========================
   EMOTIONAL
   =========================== */
.emotional {
  background: var(--white);
  padding: 64px 0;
  text-align: center;
}

.emotional .sec-title {
  color: var(--crimson);
}

.emo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 780px;
  margin: 0 auto 32px;
}

.emo-card {
  padding: 24px 16px;
  border-radius: 16px;
  text-align: center;
  background: var(--cream-light);
  transition: transform 0.2s ease;
}

.emo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.emo-card .emoji {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.emo-card .title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.emo-card .sub {
  font-size: 13px;
  color: var(--text-light);
}

.identity-box {
  max-width: 620px;
  margin: 0 auto;
  padding: 32px 28px;
  background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 100%);
  border-radius: 16px;
  border: 1px solid rgba(201, 148, 26, 0.2);
}

.identity-box p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 6px;
}

.identity-box .strong-line {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--crimson);
  font-size: 22px;
}

.identity-box p:last-child {
  margin-bottom: 0;
}

.emo-close {
  margin-top: 20px;
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
}

@media (max-width: 768px) {
  .emotional {
    padding: 48px 0;
  }

  .emo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .emo-card {
    padding: 18px 12px;
  }

  .identity-box .strong-line {
    font-size: 18px;
  }
  .problem-card {
    display: flex;
    align-items: center;
  }
}

/* ===========================
   JUSTIFY
   =========================== */
.justify {
  background: var(--cream);
  padding: 64px 0;
  text-align: center;
}

.justify-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold-light);
  border: 1px solid rgba(201, 148, 26, 0.3);
  border-radius: 50px;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 32px;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
  margin: 0 auto 32px;
}

.value-item {
  padding: 20px 16px;
  background: var(--white);
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

.value-item .emoji {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.value-item p {
  font-size: 14px;
  color: var(--text-mid);
}

.justify-block {
  max-width: 560px;
  margin: 0 auto 24px;
  padding: 24px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.justify-block p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 6px;
}

.justify-block p:last-child {
  margin-bottom: 0;
}

.justify-core {
  max-width: 560px;
  margin: 0 auto 24px;
  padding: 24px;
  background: var(--green-light);
  border-radius: 14px;
  border: 1px solid rgba(46, 125, 79, 0.15);
}

.justify-core p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 6px;
}

.justify-core p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--green);
}

.justify-push {
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
}

@media (max-width: 768px) {
  .justify {
    padding: 48px 0;
  }

  .value-row {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 320px;
  }
}

/* ===========================
   WHO IS THIS FOR
   =========================== */
.for-who {
  background: var(--cream);
  padding: 64px 0;
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.for-who-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 45, 90, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.for-who-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.fw-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.fw-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fw-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.fw-sub {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Final highlight card spans full width */
.fw-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--cream-light) 0%, #fff 100%);
  border: 2px solid var(--crimson);
  padding: 20px 24px;
}

.fw-highlight .fw-title {
  font-size: 16px;
  color: var(--crimson);
}

.fw-highlight .fw-sub {
  font-size: 13px;
  color: var(--text-mid);
}

.fw-highlight .fw-icon {
  font-size: 32px;
}

@media (max-width: 768px) {
  .for-who {
    padding: 48px 0;
  }

  .for-who-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .fw-highlight {
    grid-column: 1 / -1;
  }

  .fw-title {
    font-size: 13px;
  }

  .fw-icon {
    font-size: 22px;
  }

  .for-who-card {
    padding: 14px 12px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .fw-highlight {
    flex-direction: row;
    align-items: flex-start;
  }

  .fw-sub {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .for-who-grid {
    grid-template-columns: 1fr;
  }

  .for-who-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .fw-icon {
    font-size: 24px;
  }

  .fw-title {
    font-size: 14px;
  }

  .fw-sub {
    font-size: 12px;
  }
}

/* ===========================
   FAQ
   =========================== */
.faq {
  background: var(--white);
  padding: 64px 0;
}

.faq .sec-title {
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--cream-light);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
  -webkit-tap-highlight-color: transparent;
}

.faq-q span.text {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq-q .arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 12px;
  color: var(--text-light);
}

.faq-item.active .faq-q .arrow {
  background: var(--crimson);
  color: #fff;
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}

.faq-a p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq {
    padding: 48px 0;
  }
}

/* ===========================
   FINAL
   =========================== */
.final {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0 80px;
  text-align: center;
  color: #fff;
  position: relative;
}

.final::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(165, 32, 68, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.final .inner {
  position: relative;
  z-index: 2;
}

.final .sec-title {
  color: #fff;
}

.final-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.final-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  font-size: 14px;
}

.final-check .ico {
  color: var(--green);
  font-size: 16px;
}

.final-identity {
  max-width: 560px;
  margin: 0 auto 28px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(247, 201, 72, 0.2);
}

.final-identity p {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 6px;
}

.final-identity .gold {
  color: var(--gold-light);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 22px;
  opacity: 1;
}

.final-identity p:last-child {
  margin-bottom: 0;
}

.final-push {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.final-push.bold {
  font-weight: 700;
  opacity: 1;
  margin-bottom: 28px;
}

.final .cta-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #daa520 100%);
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(201, 148, 26, 0.4);
}

.final .cta-btn:hover {
  box-shadow: 0 14px 36px rgba(201, 148, 26, 0.5);
}

.final-urgency {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.6;
  color: #fff;
}

.final-comfort {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.45;
  color: #fff;
}

@media (max-width: 768px) {
  .final {
    padding: 40px 0 60px;
  }

  .final-identity {
    padding: 22px 18px;
  }

  .final-identity .gold {
    font-size: 18px;
  }

  .final-checks {
    gap: 8px;
  }

  .final-check {
    font-size: 13px;
    padding: 8px 14px;
  }

  .final .cta-btn {
    width: 100%;
    padding: 16px 20px;
  }
}

/* ===== STICKY BAR ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 150;
  background: linear-gradient(90deg, #143d73, #25508e, #143d73);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.3);
}

.sticky-bar.show {
  transform: translateY(0);
}

.sticky-bar .inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sb-details {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
}

.sb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  flex-shrink: 0;
}

.sb-item:first-child {
  padding-left: 0;
}

.sb-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.sb-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sb-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  line-height: 1;
}

.sb-val {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}

.sb-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.sb-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--gold) 0%, #daa520 100%);
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 16px rgba(201, 148, 26, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sb-cta .sb-arrow {
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  margin-top: -1px;
}

.sb-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 148, 26, 0.5);
}

@media (max-width: 768px) {
  .sticky-bar {
    height: auto;
    padding: 8px 0 8px;
  }

  .sticky-bar .inner {
    flex-direction: column;
    gap: 7px;
    padding: 0 14px;
  }

  .sb-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
  }

  .sb-sep {
    display: none;
  }

  .sb-item {
    padding: 5px 8px;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
  }

  .sb-item:first-child {
    padding-left: 8px;
  }

  .sb-icon {
    width: 26px;
    height: 26px;
    font-size: 13px;
    border-radius: 6px;
  }

  .sb-label {
    font-size: 9px;
  }

  .sb-val {
    font-size: 12px;
  }

  .sb-cta {
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    font-size: 14px;
  }
}

.spacer {
  height: 90px;
}

@media (max-width: 768px) {
  .spacer {
    height: 140px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


  /* ===========================
   FOUNDER STORY
=========================== */

.founder-story{

    background:var(--white);
    padding:80px 0;

}

.founder-grid{

    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:start;

}

.founder-image{

    position:sticky;
    top:120px;

}

.founder-photo{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow-lg);

}

.founder-photo img{

    width:100%;
    display:block;

}

.founder-badge{

    background:var(--navy);
    color:#fff;
    padding:18px;
    text-align:center;
    font-weight:700;

}

.story-block{

    display:flex;
    flex-direction:column;
    gap:22px;

}

.story-block p{

    font-size:16px;
    line-height:1.9;
    color:var(--text-mid);

}

.story-highlight{

    background:var(--green-light);
    border-left:5px solid var(--green);
    padding:24px;
    border-radius:14px;
    color:var(--text-dark);

}

.founder-stats{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin:40px 0;

}

.stat-box{

    background:var(--cream);
    border-radius:16px;
    text-align:center;
    padding:22px 15px;
    box-shadow:var(--shadow);

}

.stat-box h3{

    color:var(--accent);
    font-size:30px;
    margin-bottom:8px;

}

.stat-box span{

    font-size:13px;
    color:var(--text-mid);

}

@media(max-width:768px){

.founder-story{

padding:50px 0;

}

.founder-grid{

grid-template-columns:1fr;
gap:30px;

}

.founder-image{

position:relative;
top:auto;

}

.founder-photo{

max-width:420px;
margin:auto;

}

.story-block{

gap:18px;

}

.story-block p{

font-size:15px;
line-height:1.8;

}

.founder-stats{

grid-template-columns:repeat(2,1fr);

}

.stat-box{

padding:18px 12px;

}

.stat-box h3{

font-size:24px;

}

}
 

