/*@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");*/
:root {
  --primary: #0b2fa5;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --accent: #07107e;
  --success: #4caf50;
  --danger: #f44336;
  --dark: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;
  --light: #f1f5f9;
}
@font-face {
  font-family: 'Poppins';
  src: url('/front/poppins-webfont/poppins-700.woff2') format('woff2');
  font-display: swap;
}

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

body {
  font-family: "Poppins", sans-serif !important;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--dark);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

.fixed-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
}
.fixed-header.active {
  position: fixed;
  top: initial;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: headerFadeSlide 0.4s ease forwards;
  background: #0b2fa5;
}

@keyframes headerFadeSlide {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fixed-header.scrolled {
  background: rgba(7, 16, 126, 0.95);
  padding: 8px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.fixed-header .prize {
  display: none;
}
.fixed-header.active .prize span {
  font-size: 15px;
  font-weight: 300;
  opacity: 0.8;
}
.fixed-header.active .prize {
  display: block;
  color: white;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.fixed-header.active .header-logo img {
  display: none;
}
.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.header-logo img:hover {
  transform: scale(1.05);
}

.countdown-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}

.countdown-label {
  color: #ffbf00;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.timer-compact {
  display: flex;
  gap: 8px;
}

.timer-box-compact {
  background: rgba(5, 20, 104, 0.8);
  backdrop-filter: blur(10px);
  padding: 6px 10px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 191, 0, 0.3);
  min-width: 50px;
}

.timer-number-compact {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
}

.timer-label-compact {
  font-size: 0.6rem;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  display: block;
}

.header-cta {
  flex-shrink: 0;
}

.header-cta .cta-btn {
  background: linear-gradient(135deg, #c49d27 0%, #ffbf00 100%);
  color: white;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 191, 0, 0.4);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.header-cta .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 191, 0, 0.6);
  color: white;
}

/* Hero Section */
.hero-section {
  min-height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 109px 0 45px 0;
  background: #0b2fa5;
  position: relative;
}
.hero-section:after {
  content: "";
  position: absolute;
  top: -229px;
  right: -170px;
  width: 600px;
  height: 600px;
  border: 100px solid #ffffff08;
  border-radius: 50%;
  animation: ittranslateX2 4s infinite alternate;
}
.hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("{{ asset("front/imgs/bg-before.png") }}");
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

