/* Global Reset & Variables */
:root {
  --primary-color: #0284c7;
  /* Sky Blue 600 */
  --primary-dark: #0369a1;
  /* Sky Blue 700 */
  --accent-color: #38bdf8;
  /* Sky Blue 400 */
  --secondary-color: #0f172a;
  /* Slate 900 */
  --text-color: #1e293b;
  /* Slate 800 */
  --text-light: #64748b;
  /* Slate 500 */
  --bg-white: #ffffff;
  --bg-light: #f1f5f9;
  /* Slate 100 */
  --bg-gradient: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  --bg-gradient-reverse: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 10px 10px -5px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.3);

  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --font-heading: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7);
  }

  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(2, 132, 199, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(56, 189, 248, 0.2);
  }

  50% {
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
  }

  100% {
    box-shadow: 0 0 5px rgba(56, 189, 248, 0.2);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.fade-in-left {
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.pulse-effect {
  animation: pulse 2s infinite;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight {
  color: var(--primary-color);
}

.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(2, 132, 199, 0.5);
}

.btn-primary small {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.btn-sm {
  background-color: var(--primary-color);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.btn-sm:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

/* Sales Popup */
.sales-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  max-width: 320px;
  border-left: 4px solid #10b981;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sales-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.sales-popup.hidden {
  display: none;
}

.popup-icon {
  font-size: 1.5rem;
  color: #10b981;
}

.popup-content {
  font-size: 0.9rem;
  line-height: 1.3;
}

.popup-time {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.2rem;
}

/* Banner Live Counter */
.live-counter-sticky {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #dc2626;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin: 0;
  text-align: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .live-counter-sticky {
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
    gap: 0.4rem;
  }

  .pulse-dot {
    width: 6px;
    height: 6px;
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

/* Hero Section */
.hero {
  padding: 4rem 0 5rem;
  background: var(--bg-gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e0f2fe;
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.headline {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  letter-spacing: -0.03em;
}

.subheadline {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* VSL */
.vsl-wrapper {
  margin-bottom: 3rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.vsl-container {
  overflow: hidden;
  position: relative;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(45deg, #0f172a, #1e293b);
}

.play-button {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-button:hover {
  transform: scale(1.1);
}

/* Media Logos Section */
.media-logos {
  margin: 2.5rem 0;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.media-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.media-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.media-logo {
  max-height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: grayscale(20%);
}

.media-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .media-logos {
    padding: 1.5rem 1rem;
  }

  .media-title {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .media-images {
    gap: 1rem;
  }

  .media-logo {
    max-height: 40px;
  }
}

.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.security-badges {
  display: flex;
  gap: 1.5rem;
  color: var(--text-light);
  font-size: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

.security-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Problem Section */
.problem {
  padding: 6rem 0;
  background-color: white;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card-feature {
  padding: 2.5rem 2rem;
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.card-feature:hover {
  transform: translateY(-8px);
  background-color: white;
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(2, 132, 199, 0.1);
  color: var(--primary-color);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-feature p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Solution / Benefits Redesign */
.solution {
  padding: 8rem 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.row {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  flex-wrap: wrap;
}

.col-text {
  flex: 1;
  min-width: 320px;
}

.col-image {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  position: relative;
}

.col-text h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  line-height: 1.1;
  background: linear-gradient(to right, #0f172a, #334155);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits-list li {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-list li:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-color);
}

.benefits-list i {
  color: white;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0;
  box-shadow: 0 4px 6px rgba(2, 132, 199, 0.2);
}

.benefits-list strong {
  display: block;
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.benefits-list p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.floating-card {
  background: white;
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.floating-card::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: conic-gradient(
    from 180deg at 50% 50%,
    #e0f2fe 0deg,
    #f0f9ff 180deg,
    #e0f2fe 360deg
  );
  z-index: -1;
  border-radius: 2.5rem;
  opacity: 0.6;
}

.stat {
  text-align: center;
}

.stat .number {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  font-family: var(--font-heading);
}

.stat .label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  display: block;
}

/* Modules */
.modules {
  padding: 6rem 0;
  background-color: white;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s;
}

.accordion-item:hover {
  background-color: #f8fafc;
}

.accordion-header {
  padding: 1.75rem 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.accordion-header span {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  opacity: 0.3;
}

/* Redesigned Mentors Section: Overlapping Glass Card */
.mentors {
  padding: 10rem 0;
  background: radial-gradient(circle at top right, #f0f9ff, #f8fafc 60%, white);
  position: relative;
  overflow: hidden;
}

.mentors::before {
  content: "";
  position: absolute;
  top: 50px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: rgba(2, 132, 199, 0.03);
  border-radius: 50%;
  z-index: 0;
  filter: blur(50px);
}

.mentors-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.mentors-image {
  flex: 0 0 45%;
  position: relative;
  z-index: 1;
}

.mentors-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: block;
}

.mentor-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #cbd5e1;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to bottom, #94a3b8, #475569);
}

.mentor-placeholder i {
  font-size: 5rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.mentors-content {
  flex: 0 0 60%;
  margin-left: -15%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 3.5rem;
  border-radius: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

.mentors-content:hover {
  transform: translateY(-5px);
}

.mentors-content h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: var(--text-color);
}

.mentor-role {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: inline-block;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.25rem;
}

.mentors-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Testimonials (Fixed Single Card Carousel) */
.testimonials {
  padding: 6rem 0;
  background-color: white;
}

.carousel-wrapper {
  position: relative;
  max-width: 400px;
  /* Fixed width for single card */
  margin: 0 auto;
  padding: 0;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  /* Take full width of container */
  box-sizing: border-box;
  opacity: 1;
  transform: none;
  filter: none;
}

.video-testimonial {
  background: white;
  width: 100%;
}

.video-frame {
  aspect-ratio: 9/16;
  background-color: #1e293b;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-frame .play-icon {
  width: 60px;
  height: 60px;
  background-color: white;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.video-frame:hover .play-icon {
  transform: scale(1.1);
}

.video-caption {
  padding: 1.5rem;
  text-align: center;
  background: white;
}

.video-caption strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.video-caption span {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

/* Nav Buttons outside the card */
.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  color: var(--primary-color);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -70px;
}

.next-btn {
  right: -70px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-indicator.current-slide {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Offer */
.offer {
  padding: 6rem 0;
}

.offer-card {
  max-width: 550px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 4px rgba(2, 132, 199, 0.1);
  overflow: hidden;
  position: relative;
}

.offer-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  padding: 2rem;
  text-align: center;
}

.offer-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.offer-body {
  padding: 3rem 2rem;
  text-align: center;
}

.price-box {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background-color: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px dashed #cbd5e1;
}

.old-price {
  display: block;
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.current-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--text-color);
}

.current-price small {
  font-size: 1.25rem;
  font-weight: 600;
}

.current-price .value {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.05em;
  line-height: 1;
}

.cash-price {
  display: block;
  margin-top: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.offer-features {
  text-align: left;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.offer-features li {
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.offer-features i {
  color: #10b981;
  /* Green check */
  margin-top: 0.3rem;
  font-size: 1.1rem;
}

.btn-large {
  width: 100%;
  font-size: 1.3rem;
  padding: 1.5rem;
}

.payment-methods {
  margin-top: 2rem;
  font-size: 2.5rem;
  color: #94a3b8;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Guarantee Enhanced - Premium Gold/Black */
.guarantee {
  padding: 6rem 0;
  text-align: center;
}

.enhanced-guarantee {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  text-align: left;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05),
    0 8px 10px -6px rgba(0, 0, 0, 0.01);
  border-radius: var(--radius-xl);
}

/* Premium Gold Seal */
.premium-seal {
  width: 170px;
  height: 170px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Gold Gradient */
  background: radial-gradient(circle at 30% 30%, #fcd34d, #f59e0b, #b45309);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(180, 83, 9, 0.3),
    inset 0 0 15px rgba(255, 255, 255, 0.4), 0 0 0 6px rgba(245, 158, 11, 0.2);
  animation: float 4s ease-in-out infinite;
  color: #1a0f02;
  /* Very dark brown/black */
}

/* Update text color inside seal */
.premium-seal .seal-inner {
  color: #0f172a;
  /* Dark Slate */
}

.premium-seal .seal-text text {
  fill: #0f172a;
  /* Dark Slate for the rotating text */
  font-weight: 900;
}

/* Badge above Title */
.premium-badge {
  display: inline-block;
  background: #0f172a;
  color: #fcd34d;
  /* Gold text */
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.premium-badge i {
  color: #fcd34d;
  margin-right: 0.3rem;
}

/* Text adjustments */
.text-guarantee h3 {
  color: #0f172a;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.text-guarantee p {
  color: #334155;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.seal-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.seal-text text {
  font-size: 11px;
  /* Slightly smaller to fit "METODO PREMIADO" */
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.seal-inner {
  text-align: center;
  line-height: 1;
  z-index: 2;
}

.seal-inner span {
  font-size: 3.5rem;
  font-weight: 800;
  display: block;
}

.seal-inner small {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-links a:hover {
  color: white;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .mentors-wrapper {
    flex-direction: column;
  }

  .mentors-content {
    margin-left: 0;
    margin-top: -3rem;
    /* Overlap vertically */
    width: 90%;
  }

  .mentors-image {
    width: 100%;
    max-width: 400px;
  }

  .col-text h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .headline {
    font-size: 2.25rem;
  }

  .solution {
    padding: 4rem 0;
  }

  .row,
  .enhanced-guarantee {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2.5rem;
  }

  .col-text {
    min-width: 100%;
  }

  .col-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .col-image {
    min-width: 100%;
  }

  .floating-card {
    max-width: 100%;
    padding: 2rem;
    aspect-ratio: auto;
  }

  .benefits-list {
    gap: 1rem;
  }

  .benefits-list li {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .benefits-list i {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }

  .benefits-list strong {
    font-size: 1.1rem;
  }

  .stat .number {
    font-size: 2.5rem;
  }

  .stat .label {
    font-size: 0.9rem;
  }

  .offer-card {
    margin: 0 1rem;
  }

  .carousel-wrapper {
    max-width: 300px;
  }

  .prev-btn {
    left: -20px;
  }

  .next-btn {
    right: -20px;
  }
}
