:root{
  --kp-orange:#1E9BFF;
  --kp-orange-dark:#0B6FC6;
  --kp-bg:#07090f;
  --kp-bg-soft:#0d1320;
  --kp-card:#101827;
  --kp-card-2:#0f1724;
  --kp-text:#f3f4f6;
  --kp-muted:#b6bcc7;
  --kp-stroke:rgba(255,255,255,.09);
  --kp-green:#1faa66;
  --kp-white:#ffffff;
  --radius:22px;
  --shadow:0 18px 48px rgba(0,0,0,.28);
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(30,155,255,.16), transparent 22%),
    radial-gradient(circle at top right, rgba(255,255,255,.06), transparent 16%),
    linear-gradient(180deg, #06070c 0%, #0b1120 55%, #080c14 100%);
  color:var(--kp-text);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

.wrap{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* TOPBAR */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background:rgba(7,9,15,.72);
  border-bottom:1px solid var(--kp-stroke);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:76px;
}

.brand img{
  height:44px;
  width:auto;
}

.mini-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  background:var(--kp-orange);
  color:#fff;
  font-weight:800;
  transition:.25s ease;
}

.mini-cta:hover{
  background:var(--kp-orange-dark);
  transform:translateY(-1px);
}

/* HERO */
.hero{
  padding:48px 0 24px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:34px;
  align-items:center;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  font-size:13px;
  font-weight:700;
  color:#fff;
  background:rgba(255,255,255,.06);
  border:1px solid var(--kp-stroke);
  border-radius:999px;
}

h1{
  margin:0 0 16px;
  font-size:clamp(34px, 5vw, 66px);
  line-height:1.02;
  letter-spacing:-1px;
  max-width:760px;
}

.hero-lead{
  margin:0 0 18px;
  color:var(--kp-muted);
  font-size:18px;
  max-width:720px;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px 16px;
  margin:24px 0;
}

.hero-points div{
  background:rgba(255,255,255,.03);
  border:1px solid var(--kp-stroke);
  border-radius:16px;
  padding:12px 14px;
  font-size:15px;
}

.hero-info-card{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
  padding:18px;
  margin:28px 0;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--kp-stroke);
  box-shadow:var(--shadow);
}

.info-item{
  background:rgba(255,255,255,.02);
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.05);
}

.label{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--kp-muted);
  margin-bottom:4px;
}

.hero-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:14px;
}

.hero-note{
  margin-top:16px;
  color:#CFEFFF;
  font-size:14px;
}

.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--kp-stroke);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero-main-image{
  width:100%;
  aspect-ratio: 4 / 4.2;
  object-fit:cover;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding:18px;
}

.trust-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--kp-stroke);
  font-size:14px;
  font-weight:700;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  transition:.25s ease;
  border:1px solid transparent;
  text-align:center;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:var(--kp-orange);
  color:#fff;
}

.btn-primary:hover{
  background:var(--kp-orange-dark);
}

.btn-secondary{
  background:transparent;
  color:#fff;
  border-color:var(--kp-stroke);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.05);
}

.btn-whatsapp{
  background:#25D366;
  color:#fff;
}

.btn-whatsapp:hover{
  filter:brightness(.95);
}

/* STRIP */
.trust-strip{
  padding:18px 0 8px;
}

.trust-strip-inner{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.trust-box{
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--kp-stroke);
  text-align:center;
  font-weight:700;
  color:#eef2f7;
}

/* SOCIAL PROOF */
.social-proof-section{
  padding-top:38px;
  padding-bottom:18px;
}

.social-proof-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:22px;
  align-items:start;
}

.authority-card,
.reviews-card{
  padding:28px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--kp-stroke);
  box-shadow:var(--shadow);
}

.authority-logo-wrap{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  margin-bottom:18px;
}

.authority-logo{
  max-width:220px;
  width:100%;
  height:auto;
  object-fit:contain;
}

.authority-card h3,
.reviews-card h3{
  margin:0 0 10px;
  font-size:26px;
  color:#fff;
}

.authority-card p,
.reviews-card p{
  margin:0;
  color:var(--kp-muted);
}

.authority-list{
  list-style:none;
  padding:0;
  margin:22px 0 26px;
}

.authority-list li{
  position:relative;
  padding-left:28px;
  margin:12px 0;
  color:#edf0f5;
}

.authority-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--kp-orange);
  font-weight:900;
}

.reviews-heading{
  margin-bottom:18px;
}

.reviews-shell{
  padding:14px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}

.reviews-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

