:root{
  /* ===== Dark Hero Theme ===== */
  --bg:#070B1A;
  --heroA:#050716;
  --heroB:#070B1A;

  --text:#EAF0FF;
  --muted:#B8C3E6;

  --brand:#2F7BFF;
  --brand2:#7C4DFF;

  /* ===== Light Sections Theme (Hybrid) ===== */
  --ink:#0E1222;
  --ink2:#333A55;

  --borderDark: rgba(255,255,255,.12);
  --panelDark: rgba(255,255,255,.06);

  --borderLight: rgba(14,18,34,.10);

  --shadow: 0 18px 45px rgba(0,0,0,.30);
  --shadow2: 0 10px 26px rgba(0,0,0,.18);
  --radius: 18px;

  /* ===== Learningport-style Accent ===== */
  --accent:#E11D2E;              /* bold red highlight */
  --accentSoft: rgba(225,29,46,.12);

  --waA:#25D366;
  --waB:#128C7E;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background:
    radial-gradient(1100px 620px at 15% 10%, rgba(124,77,255,.22), transparent 60%),
    radial-gradient(950px 620px at 90% 15%, rgba(47,123,255,.18), transparent 55%),
    linear-gradient(180deg, var(--heroA), var(--heroB) 35%, var(--heroA));
  overflow-x:hidden;
}

a{color:inherit}
.container{width:min(1180px, 92%); margin:0 auto}

/* ===== Topbar ===== */
.topbar{
  position: sticky; top:0; z-index:999;
  backdrop-filter: blur(12px);
  background: rgba(7,11,26,.70);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900;
  letter-spacing:.7px;
}

.brand-mark{
  width:40px; height:40px; border-radius:14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: var(--shadow2);
}

.brand span{
  font-size:20px;
}

.menu{
  display:flex; align-items:center; gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

.menu a{
  text-decoration:none;
  color: rgba(234,240,255,.78);
  font-weight:800;
  font-size: 14px;
  padding:10px 12px;
  border-radius: 14px;
}

.menu a:hover{
  color:var(--text);
  background: rgba(255,255,255,.07)
}

.nav-call{
  text-decoration:none;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  padding:11px 16px;
  border-radius: 16px;
  font-weight:950;
  font-size:14px;
  box-shadow: var(--shadow2);
  white-space:nowrap;
}

/* ===== Hero ===== */
.hero{padding: 40px 0 18px}

.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
  align-items:center;
}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border:1px solid var(--borderDark);
  background: var(--panelDark);
  border-radius: 999px;
  color: rgba(234,240,255,.85);
  font-weight:900;
  margin-bottom: 14px;
}

.dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 6px rgba(47,123,255,.12);
}

h1{
  margin:0 0 10px;
  font-size: clamp(28px, 4vw, 50px);
  letter-spacing: -0.8px;
  line-height: 1.08;
}

.sub{
  margin:0 0 16px;
  color: rgba(234,240,255,.80);
  max-width: 62ch;
  line-height: 1.6;
  font-weight: 600;
}

/* Highlight word like Learningport (Upskill) */
.hl{ color: var(--accent); }

.cta{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top: 12px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration:none;
  font-weight: 950;
  border:1px solid var(--borderDark);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow2);
}

.btn.primary{
  border:none;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.btn.wa{
  border:none;
  background: linear-gradient(135deg, var(--waA), var(--waB));
}

.btn.ghost:hover{background: rgba(255,255,255,.11)}
.btn.primary:hover,.btn.wa:hover{transform: translateY(-2px)}

.hero-media{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--borderDark);
  background: var(--panelDark);
  box-shadow: var(--shadow);
  position:relative;
}

.hero-media img{
  width:100%;
  display:block;
  object-fit: cover;
  height: 380px;
}

.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(7,11,26,.06), rgba(7,11,26,.68));
  pointer-events:none;
}

/* ===== Light Sections (Hybrid) ===== */
.section{
  padding: 64px 0;
  background: #ffffff;
  color: var(--ink);
}

.section.alt{
  background: #F6F8FF;
}

.section h2{
  margin:0 0 12px;
  font-size: 30px;
  letter-spacing:-.4px;
  color: var(--ink);
}

.section p.lead{
  margin:0 0 18px;
  color: var(--ink2);
  line-height: 1.7;
  max-width: 90ch;
  font-weight: 600;
}

/* Eyebrow label like "TRENDING COURSES" */
.eyebrow{
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  color: rgba(14,18,34,.55);
  margin-bottom: 8px;
}

/* Cards */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--borderLight);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(14,18,34,.10);
  transition: transform .22s ease, box-shadow .22s ease;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14,18,34,.16);
}

.card img{width:100%; display:block}
.card .pad{padding: 18px}

.card h3{
  margin:0 0 8px;
  font-size: 18px;
  color: var(--ink);
}

.card p{
  margin:0 0 12px;
  color: var(--ink2);
  line-height:1.6;
  font-weight:600;
}

.card a{
  text-decoration:none;
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid var(--borderLight);
  background: rgba(14,18,34,.04);
  font-weight: 950;
  color: var(--ink);
}

.card a:hover{background: rgba(14,18,34,.07)}

/* Trust logos strip */
.logos{
  display:flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items:center;
  justify-content:center;
  padding: 18px 0 8px;
}

.logo-pill{
  padding: 10px 14px;
  border:1px solid rgba(14,18,34,.10);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(14,18,34,.07);
  font-weight: 900;
  color: rgba(14,18,34,.70);
}

/* Advantages grid (icon cards) */
.adv-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.adv{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(14,18,34,.10);
  box-shadow: 0 12px 30px rgba(14,18,34,.10);
  padding: 18px;
  text-align:center;
}

.adv .icon{
  width: 56px; height: 56px;
  border-radius: 999px;
  margin: 0 auto 12px;
  display:flex; align-items:center; justify-content:center;
  font-size: 24px;
  background: var(--accentSoft);
  border: 1px solid rgba(225,29,46,.20);
}

.adv h3{
  margin: 0 0 8px;
  color: #0E1222;
  font-size: 16px;
}

.adv p{
  margin:0;
  color:#333A55;
  font-weight: 650;
  line-height: 1.6;
}

/* FAQ */
.faq{display:grid; gap:10px; margin-top: 10px;}
.faq details{
  border-radius: 16px;
  background: #ffffff;
  border:1px solid rgba(14,18,34,.10);
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(14,18,34,.08);
}
.faq summary{cursor:pointer; font-weight:950; color: var(--ink)}
.faq p{color: var(--ink2); line-height:1.7; margin:10px 0 0; font-weight:600}

/* Footer (dark) */
.footer{
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 26px 0 120px;
  color: rgba(234,240,255,.75);
  text-align:center;
  font-weight: 700;
}

/* Floating Call + WhatsApp */
.floating{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.fbtn{
  min-width: 168px;
  height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  text-decoration:none;
  font-weight: 950;
  box-shadow: var(--shadow2);
  color:#fff;
}

.fbtn.call{background: linear-gradient(135deg, var(--brand), var(--brand2))}
.fbtn.whatsapp{background: linear-gradient(135deg, var(--waA), var(--waB))}
.fbtn:hover{transform: translateY(-2px)}

@media (max-width: 980px){
  .adv-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px){
  .menu{display:none}
  .hero-grid{grid-template-columns: 1fr}
  .hero-media img{height:auto}
  .grid3{grid-template-columns: 1fr}
}

@media (max-width: 520px){
  .adv-grid{ grid-template-columns: 1fr; }
  .fbtn{ min-width: 175px; height: 52px; font-size: 15px; }
}
