:root {
  --purple: #460897;
  --purple-dark: #2d0560;
  --purple-light: #6b0dc1;
  --purple-pale: #e8d5f5;
  --yellow: #ffd60a;
  --green: #32d74b;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f7;
  --gray-200: #e5e5ea;
  --gray-300: #d1d1d6;
  --gray-400: #c7c7cc;
  --gray-600: #8e8e93;
  --gray-700: #636366;
  --gray-800: #48484a;
  --gray-900: #1c1c1e;
}

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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

::selection {
  background: var(--purple);
  color: var(--white);
}

/* ============================================
   FLOATING CTA
============================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--purple);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.floating-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.floating-cta-text {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.floating-cta-text strong {
  font-size: 18px;
  font-weight: 800;
}

.floating-cta-text span {
  font-size: 14px;
  opacity: 0.9;
}

.floating-cta-btn {
  background: var(--yellow);
  color: var(--purple);
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.floating-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 214, 10, 0.4);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    var(--purple-dark) 100%
  );
  padding: 80px 40px 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="3" r="2" fill="rgba(255,255,255,0.08)"/></svg>');
  background-size: 60px 60px;
  opacity: 0.4;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-highlight {
  color: var(--yellow);
  position: relative;
}

.hero-subsidy {
  background: var(--white);
  color: var(--purple);
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
}

.hero-subsidy strong {
  font-size: 22px;
  font-weight: 900;
}

.hero-investment {
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 24px 28px;
  border-radius: 16px;
  border: 2px solid rgba(255, 214, 10, 0.3);
}

.hero-investment strong {
  color: var(--yellow);
  font-weight: 800;
}

.investment-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
}

.hero-event-info {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.event-date,
.event-platform {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.event-date i,
.event-platform i {
  width: 20px;
  height: 20px;
  stroke: var(--yellow);
}

.hero-cta {
  background: var(--yellow);
  color: var(--purple);
  border: none;
  padding: 20px 48px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(255, 214, 10, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  text-decoration: none;
}

.hero-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 214, 10, 0.5);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 600px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.countdown-number {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.countdown-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-right {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ============================================
   SOCIAL PROOF
============================================ */
.social-proof {
  background: var(--white);
  padding: 60px 40px;
  text-align: center;
}

.social-proof-container {
  max-width: 1200px;
  margin: 0 auto;
}

.social-proof-text {
  font-size: 20px;
  color: var(--gray-900);
  margin-bottom: 48px;
  line-height: 1.6;
}

.social-proof-text strong {
  color: var(--purple);
  font-weight: 800;
}

.companies-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px;
}

.companies-logos img {
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.companies-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================
   SECTION UTILITIES
============================================ */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  font-weight: 500;
}

.cta-button {
  background: var(--yellow);
  color: var(--purple);
  border: none;
  padding: 16px 40px;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 18px rgba(255, 214, 10, 0.3);
  display: inline-block;
  margin-bottom: 40px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255, 214, 10, 0.5);
}

.cta-button.large {
  padding: 20px 60px;
  font-size: 20px;
}

/* ============================================
   WHAT'S INCLUDED
============================================ */
.whats-included {
  padding: 100px 40px;
  background: var(--gray-50);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.included-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.included-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(70, 8, 151, 0.12);
  border-color: var(--purple);
}

.included-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--gray-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.included-icon i {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  stroke-width: 2.5;
}

.included-item h3 {
  font-size: 20px;
  color: var(--purple);
  margin-bottom: 12px;
  font-weight: 800;
}

.included-item p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
  padding: 100px 40px;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--purple-pale);
}

.testimonial-header-text {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

.testimonial-header-text strong {
  display: block;
  font-size: 16px;
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-header-text span {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
}

.testimonial-text {
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.6;
}

/* ============================================
   TARGET AUDIENCE
============================================ */
.target-audience {
  padding: 100px 40px;
  background: linear-gradient(
    180deg,
    var(--purple) 0%,
    var(--purple-dark) 100%
  );
  position: relative;
  overflow: hidden;
}

.target-audience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="3" r="2" fill="rgba(255,255,255,0.08)"/></svg>');
  background-size: 60px 60px;
  opacity: 0.3;
}

.target-audience .section-container {
  position: relative;
  z-index: 10;
}

.target-audience .section-title {
  color: var(--white);
}

.audience-list {
  display: grid;
  gap: 24px;
  margin-bottom: 60px;
}

.audience-item {
  background: rgba(255, 255, 255, 0.05);
  color: var(--green);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.audience-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(8px);
}

.audience-icon {
  flex-shrink: 0;
}

.audience-icon i {
  width: 32px;
  height: 32px;
  stroke: var(--green);
}

.audience-content h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 800;
}