@media (max-width: 920px){
  .social-proof-grid{
    grid-template-columns:1fr;
  }

  .authority-card,
  .reviews-card{
    padding:22px;
  }

  .authority-logo{
    max-width:180px;
  }
}

/* GENERAL */
.section{
  padding:68px 0;
}

.dark-section{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.section-heading{
  margin-bottom:30px;
}

.section-heading.center{
  text-align:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(30,155,255,.12);
  border:1px solid rgba(30,155,255,.24);
  color:#9ED8FF;
  font-size:13px;
  font-weight:800;
  margin-bottom:14px;
}

h2{
  margin:0 0 10px;
  font-size:clamp(28px, 4vw, 48px);
  line-height:1.08;
  letter-spacing:-.02em;
}

.section-heading p{
  margin:0;
  color:var(--kp-muted);
  font-size:17px;
  max-width:760px;
}

/* PRICING */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:22px;
}

.price-card{
  position:relative;
  padding:28px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--kp-stroke);
  box-shadow:var(--shadow);
}

.price-card.featured{
  border-color:rgba(30,155,255,.38);
  box-shadow:0 24px 64px rgba(30,155,255,.16);
}

.card-tag{
  display:inline-flex;
  margin-bottom:16px;
  padding:8px 12px;
  border-radius:999px;
  background:var(--kp-orange);
  color:#fff;
  font-weight:800;
  font-size:13px;
}

.card-tag.soft{
  background:rgba(255,255,255,.09);
  color:#fff;
}

.price-card h3{
  margin:0 0 10px;
  font-size:26px;
}

.price{
  font-size:50px;
  font-weight:900;
  line-height:1;
  margin-bottom:12px;
  color:#fff;
}

.price-subtitle{
  margin:0 0 20px;
  color:var(--kp-muted);
}

.feature-list{
  list-style:none;
  padding:0;
  margin:0 0 24px;
}

.feature-list li{
  position:relative;
  padding-left:28px;
  margin:12px 0;
  color:#edf0f5;
}

.feature-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--kp-orange);
  font-weight:900;
}

.stripe-button-wrap{
  margin-top:18px;
  padding-top:8px;
}

.payment-note{
  margin-top:24px;
  padding:20px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--kp-stroke);
  text-align:center;
}

.payment-note p{
  margin:0 0 14px;
  color:var(--kp-muted);
}

/* BENEFITS */
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}

.benefit-card{
  padding:24px;
  border-radius:22px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--kp-stroke);
}

.benefit-card h3{
  margin:0 0 10px;
  font-size:21px;
}

.benefit-card p{
  margin:0;
  color:var(--kp-muted);
}

/* MEDIA */
.media-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:22px;
  align-items:start;
}

.media-card{
  margin:0;
  border-radius:24px;
  overflow:hidden;
  background:rgba(255,255,255,.03);
  border:1px solid var(--kp-stroke);
  box-shadow:var(--shadow);
}

.media-card img{
  width:100%;
  display:block;
}

.media-card figcaption{
  padding:16px 18px;
  color:#fff;
  font-weight:700;
}

.media-card-temario img{
  height:auto;
  object-fit:contain;
  background:#000;
}

.media-card-render img{
  aspect-ratio:4 / 4.6;
  object-fit:cover;
}

/* CURRICULUM */
.curriculum-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:20px;
}

.curriculum-card{
  padding:24px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--kp-stroke);
}

.curriculum-card h3{
  margin:0 0 14px;
  font-size:24px;
  color:#fff;
}

.curriculum-card ul{
  margin:0;
  padding-left:18px;
}

.curriculum-card li{
  margin:8px 0;
  color:var(--kp-muted);
}

/* CERTIFICATE */
.certificate-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:26px;
  align-items:center;
}

.certificate-card{
  margin:0;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--kp-stroke);
  box-shadow:var(--shadow);
}

.certificate-card img{
  width:100%;
  height:auto;
  object-fit:contain;
}

.certificate-copy p{
  color:var(--kp-muted);
}

/* IDEAL */
.ideal-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}

.ideal-item{
  padding:20px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--kp-stroke);
  font-weight:700;
}

/* FAQ */
.faq-section{
  padding-top:54px;
}

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

