/* =============================================================
   Kingsland Digital — Premium Static Website
   Design System: Dark theme + Orange/Red/Purple/Yellow gradients
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Backgrounds */
  --bg-base: #050505;
  --bg-surface: #0a0a0a;
  --bg-elevated: #141414;
  --bg-footer: #030303;

  /* Accents */
  --orange: #ff9500;
  --red: #ff3b30;
  --purple: #af52de;
  --yellow: #ffcc00;
  --whatsapp: #25d366;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #ff3b30 0%, #ff9500 50%, #af52de 100%);
  --grad-secondary: linear-gradient(135deg, #af52de 0%, #ffcc00 100%);
  --grad-text: linear-gradient(to right, #ff9500, #ff3b30, #af52de);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);

  /* Glass */
  --glass-bg: rgba(20, 20, 20, 0.4);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-light: rgba(255, 255, 255, 0.15);

  /* Layout */
  --container: 1280px;
  --radius: 16px;
  --radius-sm: 8px;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 2vw, 1.75rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
p { color: var(--text-secondary); }
.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; display: inline-block; margin-bottom: 16px;
}
.gradient-text {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Layout Helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }
.text-center { text-align: center; }
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--grad-primary); color: #fff; background-size: 150% 150%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 94, 0, 0.4); }
.btn-secondary { background: transparent; color: #fff; border: 1px solid var(--glass-border-light); }
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Glass Card ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  border-radius: var(--radius);
}

/* ---------- Glow backgrounds ---------- */
.glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.28; z-index: 0; pointer-events: none; }
.glow-orange { background: var(--orange); }
.glow-purple { background: var(--purple); }
.glow-red { background: var(--red); }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5,5,5,0.72);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 900; font-size: 1.3rem; letter-spacing: -0.02em; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px; background: var(--grad-primary);
  display: grid; place-items: center; font-size: 1.1rem; color: #fff; font-weight: 900;
  box-shadow: 0 4px 16px rgba(255,94,0,0.35);
}
.logo span.k-sub { display: block; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.25em; color: var(--text-muted); text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: 0.92rem; font-weight: 500; color: var(--text-secondary); transition: color 0.25s ease; position: relative; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--grad-primary); transition: width 0.3s ease; }
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 60; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; background: rgba(5,5,5,0.97); backdrop-filter: blur(20px);
  z-index: 55; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 28px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); padding: 24px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--text-secondary); }
.mobile-nav a.active, .mobile-nav a:hover { color: #fff; }
.mobile-nav .btn { margin-top: 8px; }

/* =============================================================
   HERO
   ============================================================= */
.hero { padding: 170px 0 100px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { font-size: 1.15rem; max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 500; color: var(--text-secondary); padding: 8px 14px; border-radius: 50px; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.02); }
.trust-badge i { color: var(--orange); }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius); border: 1px solid var(--glass-border-light); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.hero-float-card { position: absolute; padding: 16px 20px; }
.hero-float-card.tl { top: 20px; left: -24px; }
.hero-float-card.br { bottom: 24px; right: -18px; }
.hero-float-card .num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; }

/* Page hero (inner pages) */
.page-hero { padding: 150px 0 70px; text-align: center; overflow: hidden; }
.page-hero .lead { max-width: 640px; margin: 20px auto 0; font-size: 1.1rem; }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--orange); }