.audience-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.stats-circles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 30px;
  justify-items: center;
}

.stat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.circle-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle-bg {
  opacity: 0.2;
}

.progress-ring-circle {
  stroke-dasharray: 439.6; /* 2 * PI * 70 */
  stroke-dashoffset: 439.6;
  transition: stroke-dashoffset 2s cubic-bezier(0.34, 1.56, 0.64, 1);
  stroke-linecap: round;
}

.circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle-percentage {
  font-family: "Urbanist", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.circle-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.5;
  max-width: 200px;
}

/* ============================================
   CURRICULUM
============================================ */
.curriculum {
  padding: 100px 40px;
  background: var(--white);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.module-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s ease;
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--purple);
}

.module-number {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.module-title {
  font-size: 24px;
  color: var(--purple);
  margin-bottom: 12px;
}

.module-description {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.module-topics {
  list-style: none;
  padding: 0;
}

.module-topics li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-200);
}

.module-topics li:last-child {
  border-bottom: none;
}

.module-topics li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
  font-size: 18px;
}

.module-extra {
  background: linear-gradient(
    135deg,
    var(--purple-pale),
    rgba(232, 213, 245, 0.4)
  );
  border: 2px dashed var(--purple);
  border-radius: 16px;
  padding: 40px;
}

.module-extra h3 {
  font-size: 28px;
  color: var(--purple);
  margin-bottom: 16px;
}

.module-extra p {
  font-size: 17px;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 24px;
}

.module-extra ul {
  list-style: none;
  padding: 0;
}

.module-extra li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  color: var(--gray-900);
  line-height: 1.6;
}

.module-extra li::before {
  content: "🎁";
  position: absolute;
  left: 0;
  font-size: 20px;
}

.module-extra strong {
  color: var(--purple);
  font-weight: 800;
}

/* ============================================
   BONUSES
============================================ */
.bonuses {
  padding: 80px 40px;
  background: var(--purple);
  position: relative;
  overflow: hidden;
}

.bonuses::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="3" r="2" fill="rgba(255,255,255,0.08)"/></svg>');
  background-size: 60px 60px;
  opacity: 0.3;
}

.bonuses .section-container {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 32px;
}

.bonus-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.bonus-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-icon i {
  width: 32px;
  height: 32px;
  stroke: var(--purple);
}

.bonus-content h3 {
  font-size: 24px;
  color: var(--yellow);
  margin-bottom: 12px;
}

.bonus-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 16px;
}

.bonus-content ul {
  list-style: none;
  padding: 0;
}