.faq-item{
  border:1px solid var(--kp-stroke);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  padding:0 18px;
  margin-bottom:14px;
  overflow:hidden;
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:18px 4px;
  font-weight:800;
  font-size:18px;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item p{
  margin:0 0 18px;
  color:var(--kp-muted);
}

/* FINAL CTA */
.final-cta{
  padding:12px 0 88px;
}

.final-cta-box{
  text-align:center;
  padding:42px 24px;
  border-radius:30px;
  background:
    radial-gradient(circle at top, rgba(30,155,255,.18), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(30,155,255,.24);
  box-shadow:0 24px 80px rgba(30,155,255,.12);
}

.final-cta-box p{
  color:var(--kp-muted);
  font-size:17px;
  max-width:720px;
  margin:0 auto;
}

.final-cta-buttons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

/* FOOTER */
.site-footer{
  border-top:1px solid var(--kp-stroke);
  padding:24px 0 86px;
}

.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  text-align:center;
}

.footer-inner img{
  height:40px;
  width:auto;
}

.footer-inner p{
  margin:0;
  color:var(--kp-muted);
  font-size:14px;
}

/* MOBILE STICKY */
.sticky-mobile-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:60;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:rgba(7,9,15,.92);
  backdrop-filter:blur(14px);
  border-top:1px solid var(--kp-stroke);
  display:none;
}

.sticky-mobile-cta a{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  border-radius:999px;
  background:var(--kp-orange);
  color:#fff;
  font-weight:900;
}
/* RESPONSIVE */
@media (max-width: 1100px){
  .hero-grid,
  .certificate-grid{
    grid-template-columns:1fr;
  }

  .hero-main-image{
    aspect-ratio: 16 / 12;
  }
}

@media (max-width: 920px){
  .pricing-grid,
  .benefits-grid,
  .media-grid,
  .curriculum-grid,
  .ideal-grid,
  .trust-strip-inner{
    grid-template-columns:1fr;
  }

  .hero-points,
  .hero-info-card{
    grid-template-columns:1fr;
  }

  .price{
    font-size:42px;
  }
}

@media (max-width: 640px){
  .hero{
    padding-top:28px;
  }

  .topbar-inner{
    min-height:68px;
  }

  .brand img{
    height:38px;
  }

  h1{
    font-size:clamp(32px, 10vw, 48px);
    line-height:1.02;
  }

  h2{
    font-size:clamp(28px, 8vw, 40px);
  }

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

  .price-card,
  .benefit-card,
  .curriculum-card,
  .ideal-item{
    padding:20px;
  }

  .price{
    font-size:38px;
  }

  .mini-cta{
    display:none;
  }

  .sticky-mobile-cta{
    display:block;
  }
}

/* COUNTDOWN */
.countdown-banner{
  margin-top:18px;
  padding:18px 20px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(30,155,255,.12), rgba(30,155,255,.05));
  border:1px solid rgba(30,155,255,.28);
  box-shadow:0 10px 30px rgba(30,155,255,.10);
  max-width:520px;
}

.hero-note-center{
  text-align:center;
  max-width:520px;
  margin:20px auto 10px;
}

.countdown-banner{
  margin:18px auto 0;
}

.hero .countdown-banner{
  margin:18px auto 0;
  display:block;
}


.countdown-banner-center{
  text-align:center;
  margin:20px auto 10px;
}

.countdown-label{
  display:block;
  font-size:14px;
  font-weight:800;
  color:#CFEFFF;
  margin-bottom:12px;
}

.countdown-timer{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.countdown-banner-center .countdown-timer{
  justify-content:center;
}

.time-box{
  min-width:88px;
  flex:1;
  padding:12px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--kp-stroke);
  text-align:center;
}

.time-box strong{
  display:block;
  font-size:28px;
  line-height:1;
  color:#fff;
  font-weight:900;
  margin-bottom:6px;
}

.time-box span{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--kp-muted);
}

@media (max-width: 640px){
  .countdown-banner{
    max-width:100%;
    padding:16px;
  }

  .time-box{
    min-width:72px;
    flex:1 1 calc(50% - 10px);
  }
}

/* RESULTS */
.results-section{
  padding-top:76px;
}

.results-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:22px;
  align-items:start;
}

.result-card{
  margin:0;
  border-radius:26px;
  overflow:hidden;
  background:rgba(255,255,255,.03);
  border:1px solid var(--kp-stroke);
  box-shadow:var(--shadow);
}

.result-card img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
  background:#fff;
}

.result-card figcaption{
  padding:16px 18px;
  color:#fff;
  font-weight:800;
  text-align:center;
}

@media (max-width: 920px){
  .results-grid{
    grid-template-columns:1fr;
  }

  .result-card img{
    aspect-ratio:16 / 11;
  }
}