/* ===================================================================
   AI TrustED — Premium Enterprise Stylesheet  (light + dark themes)
   Brand: #0A66FF primary · #0F172A secondary · #14B8A6 accent
   Fonts: Poppins (headings) · Inter (body)
=================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #0A66FF;
  --primary-dark: #0848B8;
  --secondary: #0F172A;          /* fixed brand navy (dark bands in both themes) */
  --accent: #14B8A6;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --surface-2: #F1F5F9;
  --text: #1F2937;
  --heading: #0F172A;
  --muted: #5B6472;
  --line: #E2E8F0;
  --white: #FFFFFF;
  --chip-bg: #EFF5FF;
  --chip-text: #0A66FF;
  --header-bg: rgba(255,255,255,.92);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 10px 30px rgba(15,23,42,.08);
  --shadow-lg: 0 24px 60px rgba(10,102,255,.16);
  --grad: linear-gradient(135deg, #0A66FF 0%, #14B8A6 100%);
  --grad-soft: linear-gradient(135deg, #EFF5FF 0%, #E9FBF8 100%);
  --container: 1200px;
}

[data-theme="dark"] {
  --bg: #0A1120;
  --surface: #111B30;
  --surface-2: #16223C;
  --text: #CBD5E1;
  --heading: #F1F5F9;
  --muted: #93A1B8;
  --line: #243049;
  --chip-bg: #16243F;
  --chip-text: #5AA0FF;
  --header-bg: rgba(10,17,32,.92);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.4);
  --shadow-md: 0 14px 34px rgba(0,0,0,.45);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.55);
  --grad-soft: linear-gradient(135deg, #10243F 0%, #0E2C2C 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background .3s ease, color .3s ease;
}
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; color: var(--heading); line-height: 1.2; font-weight: 700; }
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: all .2s ease; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(10,102,255,.28); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(20,184,166,.28); }
.btn-accent:hover { filter: brightness(.95); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--heading); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--header-bg);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 21px; color: var(--heading); }
.brand .mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 17px;
}
.brand .mark span { transform: translateY(-1px); }
.brand-mark { height: 42px; width: 42px; flex: none; display: block; }
@media (max-width: 680px) { .brand-mark { height: 36px; width: 36px; } }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--heading); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--heading); }
.theme-toggle {
  background: transparent; border: 2px solid var(--line); width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer; font-size: 15px; color: var(--heading);
  display: grid; place-items: center; transition: all .2s ease; flex: none;
}
.theme-toggle:hover { border-color: var(--primary); transform: rotate(18deg); }

/* ---------- Section scaffolding ---------- */
section { padding: 84px 0; }
.section-tag {
  display: inline-block; font-family: 'Poppins',sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--chip-text); background: var(--chip-bg); padding: 7px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; }
.eyebrow { color: var(--accent); }