/* =============================================================
   STATS
   ============================================================= */
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.stat { text-align: center; padding: 34px 18px; }
.stat .value { font-family: var(--font-head); font-size: 2.6rem; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .label { margin-top: 8px; font-size: 0.9rem; color: var(--text-secondary); }

/* =============================================================
   COURSE CARDS
   ============================================================= */
.course-card { padding: 28px; display: flex; flex-direction: column; height: 100%; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.4s ease; }
.course-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); border-color: var(--glass-border-light); }
.course-icon { width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; color: #fff; background: var(--grad-primary); margin-bottom: 20px; box-shadow: 0 8px 22px rgba(255,94,0,0.25); }
.course-card h4 { margin-bottom: 10px; }
.course-card .desc { font-size: 0.92rem; margin-bottom: 18px; flex-grow: 1; }
.course-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.chip { font-size: 0.75rem; font-weight: 500; padding: 5px 12px; border-radius: 50px; border: 1px solid var(--glass-border); color: var(--text-secondary); display: inline-flex; align-items: center; gap: 6px; }
.chip i { color: var(--orange); }
.course-card-actions { display: flex; gap: 10px; margin-top: auto; }
.course-card-actions .btn { flex: 1; }

/* =============================================================
   FEATURE / WHY / CATEGORY / WHO
   ============================================================= */
.feature { padding: 28px; transition: transform 0.4s ease, border-color 0.4s ease; }
.feature:hover { transform: translateY(-6px); border-color: var(--glass-border-light); }
.feature-icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; font-size: 1.25rem; margin-bottom: 18px; background: rgba(255,149,0,0.12); color: var(--orange); border: 1px solid rgba(255,149,0,0.2); }
.feature h4 { margin-bottom: 8px; }
.feature p { font-size: 0.9rem; }