.bonus-content li {
  padding: 8px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ============================================
   FAQ
============================================ */
.faq {
  padding: 100px 40px;
  background: var(--gray-50);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--purple-pale);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question i {
  width: 20px;
  height: 20px;
  stroke: var(--purple);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 28px 28px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
}

.final-cta .section-container {
  position: relative;
  z-index: 10;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-description strong {
  color: var(--yellow);
  font-weight: 800;
}

.final-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--gray-900);
  padding: 60px 40px 40px;
  color: var(--white);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--purple-light);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--purple-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  line-height: 1.7;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-badge,
  .hero-subsidy {
    display: inline-block;
  }

  .hero-event-info {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 60px 24px 80px;
  }

  .section-container {
    padding: 0 24px;
  }

  .hero-title {
    font-size: 36px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-cta-content {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
  }

  .floating-cta-btn {
    width: 100%;
  }

  .social-proof {
    padding: 40px 24px;
  }

  .companies-logos {
    gap: 24px 32px;
  }

  .companies-logos img {
    height: 28px;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-circles {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .countdown-number {
    font-size: 28px;
  }

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

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

  .lead-form {
    padding: 32px 24px;
  }

  .form-header h2 {
    font-size: 28px;
  }
}

/* ============================================
   MODAL DE ELEGIBILIDADE - BOLSA MASTER DISC
============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-container {
  background: #ffffff;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f5f5f7;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #e5e5ea;
  transform: rotate(90deg);
}

.modal-close i {
  width: 20px;
  height: 20px;
  stroke: #636366;
}

.modal-content {
  padding: 60px 40px 40px;
}

/* Loading State */
.modal-loading {
  text-align: center;
  padding: 60px 40px;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #e5e5ea;
  border-top-color: #460897;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 24px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.modal-loading h3 {
  font-size: 20px;
  color: #1c1c1e;
  margin-bottom: 12px;
}

.modal-loading p {
  font-size: 15px;
  color: #8e8e93;
}

/* Email Input Step */
.email-step {
  text-align: center;
}

.email-step-icon {
  width: 80px;
  height: 80px;
  color: #fafafa;
  background: linear-gradient(135deg, #460897, #6b0dc1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.email-step-icon i {
  width: 40px;
  height: 40px;
  stroke: #ffffff;
}

.email-step h2 {
  font-size: 28px;
  color: #1c1c1e;
  margin-bottom: 12px;
  font-weight: 800;
}

.email-step p {
  font-size: 16px;
  color: #8e8e93;
  margin-bottom: 32px;
  line-height: 1.6;
}

.email-input-wrapper {
  margin-bottom: 24px;
}

.email-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e5ea;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.email-input:focus {
  outline: none;
  border-color: #460897;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(70, 8, 151, 0.1);
}

.email-input.error {
  border-color: #ff3b30;
  background: rgba(255, 59, 48, 0.05);
}

.email-error {
  display: none;
  color: #ff3b30;
  font-size: 14px;
  margin-top: 8px;
  text-align: left;
}

.email-error.active {
  display: block;
}

.verify-button {
  width: 100%;
  background: #460897;
  color: #ffffff;
  border: none;
  padding: 18px 32px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.verify-button:hover:not(:disabled) {
  background: #6b0dc1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(70, 8, 151, 0.3);
}

.verify-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Result - Eligible */
.result-eligible {
  text-align: center;
}

.result-icon-success {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #32d74b, #28c840);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: successPulse 0.6s ease;
}

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

.result-icon-success i {
  width: 50px;
  height: 50px;
  stroke: #ffffff;
  stroke-width: 3;
}

.result-eligible h2 {
  font-size: 32px;
  color: #1c1c1e;
  margin-bottom: 16px;
  font-weight: 800;
}

.result-eligible .highlight-text {
  color: #32d74b;
  font-weight: 900;
}

.result-eligible p {
  font-size: 17px;
  color: #636366;
  line-height: 1.7;
  margin-bottom: 32px;
}

.proceed-button {
  width: 100%;
  background: #32d74b;
  color: #ffffff;
  border: none;
  padding: 20px 40px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(50, 215, 75, 0.3);
}

.proceed-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(50, 215, 75, 0.4);
}

/* Result - Not Eligible (Offer) */
.result-not-eligible {
  text-align: center;
}

.result-icon-warning {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff9500, #ffb340);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: warningPulse 0.6s ease;
}

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

.result-icon-warning i {
  width: 50px;
  height: 50px;
  stroke: #ffffff;
  stroke-width: 3;
}

.result-not-eligible h2 {
  font-size: 28px;
  color: #1c1c1e;
  margin-bottom: 12px;
  font-weight: 800;
}

.formation-date {
  display: inline-block;
  background: #f5f5f7;
  color: #48484a;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.offer-container {
  background: linear-gradient(135deg, #e8d5f5, rgba(232, 213, 245, 0.4));
  border: 2px solid #460897;
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
}

.offer-badge {
  display: inline-block;
  background: #460897;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-container h3 {
  font-size: 24px;
  color: #460897;
  margin-bottom: 20px;
  font-weight: 800;
}

.price-comparison {
  margin-bottom: 24px;
}

.original-price {
  font-size: 18px;
  color: #8e8e93;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.discount-price {
  font-size: 48px;
  font-weight: 900;
  color: #460897;
  line-height: 1;
  margin-bottom: 8px;
}

.discount-price small {
  font-size: 24px;
  font-weight: 700;
}

.savings-text {
  font-size: 16px;
  color: #32d74b;
  font-weight: 700;
}

.offer-features {
  text-align: left;
  margin-bottom: 24px;
}

.offer-features ul {
  list-style: none;
  padding: 0;
}

.offer-features li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 15px;
  color: #48484a;
  line-height: 1.6;
}

.offer-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #32d74b;
  font-weight: 700;
  font-size: 20px;
}

.payment-button {
  width: 100%;
  background: #ffd60a;
  color: #460897;
  border: none;
  padding: 20px 40px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(255, 214, 10, 0.3);
  margin-bottom: 16px;
}

.payment-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 214, 10, 0.5);
}