/* Floating particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 0;
}

.particle {
  position: absolute;
  background: rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  width: 60px;
  height: 60px;
  left: 80%;
  animation-delay: 2s;
}
.particle:nth-child(3) {
  width: 100px;
  height: 100px;
  left: 50%;
  animation-delay: 4s;
}
.particle:nth-child(4) {
  width: 40px;
  height: 40px;
  left: 30%;
  animation-delay: 1s;
}
.particle:nth-child(5) {
  width: 70px;
  height: 70px;
  left: 70%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  50% {
    transform: translateY(-800px) rotate(180deg);
    opacity: 0.5;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-1000px) rotate(360deg);
    opacity: 0;
  }
}

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

h1.hero-title {
  font-size: 55px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
}
h1.hero-title span {
  position: relative;
  color: #ffbf00;
  font-weight: 800;
}


.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 300;
  font-size: 25px;
}

.cta-btn {
  background: linear-gradient(135deg, #c49d27 0%, #ffbf00 100%);
  color: white;
  padding: 14px 35px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 30px 80px rgba(99, 102, 241, 0.6);
  color: white;
  outline: none;
}

/* Glass card for countdown */
.countdown-timer {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 25px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.timer-box {
  background: rgb(5 20 104);
  backdrop-filter: blur(10px);
  padding: 14px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.timer-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.timer-number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  background: linear-gradient(135deg, #fff, #c7d2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timer-label {
  font-size: 0.75rem;
  opacity: 0.9;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Webinar Details */
.webinar-details {
  background: var(--light);
  padding: 40px 0;
}

.detail-box {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.detail-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.comparison-box h3 br {
  display: none;
}
.comparison-item span {
  padding-left: 8px;
}
h2.section-title.text-white.reveal.active {
  -webkit-text-fill-color: white;
}
.detail-box:hover::before {
  opacity: 1;
}

.detail-box:hover {
  transform: translateY(-15px) rotate(2deg);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
  border-color: var(--primary);
}

.detail-box:hover .detail-icon,
.detail-box:hover h4,
.detail-box:hover p {
  color: white;
  position: relative;
  z-index: 1;
  -webkit-text-fill-color: aliceblue;
}

.detail-icon {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}

.detail-box h4,
.detail-box p {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

/* Sections */
.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 11px;
  background: linear-gradient(135deg, var(--dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.section-subtitle {
  font-size: 20px;
  color: var(--dark-700);
  text-align: center;
  margin-bottom: 40px;
}

/* Problem cards with slide-in animation */
.problem-section {
  padding: 50px 0;
  background: white;
}
.problem-section .problem-card{
    width: 48%;
}
.problem-card {
    background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
    border-left: 5px solid var(--danger);
    padding: 26px;
    margin-bottom: 22px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateX(-50px);
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.problem-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.problem-card:hover {
  transform: translateX(20px) scale(1.02);
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.2);
}

.problem-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 15px;
}

/* Solution cards */
.solution-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #edf6ff 0%, #ede9fe 100%);
  position: relative;
  overflow: hidden;
}

.solution-card {
  background: white;
  padding: 25px;
  border-radius: 25px;
  margin-bottom: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border-top: 5px solid var(--success);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(50px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.solution-card:hover::before {
  opacity: 1;
  top: -25%;
  right: -25%;
}

.solution-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.solution-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 25px 70px rgba(16, 185, 129, 0.25);
}

.solution-icon {
  font-size: 48px;
  background: linear-gradient(135deg, var(--success), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
}
h4.solution-title {
  font-size: 20px;
}
.solution-card p {
  font-size: 14px;
  opacity: 0.8;
}
/* Comparison boxes */
.before-after-section {
  padding: 50px 0;
  background: white;
}

.comparison-box {
  padding: 25px;
  border-radius: 30px;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.comparison-box::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: top 0.5s;
}

.before-box {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 3px solid var(--danger);
}

.before-box::before {
  background: linear-gradient(135deg, transparent, rgba(239, 68, 68, 0.1));
}

.before-box:hover::before {
  top: 0;
}

.after-box {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border: 3px solid var(--success);
}

.after-box::before {
  background: linear-gradient(135deg, transparent, rgba(16, 185, 129, 0.1));
}

.after-box:hover::before {
  top: 0;
}

.comparison-box:hover {
  transform: scale(1.05);
}

.comparison-item {
  padding: 15px 0 0 0;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.5s forwards;
}

.comparison-item:nth-child(2) {
  animation-delay: 0.1s;
}
.comparison-item:nth-child(3) {
  animation-delay: 0.2s;
}
.comparison-item:nth-child(4) {
  animation-delay: 0.3s;
}
.comparison-item:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Trust section */
.trust-section {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.brand-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
}

.brand-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.brand-item img {
  transition: transform 0.4s;
}

.brand-item:hover img {
  transform: scale(1.1);
}

/* Feature boxes */
.feature-box {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, #fff 100%);
  padding: 22px;
  border-radius: 20px;
  margin-bottom: 25px;
  border-left: 5px solid var(--primary);
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
  transform: translateX(15px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, #fff 100%);
}

/* Accordion */
.accordion-button {
  background: white;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 25px;
  border-radius: 15px !important;
  transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Final CTA */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(-45deg, #0f172a, #1e293b, #312e81, #1e1b4b);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Modal enhancements */
.modal-content {
  border-radius: 30px;
  overflow: hidden;
  border: none;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.modal-header {
  padding: 30px;
  border: none;
}

.modal-body {
  padding: 40px;
}

.form-control,
.form-select {
  padding: 15px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Pulse animation */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.6);
  }
}

.pulse-btn {
  animation: pulse 2s infinite;
}
.before-after-section img {
  margin-bottom: 24px;
  border-radius: 12px;
}
/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  h1.hero-title {
    font-size: 30px;
  }

  .countdown-timer {
    padding: 25px;
  }

  .timer-number {
    font-size: 2rem;
  }

  .detail-box,
  .problem-card,
  .solution-card,
  .comparison-box {
    padding: 25px;
  }
}

#chat-popup {
  z-index: 99 !important;
}
img.wathsapp-fixed {
  position: fixed;
  left: 3px;
  bottom: 4px;
  width: 83px;
  border-radius: 38%;
}
.youtube-video {
  position: relative;
}
.youtube-video button {
  position: absolute;
  bottom: 0;
  right: 0;
}
.hero-subtitle b {
  font-weight: 700;
}
.youtube-video iframe {
  border: 20px solid white;
  border-radius: 15px;
  box-shadow: 0px 0px 5px #000000;
}
@keyframes ittranslateX2 {
  0% {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translatXY(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
  }
}
img.hm-ic1 {
  filter: brightness(0) invert(1);
  opacity: 0.1;
  position: absolute;
  top: 42%;
  left: 4%;
  width: 20%;
  animation: ittranslateX2 4s infinite alternate;
}
img.hm-ic2 {
  filter: brightness(0) invert(1);
  opacity: 0.1;
  position: absolute;
  top: 56%;
  right: 2%;
  width: 23%;
  animation: ittranslateX2 4s infinite alternate;
}
.session-card {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: #fff9ee;
  border: 2px solid #ffd28a;
  border-radius: 18px;
  padding: 20px;
  max-width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Individual item */
.session-item {
  /*flex: 1 1 calc(50% - 16px);*/
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.session-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Icon */
.session-icon {
  font-size: 26px;
  color: #ff9900;
  flex-shrink: 0;
}

/* Text */
.session-text span {
  font-size: 13px;
  color: #595959;
  display: block;
}

.session-text strong {
  font-size: 16px;
  color: #222;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 576px) {
  .session-item {
    flex: 1 1 47%;
  }
}
.logos-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 5%,
    rgb(0, 0, 0) 95%,
    rgb(0 0 0 / 0%) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 12.5%,
    rgb(0, 0, 0) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
  margin-top: 50px;
}
.logos-list {
  display: flex;
  animation: scroll-logos 25s linear infinite;
}

.logos-list img {
  height: 60px; /* adjust */
  margin: 0 20px;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.client-logos {
  background-image: url(../imgs/logos.jpg);
  padding: 61px 0;
  background-size: contain;
}

.logos-list img {
  height: 100px;
  margin: 0 30px;
  width: 150px;
  object-fit: contain;
  background: white;
  border-radius: 12px;
}
.pricing {
  width: 100%;
  padding: 50px 0;
  background: #edf6ff;
}

.pricing .header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing .header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.pricing .pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e1e1e1;
}

.pricing .item {
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dee5ef 0%, #c6ceda 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing .item p {
  margin: 0;
}
.pricing .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing .main-training {
  background: linear-gradient(135deg, #0b2fa5 0%, #061974 100%);
  color: white;
}

.pricing .bonus-item {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.pricing .item-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing .item-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

.pricing .item-price {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: right;
  white-space: nowrap;
  margin-left: 20px;
}

.pricing .gift-icon {
  font-size: 1.5rem;
  margin-right: 10px;
}

.pricing .final-price .label {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.pricing .final-price .price {
  font-size: 3rem;
  font-weight: bold;
}

.pricing .discount-badge {
  display: inline-block;
  background: #ff6b6b;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .pricing .header h1 {
    font-size: 1.8rem;
  }

  .pricing .pricing-card {
    padding: 25px;
  }

  .pricing .item {
    flex-direction: column;
    text-align: center;
  }

  .pricing .item-price {
    margin-left: 0;
    margin-top: 2px;
    line-height: normal;
  }

  .pricing .final-price .price {
    font-size: 2.5rem;
    line-height: 1;
  }
}
.pricing-summary {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 24px;
  padding: 20px;
  max-width: 450px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.pricing-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #ef4444, #ec4899);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-row span:first-child {
  color: #94a3b8;
  font-size: 16px;
  font-weight: 500;
}

.price-row span:last-child {
  color: #e2e8f0;
  font-size: 20px;
  font-weight: 600;
}

.total-price span:last-child {
  text-decoration: line-through;
  color: #64748b;
}

.regular-price span:last-child {
  text-decoration: line-through;
  color: #64748b;
}

.pricing-summary .final-price {
  margin-top: 28px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.pricing-summary .final-price::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.pricing-summary .final-price .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  opacity: 0.95;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.pricing-summary .final-price .price {
  font-size: 56px;
  font-weight: 800;
  margin: 12px 0;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.pricing-summary .discount-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}

.pricing-summary .cta-button {
  margin-top: 24px;
  width: 100%;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border: none;
  border-radius: 12px;
  padding: 18px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
  position: relative;
  overflow: hidden;
}

.pricing-summary .cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.pricing-summary .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(239, 68, 68, 0.5);
}

.pricing-summary .cta-button:active {
  transform: translateY(0);
}

.pricing-summary .button-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pricing-summary .timer {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@media (max-width: 480px) {
  .pricing-summary .pricing-summary {
    padding: 28px;
  }

  .pricing-summary .final-price .price {
    font-size: 48px;
  }

  .pricing-summary .cta-button {
    font-size: 16px;
    padding: 16px;
  }

  .pricing-summary .button-content {
    flex-direction: column;
    gap: 8px;
  }
}
.trainer {
  background: #fff;
  padding: 50px 0;
}

.trainer .trainer-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

/* CARD */
.trainer .trainer-card {
  border: 2px solid #0b2fa5;
  border-radius: 14px;
  padding: 28px;
  position: relative;
}

.trainer .trainer-card h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.trainer .trainer-card p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.trainer .trainer-card ul {
  padding-left: 18px;
  margin-top: 15px;
  padding-right: 184px;
}

.trainer .trainer-card li {
  margin-bottom: 10px;
  font-size: 15px;
}

.trainer .highlight {
  font-weight: 600;
}

/* STATS */
.trainer .stats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.trainer .stats h3 {
  font-size: 26px;
  color: #0b2fa5;
  margin: 0;
}

.trainer .stats span {
  font-size: 14px;
  color: #555;
}

/* FOOTER STRIP */
.trainer .footer-strip {
  background: #0b2fa5;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 0 0 12px 12px;
  margin-top: 25px;
  font-size: 13px;
}

/* BADGE */
.trainer .badge {
  position: absolute;
  bottom: 59px;
  right: 0;
  /* background: #fff; */
  border-radius: 10px;
  padding: 10px;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, .15); */
}
.trainer .badge img {
  width: 185px;
}

/* GALLERY */
.trainer .gallery {
  overflow: hidden;
  position: relative;
  height: 501px;
}

.trainer .gallery-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scrollUp 20s linear infinite;
}

.trainer .gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* =============================
   MOBILE RESPONSIVE
============================= */

@media (max-width: 900px) {
  .trainer .trainer-wrap {
    grid-template-columns: 1fr;
  }

  .trainer .gallery {
    height: 280px;
    margin-top: 20px;
  }

  .trainer .badge {
    position: static;
    margin: 15px 0 0;
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .trainer .section-title {
    font-size: 24px;
  }

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

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

  .trainer .trainer-card p,
  .trainer .trainer-card li {
    font-size: 14px;
  }

  .trainer .stats h3 {
    font-size: 22px;
  }

  .trainer .footer-strip {
    font-size: 12px;
  }
}
.col-md-3 .feature-box .h4 {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    color: #0c2369;
}
.col-md-3 .feature-box img {
    height: 150px;
    object-fit: contain;
    margin-bottom: 6px;
}
.col-md-3 .feature-box {
    border-top: 4px solid var(--primary);
    border-left: 0;
}
/*.youtube-video:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff000000;
}*/
button#muteBtn {
    position: absolute;
    bottom: 3%;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    width: max-content;
    background: #0b2fa5;
    color: white;
    border: 3px solid white;
    padding: 4px 8px;
    border-radius: 22px;
}





























@media only screen and (max-width: 767px) {
  .header-content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .fixed-header a.cta-btn {
    display: none;
  }
  .countdown-compact {
    flex-wrap: wrap;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .cta-btn {
    background: linear-gradient(135deg, #c49d27 0%, #ffbf00 100%);
    color: white;
    padding: 8px 19px;
    font-size: 14px;
  }
  .hero-section {
    padding: 197px 0 45px 0;
  }
  .youtube-video iframe {
    width: 100%;
    height: 193px;
    border-width: 6px;
  }
  .session-item {
    gap: 7px;
    padding: 10px 8px;
  }
  .session-text strong {
    font-size: 14px;
  }
  .session-text {
    line-height: 1.2;
  }
  .problem-section,
  .solution-section,
  .before-after-section,
  .trust-section {
    padding: 20px 0;
  }
  .section-title {
    font-size: 25px;
    margin-bottom: 8px;
  }
  .section-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .problem-title {
    font-size: 18px;
  }
  .problem-title i {
    position: absolute;
    left: 0;
  }
  .problem-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
  }
  .solution-card {
    margin-bottom: 0;
  }
  .text-center.mt-5.reveal.active h3 {
    font-size: 20px !important;
  }
  .text-center.mt-5.reveal.active {
    margin-top: 23px !important;
  }
  .logos-list img {
    height: 63px;
    margin: 0 5px;
    width: 100px;
  }
  .feature-box h4 {
    font-size: 18px;
  }
  .feature-box {
    background: #e2e6f4;
    padding: 16px;
    margin-bottom: 15px;
  }
  .mt-5 {
    margin-top: 15px !important;
  }
  .mt-5 h4.problem-title {
    padding: 0;
  }
  .pricing .item-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .pricing .item-content p {
    font-size: 12px;
    line-height: normal;
  }
  .pricing .pricing-summary {
    margin-top: 0;
    padding-top: 0;
  }
  .pricing .price-row {
    padding: 5px 0;
    font-size: 1.2rem;
  }
  .hero-section:after {
    display: none !important;
  }
  .sec-pd {
    padding: 20px 0 !important;
  }
  .fixed-header.active .countdown-compact {
    display: none;
  }
  .fixed-header.active a.cta-btn {
    display: inline;
  }
  .fixed-header.active a.cta-btn span {
    display: none;
  }
  .fixed-header.active .prize {
    font-size: 14px;
  }
  .cta-btn::before {
    display: none;
  }
  .trainer .trainer-card ul {
    padding-right: 0;
  }
  .trainer .stats h3 {
    font-size: 17px;
  }
  .trainer .badge {
    width: 100%;
    padding: 0;
  }
  .trainer .badge img {
    width: 100%;
  }
  .trainer .footer-strip {
    margin-top: 0;
  }
  .col-lg-8.mx-auto h2.reveal.active {
    font-size: 25px !important;
  }
/* Must match the desktop rule's specificity (.problem-section .problem-card),
   otherwise the 48% desktop width wins and the cards stay 2-up on phones. */
.problem-section .problem-card {
    width: 100%;
}




























  
}
