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

    :root {
      --bg-base: #080d1a;
      --bg-card: rgba(255,255,255,0.04);
      --bg-card-border: rgba(255,255,255,0.06);
      --bg-panel: linear-gradient(149deg, #0e1528 6%, #130e2a 94%);
      --purple: #5d00d5;
      --purple-mid: #7c3aed;
      --purple-light: #a78bfa;
      --yellow: #ffd400;
      --yellow-shadow: rgba(255,212,0,0.25);
      --text-head: #eef0f8;
      --text-body: #aab4cf;
      --text-muted: #7a85a3;
      --green: #34d399;
      --red: #f87171;
      --amber: #fbbf24;
      --nav-bg: rgba(8,13,26,0.92);
      --border-purple: rgba(93,0,213,0.25);
      --border-nav: rgba(93,0,213,0.12);
      --badge-bg: rgba(93,0,213,0.18);
      --badge-border: rgba(93,0,213,0.35);
      --section-label: #5F06F9;
      --font-display: 'Google Sans', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: var(--font-body);
      background: var(--bg-base);
      color: var(--text-body);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Utility ── */
    .section-label {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2.16px;
      text-transform: uppercase;
      color: var(--section-label);
      text-align: center;
      display: block;
      margin-bottom: 12px;
    }
    .section-heading {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 700;
      color: var(--text-head);
      text-align: center;
      line-height: 1.25;
      letter-spacing: -0.5px;
      margin-bottom: 0;
    }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
    .section { padding: 80px 0; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--yellow); color: #080d1a;
      font-family: var(--font-display); font-weight: 600; font-size: 14px;
      padding: 12px 24px; border-radius: 24px; border: none; cursor: pointer;
      box-shadow: 0 0 12px var(--yellow-shadow);
      text-decoration: none; white-space: nowrap;
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .btn-primary:hover { background: #5d00d2; color:#fff; transform: translateY(-1px); box-shadow: 0 0 24px var(--purple-shadow); }

    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--text-head);
      font-family: var(--font-display); font-weight: 600; font-size: 14px;
      padding: 12px 24px; border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.15);
      cursor: pointer; text-decoration: none; white-space: nowrap;
      transition: border-color 0.15s, background 0.15s;
    }
    .btn-secondary:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      width: 100%; box-sizing: border-box;
      background: var(--nav-bg);
      border-bottom: 1px solid var(--border-nav);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    }
    /* Push page content below the fixed nav (nav height ~73px) */
    body { padding-top: 73px; }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 48px;
      max-width: 1400px; margin: 0 auto;
    }
    .nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
	.nav-logo img {height:40px;}
    .nav-logo span { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-head); }
    .nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .btn-call {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--text-body);
      font-family: var(--font-body); font-weight: 500; font-size: 14px;
      padding: 9px 17px; border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.1);
      cursor: pointer; text-decoration: none;
      transition: border-color 0.15s;
    }
    .btn-call:hover { border-color: rgba(255,255,255,0.3); }

    /* ── Mobile sticky footer bar ── */
    .mobile-sticky-bar {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      width: 100%; box-sizing: border-box;
      background: rgba(8,13,26,0.97);
      border-top: 1px solid rgba(93,0,213,0.2);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      padding: 10px 16px;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    .mobile-sticky-bar.visible { transform: translateY(0); }
    .msb-logo { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
	.msb-logo img {height: 32px;}
    .msb-logo span { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-head); }
    .msb-actions { display: flex; gap: 8px; flex-shrink: 0; }
    .msb-call {
      display: inline-flex; align-items: center; gap: 5px;
      background: transparent; color: var(--text-body);
      font-family: var(--font-body); font-weight: 500; font-size: 14px;
      padding: 7px 14px; border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.15);
      text-decoration: none;
    }
    .msb-apply {
      display: inline-flex; align-items: center;
      background: var(--yellow); color: #080d1a;
      font-family: var(--font-display); font-weight: 700; font-size: 14px;
      padding: 7px 14px; border-radius: 20px;
      box-shadow: 0 0 10px var(--yellow-shadow);
      text-decoration: none;
    }
    /* Transition on nav-actions (always) */
    nav .nav-actions { transition: opacity 0.25s ease; }
    /* hero-passed fade is mobile-only — see @media (max-width: 768px) below */

    /* ── HERO ── */
    .hero { padding: 80px 0 112px; position: relative; overflow: hidden; }
    .hero::before {
      content: '';
      position: absolute; top: -200px; left: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(ellipse at center, rgba(93,0,213,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--badge-bg); border: 1px solid var(--badge-border);
      border-radius: 999px; padding: 5px 13px; margin-bottom: 26px;
    }
    .hero-badge span { font-size: 12px; font-weight: 500; color: #9042F0; letter-spacing: 0.3px; }
    .hero-h1 {
      font-family: var(--font-display); font-size: 56px; font-weight: 700;
      line-height: 1.1; letter-spacing: -1.5px; color: var(--text-head); margin-bottom: 24px;
    }
    .hero-h1 .yellow { color: var(--yellow); }
    .hero-h1 .gradient {
      background: linear-gradient(90deg, #a78bfa, #7c3aed);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-desc { font-size: 18px; line-height: 1.65; color: var(--text-body); margin-bottom: 32px; max-width: 540px; }
    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
    .hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
    .hero-feat { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-body); }
    .hero-feat svg { color: var(--green); flex-shrink: 0; }

    /* Dashboard */
    .dashboard-card {
      background: var(--bg-panel); border: 1px solid var(--border-purple);
      border-radius: 16px; padding: 21px; overflow: hidden;
      box-shadow: 0 0 80px rgba(93,0,213,0.15), 0 0 40px rgba(93,0,213,0.08);
    }
    .db-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    .db-title-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
    .db-title-name { font-size: 14px; font-weight: 600; color: var(--text-head); margin-top: 2px; }
    .db-live-badge { background: rgba(5,150,105,0.2); color: var(--green); font-size: 10px; padding: 2px 8px; border-radius: 999px; }
    .db-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
    .db-kpi { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 14px; padding: 13px; }
    .db-kpi-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.9px; color: var(--text-muted); margin-bottom: 4px; }
    .db-kpi-val { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-head); margin-bottom: 2px; }
    .db-kpi-delta { font-size: 10px; font-weight: 500; }
    .db-kpi-delta.up { color: var(--green); } .db-kpi-delta.down { color: var(--red); }
    .db-chart-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px; }
    .db-bars { display: flex; align-items: flex-end; gap: 5px; height: 80px; }
    .db-bar { flex: 1; border-radius: 5px; background: rgba(93,0,213,0.25); min-width: 0; }
    .db-bar.highlight { background: rgba(93,0,213,0.5); }
    .db-bar.peak { background: linear-gradient(to bottom, #ffd400, #f59e0b); }
    .db-month-labels { display: flex; justify-content: space-between; padding-top: 8px; margin-bottom: 20px; }
    .db-month-labels span { font-size: 8px; color: var(--text-muted); }
    .db-bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .db-funnel-card, .db-insights-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 13px; }
    .db-sub-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.9px; color: var(--text-muted); margin-bottom: 10px; }
    .funnel-row { margin-bottom: 8px; }
    .funnel-row-head { display: flex; justify-content: space-between; font-size: 9px; color: var(--text-muted); margin-bottom: 4px; }
    .funnel-row-head .val { color: var(--text-head); }
    .funnel-track { background: rgba(255,255,255,0.06); border-radius: 999px; height: 5px; }
    .funnel-fill { height: 5px; border-radius: 999px; background: linear-gradient(90deg,#5d00d5,#7c3aed); }
    .insight-item { display: flex; align-items: flex-start; gap: 6px; margin-bottom: 8px; }
    .insight-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
    .insight-text { font-size: 9px; color: var(--text-body); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
       NEW / UPDATED SECTION STYLES
       (Added inline for now — please move these rules into
        style.css and delete this <style> block once merged.)
  ══════════════════════════════════════════════════════════ */
    /* Hero — two checklist badges instead of one pill */
    .hero-badges-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .hero-badges-row .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      margin-bottom:0;
    }
    .hero-badge-check{
      font-size:0.85em;
      line-height:1;
    }

    /* Curriculum — "AI-Assisted Productivity" is longer than "Accelerate",
       allow it to wrap gracefully instead of overflowing the pill */
    .curr-phase-accelerate{
      white-space:normal;
      line-height:1.25;
    }

    /* Tools section — split into labelled groups */
    .tools-group{
      margin-bottom:22px;
    }
    .tools-group:last-child{
      margin-bottom:0;
    }
    .tools-group-label{      
      font-size:0.78rem;
      font-weight:600;
      letter-spacing:0.06em;
      text-transform:uppercase;
	  text-align: center;
      color:#c084fc;
      margin-bottom:12px;
      opacity:0.85;
    }

    /* Projects section intro line */
    .projects-intro{
      max-width:640px;
      margin:-8px 0 32px;
      color:rgba(255,255,255,0.65);
      font-size:1rem;
      line-height:1.6;
    }

    /* ── Modern Analytics Workflow (new section) ── */
    .workflow-section{
      background:rgba(255,255,255,0.01);
    }
    .workflow-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:40px;
      align-items:start;
      margin-top:8px;
    }
    @media (max-width:900px){
      .workflow-grid{ grid-template-columns:1fr; }
    }
    .workflow-intro p{
      color:rgba(255,255,255,0.7);
      font-size:1.05rem;
      line-height:1.7;
      margin:0 0 16px;
    }
    .workflow-intro p strong{
      color:#fff;
      font-weight:600;
    }
    .workflow-note{
      display:flex;
      align-items:flex-start;
      gap:10px;
      margin-top:24px;
      padding:16px 18px;
      border-radius:14px;
      background:rgba(196,132,252,0.08);
      border:1px solid rgba(196,132,252,0.25);
    }
    .workflow-note-icon{
      flex-shrink:0;
      margin-top:2px;
      color:#c084fc;
    }
    .workflow-note-text{
      color:rgba(255,255,255,0.85);
      font-size:0.94rem;
      line-height:1.6;
    }
    .workflow-note-text strong{
      color:#fff;
    }
    .workflow-checklist{
      display:flex;
      flex-direction:column;
      gap:12px;
      background:rgba(255,255,255,0.03);
      border:1px solid rgba(255,255,255,0.08);
      border-radius:18px;
      padding:22px;
    }
    .workflow-check-item{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:12px 14px;
      border-radius:12px;
      background:rgba(255,255,255,0.02);
      transition:background 0.2s ease, transform 0.2s ease;
    }
    .workflow-check-item:hover{
      background:rgba(196,132,252,0.07);
      transform:translateX(2px);
    }
    .workflow-check-icon{
      flex-shrink:0;
      width:22px;
      height:22px;
      border-radius:50%;
      background:rgba(52,211,153,0.15);
      color:#34d399;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:0.8rem;
      line-height:1;
      margin-top:1px;
    }
    .workflow-check-text{
      color:rgba(255,255,255,0.85);
      font-size:0.96rem;
      line-height:1.5;
    }
	
    /* ── WHO IS IT FOR ── */
    .who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 48px; }
    .who-card {
      display: flex; align-items: flex-start; gap: 14px; padding: 17px;
      border: 1px solid rgba(255,255,255,0.07); border-radius: 14px;
      background: rgba(255,255,255,0.02); transition: border-color 0.2s, background 0.2s;
    }
    .who-card:hover { border-color: rgba(93,0,213,0.3); background: rgba(93,0,213,0.05); }
    .who-icon { width: 36px; height: 36px; background: rgba(93,0,213,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--purple-light); }
    .who-text { font-size: 14px; color: var(--text-body); line-height: 1.5; }

    /* ── PROBLEM ── */
    .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
    .prob-card { border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 25px; background: rgba(255,255,255,0.02); }
    .prob-icon-wrap { width: 40px; height: 40px; background: rgba(255,212,0,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--yellow); margin-bottom: 20px; }
    .prob-quote { font-size: 15px; font-style: italic; color: var(--text-head); line-height: 1.55; margin-bottom: 16px; }
    .prob-solution { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-body); line-height: 1.5; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
    .prob-solution svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

    /* ── OPPORTUNITY ── */
    .opportunity-box {
      border: 1px solid rgba(93,0,213,0.25); border-radius: 20px; padding: 40px;
      background: linear-gradient(135deg, rgba(93,0,213,0.06) 0%, rgba(8,13,26,0) 70%);
      max-width: 900px; margin: 48px auto 0; text-align: center;
    }
    .opportunity-box p { font-size: 16px; line-height: 1.7; color: var(--text-body); }
    .opportunity-box p + p { margin-top: 16px; }

    /* ── CAREER OPPORTUNITIES ── (fixed: fresher=green, experienced=yellow, card bg from design) */
    .career-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
    .career-card {
      background: rgba(14,21,40,0.7); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px; padding: 21px;
      transition: border-color 0.2s;
    }
    .career-card:hover { border-color: rgba(93,0,213,0.3); }
    .career-role { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text-head); margin-bottom: 16px; }
    .career-salary-row { display: flex; gap: 24px; }
    .salary-tier { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 2px; }
    .salary-val-fresher { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #34d399; margin-top: 2px; }
    .salary-val-exp { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--yellow); margin-top: 2px; }
    .careers-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 24px; }

    /* ── COMPANIES ── */
    .companies-wrap { margin-top: 48px; text-align: center; }
    .companies-desc { font-size: 14px; color: var(--text-body); margin-bottom: 24px; }
    .companies-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
    .company-badge {
      border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
      padding: 11px 24px; font-family: var(--font-display); font-size: 14px; font-weight: 600;
      color: var(--text-body); background: rgba(255,255,255,0.02);
      transition: border-color 0.2s, color 0.2s;
    }
    .company-badge:hover { border-color: rgba(93,0,213,0.4); color: var(--text-head); }
    .companies-disclaimer { font-size: 12px; color: var(--text-muted); margin-top: 24px; }

    /* ── DAY IN LIFE ── */
    .daylife-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
    .daylife-card { border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 25px; background: rgba(255,255,255,0.02); }
    .daylife-icon { width: 40px; height: 40px; background: rgba(93,0,213,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--purple-light); margin-bottom: 16px; }
    .daylife-period { font-size: 14px; font-weight: 600; color: var(--text-head); margin-bottom: 8px; }
    .daylife-main { font-size: 14px; color: var(--text-body); line-height: 1.55; margin-bottom: 8px; }
    .daylife-sub { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
    .daylife-note { border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 21px; text-align: center; font-size: 14px; color: var(--text-body); margin-top: 24px; background: rgba(93,0,213,0.05); }

    /* ── CURRICULUM ── (fixed: gradient bg per card, colored phase heading) */
    .curriculum-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 48px; }
    .curr-card {
      border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 21px;
    }
    .curr-card-build   { background: linear-gradient(to bottom, rgba(127,34,254,0.2), rgba(127,34,254,0.05)); }
    .curr-card-analyze { background: linear-gradient(to bottom, rgba(21,93,252,0.2),  rgba(21,93,252,0.05)); }
    .curr-card-understand { background: linear-gradient(to bottom, rgba(0,146,184,0.2),  rgba(0,146,184,0.05)); }
    .curr-card-accelerate { background: linear-gradient(to bottom, rgba(254,154,0,0.2),  rgba(254,154,0,0.05)); }
    .curr-card-launch  { background: linear-gradient(to bottom, rgba(0,153,102,0.2),  rgba(0,153,102,0.05)); }
    .curr-phase { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 16px; }
    .curr-phase-build      { color: #7c3aed; }
    .curr-phase-analyze    { color: #2563eb; }
    .curr-phase-understand { color: #0891b2; }
    .curr-phase-accelerate { color: #d97706; }
    .curr-phase-launch     { color: #059669; }
    .curr-dot-build      { background: #7c3aed; }
    .curr-dot-analyze    { background: #2563eb; }
    .curr-dot-understand { background: #0891b2; }
    .curr-dot-accelerate { background: #d97706; }
    .curr-dot-launch     { background: #059669; }
    .curr-items { list-style: none; }
    .curr-items li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-body); padding: 6px 0; }
    .curr-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

    /* ── TOOLS ── */
    .tools-wrap { margin-top: 48px; }
    .tools-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 12px; }
    .tool-badge {
      border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
      padding: 10px 20px; font-size: 14px; font-weight: 500;
      color: var(--text-body); background: rgba(255,255,255,0.02);
      transition: border-color 0.2s, color 0.2s;
    }
    .tool-badge:hover { border-color: rgba(255,212,0,0.4); color: var(--yellow); }

    /* ── PROJECTS ── (updated to match Figma: colored top panel per card, icon) */
    .projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
    .project-card {
      border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden;
      background: rgba(255,255,255,0.02); transition: border-color 0.2s, transform 0.2s;
    }
    .project-card:hover { border-color: rgba(93,0,213,0.35); transform: translateY(-2px); }
    .project-visual {
      height: 144px; display: flex; align-items: center; justify-content: center;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .pv-1 { background: linear-gradient(135deg, rgba(93,0,213,0.25), rgba(124,58,237,0.1)); }
    .pv-2 { background: linear-gradient(135deg, rgba(21,93,252,0.2), rgba(21,93,252,0.05)); }
    .pv-3 { background: linear-gradient(135deg, rgba(0,146,184,0.2), rgba(0,146,184,0.05)); }
    .pv-4 { background: linear-gradient(135deg, rgba(254,154,0,0.15), rgba(254,154,0,0.04)); }
    .pv-5 { background: linear-gradient(135deg, rgba(0,153,102,0.2), rgba(0,153,102,0.05)); }
    .project-visual svg { width: 40px; height: 40px; opacity: 0.65; }
    .project-body { padding: 20px; }
    .project-stack { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
    .project-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-head); margin-bottom: 8px; }
    .project-desc { font-size: 13px; color: var(--text-body); line-height: 1.55; }

    /* ── NUMBERS ── */
    .numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
    .num-card { border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 25px; text-align: center; background: rgba(255,255,255,0.02); }
    .num-val { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--yellow); margin-bottom: 6px; }
    .num-label { font-size: 14px; color: var(--text-body); }
    .numbers-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 24px; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; }
    .num-feat { display: flex; align-items: center; gap: 10px; padding: 16px 20px; font-size: 14px; color: var(--text-body); border-right: 1px solid rgba(255,255,255,0.08); }
    .num-feat:last-child { border-right: none; }
    .num-feat svg { color: var(--green); flex-shrink: 0; }

    /* ── MENTOR ── */
    .mentor-card { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: start; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 40px; background: rgba(255,255,255,0.02); margin-top: 48px; max-width: 900px; margin-left: auto; margin-right: auto;  }
    .mentor-avatar { width: 120px; height: 120px; background: linear-gradient(135deg, rgba(93,0,213,0.3), rgba(124,58,237,0.2)); border: 2px solid rgba(93,0,213,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--yellow); flex-shrink: 0; }
	.mentor-avatar img {border: 2px solid rgba(93,0,213,0.4); border-radius: 50%; }
    .mentor-name-wrap { margin-top: 16px; }
    .mentor-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-head); }
    .mentor-title { font-size: 14px; color: var(--text-muted); }
    .mentor-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; margin-bottom: 20px; }
    .mentor-stat-label { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
    .mentor-stat-val { font-size: 14px; font-weight: 600; color: var(--text-head); }
    .mentor-quote { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 15px; font-style: italic; color: var(--text-body); line-height: 1.65; }
    .mentor-footnote { text-align: center; font-size: 14px; color: var(--text-muted); margin-top: 20px; }

    /* ── CAREER SUPPORT ── */
    .support-list { max-width: 800px; margin: 48px auto 0; }
    .support-item { border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px 24px; margin-bottom: 12px; background: rgba(255,255,255,0.02); display: flex; align-items: center; gap: 16px; transition: border-color 0.2s; }
    .support-item:hover { border-color: rgba(93,0,213,0.3); }
    .support-icon { width: 36px; height: 36px; background: rgba(93,0,213,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--purple-light); flex-shrink: 0; }
    .support-text-head { font-size: 15px; font-weight: 600; color: var(--text-head); margin-bottom: 2px; }
    .support-text-sub { font-size: 13px; color: var(--text-muted); }

    /* ── ROADMAP ── (fixed: first step solid purple, others hollow purple, last step yellow) */
    .roadmap-wrap { margin-top: 48px; display: flex; justify-content: center; }
    .roadmap-steps { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
    .road-step {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 13px 21px; border-radius: 14px;
      font-family: var(--font-display); font-weight: 600; font-size: 14px;
      color: var(--text-head); white-space: nowrap;
    }
    .road-step-first { background: var(--purple); border: 1px solid var(--purple); }
    .road-step-mid { background: rgba(93,0,213,0.15); border: 1px solid rgba(93,0,213,0.3); }
    .road-step-last { background: var(--yellow); border: 1px solid rgba(93,0,213,0.3); color: #080d1a; }
    .road-chevron {
      color: var(--text-muted); font-size: 14px; flex-shrink: 0;
      display: flex; align-items: center;
    }

    /* ── FORM SECTION ── */
    .form-section {
      padding: 80px 0;
      background: linear-gradient(180deg, rgba(93,0,213,0.06) 0%, transparent 100%);
    }
    .form-container {
      max-width: 560px; margin: 0 auto; padding: 0 24px;
    }
    .form-box {
      background: linear-gradient(149deg, #0e1528 6%, #130e2a 94%);
      border: 1px solid rgba(93,0,213,0.3);
      border-radius: 20px; padding: 40px;
      box-shadow: 0 0 60px rgba(93,0,213,0.12);
    }
    .form-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--text-head); text-align: center; margin-bottom: 6px; }
    .form-subtitle { font-size: 14px; color: var(--text-muted); text-align: center; margin-bottom: 32px; }
    .form-privacy { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 16px; }
    .form-success { display: none; text-align: center; padding: 20px; }
    .form-success-icon { font-size: 48px; margin-bottom: 12px; }
    .form-success h3 { font-family: var(--font-display); font-size: 20px; color: var(--text-head); margin-bottom: 8px; }
    .form-success p { font-size: 14px; color: var(--text-muted); }

    /* ════════════════════════════════════════════════════════════
       BIGIN WEB-TO-RECORD FORM — DARK THEME OVERRIDE
       Bigin ships its own engine (checkMandatory…(), removeError(),
       the .wf-field-error-active class toggle, the country/multiselect
       dropdown builders). None of that JS logic is touched here —
       this block only restyles the rendered markup. Every selector
       is prefixed with #apply so it out-specifies bigin.css (which
       loads after style.css in <head>) without needing !important
       everywhere.
    ════════════════════════════════════════════════════════════ */
    #apply .wf-parent,
    #apply .wf-wrapper { padding: 0; height: auto; overflow: visible; background: transparent; }
    #apply .wf-form-component { padding: 0; }

    /* Row + label */
    #apply .wf-row { margin-bottom: 16px; }
    #apply .wf-label {
      display: block; font-size: 15px; font-weight: 500;
      color: var(--text-body); margin-bottom: 6px;
      font-family: var(--font-body);
    }

    /* Mandatory-field colored bar */
   /* #apply .wf-field-mandatory .wf-field-inner::before { background-color: var(--purple-mid); }*/

    /* Text inputs + dropdown shells */
    #apply .wf-field-input,
    #apply .wf-field-dropdown {
      width: 100%; box-sizing: border-box;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 12px 16px;
      min-height: 44px;
      color: var(--text-head);
      font-family: var(--font-body); font-size: 15px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    #apply input,
    #apply select { background-color: transparent; color: var(--text-head); }
    #apply .wf-field-item { min-height: 44px; color: var(--text-head); }
    #apply .wf-field-input::placeholder { color: var(--text-muted); }

    /* Focus state */
    #apply .wf-field-input:focus,
    #apply .wf-field-dropdown .wf-field-input:focus,
    #apply .wf-input-focus.wf-field .wf-field-input,
    #apply .wf-input-focus.wf-field .wf-field-dropdown {
      border-color: rgba(93,0,213,0.6);
      box-shadow: 0 0 0 3px rgba(93,0,213,0.12);
    }

    /* Error state — Bigin toggles .wf-field-error-active automatically */
    #apply .wf-field-error-active.wf-field .wf-field-input:not(.date-input-container .wf-field-input),
    #apply .wf-field-error-active.wf-field .wf-field-dropdown,
    #apply .wf-field-error-active .date-input-container {
      border: 1px solid #f87171 !important;
      box-shadow: 0 0 0 3px rgba(248,113,113,0.15) !important;
    }
    #apply .wf-field-error {
      color: #f87171; font-size: 12px; margin-top: 4px;
      font-family: var(--font-body);
    }

    /* ── Dropdown menu (Highest Qualification / Background / Country) ── */
    #apply .dropdown-menu {
      background: #0e1528;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    }
    /* Country dropdown items render as .option > .icon-text-dropdown > span (no text-color set by bigin.css at all, so it must be explicit here) */
    #apply .dropdown-menu .option,
    #apply .dropdown-menu .option-txt,
    #apply .dropdown-menu .icon-text-dropdown,
    #apply .dropdown-menu .icon-text-dropdown span {
      color: var(--text-body);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    #apply .dropdown-menu .option:hover,
    #apply .dropdown-menu .option[data-selected='true'] {
      background-color: rgba(93,0,213,0.18);
      color: var(--text-head);
    }
    #apply .dropdown-menu .no-results { color: var(--text-muted); }

    /* Search box inside the country dropdown */
    #apply .dropdown-search-input {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--text-head);
      border-radius: 8px;
    }
    #apply .dropdown-search-input::placeholder { color: var(--text-muted); }
    #apply .dropdown-search-input:hover,
    #apply .dropdown-search-input:focus {
      border-color: rgba(93,0,213,0.6);
    }

    /* Selected value shown in the closed dropdown / phone code area */
    #apply .selected-options-field,
    #apply .content-display-area { color: var(--text-head); }

    /* Selected multi-pick "tag" pills (Qualification / Background chosen values) —
       bigin.css ships these as a light-blue pill (#CEEBFF) with no explicit text
       color, so white page text sits on light blue and is unreadable. Recolor the
       whole pill to the dark theme. */
    #apply .multi-tag {
      background-color: rgba(93,0,213,0.18) !important;
      border: 1px solid rgba(93,0,213,0.35);
    }
    #apply .tag-data-val {
      color: var(--text-head) !important;
    }
    #apply .tag-close-btn {
      color: var(--text-head);
      opacity: 0.7;
    }
    #apply .tag-close-btn:hover { opacity: 1; }

    /* Phone / dial-code dropdown row */
    #apply .multiselect.wf-field-dropdown {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
    }
    #apply .multiple-fields-div .wf-field-dropdown { border-radius: 12px; border-bottom: 0; margin-right:6px; }
    #apply .multiple-fields-div .wf-field-item:not(.selected-options) { border-radius: 12px; }
    #apply .field-2 input {
      width: 100%; box-sizing: border-box;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 0 0 12px 12px;
      padding: 12px 16px; min-height: 44px;
      color: var(--text-head); font-family: var(--font-body); font-size: 15px;
    }
    #apply .field-2 input:focus {
      border-color: rgba(93,0,213,0.6); box-shadow: 0 0 0 3px rgba(93,0,213,0.12);
    }

    /* Submit button — restyle Bigin's .wf-btn to match our yellow CTA style */
    #apply .wform-btn-wrap {
      margin-top: 8px;
      display: block; /* override bigin's flex/justify-end so button can go full width */
    }
    #apply .wf-btn.form-submit {
      width: 100%; padding: 14px;
      background: var(--yellow) !important; color: #080d1a !important;
      font-family: var(--font-display); font-weight: 700; font-size: 15px;
      border: none; border-radius: 24px; cursor: pointer;
      box-shadow: 0 0 20px var(--yellow-shadow);
      transition: transform 0.15s, box-shadow 0.15s;
    }
    #apply .wf-btn.form-submit:hover {
      transform: translateY(-1px); box-shadow: 0 0 32px var(--yellow-shadow);
      background: var(--yellow) !important; color: #080d1a !important;
    }
    #apply .wf-btn.form-submit:disabled {
      opacity: 0.6; cursor: not-allowed; transform: none;
    }

    /* Help text */
    #apply .wf-field-help-text { color: var(--text-muted); font-size: 12px; }

    /* ── FAQ ── */
    .faq-list { max-width: 768px; margin: 48px auto 0; }
    .faq-item { border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: rgba(255,255,255,0.02); }
    .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px; cursor: pointer; font-size: 15px; font-weight: 500; color: var(--text-head); transition: background 0.2s; user-select: none; }
    .faq-question:hover { background: rgba(255,255,255,0.03); }
    .faq-icon { width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--text-body); flex-shrink: 0; transition: transform 0.25s, background 0.2s; }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(93,0,213,0.2); color: var(--purple-light); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; padding: 0 20px; font-size: 14px; color: var(--text-body); line-height: 1.65; }
    .faq-item.open .faq-answer { max-height: 200px; padding: 0 20px 20px; }

    /* ── CTA ── (fixed: WhatsApp button uses glass style, not strong green) */
    .cta-section { position: relative; padding: 96px 0; overflow: hidden; }
    .cta-orb { position: absolute; pointer-events: none; }
    .cta-orb-1 { top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: #7008e7; opacity: 0.3; filter: blur(120px); border-radius: 999px; }
    .cta-orb-2 { bottom: -50px; left: 50%; transform: translateX(-70%); width: 320px; height: 320px; background: #432dd7; opacity: 0.3; filter: blur(120px); border-radius: 999px; }
    .cta-inner { position: relative; text-align: center; max-width: 768px; margin: 0 auto; padding: 0 24px; }
    .cta-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--badge-bg); border: 1px solid var(--badge-border); border-radius: 999px; padding: 5px 13px; margin-bottom: 24px; }
    .cta-badge span { font-size: 12px; color: #c084fc; font-weight: 500; }
    .cta-h2 { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--text-head); letter-spacing: -1px; line-height: 1.1; margin-bottom: 20px; }
    .cta-h2 .yellow { color: var(--yellow); }
    .cta-sub { font-size: 16px; color: var(--text-body); margin-bottom: 40px; }
    .cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
    .btn-cta-primary { padding: 16px 32px; font-size: 15px; }
    /* WhatsApp button: glass style from design (rgba bg, subtle border) */
    .btn-whatsapp-glass {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.05); color: var(--text-head);
      font-family: var(--font-display); font-weight: 600; font-size: 14px;
      padding: 14px 28px; border-radius: 30px;
      border: 1px solid rgba(255,255,255,0.12);
      cursor: pointer; text-decoration: none; white-space: nowrap;
      transition: background 0.15s, border-color 0.15s;
    }
    .btn-whatsapp-glass:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.25); }
    .cta-contact-row { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
    .cta-contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
    .cta-contact-item svg { color: var(--section-label); }

    /* ── FLOATING WHATSAPP BUTTON (Web/Desktop only) ── */
    .whatsapp-float {
      position: fixed;
      right: 28px;
      bottom: 28px;
      z-index: 150;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 18px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.6);
      text-decoration: none;
      animation: wa-pulse 2.4s infinite;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .whatsapp-float:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 24px rgba(37,211,102,0.55);
    }
    .whatsapp-float svg { display: block; }

    /* Tooltip: "Talk to our team" */
    .whatsapp-tooltip {
      position: absolute;
      right: 72px;
      top: 50%;
      transform: translateY(-50%);
      background: #0e1528;
      color: var(--text-head);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.1);
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, right 0.2s ease;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }
    .whatsapp-tooltip::after {
      content: '';
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-left-color: #0e1528;
    }
	
	.whatsapp-float img {height:48px;}
    .whatsapp-float:hover .whatsapp-tooltip {
      opacity: 1;
      right: 76px;
    }

    @keyframes wa-pulse {
      0%   { box-shadow: 0 4px 18px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
      70%  { box-shadow: 0 4px 18px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
      100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
    }

    /* Hidden on mobile — web/desktop only, per requirement */
    /*@media (max-width: 768px) {
      /*.whatsapp-float { display: none; }
    } */

    /* ── FOOTER ── */
    footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 32px 48px; text-align: center; font-size: 14px; line-height:22px; color: var(--text-muted); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .curriculum-grid { grid-template-columns: repeat(3,1fr); }
      .numbers-features { grid-template-columns: repeat(2,1fr); }
      .num-feat:nth-child(even) { border-right: none; }
      .num-feat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.08); }
    }

    @media (max-width: 768px) {
      .mobile-sticky-bar { display: flex; }
      /* On mobile nav is sticky (not fixed), reset body padding-top */
      body { padding-top: 0; padding-bottom: 72px; }
      nav { position: sticky; }
      /* Mobile-only: fade nav actions when hero has scrolled past */
      nav.hero-passed .nav-actions { opacity: 0; pointer-events: none; }

      /* Compact nav header — fits logo + call icon + Apply Now on 360px */
      .nav-inner { padding: 12px 16px; }
      .nav-logo span { font-size: 17px; }
      .nav-actions { gap: 8px; }
      /* Call Now: icon only, hide text label */
      .nav-call-label { display: none; }
      .btn-call { padding: 7px 9px; gap: 0; font-size: 13px; }
      /* Apply Now: hide arrow, tighter padding */
      .nav-apply-icon { display: none; }
      .nav-apply-label { font-size: 12px; }
      /* Override .btn-primary only inside nav on mobile */
      .nav-actions .btn-primary { font-size: 12px; padding: 7px 13px; gap: 0; box-shadow: none; }

      .container { padding: 0 20px; }
      .section { padding: 56px 0; }
      .hero { padding: 40px 0 64px; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-h1 { font-size: 36px; letter-spacing: -0.8px; }
      .hero-desc { font-size: 16px; }
      .hero-features { grid-template-columns: 1fr; }
      .who-grid { grid-template-columns: 1fr; }
      .problem-grid { grid-template-columns: 1fr; }
      .career-grid { grid-template-columns: 1fr 1fr; }
      .daylife-grid { grid-template-columns: 1fr; }
      .curriculum-grid { grid-template-columns: 1fr 1fr; }
      .numbers-grid { grid-template-columns: 1fr 1fr; }
      .numbers-features { grid-template-columns: 1fr 1fr; }
      .mentor-card { grid-template-columns: 1fr; gap: 24px; }
      .projects-grid { grid-template-columns: 1fr 1fr; }
      .section-heading { font-size: 28px; }
      .cta-h2 { font-size: 32px; }
      .roadmap-steps { gap: 6px; }
      .opportunity-box { padding: 28px; }
      .db-bottom-row { grid-template-columns: 1fr; }
      .form-box { padding: 28px 20px; }
	  .whatsapp-float {
      right: 28px;
      bottom: 52px;
      z-index: 150;
      width: 40px;
      height: 40px;     
      display: flex;
      align-items: center;
      justify-content: center;      
    }
	  .whatsapp-float img {height:36px;}
    }

    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .section { padding: 48px 0; }
      .hero-h1 { font-size: 28px; }
      .career-grid { grid-template-columns: 1fr; }
      .curriculum-grid { grid-template-columns: 1fr 1fr; }
      .projects-grid { grid-template-columns: 1fr; }
      .numbers-grid { grid-template-columns: 1fr 1fr; }
      .cta-h2 { font-size: 26px; }
      .hero-ctas { flex-direction: column; }
      .hero-ctas a, .hero-ctas button { width: 100%; justify-content: center; }
    }

    @media (max-width: 360px) {
      .hero-h1 { font-size: 24px; }
      .curriculum-grid { grid-template-columns: 1fr; }
      .numbers-features { grid-template-columns: 1fr; }
      .num-feat { border-right: none !important; border-top: 1px solid rgba(255,255,255,0.08) !important; }
      .num-feat:first-child { border-top: none !important; }
      .career-grid { grid-template-columns: 1fr; }
      .roadmap-steps { flex-direction: column; align-items: flex-start; }
      /* Extra tight nav for 320-360px */
      .nav-inner { padding: 10px 12px; }
      .nav-logo span { font-size: 15px; }
      .btn-call { padding: 6px 8px; }
      .nav-actions .btn-primary { font-size: 11px; padding: 6px 10px; }
      /* Sticky footer bar tightened */
      .mobile-sticky-bar { padding: 8px 12px; gap: 6px; }
      .msb-logo span { font-size: 13px; }
      .msb-call { font-size: 11px; padding: 6px 8px; }
      .msb-apply { font-size: 11px; padding: 6px 12px; }
    }