:root{
  --orange:#f97316;
  --orange-2:#fb923c;
  --yellow:#f59e0b;
  --violet:#7c3aed;
  --ink:#111827;
  --muted:#64748b;
  --soft:#fff7ed;
  --line:#e5e7eb;
  --white:#ffffff;
  --shadow:0 22px 60px rgba(17,24,39,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--ink);
  background:#fff;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 34px));margin:auto}

.topbar{
  background:linear-gradient(90deg,#fff7ed,#fef3c7,#f5f3ff);
  color:#7c2d12;
  border-bottom:1px solid #fed7aa;
  font-size:.92rem;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:9px 0;
  flex-wrap:wrap;
  font-weight:700;
}

.navbar{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:50;
}
.nav-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.logo img{height:54px;width:auto}
.navlinks{display:flex;align-items:center;gap:6px}
.navlinks a,.dropbtn{
  padding:10px 13px;
  border-radius:999px;
  color:#374151;
  font-weight:750;
  border:1px solid transparent;
  background:transparent;
  cursor:pointer;
  font:inherit;
}
.navlinks a:hover,.drop:hover .dropbtn,.navlinks a.active{
  background:#fff7ed;
  color:#ea580c;
  border-color:#fed7aa;
}
.drop{position:relative}
.dropmenu{
  position:absolute;
  top:44px;
  left:0;
  width:190px;
  padding:10px;
  border:1px solid #fed7aa;
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
  display:none;
}
.drop:hover .dropmenu,.drop:focus-within .dropmenu{display:grid;gap:4px}
.dropmenu a{display:block;border-radius:12px}
.nav-actions{display:flex;gap:10px;align-items:center}
.menu-btn{
  display:none;
  border:1px solid #fed7aa;
  background:#fff7ed;
  color:#ea580c;
  border-radius:14px;
  padding:10px 13px;
  font-weight:900;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid #fed7aa;
  background:#fff;
  color:#ea580c;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 26px rgba(249,115,22,.08);
  transition:.22s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 16px 38px rgba(249,115,22,.14)}
.btn-primary{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg,var(--orange),var(--yellow));
}
.btn-dark{
  color:#fff;
  border-color:transparent;
  background:#111827;
}

.hero{
  padding:74px 0 52px;
  background:
    radial-gradient(circle at 80% 8%,rgba(249,115,22,.13),transparent 28rem),
    linear-gradient(180deg,#fff 0%,#fff7ed 100%);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
  gap:48px;
  align-items:center;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#ea580c;
  font-weight:900;
  margin-bottom:20px;
}
h1{
  font-size:clamp(2.5rem,6vw,5.2rem);
  line-height:.98;
  letter-spacing:-.075em;
  margin:0 0 18px;
}
.grad{
  background:linear-gradient(135deg,var(--orange),var(--violet));
  -webkit-background-clip:text;
  color:transparent;
}
.lead{
  color:var(--muted);
  line-height:1.75;
  font-size:1.08rem;
  max-width:710px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}

.hero-slider{
  position:relative;
  min-height:472px;
  border-radius:38px;
  overflow:hidden;
  background:#fff7ed;
  border:1px solid #fed7aa;
  box-shadow:var(--shadow);
}
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1);
  transition:opacity 1.35s ease, transform 8s ease;
}
.slide.active{opacity:1;transform:scale(1.055)}
.slide-overlay{
  position:absolute;
  inset:auto 24px 24px 24px;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.55);
  border-radius:24px;
  padding:18px 20px;
  box-shadow:0 16px 38px rgba(17,24,39,.12);
}
.slide-overlay h3{margin:0 0 6px;font-size:1.35rem}
.slide-overlay p{margin:0;color:var(--muted);font-weight:650}
.dots{position:absolute;right:28px;top:26px;display:flex;gap:8px}
.dot{width:10px;height:10px;border-radius:99px;background:#fdba74;opacity:.55}
.dot.active{width:28px;background:var(--orange);opacity:1}

.quick-panel{
  margin-top:-34px;
  position:relative;
  z-index:4;
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr 1fr;
  background:#fff;
  border:1px solid #fed7aa;
  box-shadow:var(--shadow);
  border-radius:30px;
  overflow:hidden;
}
.quick-card{
  min-height:145px;
  padding:24px;
  border-right:1px solid #ffedd5;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.quick-card:last-child{border-right:none}
.quick-icon{width:48px;height:48px;margin-bottom:10px}
.quick-kicker{color:var(--orange);font-size:.8rem;font-weight:950;text-transform:uppercase;letter-spacing:.12em}
.quick-title{font-size:1.2rem;font-weight:950;margin:5px 0;color:#111827}
.quick-text{margin:0;color:var(--muted);font-weight:650}
.quick-link{margin-top:10px;color:#ea580c;font-weight:950}

.section{padding:78px 0}
.section-soft{background:#fff7ed}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:22px;
  margin-bottom:30px;
}
.kicker{
  margin:0 0 9px;
  color:var(--orange);
  font-size:.82rem;
  font-weight:950;
  letter-spacing:.15em;
  text-transform:uppercase;
}
h2{
  font-size:clamp(2rem,4.5vw,3.4rem);
  letter-spacing:-.06em;
  line-height:1.05;
  margin:0;
}
.about-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:38px;
  align-items:center;
}
.about-card{
  background:#fff;
  border:1px solid #ffedd5;
  border-radius:32px;
  padding:30px;
  box-shadow:var(--shadow);
}
.counts{
  display:flex;
  gap:42px;
  flex-wrap:wrap;
  margin:24px 0;
}
.countnum{
  display:block;
  color:#111827;
  font-size:2.45rem;
  font-weight:1000;
  letter-spacing:-.06em;
}
.countlabel{color:var(--muted);font-weight:800}
.founder-wrap{position:relative}
.founder-img{border-radius:38px;box-shadow:var(--shadow)}
.quote{
  position:absolute;
  right:24px;
  bottom:24px;
  width:min(340px,calc(100% - 48px));
  background:#fff;
  border-left:5px solid var(--orange);
  padding:18px;
  border-radius:20px;
  box-shadow:0 18px 44px rgba(17,24,39,.16);
  color:#334155;
  font-weight:750;
}
.quote strong{display:block;margin-top:8px;color:#111827}

.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{
  background:#fff;
  border:1px solid #ffedd5;
  border-radius:28px;
  padding:25px;
  box-shadow:0 14px 36px rgba(17,24,39,.07);
}
.card h3{margin:0 0 8px;font-size:1.33rem}
.card p{color:var(--muted);line-height:1.65}
.path-card{
  position:relative;
  overflow:hidden;
  min-height:255px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.path-card::after{
  content:"";
  position:absolute;
  width:130px;height:130px;border-radius:50%;
  background:#fff7ed;
  right:-40px;bottom:-40px;
}
.card-icon{width:62px;height:62px;margin-bottom:14px}
.course-meta{display:flex;gap:8px;flex-wrap:wrap;margin:16px 0}
.pill{
  display:inline-flex;
  border:1px solid #fed7aa;
  background:#fff7ed;
  color:#9a3412;
  border-radius:999px;
  padding:7px 10px;
  font-size:.85rem;
  font-weight:900;
}
.mentor-card{display:flex;gap:14px;align-items:center}
.avatar{
  width:62px;height:62px;border-radius:22px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--orange),var(--violet));
  color:#fff;font-weight:1000;
  flex:0 0 auto;
}
.cta{
  border-radius:34px;
  background:linear-gradient(135deg,#111827,#7c2d12);
  color:#fff;
  padding:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  box-shadow:var(--shadow);
}
.cta .lead{color:#fed7aa}

.page-hero{
  padding:64px 0 34px;
  background:linear-gradient(180deg,#fff7ed,#fff);
}
.table-wrap{overflow:auto;border:1px solid #fed7aa;border-radius:28px;background:#fff;box-shadow:var(--shadow)}
table{width:100%;border-collapse:collapse;min-width:780px}
th,td{padding:17px;text-align:left;border-bottom:1px solid #ffedd5}
th{color:#ea580c;background:#fff7ed}
td{color:#475569;font-weight:650}

.form-card{max-width:760px;margin:auto}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.form-row{display:grid;gap:7px;margin-bottom:14px}
label{font-weight:900;color:#334155}
input,select,textarea{
  width:100%;
  padding:13px 14px;
  border-radius:16px;
  border:1px solid #fed7aa;
  background:#fff;
  outline:none;
  font:inherit;
}
input:focus,select:focus,textarea:focus{border-color:var(--orange);box-shadow:0 0 0 4px rgba(249,115,22,.12)}
textarea{min-height:125px;resize:vertical}
select option{background:#fff}

.footer{
  background:#101827;
  color:#fff;
  padding:54px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.35fr .8fr .8fr 1fr;
  gap:28px;
}
.footer .logo img{
  background:#fff;
  border-radius:16px;
  padding:6px;
}
.footer p,.footer a,.footer li{color:#cbd5e1}
.footer ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:34px;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:#94a3b8;
}
.toast{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:99;
  background:#111827;
  color:#fff;
  border-radius:18px;
  padding:14px 18px;
  box-shadow:var(--shadow);
  display:none;
}
.toast.show{display:block}

@media(max-width:960px){
  .menu-btn{display:inline-flex}
  .navlinks{
    display:none;
    position:fixed;
    top:76px;left:17px;right:17px;
    background:#fff;
    border:1px solid #fed7aa;
    box-shadow:var(--shadow);
    border-radius:24px;
    padding:12px;
    flex-direction:column;
    align-items:stretch;
  }
  .navlinks.show{display:flex}
  .dropmenu{position:static;width:100%;box-shadow:none;margin-top:6px;display:grid;background:#fff7ed}
  .nav-actions{display:none}
  .hero-grid,.about-grid,.footer-grid{grid-template-columns:1fr}
  .quick-panel{grid-template-columns:1fr;margin-top:24px}
  .quick-card{border-right:none;border-bottom:1px solid #ffedd5}
  .quick-card:last-child{border-bottom:none}
  .grid-4,.grid-3{grid-template-columns:repeat(2,1fr)}
  .section-head,.cta{flex-direction:column;align-items:start}
}
@media(max-width:640px){
  .grid-4,.grid-3,.form-grid{grid-template-columns:1fr}
  .hero-slider{min-height:400px}
  h1{font-size:2.55rem}
  .logo img{height:46px}
}