/* ---------- Hero ---------- */
.hero { background: var(--grad-soft); padding: 90px 0 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; margin-bottom: 20px; }
.hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 19px; color: var(--muted); margin-bottom: 30px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: 'Poppins',sans-serif; font-size: 28px; color: var(--heading); display: block; }
.hero-stats .stat span { font-size: 14px; color: var(--muted); }
.hero-card {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 28px; border: 1px solid var(--line);
}
.hero-card .hc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hero-card .hc-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; color:#fff; font-weight:700; }
.hero-card h4 { font-size: 17px; }
.hc-bar { height: 9px; background: var(--surface-2); border-radius: 999px; margin: 9px 0 4px; overflow: hidden; }
.hc-bar i { display: block; height: 100%; background: var(--grad); border-radius: 999px; }
.hc-row { font-size: 13.5px; color: var(--muted); margin-top: 14px; }
.hc-badge { display:flex; align-items:center; gap:10px; margin-top:18px; padding:12px; background:var(--bg); border-radius:12px; font-size:13.5px; }
.hc-badge .dot { width:34px;height:34px;border-radius:9px;background:#E9FBF8;color:var(--accent);display:grid;place-items:center;font-weight:700; }

/* ---------- Trusted by ---------- */
.trusted { padding: 46px 0; background: var(--surface); border-bottom: 1px solid var(--line); }
.trusted p { text-align: center; color: var(--muted); font-size: 14px; letter-spacing: .04em; margin-bottom: 22px; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; }
.trust-logos span {
  font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 18px;
  color: #94A3B8; padding: 8px 6px;
}

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 22px; }
.g-2 { grid-template-columns: repeat(2,1fr); }
.g-3 { grid-template-columns: repeat(3,1fr); }
.g-4 { grid-template-columns: repeat(4,1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: all .2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #5C8FE6; }

/* Industry cards */
.ind-card { display: block; }
.ind-card .ic-ico {
  width: 48px; height: 48px; border-radius: 12px; background: var(--grad-soft);
  display: grid; place-items: center; font-size: 23px; margin-bottom: 14px;
}
.ind-card h4 { font-size: 16px; margin-bottom: 4px; }
.ind-card p { font-size: 13.5px; color: var(--muted); }
.ind-card .ic-link { font-size: 13px; font-weight: 600; color: var(--primary); margin-top: 10px; display:inline-block; }

/* Course cards */
.course-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.course-card .cc-top { padding: 22px 22px 0; }
.course-thumb { height: 150px; background: var(--grad); display:grid; place-items:center; color:#fff; font-family:'Poppins',sans-serif; font-weight:700; font-size:18px; text-align:center; padding:0 20px; }
.course-card .cc-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.pill { display:inline-block; font-size:12px; font-weight:600; color:var(--chip-text); background:var(--chip-bg); padding:4px 10px; border-radius:999px; margin-bottom:10px; }
.pill.accent { color: var(--accent); background:#E9FBF8; }
[data-theme="dark"] .pill.accent { background:#10302C; }
.course-card h4 { font-size: 17px; margin-bottom: 8px; }
.course-meta { display:flex; gap:14px; font-size:13px; color:var(--muted); margin-bottom: 14px; flex-wrap:wrap; }
.course-foot { margin-top:auto; display:flex; align-items:center; justify-content:space-between; padding-top:16px; border-top:1px solid var(--line); }
.price { font-family:'Poppins',sans-serif; font-weight:700; font-size:20px; color:var(--heading); }
.price s { font-size:14px; color:var(--muted); font-weight:500; margin-right:6px; }
.stars { color:#F59E0B; font-size:14px; }

/* Learning paths */
.path-card { text-align:left; position:relative; }
.path-card .pc-tier { font-family:'Poppins',sans-serif; font-weight:700; font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:var(--primary); }
.path-card.featured { border-color: var(--primary); box-shadow: var(--shadow-md); }
.path-card h4 { font-size:21px; margin:6px 0 4px; }
.path-card .pc-desc { font-size:14px; color:var(--muted); margin-bottom:16px; }
.path-card ul { list-style:none; }
.path-card li { font-size:14px; padding:7px 0 7px 26px; position:relative; color:var(--text); }
.path-card li::before { content:"\2713"; position:absolute; left:0; color:var(--accent); font-weight:700; }

/* Steps / certifications */
.cert-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap:46px; align-items:center; }
.cert-list { display:flex; flex-direction:column; gap:16px; }
.cert-item { display:flex; gap:14px; }
.cert-item .ci-num { width:38px;height:38px;flex:none;border-radius:10px;background:var(--grad);color:#fff;display:grid;place-items:center;font-weight:700;font-family:'Poppins',sans-serif; }
.cert-item h4 { font-size:16px; }
.cert-item p { font-size:14px; color:var(--muted); }
.cert-visual {
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow-md);
}
.cert-paper { border:2px solid var(--line); border-radius:12px; padding:26px; text-align:center; background:var(--grad-soft); }
.cert-paper .cp-seal { width:62px;height:62px;margin:0 auto 12px;border-radius:50%;background:var(--grad);display:grid;place-items:center;color:#fff;font-size:26px; }
.cert-paper h4 { font-size:18px; }
.cert-paper .cp-sub { font-size:13px;color:var(--muted); }
.cert-paper .cp-name { font-family:'Poppins',sans-serif;font-weight:700;font-size:22px;color:var(--heading);margin:14px 0 4px;border-bottom:1px solid var(--line);padding-bottom:8px;display:inline-block; }

/* Corporate band */
.corp { background: var(--secondary); color: #fff; }
.corp h2, .corp h3, .corp h4 { color:#fff; }
.corp-grid { display:grid; grid-template-columns: 1fr 1fr; gap:46px; align-items:center; }
.corp-feats { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:22px 0 26px; }
.corp-feat { display:flex; gap:10px; font-size:14.5px; color:#CBD5E1; }
.corp-feat .cf-tick { color:var(--accent); font-weight:700; }
.corp-stats { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.corp-stat { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:14px; padding:22px; }
.corp-stat strong { font-family:'Poppins',sans-serif; font-size:32px; color:#fff; display:block; }
.corp-stat span { font-size:13.5px; color:#94A3B8; }

/* Testimonials */
.t-card { background:var(--surface); }
.t-stars { color:#F59E0B; margin-bottom:12px; }
.t-quote { font-size:15px; color:var(--text); margin-bottom:18px; }
.t-person { display:flex; align-items:center; gap:12px; }
.t-avatar { width:44px;height:44px;border-radius:50%;background:var(--grad);color:#fff;display:grid;place-items:center;font-weight:700;font-family:'Poppins',sans-serif; }
.t-person h5 { font-size:14.5px; }
.t-person span { font-size:13px; color:var(--muted); }

/* Cohorts table */
.cohort-list { display:flex; flex-direction:column; gap:14px; }
.cohort-row {
  background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:20px 24px;
  display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr auto; gap:18px; align-items:center;
}
.cohort-row:hover { box-shadow:var(--shadow-sm); border-color:#5C8FE6; }
.cohort-row .cr-label { font-size:12px; color:var(--muted); display:block; }
.cohort-row .cr-val { font-family:'Poppins',sans-serif; font-weight:600; font-size:14.5px; color:var(--heading); }
.seats { font-size:13px; color:var(--accent); font-weight:600; }

/* Blog */
.blog-card { padding:0; overflow:hidden; }
.blog-thumb { height:160px; background:var(--grad-soft); display:grid; place-items:center; font-size:40px; }
.blog-card .bc-body { padding:22px; }
.blog-card .bc-cat { font-size:12px; font-weight:600; color:var(--accent); text-transform:uppercase; letter-spacing:.06em; }
.blog-card h4 { font-size:17px; margin:8px 0; }
.blog-card p { font-size:14px; color:var(--muted); }
.blog-card .bc-meta { font-size:12.5px; color:#94A3B8; margin-top:12px; }

/* Newsletter */
.newsletter { background: var(--grad); color:#fff; border-radius: 0; }
.nl-inner { text-align:center; max-width:620px; margin:0 auto; }
.newsletter h2 { color:#fff; font-size:32px; }
.newsletter p { color:rgba(255,255,255,.85); margin:12px 0 24px; font-size:16px; }
.nl-form { display:flex; gap:10px; max-width:480px; margin:0 auto; }
.nl-form input { flex:1; padding:15px 18px; border-radius:999px; border:none; font-size:15px; font-family:'Inter',sans-serif; }
.nl-note { font-size:12.5px; color:rgba(255,255,255,.7); margin-top:14px; }

/* Footer */
.site-footer { background: var(--secondary); color:#94A3B8; padding: 64px 0 0; }
.site-footer .brand { color:#fff; margin-bottom:14px; }
.footer-grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap:34px; }
.footer-about { font-size:14px; line-height:1.7; max-width:280px; }
.footer-col h5 { color:#fff; font-size:14px; font-family:'Poppins',sans-serif; margin-bottom:16px; letter-spacing:.03em; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:10px; }
.footer-col a { color:#94A3B8; font-size:14px; }
.footer-col a:hover { color:#fff; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.1); margin-top:48px; padding:22px 0;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px;
}
.footer-social { display:flex; gap:10px; }
.footer-social a { width:34px;height:34px;border-radius:8px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;font-size:13px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background:var(--surface); border-bottom:1px solid var(--line); padding:14px 0; }
.breadcrumb ol { list-style:none; display:flex; gap:8px; font-size:13.5px; color:var(--muted); flex-wrap:wrap; }
.breadcrumb li::after { content:"/"; margin-left:8px; color:#94A3B8; }
.breadcrumb li:last-child::after { content:""; }
.breadcrumb a { color:var(--muted); }
.breadcrumb li:last-child { color:var(--heading); font-weight:600; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: var(--grad-soft); padding: 64px 0; }
.page-hero .ph-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:46px; align-items:center; }
.page-hero h1 { font-size: clamp(30px,4.4vw,46px); margin-bottom:16px; }
.page-hero .ph-sub { font-size:17.5px; color:var(--muted); margin-bottom:24px; }
.ph-meta { display:flex; gap:26px; flex-wrap:wrap; margin-bottom:24px; }
.ph-meta .m strong { font-family:'Poppins',sans-serif; display:block; color:var(--heading); font-size:18px; }
.ph-meta .m span { font-size:13px; color:var(--muted); }
.ph-cta { display:flex; gap:12px; flex-wrap:wrap; }

/* ---------- Generic content blocks ---------- */
.lead { font-size:18px; color:var(--muted); }
.split { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; }
.feature-list { list-style:none; }
.feature-list li { padding:12px 0 12px 34px; position:relative; border-bottom:1px solid var(--line); font-size:15px; }
.feature-list li::before { content:"\2713"; position:absolute; left:0; top:12px; width:22px;height:22px; background:#E9FBF8; color:var(--accent); border-radius:50%; display:grid; place-items:center; font-size:12px; font-weight:700; }
[data-theme="dark"] .feature-list li::before { background:#10302C; }
.challenge-card { background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:22px; }
.challenge-card .ch-ico { font-size:24px; margin-bottom:8px; }
.challenge-card h4 { font-size:16px; margin-bottom:6px; }
.challenge-card p { font-size:13.5px; color:var(--muted); }
.tool-tags { display:flex; flex-wrap:wrap; gap:10px; }
.tool-tag { background:var(--surface); border:1px solid var(--line); border-radius:999px; padding:9px 16px; font-size:13.5px; font-weight:500; color:var(--heading); transition:all .2s ease; }
.tool-tag:hover { border-color:var(--primary); transform:translateY(-2px); }

/* Accordion */
.accordion { display:flex; flex-direction:column; gap:10px; }
.acc-item { background:var(--surface); border:1px solid var(--line); border-radius:12px; overflow:hidden; }
.acc-head {
  width:100%; text-align:left; padding:18px 22px; background:var(--surface); border:none; cursor:pointer;
  font-family:'Poppins',sans-serif; font-weight:600; font-size:15.5px; color:var(--heading);
  display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.acc-head:hover { color:var(--primary); }
.acc-head .acc-sign { font-size:22px; color:var(--primary); flex:none; transition:transform .2s; }
.acc-item.open .acc-sign { transform:rotate(45deg); }
.acc-body { padding:0 22px; max-height:0; overflow:hidden; transition:all .25s ease; }
.acc-item.open .acc-body { padding:0 22px 20px; max-height:600px; }
.acc-body p, .acc-body li { font-size:14px; color:var(--muted); }
.acc-body ul { margin-left:18px; }
.acc-modules { font-size:12.5px; color:var(--muted); font-weight:500; margin-right:8px; }

/* Pricing box */
.pricing-box { background:var(--surface); border:2px solid var(--primary); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow-md); position:sticky; top:96px; }
.pricing-box .pb-price { font-family:'Poppins',sans-serif; font-weight:800; font-size:38px; color:var(--heading); }
.pricing-box .pb-price s { font-size:18px; color:var(--muted); font-weight:500; margin-right:8px; }
.pb-save { display:inline-block; background:#E9FBF8; color:var(--accent); font-size:12.5px; font-weight:600; padding:4px 10px; border-radius:999px; margin-bottom:14px; }
[data-theme="dark"] .pb-save { background:#10302C; }
.pb-list { list-style:none; margin:18px 0; }
.pb-list li { font-size:13.5px; padding:7px 0 7px 24px; position:relative; }
.pb-list li::before { content:"\2713"; position:absolute; left:0; color:var(--accent); font-weight:700; }
.pb-plans { font-size:12.5px; color:var(--muted); text-align:center; margin-top:12px; }

/* Instructor */
.instructor { display:flex; gap:18px; align-items:center; background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:22px; }
.instructor .in-av { width:72px;height:72px;flex:none;border-radius:50%;background:var(--grad);color:#fff;display:grid;place-items:center;font-family:'Poppins',sans-serif;font-weight:700;font-size:24px; }
.instructor h4 { font-size:17px; }
.instructor .in-role { font-size:13.5px; color:var(--primary); font-weight:600; }
.instructor p { font-size:13.5px; color:var(--muted); margin-top:6px; }

/* CTA band */
.cta-band { background: var(--grad); color:#fff; text-align:center; }
.cta-band h2 { color:#fff; font-size:34px; margin-bottom:12px; }
.cta-band p { color:rgba(255,255,255,.88); font-size:17px; margin-bottom:24px; }
.cta-band .btn-row { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* Stat strip */
.stat-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stat-strip .ss strong { font-family:'Poppins',sans-serif; font-size:36px; color:var(--primary); display:block; }
.stat-strip .ss span { font-size:14px; color:var(--muted); }

/* Misc */
.text-center { text-align:center; }
.mt-32 { margin-top:32px; }
.tag-soft { background:var(--grad-soft); }

/* ===================================================================
   WORKSHOPS — timeline, countdown, registration, hero
=================================================================== */
.wk-hero { background: var(--grad-soft); padding: 60px 0; position: relative; overflow: hidden; }
.wk-hero .ph-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:44px; align-items:center; }
.wk-badge-row { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px; }
.wk-hero h1 { font-size:clamp(30px,4.4vw,46px); margin-bottom:14px; }
.wk-hero .ph-sub { font-size:17px; color:var(--muted); margin-bottom:22px; }

/* Countdown */
.countdown { display:flex; gap:10px; margin-bottom:22px; }
.cd-box {
  background:var(--surface); border:1px solid var(--line); border-radius:12px;
  padding:12px 8px; text-align:center; min-width:70px; box-shadow:var(--shadow-sm);
}
.cd-box strong { font-family:'Poppins',sans-serif; font-size:26px; color:var(--heading); display:block; line-height:1.1; }
.cd-box span { font-size:10.5px; color:var(--muted); text-transform:uppercase; letter-spacing:.08em; }

/* Workshop info card */
.wk-card { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-lg); padding:26px; }
.wk-card .wk-price { font-family:'Poppins',sans-serif; font-weight:800; font-size:34px; color:var(--heading); }
.wk-card .wk-price s { font-size:17px; color:var(--muted); font-weight:500; margin-right:8px; }
.wk-card .wk-cl { display:flex; justify-content:space-between; font-size:13.5px; padding:9px 0; border-bottom:1px solid var(--line); }
.wk-card .wk-cl span:first-child { color:var(--muted); }
.wk-card .wk-cl span:last-child { color:var(--heading); font-weight:600; }

/* Meta strip */
.wk-meta-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:0; background:var(--surface); border:1px solid var(--line); border-radius:14px; overflow:hidden; }
.wk-meta-strip .wm { padding:20px; text-align:center; border-right:1px solid var(--line); }
.wk-meta-strip .wm:last-child { border-right:none; }
.wk-meta-strip .wm strong { font-family:'Poppins',sans-serif; font-size:20px; color:var(--heading); display:block; }
.wk-meta-strip .wm span { font-size:13px; color:var(--muted); }

/* Timeline */
.day-label {
  display:inline-flex; align-items:center; gap:10px; font-family:'Poppins',sans-serif;
  font-weight:700; font-size:15px; color:#fff; background:var(--grad);
  padding:9px 18px; border-radius:999px; margin-bottom:24px;
}
.timeline { position:relative; max-width:760px; margin:0 auto; padding-left:38px; }
.timeline::before { content:""; position:absolute; left:11px; top:8px; bottom:8px; width:2px; background:var(--line); }
.tl-item { position:relative; margin-bottom:16px; }
.tl-item::before {
  content:""; position:absolute; left:-38px; top:6px; width:24px; height:24px; border-radius:50%;
  background:var(--grad); border:4px solid var(--surface); box-shadow:0 0 0 2px var(--line);
}
.tl-card { background:var(--surface); border:1px solid var(--line); border-radius:12px; padding:16px 20px; transition:all .2s ease; }
.tl-card:hover { box-shadow:var(--shadow-md); transform:translateX(4px); border-color:#5C8FE6; }
.tl-card .tl-num { font-family:'Poppins',sans-serif; font-weight:700; font-size:12px; color:var(--primary); letter-spacing:.06em; }
.tl-card h4 { font-size:15.5px; margin:3px 0 5px; }
.tl-card p { font-size:13.5px; color:var(--muted); }

/* Objective / outcome / audience cards */
.icard { background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:22px; transition:all .2s ease; }
.icard:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); border-color:#5C8FE6; }
.icard .ic-em { font-size:26px; margin-bottom:10px; }
.icard h4 { font-size:16px; margin-bottom:6px; }
.icard p { font-size:13.5px; color:var(--muted); }

/* Tool chip with icon */
.toolchip { display:flex; align-items:center; gap:9px; background:var(--surface); border:1px solid var(--line);
  border-radius:12px; padding:12px 16px; font-weight:600; font-size:14px; color:var(--heading); transition:all .2s ease; }
.toolchip:hover { border-color:var(--primary); transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.toolchip .tc-em { font-size:20px; }

/* Registration form */
.reg-wrap { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:30px; box-shadow:var(--shadow-md); }
.reg-form { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.reg-form .full { grid-column:1 / -1; }
.reg-form label { font-size:13px; font-weight:600; color:var(--heading); display:block; margin-bottom:5px; }
.reg-form input, .reg-form select, .reg-form textarea {
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:10px;
  font-family:'Inter',sans-serif; font-size:14px; background:var(--bg); color:var(--text);
}
.reg-form textarea { min-height:80px; resize:vertical; }
.reg-form input:focus, .reg-form select:focus, .reg-form textarea:focus { outline:2px solid var(--primary); border-color:var(--primary); }

/* WhatsApp floating button */
.wa-float {
  position:fixed; right:22px; bottom:22px; width:56px; height:56px; border-radius:50%;
  background:#25D366; display:grid; place-items:center; z-index:200;
  box-shadow:0 10px 26px rgba(37,211,102,.45); transition:transform .2s ease;
}
.wa-float:hover { transform:scale(1.1); }
.wa-float svg { width:30px; height:30px; }

/* Scroll reveal */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; transition:none; }
  html { scroll-behavior:auto; }
}
.fade-up { animation: fadeUp .7s ease both; }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .cert-grid, .corp-grid, .split, .page-hero .ph-grid, .wk-hero .ph-grid { grid-template-columns: 1fr; }
  .g-4 { grid-template-columns: repeat(2,1fr); }
  .g-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .cohort-row { grid-template-columns: 1fr 1fr; }
  .corp-feats { grid-template-columns:1fr; }
  .wk-meta-strip { grid-template-columns: repeat(2,1fr); }
  .wk-meta-strip .wm:nth-child(2) { border-right:none; }
}
@media (max-width: 680px) {
  section { padding: 60px 0; }
  .nav-links { display:none; }
  .menu-toggle { display:block; }
  .nav-links.open {
    display:flex; position:absolute; top:76px; left:0; right:0; background:var(--surface);
    flex-direction:column; padding:20px 24px; gap:16px; border-bottom:1px solid var(--line); box-shadow:var(--shadow-md);
  }
  .g-4, .g-3, .g-2, .footer-grid, .corp-feats, .reg-form { grid-template-columns: 1fr; }
  .hero-cta .btn, .ph-cta .btn { width:100%; justify-content:center; }
  .nl-form { flex-direction:column; }
  .nl-form .btn { width:100%; justify-content:center; }
  .cohort-row { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
  .pricing-box { position:static; }
  .wk-meta-strip { grid-template-columns: 1fr 1fr; }
  .countdown { flex-wrap:wrap; }
}

/* ===================================================================
   COUNSELING BOOKING — glassmorphism, stepper, slots, modal, admin
=================================================================== */
.book-hero {
  background: linear-gradient(135deg, #0A66FF 0%, #14B8A6 100%);
  position: relative; overflow: hidden; padding: 56px 0 120px;
}
.book-hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 45%),
              radial-gradient(circle at 85% 70%, rgba(255,255,255,.12), transparent 45%);
}
.book-hero .container { position:relative; }
.book-hero h1 { color:#fff; font-size:clamp(28px,4vw,42px); }
.book-hero p { color:rgba(255,255,255,.9); }
.book-wrap { margin-top:-86px; position:relative; z-index:2; }
.book-grid { display:grid; grid-template-columns: 1.55fr .9fr; gap:24px; align-items:start; }

.glass {
  background: rgba(255,255,255,.78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.65); border-radius: 20px; box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .glass {
  background: rgba(17,27,48,.78); border-color: rgba(255,255,255,.10);
}
.book-card { padding: 30px; }
.book-side { padding: 26px; }
.book-card h2 { font-size: 24px; }
.book-card .bk-sub { color: var(--muted); font-size: 14.5px; margin-top: 6px; }

/* Stepper */
.stepper { display:flex; align-items:center; gap:0; margin: 22px 0 24px; }
.stepper .sp { display:flex; align-items:center; flex:1; }
.stepper .sp:last-child { flex:none; }
.sp-dot {
  width:32px; height:32px; border-radius:50%; flex:none; display:grid; place-items:center;
  font-family:'Poppins',sans-serif; font-weight:700; font-size:13px;
  background:var(--surface-2); color:var(--muted); border:2px solid var(--line); transition:all .25s ease;
}
.sp-line { flex:1; height:3px; background:var(--line); margin:0 6px; border-radius:2px; transition:all .25s ease; }
.sp.done .sp-dot, .sp.active .sp-dot { background:var(--grad); color:#fff; border-color:transparent; }
.sp.done .sp-line { background:var(--accent); }
.sp-label { font-size:11.5px; font-weight:600; color:var(--muted); margin-left:8px; white-space:nowrap; }
.sp.active .sp-label { color:var(--primary); }

/* Steps */
.bk-step { display:none; }
.bk-step.active { display:block; animation: fadeUp .4s ease both; }
.bk-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.bk-field { display:flex; flex-direction:column; }
.bk-field.full { grid-column:1 / -1; }
.bk-field label { font-size:12.5px; font-weight:600; color:var(--heading); margin-bottom:5px; }
.bk-field label .req { color:#EF4444; }
.bk-field input, .bk-field select, .bk-field textarea {
  padding:11px 13px; border:1px solid var(--line); border-radius:10px; background:var(--bg);
  color:var(--text); font-family:'Inter',sans-serif; font-size:14px; width:100%;
}
.bk-field textarea { min-height:74px; resize:vertical; }
.bk-field input:focus, .bk-field select:focus, .bk-field textarea:focus {
  outline:2px solid var(--primary); border-color:var(--primary);
}
.bk-actions { display:flex; justify-content:space-between; gap:12px; margin-top:22px; }

/* Time slots */
.slot-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.slot {
  border:1px solid var(--line); background:var(--surface); border-radius:10px; padding:11px 8px;
  font-size:13px; font-weight:600; color:var(--heading); cursor:pointer; text-align:center; transition:all .15s ease;
}
.slot:hover:not(.booked) { border-color:var(--primary); }
.slot.sel { background:var(--grad); color:#fff; border-color:transparent; }
.slot.booked { opacity:.45; cursor:not-allowed; text-decoration:line-through; }
.slot small { display:block; font-weight:500; font-size:10.5px; opacity:.8; }

/* Side panel items */
.bk-side-item { display:flex; gap:12px; margin-bottom:16px; }
.bk-side-item .bs-ico {
  width:38px; height:38px; flex:none; border-radius:10px; background:var(--grad-soft);
  display:grid; place-items:center; font-size:18px;
}
.bk-side-item h5 { font-size:14px; }
.bk-side-item p { font-size:12.5px; color:var(--muted); }
.bk-counselor { display:flex; align-items:center; gap:12px; padding:14px; background:var(--surface-2); border-radius:12px; margin-top:6px; }
.bk-counselor .bc-av { width:46px;height:46px;border-radius:50%;background:var(--grad);color:#fff;display:grid;place-items:center;font-weight:700;font-family:'Poppins',sans-serif; }

/* Modal */
.modal-overlay {
  position:fixed; inset:0; background:rgba(8,12,24,.72); backdrop-filter:blur(4px);
  display:none; place-items:center; z-index:300; padding:20px;
}
.modal-overlay.open { display:grid; animation: fadeUp .25s ease both; }
.modal { max-width:470px; width:100%; padding:32px; text-align:center; }
.modal .md-tick {
  width:66px; height:66px; margin:0 auto 14px; border-radius:50%; background:var(--grad);
  display:grid; place-items:center; color:#fff; font-size:32px;
}
.modal h3 { font-size:22px; margin-bottom:8px; }
.modal p { font-size:14px; color:var(--muted); }
.modal .md-summary { text-align:left; background:var(--surface-2); border-radius:12px; padding:16px; margin:16px 0; }
.modal .md-summary div { display:flex; justify-content:space-between; font-size:13px; padding:5px 0; }
.modal .md-summary div span:first-child { color:var(--muted); }
.modal .md-summary div span:last-child { color:var(--heading); font-weight:600; }

/* Admin dashboard */
.admin-shell { display:grid; grid-template-columns:230px 1fr; min-height:calc(100vh - 76px); }
.admin-side { background:var(--secondary); padding:24px 16px; }
.admin-side h6 { color:#94A3B8; font-size:11px; letter-spacing:.1em; text-transform:uppercase; margin:18px 0 8px; }
.admin-side a { display:flex; align-items:center; gap:10px; color:#CBD5E1; font-size:14px; padding:9px 12px; border-radius:9px; }
.admin-side a:hover, .admin-side a.on { background:rgba(255,255,255,.08); color:#fff; }
.admin-main { padding:28px; background:var(--bg); }
.admin-kpis { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:24px; }
.kpi { background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:18px; }
.kpi strong { font-family:'Poppins',sans-serif; font-size:28px; color:var(--heading); display:block; }
.kpi span { font-size:12.5px; color:var(--muted); }
.admin-table { width:100%; border-collapse:collapse; background:var(--surface); border-radius:14px; overflow:hidden; border:1px solid var(--line); }
.admin-table th { background:var(--secondary); color:#fff; font-size:12px; text-align:left; padding:12px 14px; font-family:'Poppins',sans-serif; }
.admin-table td { padding:12px 14px; font-size:13px; border-top:1px solid var(--line); color:var(--text); }
.admin-table tr:hover td { background:var(--surface-2); }
.badge { font-size:11px; font-weight:700; padding:3px 9px; border-radius:999px; }
.badge.b-new { background:#EFF5FF; color:#0A66FF; }
.badge.b-ok { background:#E9FBF8; color:#0E9384; }
.badge.b-wait { background:#FFF4E5; color:#B7791F; }
[data-theme="dark"] .badge.b-new { background:#16243F; }
[data-theme="dark"] .badge.b-ok { background:#10302C; }
[data-theme="dark"] .badge.b-wait { background:#3A2E16; }

@media (max-width: 980px) {
  .book-grid { grid-template-columns:1fr; }
  .admin-shell { grid-template-columns:1fr; }
  .admin-side { display:none; }
  .admin-kpis { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 680px) {
  .bk-grid { grid-template-columns:1fr; }
  .slot-grid { grid-template-columns:repeat(2,1fr); }
  .admin-table { display:block; overflow-x:auto; white-space:nowrap; }
}