.offer-note {
  font-size: 13px;
  color: #8e8e93;
  font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
  .modal-content {
    padding: 50px 24px 32px;
  }

  .email-step h2,
  .result-eligible h2,
  .result-not-eligible h2 {
    font-size: 24px;
  }

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

  .offer-container {
    padding: 24px;
  }
}

.hero-investment-highlight {
  background: rgba(255, 255, 255, 0.95);
  color: var(--purple);
  padding: 20px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--yellow);
}

.hero-investment-highlight strong {
  font-size: 18px;
  font-weight: 800;
}

.investment-badge {
  background: var(--green);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.investment-value {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
}

.investment-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--purple);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
}

.investment-card:hover {
  box-shadow: 0 20px 60px rgba(70, 8, 151, 0.15);
}

.investment-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.investment-icon i {
  width: 40px;
  height: 40px;
  stroke: var(--white);
}

.investment-card h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--purple);
  margin-bottom: 40px;
  line-height: 1.2;
}

.value-breakdown {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.value-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.value-label {
  font-size: 18px;
  color: var(--gray-700);
  font-weight: 600;
}

.value-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--purple);
}

.value-amount.success {
  color: var(--green);
}

.value-arrow {
  text-align: center;
  padding: 16px 0;
}

.value-arrow i {
  width: 32px;
  height: 32px;
  stroke: var(--purple);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.value-item.scholarship {
  background: linear-gradient(135deg, rgba(50, 215, 75, 0.1), rgba(50, 215, 75, 0.05));
  border-radius: 12px;
  padding: 20px;
  margin-top: 16px;
}

.investment-explanation {
  background: var(--purple-pale);
  border-left: 4px solid var(--purple);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 32px;
  text-align: left;
}

.investment-explanation p {
  font-size: 16px;
  color: var(--gray-800);
  line-height: 1.8;
  margin-bottom: 12px;
}

.investment-explanation p:last-child {
  margin-bottom: 0;
}

.investment-explanation strong {
  color: var(--purple);
  font-weight: 800;
}

@media (max-width: 600px) {
  .investment-card {
    padding: 40px 24px;
  }
  
  .value-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .value-amount {
    font-size: 28px;
  }
}

/* Closed Registration Notice */
.closed-notice {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
}

.closed-container {
  text-align: center;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out;
}

.closed-icon {
  font-size: 80px;
  color: var(--yellow);
  margin-bottom: 30px;
  animation: slideDown 0.8s ease-out;
}

.closed-icon svg {
  width: 80px;
  height: 80px;
  stroke-width: 1.5;
}

.closed-title {
  font-size: 56px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.closed-message {
  font-size: 20px;
  color: var(--purple-pale);
  margin-bottom: 30px;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.closed-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  animation: fadeIn 0.8s ease-out 0.6s both;
}

.closed-content p {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.closed-content p:last-child {
  margin-bottom: 0;
}

.closed-content strong {
  color: var(--yellow);
}

.closed-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow) 0%, #ffc300 100%);
  color: var(--purple-dark);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease-out 0.8s both;
  box-shadow: 0 20px 40px rgba(255, 214, 10, 0.3);
}

.closed-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(255, 214, 10, 0.4);
}

.closed-cta:active {
  transform: translateY(-2px);
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

  .closed-message {
    font-size: 18px;
  }

  .closed-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .closed-notice {
    min-height: 100vh;
    padding: 20px;
  }

  .closed-icon {
    font-size: 60px;
    margin-bottom: 24px;
  }

  .closed-icon svg {
    width: 60px;
    height: 60px;
  }

  .closed-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .closed-message {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .closed-content {
    padding: 20px;
    margin-bottom: 32px;
  }

  .closed-cta {
    padding: 14px 32px;
    font-size: 14px;
  }
}