.category-card { padding: 30px 26px; text-align: left; transition: transform 0.4s ease, border-color 0.4s ease; display: block; }
.category-card:hover { transform: translateY(-6px); border-color: var(--glass-border-light); }
.category-card i { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.category-card h4 { margin-bottom: 6px; }
.category-card p { font-size: 0.85rem; }
.category-card .arrow { margin-top: 16px; color: var(--orange); font-weight: 600; font-size: 0.85rem; }

.pill-card { padding: 20px; text-align: center; transition: transform 0.35s ease, border-color 0.35s ease; }
.pill-card:hover { transform: translateY(-5px); border-color: var(--glass-border-light); }
.pill-card i { font-size: 1.5rem; color: var(--purple); margin-bottom: 12px; }
.pill-card span { display: block; font-weight: 600; font-size: 0.95rem; }

/* =============================================================
   5-STEP METHOD
   ============================================================= */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.step { padding: 30px 22px; position: relative; }
.step .step-num { font-family: var(--font-head); font-size: 3rem; font-weight: 900; -webkit-text-stroke: 1.5px var(--orange); -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 14px; }
.step h4 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { font-size: 0.85rem; }

/* =============================================================
   TOOLS GRID
   ============================================================= */
.tools-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.tool { padding: 22px 12px; text-align: center; transition: transform 0.3s ease, border-color 0.3s ease; }
.tool:hover { transform: translateY(-4px); border-color: var(--glass-border-light); }
.tool i { font-size: 1.8rem; margin-bottom: 10px; color: var(--text-secondary); }
.tool span { display: block; font-size: 0.78rem; color: var(--text-secondary); font-weight: 500; }

/* =============================================================
   FEATURED COURSE
   ============================================================= */
.featured { padding: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; overflow: hidden; }
.featured-modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 24px 0 30px; }
.featured-modules li { font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.featured-modules li i { color: var(--orange); font-size: 0.8rem; }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonial { padding: 30px; height: 100%; display: flex; flex-direction: column; }
.stars { color: var(--yellow); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial .quote { font-size: 0.98rem; color: var(--text-secondary); flex-grow: 1; margin-bottom: 22px; }
.testimonial-user { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #fff; background: var(--grad-secondary); }
.testimonial-user .name { font-weight: 600; font-size: 0.95rem; }
.testimonial-user .role { font-size: 0.8rem; color: var(--text-muted); }

/* =============================================================
   FAQ ACCORDION
   ============================================================= */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { padding: 0 26px; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; cursor: pointer; }
.faq-q i { transition: transform 0.3s ease; color: var(--orange); flex-shrink: 0; }
.faq-item.active .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; opacity: 0; transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-a { max-height: 320px; opacity: 1; padding-bottom: 22px; }
.faq-a p { font-size: 0.95rem; }

/* =============================================================
   CTA SECTION
   ============================================================= */
.cta-band { padding: 70px 50px; text-align: center; position: relative; overflow: hidden; border-radius: 24px; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =============================================================
   FORMS
   ============================================================= */
.form-card { padding: 40px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 8px; color: var(--text-secondary); }
.form-control {
  width: 100%; padding: 13px 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: #fff; font-size: 0.95rem; transition: border-color 0.25s ease, background 0.25s ease;
}
.form-control:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,0.05); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { appearance: none; cursor: pointer; }
select.form-control option { background: var(--bg-elevated); color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =============================================================
   FLOATING BUTTONS
   ============================================================= */
.floating { position: fixed; right: 20px; bottom: 20px; z-index: 99; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,0.35); transition: transform 0.3s ease; }
.float-btn:hover { transform: scale(1.08); }
.float-btn.wa { background: var(--whatsapp); box-shadow: 0 6px 20px rgba(37,211,102,0.5); animation: pulse 2s infinite; }
.float-btn.call { background: var(--grad-primary); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5);} 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: var(--bg-footer); border-top: 1px solid var(--glass-border); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer-brand p { font-size: 0.9rem; margin: 18px 0; max-width: 320px; }
.footer-col h5 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 20px; font-weight: 700; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.9rem; color: var(--text-secondary); transition: color 0.25s ease; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 14px; }
.footer-contact li i { color: var(--orange); margin-top: 4px; }
.newsletter { display: flex; gap: 8px; margin-top: 16px; }
.newsletter input { flex: 1; padding: 12px 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); color: #fff; font-size: 0.9rem; }
.newsletter input:focus { outline: none; border-color: var(--orange); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--glass-border); color: var(--text-secondary); transition: all 0.3s ease; }
.social-links a:hover { background: var(--grad-primary); color: #fff; border-color: transparent; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding: 22px 0; text-align: center; font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom a:hover { color: var(--orange); }

/* =============================================================
   COURSE DETAIL PAGE
   ============================================================= */
.course-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.course-meta-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; justify-content: center; }
.learn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.learn-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; }
.learn-item i { color: var(--orange); margin-top: 3px; }
.learn-item span { font-size: 0.95rem; color: var(--text-secondary); }
.sidebar-card { padding: 30px; position: sticky; top: 100px; }
.sidebar-card h4 { margin-bottom: 6px; }
.sidebar-card .price-note { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.sidebar-card .btn { margin-bottom: 12px; }
.sidebar-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); padding: 10px 0; border-bottom: 1px solid var(--glass-border); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li i { color: var(--orange); }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.role-card { padding: 20px; display: flex; align-items: center; gap: 12px; }
.role-card i { color: var(--purple); font-size: 1.2rem; }
.role-card span { font-weight: 500; font-size: 0.95rem; }
.project-item { display: flex; gap: 16px; padding: 22px; align-items: flex-start; }
.project-item .pnum { font-family: var(--font-head); font-weight: 900; font-size: 1.4rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.tools-inline { display: flex; flex-wrap: wrap; gap: 12px; }
.tool-chip { padding: 12px 18px; border-radius: 50px; display: inline-flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; }
.tool-chip i { color: var(--orange); }

/* =============================================================
   BLOG
   ============================================================= */
.blog-card { overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: transform 0.4s ease, border-color 0.4s ease; }
.blog-card:hover { transform: translateY(-6px); border-color: var(--glass-border-light); }
.blog-thumb { height: 190px; background: var(--grad-primary); display: grid; place-items: center; font-size: 2.5rem; color: rgba(255,255,255,0.85); position: relative; }
.blog-body { padding: 26px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-tag { font-size: 0.75rem; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.blog-body h4 { margin-bottom: 12px; line-height: 1.35; }
.blog-body p { font-size: 0.9rem; margin-bottom: 18px; flex-grow: 1; }
.blog-meta { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 14px; }

/* =============================================================
   FILTER BUTTONS
   ============================================================= */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 50px; }
.filter-btn { padding: 10px 22px; border-radius: 50px; border: 1px solid var(--glass-border); color: var(--text-secondary); font-weight: 500; font-size: 0.9rem; transition: all 0.3s ease; }
.filter-btn:hover { border-color: var(--glass-border-light); color: #fff; }
.filter-btn.active { background: var(--grad-primary); color: #fff; border-color: transparent; }

/* =============================================================
   MISC — legal / content pages
   ============================================================= */
.content-body { max-width: 820px; margin: 0 auto; }
.content-body h3 { margin: 36px 0 14px; }
.content-body p { margin-bottom: 16px; }
.content-body ul.bullets { margin: 0 0 16px 20px; }
.content-body ul.bullets li { list-style: disc; color: var(--text-secondary); margin-bottom: 8px; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* =============================================================
   ANIMATIONS (scroll reveal)
   ============================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .tools-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 560px; }
  .featured { grid-template-columns: 1fr; padding: 40px; }
  .course-detail-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .about-split { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav, .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .featured-modules { grid-template-columns: 1fr; }
  .learn-grid { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .cta-band, .cta-band.pad { padding: 44px 24px; }
  .hero-float-card { display: none; }
  .footer-brand p { max-width: 100%; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .btn { padding: 12px 22px; font-size: 0.9rem; }
}

/* =============================================================
   TOP BAR + LOGO IMAGE + ICON BTN + MOBILE CONTACT
   ============================================================= */
.header-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
#headerWrap .site-header { position: static; }
.topbar { background: linear-gradient(90deg, rgba(175,82,222,0.20), rgba(255,59,48,0.12) 60%, rgba(255,149,0,0.14)); border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.8rem; max-height: 44px; overflow: hidden; transition: max-height 0.35s ease, opacity 0.3s ease; }
.header-wrap.scrolled .topbar { max-height: 0; opacity: 0; border-color: transparent; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar-left { display: flex; align-items: center; gap: 24px; }
.topbar-left a, .topbar-right span { color: var(--text-secondary); display: inline-flex; align-items: center; gap: 7px; transition: color 0.25s ease; }
.topbar-left a:hover { color: var(--orange); }
.topbar-left i, .topbar-right i { color: var(--orange); }
.logo-img { height: 42px; width: auto; display: block; }
.icon-btn { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 1.15rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.icon-btn.wa { background: var(--whatsapp); color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,0.35); }
.icon-btn.wa:hover { transform: translateY(-2px); }
.mobile-contact { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 320px; margin-top: 12px; }
.mobile-contact .btn { width: 100%; }

/* =============================================================
   MODAL (brochure enquiry)
   ============================================================= */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 150; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card { position: relative; width: 100%; max-width: 440px; padding: 44px 36px; transform: translateY(24px) scale(0.97); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); max-height: 92vh; overflow-y: auto; }
.modal-overlay.open .modal-card { transform: translateY(0) scale(1); }
.modal-card h3 { margin-top: 6px; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); color: #fff; display: grid; place-items: center; transition: background 0.25s ease; }
.modal-close:hover { background: rgba(255,255,255,0.15); }

/* =============================================================
   HOME — WHO WE ARE (About)
   ============================================================= */
.who-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.who-visual { position: relative; }
.who-visual img { border-radius: 20px; border: 1px solid var(--glass-border-light); box-shadow: 0 30px 70px rgba(0,0,0,0.5); }
.who-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; margin: 28px 0; }
.who-point { display: flex; align-items: flex-start; gap: 11px; font-size: 0.95rem; color: var(--text-secondary); font-weight: 500; }
.who-point i { color: var(--orange); margin-top: 3px; }
.who-stat { display: inline-flex; align-items: center; gap: 18px; padding: 18px 26px; }
.who-stat .big { font-family: var(--font-head); font-size: 2.8rem; font-weight: 900; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.who-stat span { font-size: 0.9rem; color: var(--text-secondary); }

/* =============================================================
   HOME — SHOWCASE 3 CARDS (Courses / Internship / Placement)
   ============================================================= */
.showcase-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.showcase-head h2 { max-width: 620px; }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.showcase-card { position: relative; border-radius: 18px; overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; border: 1px solid var(--glass-border); }
.showcase-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.showcase-card:hover img { transform: scale(1.07); }
.showcase-card .sc-overlay { position: relative; z-index: 2; width: 100%; padding: 28px; background: linear-gradient(to top, rgba(5,5,5,0.96) 12%, rgba(5,5,5,0.55) 55%, rgba(5,5,5,0.05) 100%); }
.showcase-card .sc-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 10px; }
.showcase-card h4 { margin-bottom: 8px; font-size: 1.4rem; }
.showcase-card p { font-size: 0.88rem; margin-bottom: 16px; }

/* =============================================================
   HOME — MEET THE FOUNDER
   ============================================================= */
.founder-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.founder-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.founder-feature { display: flex; gap: 16px; padding: 22px; align-items: flex-start; }
.founder-feature .ff-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; background: rgba(255,149,0,0.12); color: var(--orange); border: 1px solid rgba(255,149,0,0.2); }
.founder-feature h4 { margin-bottom: 6px; font-size: 1.1rem; }
.founder-feature p { font-size: 0.9rem; }
.founder-visual { position: relative; display: flex; justify-content: center; }
.founder-photo-wrap { position: relative; width: 340px; max-width: 100%; aspect-ratio: 4 / 5; border-radius: 50% 50% 46% 46% / 44% 44% 56% 56%; overflow: hidden; border: 4px solid rgba(255,149,0,0.35); box-shadow: 0 24px 70px rgba(255,94,0,0.28); background: var(--grad-primary); }
.founder-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.founder-logo-chip { position: absolute; top: 18px; left: 6px; background: #fff; padding: 8px 12px; border-radius: 10px; z-index: 4; box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
.founder-logo-chip img { height: 24px; display: block; }
.founder-badge { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); background: var(--grad-primary); color: #fff; padding: 12px 26px; border-radius: 50px; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; text-align: center; z-index: 4; box-shadow: 0 10px 28px rgba(255,94,0,0.45); white-space: nowrap; }
.founder-badge small { display: block; font-weight: 500; font-size: 0.68rem; opacity: 0.92; letter-spacing: 0.05em; }
.founder-happy { position: absolute; top: 50%; right: -10px; transform: translateY(-50%); writing-mode: vertical-rl; font-size: 0.72rem; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; }

/* =============================================================
   RESPONSIVE — new sections
   ============================================================= */
@media (max-width: 1024px) {
  .who-grid, .founder-grid { grid-template-columns: 1fr; gap: 44px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .who-points { grid-template-columns: 1fr; }
  .logo-img { height: 36px; }
  .founder-photo-wrap { width: 280px; }
  .modal-card { padding: 36px 22px; }
  .header-actions { gap: 10px; }
}

/* Top bar social + hours */
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-hours { display: inline-flex; align-items: center; gap: 7px; color: var(--text-secondary); }
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-social a { color: var(--text-secondary); font-size: 0.95rem; transition: color 0.25s ease, transform 0.25s ease; }
.topbar-social a:hover { color: var(--orange); transform: translateY(-1px); }
.mobile-social { display: flex; justify-content: center; gap: 18px; margin-top: 18px; }
.mobile-social a { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--glass-border); color: var(--text-secondary); font-size: 1.1rem; transition: all 0.3s ease; }
.mobile-social a:hover { background: var(--grad-primary); color: #fff; border-color: transparent; }

/* Lead popup extras */
.lead-card { max-width: 460px; text-align: center; border: 1px solid rgba(255,149,0,0.25); }
.lead-card h3 { font-size: 1.5rem; }
.lead-card form { text-align: left; }
.lead-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,149,0,0.14); color: var(--orange); border: 1px solid rgba(255,149,0,0.3); padding: 7px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }

@media (max-width: 900px) { .topbar-hours { display: none; } }
