/* =========================================
   RESET
========================================= */

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

:root{
  --green:#2E7D5B;
  --green-light:#4CAF7A;
  --bg:#F5F7F6;
  --card:#ffffff;
  --text:#1F2A2E;
  --text-mid:rgba(31,42,46,.65);
  --shadow:0 20px 60px rgba(0,0,0,.08);
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

/* HERO */

.bootcamp-hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  padding:140px 40px 90px;
}

.bootcamp-bg{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#f6faf7 0%,#eef5f1 100%);
}

.bootcamp-blob{
  position:absolute;
  right:-180px;
  top:-120px;
  width:500px;
  height:500px;
  border-radius:50%;
  background:rgba(46,125,91,.08);
  filter:blur(30px);
}

.bootcamp-inner{
  position:relative;
  z-index:2;
  max-width:1300px;
  width:100%;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 430px;
  gap:70px;
  align-items:center;
}

.bootcamp-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#EAF6EF;
  color:var(--green);
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  margin-bottom:24px;
}

.bootcamp-tag span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
}

.bootcamp-left h1{
  font-size:72px;
  line-height:1.08;
  margin-bottom:22px;
  font-weight:800;
}

.bootcamp-left h1 em{
  color:var(--green);
  font-style:normal;
}

.bootcamp-left p{
  max-width:700px;
  color:var(--text-mid);
  line-height:1.9;
  font-size:17px;
  margin-bottom:35px;
}

/* BUTTONS */

.bootcamp-actions{
  display:flex;
  gap:16px;
  margin-bottom:40px;
}

.btn-primary{
  background:var(--green);
  color:#fff;
  text-decoration:none;
  padding:15px 24px;
  border-radius:12px;
  font-weight:700;
}

.btn-secondary{
  background:#fff;
  color:var(--text);
  text-decoration:none;
  padding:15px 24px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.08);
  font-weight:700;
}

/* STATS */

.bootcamp-stats{
  display:flex;
  gap:40px;
}

.bootcamp-stats div{
  display:flex;
  flex-direction:column;
}

.bootcamp-stats em{
  font-size:28px;
  color:var(--green);
  font-style:normal;
  font-weight:800;
}

.bootcamp-stats span{
  color:var(--text-mid);
  font-size:14px;
}

/* COUNTDOWN CARD */

.countdown-card{
  background:#fff;
  border-radius:28px;
  padding:40px 35px;
  box-shadow:var(--shadow);
}

.countdown-label{
  text-align:center;
  color:var(--green);
  font-weight:800;
  margin-bottom:24px;
}

.countdown-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-bottom:26px;
}

.countdown-grid div{
  background:var(--bg);
  border-radius:16px;
  padding:18px 10px;
  text-align:center;
}

.countdown-grid strong{
  display:block;
  color:var(--green);
  font-size:30px;
  margin-bottom:6px;
}

.countdown-grid span{
  font-size:12px;
  color:var(--text-mid);
}

.seats-box{
  margin-bottom:26px;
}

.seats-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
  font-size:14px;
}

.seats-top span{
  color:var(--text-mid);
}

.seats-track{
  height:10px;
  border-radius:999px;
  background:#E6ECE8;
  overflow:hidden;
}

.seats-fill{
  width:73%;
  height:100%;
  background:var(--green);
  border-radius:999px;
}

.countdown-btn{
  display:block;
  width:100%;
  text-align:center;
  background:var(--green);
  color:#fff;
  text-decoration:none;
  padding:15px;
  border-radius:14px;
  font-weight:800;
}

/* COMMON */

section{
  padding:100px 40px;
}

.max-w{
  max-width:1300px;
  margin:auto;
}

.sec-eyebrow{
  color:var(--green);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  margin-bottom:12px;
}

.sec-title{
  font-size:48px;
  margin-bottom:50px;
}

/* AGENDA */

.agenda-section{
  background:#fff;
}

.agenda-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.agenda-card{
  background:var(--bg);
  border-radius:24px;
  padding:32px;
  transition:.3s;
}

.agenda-card:hover{
  transform:translateY(-6px);
}

.agenda-card span{
  color:var(--green);
  font-weight:800;
  font-size:13px;
}

.agenda-card h3{
  margin:16px 0 12px;
}

.agenda-card p{
  color:var(--text-mid);
  line-height:1.8;
}

/* BENEFITS */

.benefits-section{
  background:var(--bg);
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.benefit-card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
  transition:.3s;
}

.benefit-card:hover{
  transform:translateY(-6px);
}

.benefit-icon{
  font-size:36px;
  margin-bottom:16px;
}

.benefit-card h3{
  margin-bottom:10px;
}

.benefit-card p{
  color:var(--text-mid);
  line-height:1.8;
}

/* REGISTER */

.register-section{
  background:#fff;
}

.register-grid{
  display:grid;
  grid-template-columns:1fr 430px;
  gap:70px;
  align-items:center;
}

.register-content h2{
  font-size:48px;
  line-height:1.15;
  margin-bottom:20px;
}

.register-content p{
  color:var(--text-mid);
  line-height:1.9;
  margin-bottom:26px;
}

.register-content ul{
  list-style:none;
}

.register-content li{
  margin-bottom:14px;
  font-weight:600;
}

.register-form{
  background:var(--bg);
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow);
}

.register-form h3{
  font-size:26px;
  margin-bottom:22px;
}

.register-form input,
.register-form select{
  width:100%;
  border:none;
  outline:none;
  background:#fff;
  height:56px;
  border-radius:14px;
  padding:0 18px;
  margin-bottom:14px;
  font-size:15px;
}

.register-form button{
  width:100%;
  border:none;
  height:58px;
  border-radius:14px;
  background:var(--green);
  color:#fff;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  margin-top:8px;
}

.register-form p{
  text-align:center;
  color:var(--text-mid);
  font-size:13px;
  margin-top:16px;
}

/* TESTIMONIALS */

.testimonials-section{
  background:var(--bg);
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.testimonial-card{
  background:#fff;
  border-radius:24px;
  padding:30px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.stars{
  color:#f59e0b;
  margin-bottom:16px;
}

.testimonial-card p{
  color:var(--text-mid);
  line-height:1.8;
  margin-bottom:18px;
}

/* FOOTER */

.footer{
  background:#1F2A2E;
  padding:70px 20px 40px;
}

.footer-inner{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.footer-logo{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  color:#fff;
  font-size:26px;
  font-weight:700;
  margin-bottom:16px;
}

.footer-logo span{
  width:42px;
  height:42px;
  border-radius:12px;
  background:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer p{
  color:rgba(255,255,255,.65);
  margin-bottom:22px;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-bottom:22px;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
}

.footer small{
  color:rgba(255,255,255,.45);
}

/* RESPONSIVE */

@media(max-width:1100px){

  .bootcamp-inner,
  .register-grid{
    grid-template-columns:1fr;
  }

  .agenda-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }

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

}

@media(max-width:768px){

  .bootcamp-hero{
    padding:120px 20px 70px;
  }

  section{
    padding:70px 20px;
  }

  .bootcamp-left h1{
    font-size:46px;
  }

  .bootcamp-actions{
    flex-direction:column;
  }

  .bootcamp-stats{
    flex-direction:column;
    gap:20px;
  }

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

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

  .sec-title,
  .register-content h2{
    font-size:34px;
  }

  .footer-links{
    flex-direction:column;
    gap:12px;
  }

}