/* ═══════════════════════════════════════════════════════════════
   Beeps Academy — Main Stylesheet
   ───────────────────────────────────────────────────────────────
   Loaded by: index.html (homepage) + all course pages (for nav/footer/chatbot)

   TABLE OF CONTENTS
   ─────────────────
   01. Design Tokens         :root variables
   02. Reset & Base          *, html, body
   03. Custom Cursor         .cur, .cur-ring
   04. Navigation            nav, .nav-*, .mobile-drawer         ← SHARED
   05. Buttons & Links       .btn-primary, .btn-outline, .btn-track
   06. Section Utilities     .sec-eyebrow, .sec-headline, .sec-wrap
   07. Hero                  .hero, .hero-bg, .hero-blob*
   08. Workflow Canvas       #wfSvg, .wf-node, .wf-edge
   09. Terminal              .term-*, .term-body
   10. Stats Bar             .stats-bar
   11. Builds Section        .builds-section, .build-card
   12. Learning Paths        .paths-section, .path-card
   13. Courses Overview      .courses-section, .course-card, .cf-filters
   14. Internship Section    .internship, .intern-*
   15. Testimonials          .proof-section, .proof-card
   16. Powered By Band       .powered-band, .pb-*
   17. Apply / Form          .apply-section, .aform-*
   18. Final CTA             .final-cta
   19. Footer                footer, .footer-*                    ← SHARED
   20. Chatbot Widget        .bpch-*                              ← SHARED
   21. Responsive            @media queries
   ═══════════════════════════════════════════════════════════════ */

/* ── 01. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --ink:    #f0f7ff;
  --deep:   #e8f2ff;
  --panel:  #ffffff;
  --card:   #ffffff;
  --cyan:   #00b4f0;
  --cyan2:  #0090c8;
  --violet: #6d28d9;
  --violet2:#7c3aed;
  --lime:   #16a34a;
  --white:  #0f172a;
  --muted:  #64748b;
  --border: rgba(0,180,240,.15);
  --bordv:  rgba(109,40,217,.15);
  /* Layout */
  --page-max-width: 1380px;
  --section-padding-x: 52px;
  --section-padding-x-mobile: 24px;
  /* Fluid type scale */
  --text-h1: clamp(48px, 6.5vw, 96px);
  --text-h2: clamp(32px, 4vw, 60px);
  --text-h3: clamp(20px, 1.5vw, 24px);
  --text-body: 17px;
  --line-h1: 1.05;
  --line-h2: 1.1;
  --line-h3: 1.3;
  --line-body: 1.7;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;overflow-x:clip;} /* clip ≠ hidden — does not create a scroll container, so position:sticky works */
body{background:var(--ink);color:var(--white);font-family:"Plus Jakarta Sans",sans-serif;overflow-x:clip;-webkit-text-size-adjust:100%;}

/* FLUID TYPE SCALE — base defaults, overridden by component-specific rules */
h1{font-size:var(--text-h1);line-height:var(--line-h1);}
h2{font-size:var(--text-h2);line-height:var(--line-h2);}
h3{font-size:var(--text-h3);line-height:var(--line-h3);}
p{font-size:var(--text-body);line-height:var(--line-body);}

/* GLOBAL CONTENT WRAPPER — max-width + horizontal padding */
.sec-wrap{max-width:var(--page-max-width);margin:0 auto;padding:0 var(--section-padding-x);box-sizing:border-box;}

/* CURSOR */
.cur{width:8px;height:8px;background:var(--cyan);border-radius:50%;position:fixed;pointer-events:none;z-index:9999;transition:transform .12s;mix-blend-mode:multiply;}
@media(max-width:960px){.cur,.cur-ring{display:none;}body{cursor:auto;}}
.cur-ring{width:32px;height:32px;border:1px solid var(--cyan);border-radius:50%;position:fixed;pointer-events:none;z-index:9998;opacity:.4;transition:all .28s cubic-bezier(.23,1,.32,1);}

/* GRAIN */
/* grain removed for light mode */

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:600;padding:14px 52px;display:flex;justify-content:space-between;align-items:center;background:rgba(255,255,255,.95);backdrop-filter:blur(24px);border-bottom:1px solid rgba(0,180,240,.1);box-shadow:0 2px 24px rgba(0,180,240,.07);}

/* Breadcrumb bar — fixed below main nav on course + blog pages */
.cd-breadcrumbs{position:fixed;top:65px;left:0;right:0;z-index:500;background:rgba(255,255,255,.98);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);}
/* Breadcrumb list fallback — ensures no browser numbered-list rendering */
.cd-breadcrumbs ol,
.cd-breadcrumbs-list{list-style:none!important;padding:0;margin:0;display:flex;flex-wrap:wrap;align-items:center;gap:6px;}
.nav-brand{display:flex;align-items:center;}
.nav-lockup{display:flex;align-items:center;gap:0;height:52px;background:white;border-radius:10px;padding:6px 14px;}
.nav-lockup-logo{display:flex;align-items:center;padding-right:14px;}
.nav-beeps-logo{height:40px;width:auto;object-fit:contain;}
.nav-lockup-divider{width:2px;height:32px;background:#e0e0e0;flex-shrink:0;}.nav-lockup-text{padding-left:14px;display:flex;flex-direction:column;justify-content:center;}
.nav-school-name{font-size:13px;font-weight:700;color:#1a1a2e;line-height:1.2;white-space:nowrap;}
.nav-school-sub{font-size:10px;color:var(--cyan);font-weight:700;letter-spacing:.08em;line-height:1.2;}
.nav-links{display:flex;gap:30px;list-style:none;}
.nav-links a{color:#475569;text-decoration:none;font-size:.78rem;font-weight:700;letter-spacing:.04em;transition:color .2s;}
.nav-links a:hover{color:var(--cyan);}
.nav-cta{background:linear-gradient(135deg,var(--cyan),var(--violet));color:#fff;padding:9px 22px;font-weight:800;font-size:.76rem;letter-spacing:.06em;border:none;cursor:pointer;text-decoration:none;border-radius:100px;transition:all .2s;text-transform:uppercase;box-shadow:0 4px 16px rgba(0,180,240,.25);}
.nav-cta:hover{transform:translateY(-1px);box-shadow:0 6px 24px rgba(0,180,240,.35);}

/* HERO */
.hero{min-height:100vh;position:relative;overflow:hidden;display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:40px;padding:120px 52px 80px;}
.hero-bg{position:absolute;inset:0;}
/* animated grid */
.hero-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(0,180,240,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(0,180,240,.06) 1px,transparent 1px);background-size:60px 60px;animation:gridScroll 20s linear infinite;}
@keyframes gridScroll{0%{transform:translateY(0)}100%{transform:translateY(60px)}}
/* glow blobs */
.hero-blob1{position:absolute;width:700px;height:700px;border-radius:50%;background:radial-gradient(circle,rgba(0,180,240,.1) 0%,transparent 65%);top:-200px;right:-100px;animation:blobPulse 8s ease-in-out infinite alternate;}
.hero-blob2{position:absolute;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(109,40,217,.1) 0%,transparent 65%);bottom:-100px;left:20%;animation:blobPulse 11s 3s ease-in-out infinite alternate;}
@keyframes blobPulse{from{transform:scale(1);opacity:.7}to{transform:scale(1.15);opacity:1}}

.hero-content{position:relative;z-index:2;}
.hero-badge{display:inline-flex;align-items:center;gap:10px;padding:7px 16px 7px 12px;border:1px solid rgba(0,229,255,.25);border-radius:6px;background:rgba(0,180,240,.06);font-size:.68rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--cyan);margin-bottom:40px;opacity:0;animation:slideIn .7s .15s forwards;}
.badge-pulse{width:6px;height:6px;border-radius:50%;background:var(--cyan);animation:pulse 1.4s infinite;}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.8)}}

.hero-headline{font-size:clamp(3rem,6.5vw,7rem);font-weight:800;line-height:.97;letter-spacing:-.04em;margin-bottom:28px;opacity:0;animation:slideIn .8s .3s forwards;}
.hero-headline .h-white{color:var(--white);}
.hero-headline .h-cyan{color:var(--cyan);}
.hero-headline .h-italic{font-family:Fraunces,serif;font-style:italic;font-weight:200;color:rgba(168,85,247,.9);}

.hero-sub{font-size:1.1rem;color:var(--muted);line-height:1.7;max-width:520px;margin-bottom:48px;font-weight:400;opacity:0;animation:slideIn .8s .45s forwards;}
.hero-sub strong{color:var(--white);font-weight:700;}

.hero-actions{display:flex;gap:16px;align-items:center;opacity:0;animation:slideIn .8s .58s forwards;}
.btn-primary{background:var(--cyan);color:#fff;padding:16px 36px;font-weight:800;font-size:.92rem;border-radius:6px;border:none;cursor:pointer;text-decoration:none;display:inline-block;letter-spacing:.04em;transition:all .2s;box-shadow:0 4px 20px rgba(0,180,240,.3);}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 32px rgba(0,180,240,.35);}
.btn-outline{color:#0f172a;font-weight:700;font-size:.92rem;text-decoration:none;border:1px solid rgba(15,23,42,.2);padding:15px 30px;border-radius:6px;transition:all .2s;display:inline-block;}
.btn-outline:hover{border-color:var(--cyan);color:var(--cyan);}

.hero-proof{display:flex;flex-wrap:wrap;gap:32px 48px;margin-top:72px;padding-top:36px;border-top:1px solid var(--border);opacity:0;animation:slideIn .8s .72s forwards;}
.proof-num{font-size:2.4rem;font-weight:800;letter-spacing:-.04em;line-height:1;color:var(--white);}
.proof-num span{color:var(--cyan);}
.proof-label{font-size:.68rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-top:5px;}

/* floating right panel — stacked workflow + terminal */
.hero-right-panel{position:relative;width:100%;display:flex;flex-direction:column;gap:14px;opacity:0;animation:slideIn .9s .6s forwards;z-index:2;}

/* n8n workflow canvas */
.workflow-canvas{background:var(--panel);border:1px solid var(--border);border-radius:12px;overflow:hidden;box-shadow:0 8px 40px rgba(0,180,240,.12),0 1px 0 rgba(0,180,240,.1);}
.wf-bar{background:#f8fafc;padding:10px 14px;display:flex;align-items:center;gap:8px;border-bottom:1px solid var(--border);}
.wf-dot{width:9px;height:9px;border-radius:50%;}
.wf-title{font-family:"DM Mono",monospace;font-size:.6rem;color:#475569;margin-left:6px;letter-spacing:.06em;flex:1;}
.wf-status{font-family:"DM Mono",monospace;font-size:.58rem;color:var(--lime);letter-spacing:.08em;display:flex;align-items:center;gap:5px;}
.wf-status-dot{width:5px;height:5px;border-radius:50%;background:var(--lime);animation:pulse 1.4s infinite;}
.wf-body{padding:20px;position:relative;height:280px;}

/* SVG workflow styles */
.wf-svg{width:100%;height:100%;overflow:visible;touch-action:none;}
/* node base */
.wf-node{cursor:none;}
.wf-node rect{rx:8;ry:8;filter:drop-shadow(0 4px 12px rgba(0,0,0,.4));}
.wf-node text{font-family:"DM Mono",monospace;font-size:8px;font-weight:500;fill:var(--white);}
.wf-node .sub{font-size:6.5px;fill:var(--muted);}
/* node icon circle */
.node-icon{font-size:11px;}
/* connection paths */
.wf-edge{fill:none;stroke-width:1.5;stroke-linecap:round;}
/* data packet dot travelling along path */
.packet{r:4;opacity:0;}

/* terminal */
.hero-terminal{background:#0f172a;border:1px solid rgba(0,180,240,.2);border-radius:12px;overflow:hidden;box-shadow:0 8px 40px rgba(15,23,42,.15);}
.term-bar{background:#1e293b;padding:10px 14px;display:flex;align-items:center;gap:8px;border-bottom:1px solid rgba(255,255,255,.08);}
.term-dot{width:9px;height:9px;border-radius:50%;}
.term-dot.r{background:#ff5f57;} .term-dot.y{background:#febc2e;} .term-dot.g{background:#28c840;}
.term-title{font-family:"DM Mono",monospace;font-size:.6rem;color:var(--muted);margin-left:6px;letter-spacing:.06em;}
.term-body{padding:16px 18px 20px;font-family:"DM Mono",monospace;font-size:.68rem;line-height:1.75;color:#64b5f6;}
.term-line .prompt{color:var(--cyan);}
.term-line .cmd{color:var(--white);}
.term-line .out{color:#4db6ac;}
.term-line .comment{color:#546e7a;}
.term-line .highlight{color:var(--lime);}
.term-cursor{display:inline-block;width:7px;height:13px;background:var(--cyan);animation:blink2 1s infinite;vertical-align:middle;margin-left:2px;}
@keyframes blink2{0%,100%{opacity:1}50%{opacity:0}}

@keyframes slideIn{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

/* STATS BAR */
.stats-bar{background:#ffffff;border-top:1px solid rgba(0,180,240,.12);border-bottom:1px solid rgba(0,180,240,.12);padding:24px 52px;display:flex;justify-content:space-around;align-items:center;gap:24px;box-shadow:0 2px 16px rgba(0,180,240,.06);}
.stat-item{text-align:center;}
.stat-val{font-size:1.6rem;font-weight:800;letter-spacing:-.03em;color:var(--white);}
.stat-val span{color:var(--cyan);}
.stat-key{font-size:.62rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-top:4px;}
.stat-divider{width:1px;height:40px;background:var(--border);}

/* SECTION COMMON */
section{padding:110px 52px;}
.sec-eyebrow{font-size:.62rem;font-weight:800;letter-spacing:.22em;text-transform:uppercase;color:var(--cyan);margin-bottom:20px;display:flex;align-items:center;gap:10px;}
.sec-eyebrow::before{content:"";display:inline-block;width:24px;height:1.5px;background:var(--cyan);border-radius:2px;}
.sec-eyebrow.violet-ey{color:var(--violet2);}
.sec-eyebrow.violet-ey::before{background:var(--violet2);}
.sec-headline{font-size:clamp(2.2rem,4vw,3.8rem);font-weight:800;letter-spacing:-.04em;line-height:1.05;color:var(--white);}
.sec-headline em{font-family:Fraunces,serif;font-style:italic;font-weight:200;color:var(--cyan);}
.sec-headline .vi{color:var(--violet2);}

/* WHAT YOU'LL BUILD */
.builds{background:#f8fafc;padding-top:48px;padding-bottom:32px;}
.builds-header{display:grid;grid-template-columns:1fr 1fr;gap:80px;margin-bottom:40px;align-items:end;}
.builds-sub{font-size:.9rem;color:var(--muted);line-height:1.75;font-weight:400;}
.builds-sub strong{color:var(--white);font-weight:700;}

/* BUILDS STACK */
.builds-stack{position:relative;}
.builds-stack .build-card{position:sticky;top:80px;padding:0;background:transparent;margin-bottom:0;overflow:visible;}
.builds-stack .build-card::before{display:none;}
.build-card-inner{border-radius:24px;padding:40px 40px 88px 40px;display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start;min-height:420px;transition:transform 0.1s linear;will-change:transform;box-shadow:0 4px 24px rgba(0,0,0,.06);overflow:hidden;position:relative;}
.build-card-inner::before{content:"";position:absolute;top:0;left:0;width:3px;height:0;background:linear-gradient(180deg,#0284c7,#6d28d9);transition:height .4s cubic-bezier(.23,1,.32,1);}
.build-card:hover .build-card-inner::before{height:100%;}
.build-card-text{display:flex;flex-direction:column;}
.build-card-visual{display:flex;align-items:center;justify-content:center;}
.build-num{font-family:"DM Mono",monospace;font-size:.6rem;color:rgba(109,40,217,.5);letter-spacing:.15em;margin-bottom:16px;}
.build-icon-wrap{width:80px;height:80px;border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:2.5rem;background:rgba(255,255,255,.7);box-shadow:0 4px 16px rgba(0,0,0,.08);border:none;}
.build-title{font-size:1.4rem;font-weight:800;letter-spacing:-.02em;color:#1a0a42;margin-bottom:12px;line-height:1.2;}
.build-desc{font-size:.88rem;color:#4b5563;line-height:1.75;font-weight:400;}
.build-stack{display:flex;flex-wrap:wrap;gap:6px;margin-top:20px;}
.stk{font-family:"DM Mono",monospace;font-size:.6rem;color:#6d28d9;border:1px solid rgba(109,40,217,.2);padding:3px 10px;border-radius:4px;background:rgba(109,40,217,.06);}
.builds-cta{padding-top:16px;}

/* CURRICULUM */
.curriculum{background:#ffffff;}
.curriculum-layout{display:grid;grid-template-columns:1fr 2fr;gap:80px;align-items:start;}
.curr-sticky{position:sticky;top:120px;}
.curr-intro{font-size:.9rem;color:var(--muted);line-height:1.75;margin-top:20px;margin-bottom:32px;}
.curr-cta-note{font-size:.7rem;color:var(--muted);font-family:"DM Mono",monospace;margin-top:12px;opacity:.7;}

.modules{display:flex;flex-direction:column;gap:0;}
.module{border:1px solid rgba(0,180,240,.15);margin-bottom:12px;border-radius:10px;overflow:hidden;cursor:pointer;transition:border-color .3s;background:#fff;box-shadow:0 1px 6px rgba(0,180,240,.05);}
.module:hover,.module.open{border-color:rgba(0,180,240,.4);box-shadow:0 4px 16px rgba(0,180,240,.1);}
.module-header{padding:22px 28px;display:flex;justify-content:space-between;align-items:center;gap:16px;}
.module-meta{display:flex;align-items:center;gap:14px;}
.module-num{font-family:"DM Mono",monospace;font-size:.62rem;color:rgba(0,180,240,.6);letter-spacing:.12em;min-width:32px;}
.module-title{font-size:.95rem;font-weight:800;color:var(--white);letter-spacing:-.01em;}
.module-weeks{font-size:.6rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);background:rgba(255,255,255,.05);padding:4px 10px;border-radius:100px;}
.module-toggle{width:24px;height:24px;border:1px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.7rem;color:var(--muted);flex-shrink:0;transition:all .2s;}
.module.open .module-toggle{border-color:var(--cyan);color:var(--cyan);background:rgba(0,180,240,.08);}
.module-body{display:none;padding:0 28px 24px;animation:fadeIn .25s ease;}
.module.open .module-body{display:block;}
@keyframes fadeIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
.topic-list{list-style:none;display:flex;flex-direction:column;gap:8px;}
.topic-item{display:flex;align-items:flex-start;gap:12px;font-size:.8rem;color:var(--muted);line-height:1.5;}
.topic-item::before{content:"→";color:var(--cyan);font-size:.75rem;flex-shrink:0;margin-top:1px;}
.module-project{margin-top:16px;padding:14px 16px;background:rgba(0,180,240,.04);border:1px solid rgba(0,180,240,.15);border-radius:8px;font-size:.75rem;color:var(--muted);}
.module-project strong{color:var(--cyan);}

/* COURSES / TRACKS */
.tracks{background:#f0f7ff;}
.tracks-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:64px;}
.track-card{background:#fff;border:1px solid rgba(0,180,240,.15);border-radius:16px;padding:36px 30px;position:relative;overflow:hidden;cursor:default;transition:transform .3s cubic-bezier(.23,1,.32,1),border-color .3s,box-shadow .3s;}
.track-card:hover{transform:translateY(-8px);border-color:rgba(0,180,240,.4);box-shadow:0 16px 48px rgba(0,180,240,.15);}
.track-card.featured{border-color:rgba(0,180,240,.4);background:linear-gradient(160deg,#e0f2fe,#ede9fe);}
.track-card.featured::before{content:"FLAGSHIP";position:absolute;top:20px;right:20px;font-size:.55rem;font-weight:800;letter-spacing:.15em;color:var(--cyan);background:rgba(0,180,240,.1);border:1px solid rgba(0,180,240,.3);padding:3px 10px;border-radius:4px;}
.track-glow{position:absolute;width:200px;height:200px;border-radius:50%;background:radial-gradient(circle,rgba(0,180,240,.08) 0%,transparent 65%);top:-60px;right:-60px;pointer-events:none;}
.track-icon{font-size:2.2rem;margin-bottom:20px;display:block;}
.track-title{font-size:1.25rem;font-weight:800;letter-spacing:-.02em;color:var(--white);margin-bottom:12px;}
.track-duration{font-family:"DM Mono",monospace;font-size:.65rem;color:var(--cyan);margin-bottom:14px;display:block;}
.track-desc{font-size:.8rem;color:var(--muted);line-height:1.7;}
.track-features{list-style:none;display:flex;flex-direction:column;gap:10px;margin-top:24px;}
.track-features li{display:flex;align-items:center;gap:10px;font-size:.78rem;color:var(--muted);}
.feat-check{width:18px;height:18px;border-radius:50%;background:rgba(0,180,240,.1);border:1px solid rgba(0,180,240,.25);display:flex;align-items:center;justify-content:center;font-size:.55rem;color:var(--cyan);flex-shrink:0;}
.track-price{margin-top:28px;padding-top:20px;border-top:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;}
.price-val{font-size:1.5rem;font-weight:800;color:var(--white);letter-spacing:-.03em;}
.price-val span{font-size:.75rem;color:var(--muted);font-weight:600;}
.btn-track{background:var(--cyan);color:#fff;padding:10px 22px;font-weight:800;font-size:.75rem;border-radius:6px;text-decoration:none;border:none;cursor:pointer;transition:all .2s;letter-spacing:.05em;}
.btn-track:hover{background:#fff;transform:translateY(-1px);}
.btn-track.outline{background:transparent;color:var(--cyan);border:1px solid rgba(0,180,240,.3);}
.btn-track.outline:hover{background:rgba(0,180,240,.08);}

/* INTERNSHIP */
.internship{background:#ffffff;padding:72px 52px;}
.intern-layout{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.intern-visual{position:relative;}
.intern-screen{background:#fff;border:1px solid rgba(0,180,240,.15);border-radius:16px;overflow:hidden;box-shadow:0 8px 40px rgba(0,180,240,.12);}
.intern-screen-bar{background:#f8fafc;padding:14px 18px;display:flex;align-items:center;gap:8px;border-bottom:1px solid rgba(0,180,240,.1);}
.ibar-dot{width:9px;height:9px;border-radius:50%;}
.intern-screen-body{padding:24px;}
.intern-project-card{background:rgba(0,180,240,.04);border:1px solid rgba(0,180,240,.15);border-radius:10px;padding:20px;margin-bottom:14px;}
.ipc-label{font-size:.58rem;font-weight:800;letter-spacing:.15em;text-transform:uppercase;color:var(--cyan);margin-bottom:8px;}
.ipc-title{font-size:.9rem;font-weight:700;color:var(--white);margin-bottom:6px;}
.ipc-meta{font-size:.7rem;color:var(--muted);display:flex;gap:12px;}
.ipc-status{display:inline-flex;align-items:center;gap:5px;font-size:.6rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:3px 10px;border-radius:100px;}
.status-live{background:rgba(22,163,74,.1);color:#16a34a;border:1px solid rgba(22,163,74,.25);}
.status-open{background:rgba(0,180,240,.08);color:var(--cyan);border:1px solid rgba(0,229,255,.2);}
.pipeline-row{display:flex;align-items:center;gap:8px;margin-top:16px;}
.pip-step{flex:1;padding:8px;background:#f8fafc;border:1px solid rgba(0,180,240,.12);border-radius:6px;text-align:center;font-size:.58rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);}
.pip-step.active{background:rgba(0,180,240,.08);border-color:rgba(0,229,255,.3);color:var(--cyan);}
.pip-arr{color:var(--border);font-size:.8rem;}

.intern-content{}
.intern-headline{font-size:clamp(2rem,3.5vw,3rem);font-weight:800;letter-spacing:-.04em;line-height:1.05;color:var(--white);margin-bottom:16px;}
.intern-headline span{color:var(--cyan);}
.intern-desc{font-size:.9rem;color:var(--muted);line-height:1.75;margin-bottom:36px;}
.intern-steps{list-style:none;display:flex;flex-direction:column;gap:20px;}
.intern-step{display:flex;gap:18px;align-items:flex-start;}
.step-num{width:32px;height:32px;border-radius:8px;background:linear-gradient(135deg,rgba(0,180,240,.12),rgba(0,180,240,.04));border:1px solid rgba(0,180,240,.2);display:flex;align-items:center;justify-content:center;font-family:"DM Mono",monospace;font-size:.7rem;color:var(--cyan);font-weight:500;flex-shrink:0;margin-top:2px;}
.step-text{font-size:.85rem;color:var(--muted);line-height:1.6;}
.step-text strong{color:var(--white);font-weight:700;display:block;margin-bottom:2px;}

/* TESTIMONIALS / SOCIAL PROOF */
.proof-section{background:#f4f8ff;padding:72px 52px;}
.proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:64px;}
.proof-card{background:#fff;border:1px solid rgba(0,180,240,.12);border-radius:14px;padding:28px;transition:border-color .3s;box-shadow:0 2px 12px rgba(0,180,240,.06);}
.proof-card:hover{border-color:rgba(0,180,240,.3);box-shadow:0 8px 32px rgba(0,180,240,.1);}
.proof-quote{font-size:.85rem;color:#334155;line-height:1.7;font-style:italic;margin-bottom:20px;}
.proof-author{display:flex;align-items:center;gap:12px;}
.author-avatar{width:36px;height:36px;border-radius:50%;background:linear-gradient(135deg,var(--violet),var(--cyan));display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:800;color:#fff;flex-shrink:0;}
.author-name{font-size:.8rem;font-weight:800;color:#0f172a;}
.author-role{font-size:.7rem;color:var(--muted);}
.proof-stars{color:#f59e0b;font-size:.7rem;margin-bottom:12px;letter-spacing:.1em;}

/* POWERED BY */
/* ── POWERED BY BAND — rich purple section with logo ── */
.powered-band{
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,#3b0764 0%,#4c1d95 35%,#5b21f5 65%,#7c3aed 100%);
  padding:48px 52px;display:flex;justify-content:space-between;align-items:center;gap:48px;
}
/* circuit mesh background */
.powered-band::before{
  content:"";position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px),
    radial-gradient(circle,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:40px 40px,40px 40px,20px 20px;
  pointer-events:none;
}
/* radial glow blobs */
.powered-band::after{
  content:"";position:absolute;
  width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(167,139,250,.25) 0%,transparent 65%);
  top:-200px;right:-100px;pointer-events:none;
}
.pb-left{position:relative;z-index:1;max-width:520px;}
.pb-eyebrow{font-size:.62rem;font-weight:800;letter-spacing:.22em;text-transform:uppercase;color:rgba(196,181,253,.7);margin-bottom:16px;display:flex;align-items:center;gap:10px;}
.pb-eyebrow::before{content:"";display:inline-block;width:20px;height:1.5px;background:rgba(196,181,253,.5);border-radius:2px;}
.pb-headline{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:800;letter-spacing:-.03em;color:#fff;line-height:1.1;margin-bottom:14px;}
.pb-headline span{color:#c4b5fd;}
.pb-desc{font-size:.88rem;color:rgba(196,181,253,.8);line-height:1.75;font-weight:500;}
.pb-right{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;gap:16px;text-align:center;}
/* logo card */
.pb-logo-card{
  background:rgba(255,255,255,.95);
  border-radius:20px;padding:20px 32px;
  box-shadow:0 8px 40px rgba(0,0,0,.3),0 0 0 1px rgba(255,255,255,.2);
  display:flex;flex-direction:column;align-items:center;gap:10px;
  min-width:220px;
}
.pb-logo-img{height:72px;width:auto;}
.pb-logo-sub{font-size:.58rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:#6d28d9;border-top:1px solid rgba(109,40,217,.15);padding-top:8px;width:100%;text-align:center;}
.pb-visit{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;font-size:.74rem;font-weight:800;letter-spacing:.05em;
  padding:10px 24px;border-radius:100px;text-decoration:none;
  transition:all .2s;backdrop-filter:blur(8px);
  display:inline-block;
}
.pb-visit:hover{background:rgba(255,255,255,.22);border-color:rgba(255,255,255,.4);}
/* floating circuit nodes */
.pb-node{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.15);pointer-events:none;}

/* CTA */
.final-cta{background:linear-gradient(160deg,#e0f2fe,#ede9fe);padding:72px 52px;text-align:center;position:relative;overflow:hidden;}
.final-cta::before{content:"";position:absolute;width:800px;height:800px;border-radius:50%;background:radial-gradient(circle,rgba(0,180,240,.1) 0%,transparent 60%);top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none;}
.cta-content{position:relative;z-index:1;max-width:640px;margin:0 auto;}
.cta-big{font-size:clamp(3rem,7vw,6.5rem);font-weight:800;line-height:.95;letter-spacing:-.05em;color:#0f172a;margin-bottom:24px;}
.cta-big .cy{color:var(--cyan);}
.cta-big .it{font-family:Fraunces,serif;font-style:italic;font-weight:200;color:rgba(168,85,247,.9);}
.cta-sub-text{font-size:1rem;color:#475569;line-height:1.7;margin-bottom:48px;}
.cta-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
.cta-detail{margin-top:20px;font-size:.72rem;color:var(--muted);font-family:"DM Mono",monospace;}

/* FOOTER */
footer{background:#f8fafc;border-top:1px solid rgba(0,180,240,.12);padding:56px 52px 36px;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;}
.footer-brand{}
.footer-name{font-size:1.1rem;font-weight:800;letter-spacing:-.02em;color:#0f172a;margin-bottom:4px;}
.footer-name span{color:var(--cyan);}
.footer-domain{font-family:"DM Mono",monospace;font-size:.65rem;color:var(--muted);margin-bottom:16px;}
.footer-tagline{font-size:.8rem;color:var(--muted);line-height:1.65;max-width:240px;}
.footer-powered{margin-top:20px;font-size:.68rem;color:rgba(124,58,237,.6);font-weight:700;letter-spacing:.06em;text-transform:uppercase;}
.footer-powered a{color:rgba(124,58,237,.7);text-decoration:none;}
.footer-powered a:hover{color:var(--violet2);}
.footer-col-title{font-size:.58rem;font-weight:800;letter-spacing:.2em;text-transform:uppercase;color:var(--cyan);margin-bottom:20px;}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:11px;}
.footer-links a{color:var(--muted);text-decoration:none;font-size:.8rem;font-weight:600;transition:color .2s;}
.footer-links a:hover{color:var(--white);}
.footer-bottom{grid-column:1/-1;margin-top:40px;padding-top:20px;border-top:1px solid rgba(0,180,240,.1);display:flex;flex-wrap:wrap;gap:8px;justify-content:space-between;font-size:.67rem;color:#94a3b8;font-weight:700;}

/* RESPONSIVE */
/* ── TABLET (max 960px) ── */
@media(max-width:960px){
  nav{padding:14px 20px;}
  .nav-links{display:none;}
  .nav-school-sub{display:none;}
  section,.internship,.proof-section,.final-cta{padding:48px 20px;}
  footer{padding:56px 20px 36px;grid-template-columns:1fr 1fr;}
  .hero{padding:100px 20px 60px;grid-template-columns:1fr;}
  .hero-right-panel{display:none;}
  .mobile-workflow{display:block;grid-column:1/-1;}
  .builds-header{grid-template-columns:1fr;gap:24px;}
  .curriculum-layout{grid-template-columns:1fr;}
  .curr-sticky{position:static;}
  .intern-layout{grid-template-columns:1fr;}
  .intern-visual{display:none;}
  .tracks-grid{grid-template-columns:1fr 1fr;}
  .track-card.featured::before{font-size:.5rem;}
  .builds-grid{grid-template-columns:1fr 1fr;background:none;gap:2px;}/* legacy */
  .proof-grid{grid-template-columns:1fr;}
  .stats-bar{gap:12px;padding:20px;}
  .stat-divider{display:none;}
  .powered-band{flex-direction:column;text-align:center;padding:48px 20px;}
  .pb-right{text-align:center;}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center;}
  .hero-proof{gap:24px;flex-wrap:wrap;}
  .cta-btns{flex-direction:column;align-items:center;}
}

/* ── MOBILE (max 600px) ── */
@media(max-width:600px){
  .mobile-workflow{display:block;grid-column:1/-1;}

  /* NAV */
  nav{padding:12px 16px;}
  .nav-cta{padding:8px 16px;font-size:.7rem;}

  /* HERO */
  .hero{padding:88px 16px 10px;gap:24px;min-height:unset;}
  .hero-content{display:flex;flex-direction:column;}
  .hero-headline{font-size:clamp(2.4rem,11vw,3.2rem);letter-spacing:-.03em;line-height:1.0;}
  .hero-badge{order:1;font-size:.65rem;}
  .hero-headline{order:2;}
  .mobile-workflow{order:3;margin-top:16px;}
  .hero-sub{order:4;font-size:.95rem;margin-bottom:24px;}
  .hero-actions{order:5;flex-direction:column;align-items:flex-start;gap:12px;}
  .hero-proof{order:6;gap:16px;margin-top:24px;padding-top:20px;}
  .btn-primary,.btn-outline{width:100%;text-align:center;padding:14px 20px;}
  .proof-num{font-size:1.8rem;}

  /* STATS BAR */
  .stats-bar{padding:12px 8px;gap:4px;flex-wrap:nowrap;}
  .stat-val{font-size:.85rem;}
  .stat-key{font-size:.42rem;margin-top:2px;}

  /* SECTIONS */
  section,.internship,.proof-section,.final-cta{padding:36px 16px;}
  footer{padding:48px 16px 28px;grid-template-columns:1fr;}
  .sec-headline{font-size:clamp(1.8rem,8vw,2.4rem);}
  .sec-eyebrow{font-size:.58rem;}

  /* BUILDS */
  .builds-grid{grid-template-columns:1fr;}/* legacy */
  .builds-header{margin-bottom:40px;}
  .builds{padding-top:32px;padding-bottom:24px;}
  .build-card-inner{grid-template-columns:1fr;min-height:auto;padding:32px 24px;gap:24px;}
  .build-card-visual{order:-1;justify-content:flex-start;}
  .build-icon-wrap{width:56px;height:56px;font-size:1.8rem;border-radius:12px;}

  /* CURRICULUM */
  .module-header{padding:16px 18px;gap:10px;}
  .module-title{font-size:.88rem;}
  .module-weeks{display:none;}
  .module-body{padding:0 18px 18px;}

  /* TRACKS */
  .tracks-grid{grid-template-columns:1fr;}
  .track-card{padding:28px 22px;}
  .track-card.featured::before{top:16px;right:16px;}

  /* INTERNSHIP STEPS */
  .pipeline-steps{grid-template-columns:1fr 1fr;}

  /* TESTIMONIALS */
  .proof-grid{grid-template-columns:1fr;}
  .proof-card{padding:22px 18px;}

  /* POWERED BAND */
  .powered-band{padding:40px 16px;}
  .pb-headline{font-size:1.4rem;}
  .pb-logo-card{min-width:160px;padding:16px 24px;}
  .pb-logo-img{height:48px;}

  /* CTA */
  .cta-big{font-size:clamp(2.4rem,10vw,3.2rem);}
  .cta-btns{flex-direction:column;align-items:center;gap:12px;}
  .btn-primary,.btn-outline{width:100%;max-width:280px;text-align:center;}

  /* FOOTER */
  .footer-bottom{flex-direction:column;gap:8px;text-align:center;font-size:.62rem;}
  .footer-name{font-size:1rem;}
  .footer-tagline{max-width:100%;}
}

/* ── VERY SMALL (max 380px) ── */
@media(max-width:380px){
  .hero-headline{font-size:2.2rem;}
  nav{padding:10px 12px;}
  .nav-cta{font-size:.65rem;padding:7px 12px;}
  .pipeline-steps{grid-template-columns:1fr;}
}



/* ── MOBILE MINI WORKFLOW ── */
.mobile-workflow{
  display:none; /* hidden by default; shown on mobile via media query */
  margin-top:32px;
  background:#fff;
  border:1px solid rgba(0,180,240,.18);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 32px rgba(0,180,240,.12);
}
.mwf-bar{
  background:#f4f8ff;
  padding:10px 14px;
  display:flex;align-items:center;gap:7px;
  border-bottom:1px solid rgba(0,180,240,.1);
}
.mwf-dot{width:8px;height:8px;border-radius:50%;}
.mwf-title{font-family:"DM Mono",monospace;font-size:.58rem;color:#64748b;margin-left:4px;flex:1;letter-spacing:.05em;}
.mwf-status{font-family:"DM Mono",monospace;font-size:.56rem;color:#16a34a;display:flex;align-items:center;gap:4px;}
.mwf-status-dot{width:5px;height:5px;border-radius:50%;background:#16a34a;animation:pulse 1.4s infinite;}

.mwf-canvas{padding:20px 16px 16px;position:relative;}

/* the 3-node row */
.mwf-nodes{display:flex;align-items:center;justify-content:space-between;gap:0;position:relative;}

/* connector line behind nodes */
.mwf-connector{
  position:absolute;left:0;right:0;top:50%;
  height:2px;
  background:linear-gradient(90deg,rgba(0,180,240,.15),rgba(0,180,240,.3),rgba(0,180,240,.15));
  transform:translateY(-50%);
  z-index:0;
}

/* individual node */
.mwf-node-m{
  position:relative;z-index:1;
  display:flex;flex-direction:column;align-items:center;gap:8px;
  flex:0 0 auto;
}
.mwf-node-box{
  width:64px;height:64px;
  border-radius:14px;
  border:1.5px solid rgba(0,180,240,.25);
  background:#fff;
  box-shadow:0 4px 16px rgba(0,180,240,.1);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;
  transition:border-color .3s,box-shadow .3s;
  position:relative;overflow:hidden;
}
.mwf-node-box.active{
  border-color:rgba(0,180,240,.6);
  box-shadow:0 4px 20px rgba(0,180,240,.25);
}
.mwf-node-box::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(0,180,240,.06),transparent);
  opacity:0;transition:opacity .3s;
}
.mwf-node-box.active::after{opacity:1;}
.mwf-node-icon{font-size:1.5rem;line-height:1;}
.mwf-node-label{font-family:"DM Mono",monospace;font-size:.52rem;font-weight:500;color:#475569;letter-spacing:.04em;text-align:center;max-width:64px;line-height:1.3;}

/* arrow between nodes */
.mwf-arrow{
  flex:1;
  display:flex;align-items:center;justify-content:center;
  position:relative;z-index:2;
  padding:0 4px;
}
.mwf-arrow svg{width:28px;height:14px;overflow:visible;}

/* animated packet */
@keyframes mwfFlow {
  0%   { left:0;                  opacity:0; }
  8%   { left:0;                  opacity:1; }
  88%  { left:calc(100% - 10px);  opacity:1; }
  100% { left:calc(100% - 10px);  opacity:0; }
}
@keyframes mwfNodeGlow {
  0%,100% { box-shadow:0 4px 16px rgba(0,180,240,.1); border-color:rgba(0,180,240,.25); }
  50%     { box-shadow:0 4px 24px rgba(0,180,240,.4);  border-color:rgba(0,180,240,.7);  }
}
.mwf-packet{
  position:absolute;top:50%;transform:translateY(-50%);
  width:10px;height:10px;border-radius:50%;
  background:var(--cyan);
  box-shadow:0 0 8px rgba(0,180,240,.6);
  z-index:3;
  opacity:0;
  transition:none;
}
.mwf-node-box.active{animation:mwfNodeGlow 1s ease-in-out infinite;}

/* stats strip below nodes */
.mwf-stats{
  display:flex;justify-content:space-around;
  margin-top:16px;padding-top:14px;
  border-top:1px solid rgba(0,180,240,.1);
}
.mwf-stat{text-align:center;}
.mwf-stat-val{font-size:1.1rem;font-weight:800;color:#1a2b5e;letter-spacing:-.02em;font-family:"Plus Jakarta Sans",sans-serif;}
.mwf-stat-val span{color:var(--cyan);}
.mwf-stat-key{font-family:"DM Mono",monospace;font-size:.52rem;color:#94a3b8;letter-spacing:.08em;margin-top:2px;}

/* active log line */
.mwf-log{
  margin-top:12px;
  padding:8px 12px;
  background:rgba(0,180,240,.04);
  border-radius:8px;
  border:1px solid rgba(0,180,240,.1);
  font-family:"DM Mono",monospace;
  font-size:.58rem;
  color:#475569;
  min-height:26px;
  display:flex;align-items:center;gap:6px;
}
.mwf-log-dot{width:5px;height:5px;border-radius:50%;background:var(--cyan);flex-shrink:0;animation:pulse 1.4s infinite;}


@media(min-width:961px){.mobile-workflow{display:none!important;}}
/* HAMBURGER */
.nav-hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:4px;z-index:600;}
.nav-hamburger span{display:block;width:22px;height:2px;background:var(--white);border-radius:2px;transition:all .25s;}
@media(max-width:960px){.nav-hamburger{display:flex;}}

/* MOBILE DRAWER */
.mobile-drawer{position:fixed;inset:0;z-index:550;pointer-events:none;}
.mobile-drawer.open{pointer-events:all;}
.mobile-drawer::before{content:"";position:absolute;inset:0;background:rgba(15,23,42,.5);opacity:0;transition:opacity .3s;backdrop-filter:blur(4px);}
.mobile-drawer.open::before{opacity:1;}
.mobile-drawer-inner{position:absolute;top:0;right:0;width:min(320px,85vw);height:100%;background:#fff;padding:24px 24px 40px;display:flex;flex-direction:column;transform:translateX(100%);transition:transform .35s cubic-bezier(.23,1,.32,1);box-shadow:-8px 0 40px rgba(0,0,0,.15);}
.mobile-drawer.open .mobile-drawer-inner{transform:translateX(0);}
.drawer-close{align-self:flex-end;background:none;border:1px solid rgba(0,180,240,.2);border-radius:50%;width:36px;height:36px;font-size:1rem;cursor:pointer;color:var(--muted);margin-bottom:32px;transition:all .2s;}
.drawer-close:hover{background:rgba(0,180,240,.08);color:var(--cyan);}
.mobile-nav-links{list-style:none;display:flex;flex-direction:column;gap:4px;}
.mobile-nav-links a{display:block;padding:14px 12px;font-size:1rem;font-weight:700;color:var(--white);text-decoration:none;border-radius:8px;transition:background .2s,color .2s;letter-spacing:-.01em;}
.mobile-nav-links a:hover{background:rgba(0,180,240,.08);color:var(--cyan);}

/* SEO fix: show content immediately if JS hasn't run yet */
body.no-js [style*="opacity:0"],
body.no-js .hero-badge,
body.no-js .hero-headline,
body.no-js .hero-sub,
body.no-js .hero-actions,
body.no-js .hero-proof,
body.no-js .hero-right-panel {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
/* Respect reduced motion — show everything without animation */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-badge,.hero-headline,.hero-sub,.hero-actions,.hero-proof,.hero-right-panel {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ─────────────────────────────── */


/* ── BEEPS DIGITAL REBRAND: Clean consolidated theme ── */

/* 1. CSS variable overrides — purple replaces cyan throughout */
:root {
  --cyan:   #6d28d9;
  --cyan2:  #5b21b6;
  --ink:    #f5f0ff;
  --deep:   #ede8ff;
  --border: rgba(109,40,217,.15);
  --bordv:  rgba(109,40,217,.2);
}

/* 2. Body & page background */
body { background-color: #f5f0ff; }

/* 3. Navigation */
nav {
  background: rgba(255,255,255,.97) !important;
  border-bottom: 1px solid rgba(109,40,217,.1) !important;
}

/* 4. Buttons — fix cursor + colours */
.btn-primary, .nav-cta, .btn-track:not(.outline) {
  cursor: pointer !important;
  background: linear-gradient(135deg,#6d28d9,#7c3aed) !important;
  box-shadow: 0 4px 16px rgba(109,40,217,.3) !important;
}
.btn-primary:hover, .nav-cta:hover { box-shadow: 0 6px 24px rgba(109,40,217,.4) !important; }
a, button { cursor: pointer !important; }

.btn-outline {
  border-color: rgba(109,40,217,.3) !important;
  color: #6d28d9 !important;
}
.btn-outline:hover {
  border-color: #6d28d9 !important;
  color: #6d28d9 !important;
  background: rgba(109,40,217,.06) !important;
}

.btn-track.outline {
  background: transparent !important;
  color: #6d28d9 !important;
  border: 1px solid rgba(109,40,217,.3) !important;
}
.btn-track.outline:hover { background: rgba(109,40,217,.08) !important; }

/* 5. Hero */
.hero {
  background: linear-gradient(160deg,#f5f0ff 0%,#ede8ff 40%,#f0ebff 100%) !important;
}
.hero-grid {
  background-image:
    linear-gradient(rgba(109,40,217,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(109,40,217,.05) 1px,transparent 1px) !important;
}
.hero-blob1 { background: radial-gradient(circle,rgba(109,40,217,.1) 0%,transparent 65%) !important; }
.hero-blob2 { background: radial-gradient(circle,rgba(124,58,237,.1) 0%,transparent 65%) !important; }

/* 6. Section backgrounds */
.builds      { background: #faf8ff !important; }
.tracks      { background: #f5f0ff !important; }
.proof-section { background: #f8f5ff !important; }
.final-cta   { background: linear-gradient(160deg,#f0ebff,#ede8ff) !important; }

/* 7. Track cards */
.track-card.featured {
  border-color: rgba(109,40,217,.35) !important;
  background: linear-gradient(160deg,#ede9fe,#f5f0ff) !important;
}

/* 8. Internship dashboard badges — keep semantic colours */
.status-live {
  background: rgba(22,163,74,.1) !important;
  color: #16a34a !important;
  border: 1px solid rgba(22,163,74,.25) !important;
}
.status-open {
  background: rgba(109,40,217,.08) !important;
  color: #6d28d9 !important;
  border: 1px solid rgba(109,40,217,.2) !important;
}
.pip-step.active {
  background: rgba(109,40,217,.08) !important;
  border-color: rgba(109,40,217,.3) !important;
  color: #6d28d9 !important;
}
.ipc-label { color: #6d28d9 !important; }

/* 9. Module accordion */
.module:hover, .module.open { border-color: rgba(109,40,217,.4) !important; }
.module.open .module-toggle { border-color: #6d28d9 !important; color: #6d28d9 !important; background: rgba(109,40,217,.08) !important; }
.module-project strong { color: #6d28d9 !important; }
.topic-item::before { color: #6d28d9 !important; }

/* 10. Footer — light purple dark theme with readable text */
footer {
  background: #1a0a3d !important;
  border-top: 1px solid rgba(109,40,217,.2) !important;
}
footer .footer-name { color: #f5f0ff !important; }
footer .footer-name span { color: #a78bfa !important; }
footer .footer-domain { color: #a78bfa !important; }
footer .footer-tagline { color: #c4b5fd !important; }
footer .footer-powered { color: rgba(167,139,250,.7) !important; }
footer .footer-powered a { color: #a78bfa !important; }
footer .footer-col-title { color: #a78bfa !important; }
footer .footer-links a { color: #c4b5fd !important; }
footer .footer-links a:hover { color: #fff !important; }
footer .footer-bottom { color: rgba(196,181,253,.5) !important; border-top-color: rgba(109,40,217,.2) !important; }

/* 11. Stats bar */
.stats-bar { background: #fff !important; border-color: rgba(109,40,217,.1) !important; }

/* 12. Scrollbar */
::-webkit-scrollbar-thumb { background: #6d28d9 !important; }

/* 13. Eyebrow/sec-eyebrow lines */
.sec-eyebrow::before { background: #6d28d9 !important; }

/* 14. Build card hover bar */
.build-card::before { background: linear-gradient(180deg,#6d28d9,#7c3aed) !important; }

/* 15. wf-status dot (workflow running indicator) stays green */
.wf-status { color: #16a34a !important; }
.wf-status-dot { background: #16a34a !important; }

/* 16. Mobile workflow arrow strokes */
.mwf-arrow path { stroke: rgba(109,40,217,.4) !important; }
.mwf-packet { background: #6d28d9 !important; box-shadow: 0 0 8px rgba(109,40,217,.6) !important; }
.mwf-log-dot { background: #6d28d9 !important; }
.mwf-status { color: #16a34a !important; }
.mwf-status-dot { background: #16a34a !important; }

/* ============================================================
   HERO CONTRAST LIFT — matches Beeps Digital portal clarity
   ============================================================ */

/* 1. Background — clean near-white instead of heavy purple gradient */
.hero {
  background: #f7f8ff !important;
}
.hero-grid {
  background-image:
    linear-gradient(rgba(109,40,217,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,40,217,.025) 1px, transparent 1px) !important;
}
.hero-blob1 {
  background: radial-gradient(circle, rgba(109,40,217,.04) 0%, transparent 65%) !important;
}
.hero-blob2 {
  background: radial-gradient(circle, rgba(124,58,237,.04) 0%, transparent 65%) !important;
}

/* 2. Headline — near-black primary, strong gradient on accent */
.hero-headline .h-white {
  color: #0d0d1f !important;
}
.hero-headline .h-cyan {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.hero-headline .h-italic {
  color: #7c3aed !important;
  -webkit-text-fill-color: #7c3aed !important;
}

/* 3. Subheadline — darker for readability */
.hero-sub {
  color: #374151 !important;
}
.hero-sub strong {
  color: #111827 !important;
}

/* 4. Badge — less purple haze */
.hero-badge {
  background: rgba(109,40,217,.04) !important;
  border-color: rgba(109,40,217,.18) !important;
  color: #5b21b6 !important;
}

/* 5. Proof stats — stronger contrast */
.hero-proof {
  border-top-color: rgba(15,23,42,.1) !important;
}
.proof-num {
  color: #0d0d1f !important;
}

/* 6. Workflow canvas — clean white surface, no purple haze */
.workflow-canvas {
  background: #ffffff !important;
  border: 1px solid rgba(15,23,42,.1) !important;
  box-shadow: 0 4px 24px rgba(15,23,42,.07) !important;
}
.wf-bar {
  background: #f9fafb !important;
  border-bottom: 1px solid rgba(15,23,42,.08) !important;
}

/* 7. Terminal — slightly stronger border */
.hero-terminal {
  border-color: rgba(15,23,42,.25) !important;
  box-shadow: 0 4px 24px rgba(15,23,42,.12) !important;
}

/* ═══════════════════════════════════════════════════════════
   NAV LOCKUP — PREMIUM SUB-BRAND REDESIGN
   ═══════════════════════════════════════════════════════════ */

/* 1. Strip the redundant white card — the nav is already white.
      Removing background/border-radius/padding eliminates the
      "box inside a box" that made the lockup look cramped. */
.nav-lockup {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  height: auto !important;
}

/* 2. Logo — 36px sits optically balanced with the text block */
.nav-beeps-logo    { height: 36px !important; }
.nav-lockup-logo   { padding-right: 18px !important; }

/* 3. Divider — purple-tinted so it reads as brand, not chrome */
.nav-lockup-divider {
  width: 1.5px !important;
  height: 26px !important;
  background: rgba(109,40,217,.28) !important;
}

/* 4. Text block — small gap between the two label lines */
.nav-lockup-text {
  padding-left: 18px !important;
  gap: 4px;
}

/* 5. Primary label — "AI & Automation"
      Heavier weight, near-black so it reads as the brand name */
.nav-school-name {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #120b29 !important;
  line-height: 1.15 !important;
  letter-spacing: -.01em !important;
}

/* 6. Secondary label — "SCHOOL"
      Wide tracking makes it read as a badge/sub-brand.
      Override the 960px display:none — we want it always visible. */
.nav-school-sub {
  font-size: 8.5px !important;
  font-weight: 800 !important;
  color: #6d28d9 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  display: block !important;
}

/* 7. Nav right — replaces the inline style on the CTA wrapper */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* WhatsApp nav button */
.nav-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 10px rgba(37,211,102,.4);
}
.nav-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(37,211,102,.55);
}
.nav-wa svg { display: block; }

/* WhatsApp link in mobile drawer */
.drawer-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 100px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 2px 10px rgba(37,211,102,.35);
}
.drawer-wa-btn:hover { background: #20bc5a; box-shadow: 0 4px 16px rgba(37,211,102,.5); }
.drawer-wa-btn svg { flex-shrink: 0; }

/* WhatsApp link in course page footer */
.cd-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #25D366 !important;
}
.cd-footer-wa:hover { opacity: .8; }

/* 9. Nav shadow — match the purple brand (overrides the stale cyan shadow) */
nav {
  box-shadow: 0 2px 20px rgba(109,40,217,.08) !important;
}

/* 10. Portal back link — visible but secondary */
.nav-portal-link {
  font-size: .72rem !important;
  color: #6d28d9 !important;
  font-weight: 700 !important;
  opacity: .65;
  white-space: nowrap;
  border: none !important;
  transition: opacity .2s !important;
}
.nav-portal-link:hover { opacity: 1 !important; }

/* 11. Drawer — purple brand colours */
.drawer-close {
  border-color: rgba(109,40,217,.2) !important;
  color: #6d28d9 !important;
}
.drawer-close:hover { background: rgba(109,40,217,.08) !important; }
.mobile-nav-links a:hover {
  background: rgba(109,40,217,.07) !important;
  color: #6d28d9 !important;
}

/* 12. Drawer footer — CTA + portal link stacked at the bottom */
.drawer-cta-wrap {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(109,40,217,.1);
}
.drawer-cta-btn  { text-align: center; display: block; }
.drawer-portal-link {
  display: block;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: #6d28d9;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(109,40,217,.18);
  transition: background .2s;
}
.drawer-portal-link:hover { background: rgba(109,40,217,.06); }

/* ── TABLET (≤960px)
      nav-links list is hidden but the lockup should still show
      both lines — we already forced display:block on nav-school-sub
      above, so no extra work needed here. Just nudge font-size. */
@media(max-width:960px) {
  .nav-school-name { font-size: 12px !important; }
}

/* ── MOBILE (≤480px)
      Keep the full two-line lockup. Scale text down slightly so
      "AI & Automation / Academy" fits without overflow. */
@media(max-width:480px) {
  .nav-school-name    { font-size: 11px !important; }
  .nav-school-sub     { font-size: 8px !important; letter-spacing: .18em !important; }
  .nav-beeps-logo     { height: 30px !important; }
  .nav-lockup-logo    { padding-right: 12px !important; }
  .nav-lockup-divider { height: 20px !important; }
  .nav-lockup-text    { padding-left: 12px !important; }
}

/* ── VERY SMALL (≤380px) — tightest squeeze, still two lines */
@media(max-width:380px) {
  .nav-school-name    { font-size: 10px !important; }
  .nav-school-sub     { font-size: 7.5px !important; letter-spacing: .15em !important; }
  .nav-beeps-logo     { height: 28px !important; }
  .nav-lockup-logo    { padding-right: 10px !important; }
  .nav-lockup-divider { height: 18px !important; }
  .nav-lockup-text    { padding-left: 10px !important; }
}

/* ══════════════════════════════════════════════════════════════════
   CHATBOT COMPATIBILITY VARS
   Maps agency chatbot CSS variable names → academy color palette
   ══════════════════════════════════════════════════════════════════ */
:root {
  --purple:  #6d28d9;   /* maps to --violet  */
  --purple2: #7c3aed;   /* maps to --violet2 */
  --gray:    #64748b;   /* maps to --muted   */
  --font:    "Plus Jakarta Sans", sans-serif;
}

/* ══════════════════════════════════════════════════════════════════
   APPLICATION FORM SECTION  (#apply)
   ══════════════════════════════════════════════════════════════════ */
.apply-section {
  background: #f8fafc;
  padding: 64px 52px;
  border-top: 1px solid rgba(0,180,240,.1);
}

.apply-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.apply-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 16px;
}
.apply-headline em {
  font-family: Fraunces, serif;
  font-style: italic;
  font-weight: 200;
  color: var(--cyan);
}

.apply-desc {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.apply-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apply-perks li {
  font-size: .85rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.apply-contact-note { margin-top:24px; display:flex; flex-direction:column; gap:8px; }
.acn-label { font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); }
.acn-item { display:inline-flex; align-items:center; gap:7px; font-size:.82rem; font-weight:700; color:var(--cyan); text-decoration:none; transition:opacity .2s; }
.acn-item:hover { opacity:.75; }
.acn-item svg { flex-shrink:0; color:var(--cyan); }

.apply-perks li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,180,240,.12);
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Form card */
.apply-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(0,180,240,.08), 0 1px 4px rgba(0,0,0,.04);
  border: 1px solid rgba(0,180,240,.1);
}

.aform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.aform-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.aform-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #475569;
}

.aform-input {
  padding: 11px 14px;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: #0f172a;
  background: #fff;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}

.aform-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,180,240,.12);
}

.aform-input.aform-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.aform-textarea {
  resize: vertical;
  min-height: 88px;
}

.aform-input--error {
  border-color: #e11d48 !important;
  box-shadow: 0 0 0 3px rgba(225,29,72,.08) !important;
}

.aform-status {
  min-height: 0;
  margin-bottom: 4px;
  font-size: .82rem;
  font-weight: 700;
}
.aform-status--error {
  color: #e11d48;
  background: rgba(225,29,72,.06);
  border: 1px solid rgba(225,29,72,.2);
  border-radius: 8px;
  padding: 10px 14px;
}

.aform-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .03em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 4px 20px rgba(0,180,240,.25);
  margin-top: 4px;
}
.aform-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,180,240,.35);
}
.aform-btn:disabled { opacity: .6; cursor: default; }

/* Thank-you state */
.aform-thankyou {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  gap: 14px;
}
.aform-thankyou.show { display: flex; }

.aty-icon {
  font-size: 2.8rem;
  line-height: 1;
}

.aform-thankyou h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -.02em;
}

.aform-thankyou p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 340px;
}

/* Responsive */
@media (max-width: 960px) { /* tablet */
  .apply-inner { grid-template-columns: 1fr; gap: 48px; }
  .apply-section { padding: 80px 32px; }
}

@media (max-width: 600px) {
  .apply-section { padding: 64px 20px; }
  .apply-form-card { padding: 28px 20px; }
  .aform-row { grid-template-columns: 1fr; gap: 0; }
}

/* ══════════════════════════════════════════════════════════════════
   CHATBOT WIDGET  (reuses .bpch-* classes from agency)
   Academy colour overrides only — full component CSS is inherited
   via the :root vars defined above (--purple / --purple2 / --gray).
   ══════════════════════════════════════════════════════════════════ */

/* ── Entrance: slides up + fades in after page settles ── */
@keyframes bpEnter {
  0%   { opacity: 0; transform: translateY(14px) scale(.95); }
  100% { opacity: 1; transform: translateY(0)    scale(1);   }
}

/* Pulse animation */
@keyframes bpPulse {
  0%   { box-shadow: 0 6px 24px rgba(109,40,217,.45), 0 0 0 0   rgba(109,40,217,.55); }
  65%  { box-shadow: 0 6px 24px rgba(109,40,217,.45), 0 0 0 16px rgba(109,40,217,.0); }
  100% { box-shadow: 0 6px 24px rgba(109,40,217,.45), 0 0 0 0   rgba(109,40,217,.0); }
}

/* ── Root anchor ── */
.bpch-root {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow: visible;
  animation: bpEnter .45s cubic-bezier(.2,.8,.2,1) .7s both;
}

/* Toggle button */
.bpch-toggle {
  height: 46px;
  border-radius: 100px;
  padding: 0 18px 0 14px;
  gap: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--violet), var(--violet2));
  box-shadow: 0 6px 24px rgba(109,40,217,.48), 0 2px 10px rgba(109,40,217,.24);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
}
.bpch-toggle:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 32px rgba(109,40,217,.55);
}
.bpch-toggle--pulse { animation: bpPulse 2s ease-out infinite; }
.bpch-toggle-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.bpch-toggle-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
  position: absolute;
  top: 0; left: 0;
  transition: opacity .18s, transform .18s;
}
.bpch-toggle-label { color: #fff; line-height: 1; }
.bpch-toggle--open .bpch-toggle-label { display: none; }
.bpch-toggle--open { padding: 0 14px; }
.bpch-ico-close { opacity: 0; transform: rotate(-45deg) scale(.7); }
.bpch-toggle--open .bpch-ico-chat  { opacity: 0; transform: rotate(45deg) scale(.7); }
.bpch-toggle--open .bpch-ico-close { opacity: 1; transform: rotate(0) scale(1); }

/* Panel */
.bpch-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 360px;
  max-height: 520px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(15,10,30,.18), 0 8px 24px rgba(109,40,217,.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(.97);
  pointer-events: none;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease;
}
.bpch-panel--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

/* Prompt bubble */
.bpch-prompt {
  position: absolute;
  bottom: calc(100% + 18px);
  right: 0;
  width: 288px;
  background: linear-gradient(160deg, #ffffff 0%, #f0f7ff 100%);
  border-radius: 16px;
  padding: 16px 38px 16px 18px;
  box-shadow:
    0 0 0 1px rgba(109,40,217,.1),
    0 2px 6px rgba(15,10,30,.07),
    0 8px 20px rgba(15,10,30,.12),
    0 20px 52px rgba(15,10,30,.16);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease,
              transform .3s cubic-bezier(.23,1,.32,1),
              visibility 0s linear .3s;
}
.bpch-prompt::before {
  content: '';
  position: absolute;
  bottom: -10px; right: 88px;
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid rgba(109,40,217,.12);
  pointer-events: none;
}
.bpch-prompt::after {
  content: '';
  position: absolute;
  bottom: -8px; right: 88px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #f0f7ff;
  pointer-events: none;
}
.bpch-prompt--visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .3s ease,
              transform .3s cubic-bezier(.23,1,.32,1),
              visibility 0s linear 0s;
}
.bpch-prompt-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .84rem;
  font-weight: 700;
  color: #0d0520;
  line-height: 1.55;
  margin: 0;
  letter-spacing: -.01em;
}
.bpch-prompt-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.bpch-prompt-close:hover { background: #ede9f8; color: #4c2faa; }

/* Panel header */
.bpch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, #1a0a3c 0%, #0f0620 100%);
  flex-shrink: 0;
}
.bpch-hd-left { display: flex; align-items: center; gap: 10px; }
.bpch-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.bpch-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bpch-name  { font-family: "Plus Jakarta Sans", sans-serif; font-size: .88rem; font-weight: 800; color: #fff; letter-spacing: .01em; }
.bpch-status { font-family: "Plus Jakarta Sans", sans-serif; font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 5px; margin-top: 1px; }
.bpch-dot   { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.bpch-close { background: none; border: none; cursor: pointer; padding: 6px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: background .15s; }
.bpch-close:hover { background: rgba(255,255,255,.1); }
.bpch-close svg { width: 18px; height: 18px; color: rgba(255,255,255,.7); }

/* Messages area */
.bpch-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.bpch-messages::-webkit-scrollbar { width: 4px; }
.bpch-messages::-webkit-scrollbar-thumb { background: rgba(109,40,217,.2); border-radius: 4px; }

/* Messages */
.bpch-msg { display: flex; }
.bpch-msg--bot  { justify-content: flex-start; }
.bpch-msg--user { justify-content: flex-end; }
.bpch-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.55;
}
.bpch-msg--bot .bpch-bubble  { background: #f0f7ff; color: #1a0a3c; border-radius: 4px 16px 16px 16px; }
.bpch-msg--user .bpch-bubble { background: linear-gradient(135deg, var(--violet), var(--violet2)); color: #fff; border-radius: 16px 16px 4px 16px; }

/* Typing indicator */
@keyframes bpDot {
  0%, 70%, 100% { transform: translateY(0); opacity: .4; }
  35%            { transform: translateY(-5px); opacity: 1; }
}
.bpch-typing {
  display: flex; align-items: center; gap: 5px;
  padding: 11px 16px;
  background: #f0f7ff;
  border-radius: 4px 16px 16px 16px;
  width: fit-content;
}
.bpch-typing span {
  display: block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--violet);
  animation: bpDot 1.1s infinite ease-in-out;
}
.bpch-typing span:nth-child(2) { animation-delay: .18s; }
.bpch-typing span:nth-child(3) { animation-delay: .36s; }

/* Input area */
.bpch-input-area {
  padding: 10px 12px 12px;
  background: #f8faff;
  border-top: 1px solid rgba(109,40,217,.08);
  flex-shrink: 0;
}

/* Quick replies */
.bpch-replies { display: flex; flex-wrap: wrap; gap: 7px; }
.bpch-reply {
  padding: 8px 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(109,40,217,.3);
  background: #fff;
  color: var(--violet);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .78rem; font-weight: 700;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .12s;
  white-space: nowrap;
}
.bpch-reply:hover:not(:disabled) { background: var(--violet); color: #fff; border-color: var(--violet); transform: translateY(-1px); }
.bpch-reply--picked { background: linear-gradient(135deg, var(--violet), var(--violet2)); color: #fff; border-color: transparent; }
.bpch-reply:disabled { opacity: .5; cursor: default; }

/* Text input */
.bpch-input-wrap  { display: flex; align-items: flex-end; gap: 8px; }
.bpch-field {
  flex: 1; padding: 10px 12px;
  border: 1.5px solid rgba(109,40,217,.2);
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .82rem; font-weight: 600; color: #1a0a3c;
  background: #fff; outline: none; resize: none;
  transition: border-color .15s;
}
.bpch-field:focus       { border-color: var(--violet); }
.bpch-field--area       { resize: none; }
.bpch-field--error      { border-color: #e11d48 !important; }
.bpch-field-err         { font-family: "Plus Jakarta Sans", sans-serif; font-size: .74rem; font-weight: 700; color: #e11d48; margin-top: 5px; }
.bpch-send {
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--violet), var(--violet2));
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .15s, box-shadow .15s;
}
.bpch-send:hover:not(:disabled) { transform: scale(1.08); box-shadow: 0 4px 16px rgba(109,40,217,.4); }
.bpch-send:disabled { opacity: .5; cursor: default; }
.bpch-send svg { width: 16px; height: 16px; }

/* Phone input widget */
.bpch-phone-wrap { align-items: center; }
.bpch-phone-prefix {
  display: flex; align-items: center; gap: 5px;
  background: rgba(109,40,217,.07);
  border: 1.5px solid rgba(109,40,217,.2);
  border-radius: 10px;
  padding: 9px 10px;
  flex-shrink: 0; white-space: nowrap; cursor: default;
}
.bpch-phone-flag { font-size: .95rem; line-height: 1; }
.bpch-phone-code { font-size: .78rem; font-weight: 800; color: #6d28d9; letter-spacing: .01em; }
.bpch-phone-field { min-width: 0; letter-spacing: .03em; }
.bpch-phone-trigger { cursor: pointer; }
.bpch-phone-caret { width: 10px; height: 6px; color: #6d28d9; flex-shrink: 0; }

/* Country dropdown */
.bpch-phone-container { position: relative; width: 100%; }
.bpch-phone-dropdown {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  width: 240px;
  background: #fff;
  border: 1.5px solid rgba(109,40,217,.2);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  z-index: 9999;
  overflow: hidden;
}
.bpch-phone-dropdown.open { display: flex; flex-direction: column; }
.bpch-phone-search {
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 12px;
  font-size: .8rem;
  font-family: inherit;
  outline: none;
  color: #1f2937;
  background: #f9fafb;
  border-radius: 12px 12px 0 0;
}
.bpch-phone-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  overflow-y: auto;
  max-height: 200px;
}
.bpch-phone-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: .8rem;
  color: #1f2937;
  transition: background .12s;
}
.bpch-phone-option:hover,
.bpch-phone-option.selected { background: #f0e9ff; }
.bpch-phone-oname { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bpch-phone-odial { font-weight: 700; color: #6d28d9; font-size: .75rem; white-space: nowrap; }

/* Success block */
.bpch-success { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 4px 0; }
.bpch-success-note { font-family: "Plus Jakarta Sans", sans-serif; font-size: .78rem; font-weight: 700; color: var(--muted); }
.bpch-wa-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 100px;
  background: #25D366; color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .8rem; font-weight: 800;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.bpch-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.bpch-restart {
  background: none; border: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .75rem; font-weight: 700;
  color: var(--muted); cursor: pointer;
  padding: 4px 0;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .15s;
}
.bpch-restart:hover { color: var(--violet); }

/* tablet — chatbot panel height adjustment */
@media (max-width: 960px) {
  .bpch-panel {
    height: 62vh; height: 62dvh;
    max-height: 62dvh;
    min-height: 420px;
  }
  .bpch-messages { overflow-y: auto; }
}

@media (max-width: 600px) {
  .bpch-root   { bottom: 20px; right: 16px; }
  .bpch-toggle { height: 44px; padding: 0 14px 0 12px; gap: 6px; font-size: 13px; }
  .bpch-toggle--open { height: 44px; padding: 0 14px 0 12px; }
  .bpch-panel  { width: min(340px, calc(100vw - 32px)); max-height: calc(100vh - 120px); right: 0; }
  .bpch-prompt { width: min(270px, 85vw); }
  .bpch-prompt::before { right: 14px; }
  .bpch-prompt::after  { right: 14px; }
}

/* Respect reduced-motion preference — no entrance, no pulse */
@media (prefers-reduced-motion: reduce) {
  .bpch-root          { animation: none; opacity: 1; transform: none; }
  .bpch-toggle--pulse { animation: none; }
  .bpch-toggle        { transition: none; }
}
/* ════════════════════════════════════════════════════════════
   COURSES OVERVIEW — Filter tabs + Card grid
════════════════════════════════════════════════════════════ */

.courses-section {
  background: #f5f0ff;
  padding: 56px 0;
}

.courses-section .sec-wrap {
  padding: 0 22px;
  max-width: 1460px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Filter tabs */
.cf-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  padding: 0 4px;
}

.cf-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid #d8b4fe;
  background: #fff;
  color: #6d28d9;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font, "Plus Jakarta Sans", sans-serif);
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}

.cf-btn:hover {
  background: #ede9fe;
  border-color: #7c3aed;
}

.cf-btn--active {
  background: #6d28d9;
  color: #fff;
  border-color: #6d28d9;
}

/* Course grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Course card */
.course-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, border-color .25s, transform .2s;
  overflow: hidden;
}

.course-card:hover {
  box-shadow: 0 12px 40px rgba(109,40,217,.13);
  border-color: rgba(109,40,217,.35);
  transform: translateY(-4px);
}

.cc-hidden { display: none !important; }

/* Top row: number + badge + ribbon */
.cc-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.cc-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9ca3af;
}

.cc-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cc-badge--entry     { background: #ede9fe; color: #5b21b6; }
.cc-badge--marketing { background: #dbeafe; color: #1e40af; }
.cc-badge--ai        { background: #fce7f3; color: #9d174d; }
.cc-badge--data      { background: #dcfce7; color: #166534; }
.cc-badge--creative  { background: #ffedd5; color: #9a3412; }
.cc-badge--builder   { background: #fef9c3; color: #92400e; }

/* Ribbon badge */
.cc-ribbon {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .06em;
}
.cc-ribbon--flagship { background: #fef3c7; color: #92400e; }
.cc-ribbon--new      { background: #dbeafe; color: #1e40af; }
.cc-ribbon--unique   { background: #dcfce7; color: #166534; }
.cc-ribbon--prestige { background: #fce7f3; color: #9d174d; }

.cc-icon {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1;
}

.cc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px;
  line-height: 1.3;
}

.cc-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 14px;
  flex: 1;
}

/* Pills */
.cc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.cc-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.cc-pill--mode {
  background: #ede9fe;
  color: #6d28d9;
  border-color: #ddd6fe;
}

.cc-pill--intern {
  background: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}

/* Outcome list */
.cc-outcomes {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cc-outcomes li {
  font-size: 12.5px;
  font-weight: 500;
  color: #374151;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.cc-outcomes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #6d28d9;
  font-weight: 700;
  font-size: 11px;
}

/* Price row */
.cc-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}

.cc-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cc-anchor {
  font-size: 12px;
  color: #9ca3af;
  text-decoration: line-through;
}

.cc-main {
  font-size: 1.25rem;
  font-weight: 900;
  color: #6d28d9;
  line-height: 1;
}

.cc-start {
  font-size: 11px;
  color: #059669;
  font-weight: 600;
}

/* View course button */
.btn-track {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 100px;
  background: #6d28d9;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  font-family: var(--font, "Plus Jakarta Sans", sans-serif);
}

.btn-track:hover {
  background: #5b21b6;
  transform: translateY(-1px);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1000px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .courses-section { padding: 48px 0; }
  .courses-grid { grid-template-columns: 1fr; }
  .cf-filters { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px; }
  .cf-filters::-webkit-scrollbar { display: none; }
  .cf-btn { white-space: nowrap; }
}

/* ════════════════════════════════════════════════════════════
   LEARNING PATHS SECTION
   Self-selector that routes users into the right course.
════════════════════════════════════════════════════════════ */
.paths-section {
  padding: 88px 0 80px;
  background: #faf8ff;
  border-top: 1px solid #f0eef6;
  border-bottom: 1px solid #f0eef6;
}

.paths-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.paths-sub {
  font-size: .95rem;
  color: #6b7280;
  margin: -8px auto 40px;
  max-width: 520px;
  line-height: 1.6;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
  margin-bottom: 28px;
}

.path-card {
  background: #fff;
  border: 1.5px solid #e8e4f3;
  border-radius: 16px;
  padding: 24px 22px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}

.path-card:hover {
  box-shadow: 0 8px 32px rgba(109,40,217,.11);
  border-color: rgba(109,40,217,.38);
  transform: translateY(-2px);
}

.path-icon {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 11px;
}

.path-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 5px;
}

.path-title {
  font-size: .93rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 9px;
  line-height: 1.3;
}

.path-desc {
  font-size: 12.5px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0 0 16px;
  flex: 1;
}

.path-course-tag {
  font-size: 11px;
  font-weight: 700;
  color: #6d28d9;
  background: #ede9fe;
  padding: 5px 11px;
  border-radius: 100px;
  display: inline-block;
  align-self: flex-start;
}

.paths-also {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

.paths-also a {
  color: #6d28d9;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(109,40,217,.2);
  transition: border-color .15s;
}

.paths-also a:hover { border-bottom-color: #6d28d9; }

/* builds bottom CTA */
.builds-cta {
  text-align: center;
  margin-top: 48px;
}

/* ══════════════════════════════════════════════════════════════
   BUILD CARD — RAKUTEN-STYLE RIGHT-SIDE ILLUSTRATIONS
   ══════════════════════════════════════════════════════════════ */

.build-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 320px;
  overflow: visible;
  border-radius: 16px;
}

.build-icon-wrap { display: none !important; }

.build-scene {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes bcFloatUp {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes bcFloatDown {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(8px); }
}
@keyframes bcPulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.05); }
}
@keyframes bcSlideIn {
  0%   { transform: translateX(40px); opacity: 0; }
  100% { transform: translateX(0);    opacity: 1; }
}
@keyframes bcBarGrow {
  0%   { width: 0; }
  100% { width: var(--fill); }
}

.scene-leads      { background: linear-gradient(135deg, rgba(109,40,217,.06), rgba(2,132,199,.08)); }
.scene-whatsapp   { background: linear-gradient(135deg, rgba(37,211,102,.06), rgba(2,132,199,.06)); }
.scene-marketing  { background: linear-gradient(135deg, rgba(16,185,129,.06), rgba(245,158,11,.06)); }
.scene-healthcare { background: linear-gradient(135deg, rgba(239,68,68,.05), rgba(251,191,36,.05)); }
.scene-analytics  { background: linear-gradient(135deg, rgba(245,158,11,.06), rgba(109,40,217,.06)); }
.scene-capstone   { background: linear-gradient(135deg, rgba(109,40,217,.08), rgba(0,180,240,.08)); }

/* ── Scene 01 — Phone + CRM ── */
.phone-mock {
  width: 180px; height: 320px; background: #1a0a42;
  border-radius: 24px; padding: 12px; position: relative;
  box-shadow: 0 20px 60px rgba(26,10,66,.25);
  animation: bcFloatUp 4s ease-in-out infinite;
}
.phone-screen {
  width: 100%; height: 100%; background: #fff;
  border-radius: 16px; overflow: hidden; padding: 16px 12px;
}
.phone-screen-header {
  font-size: .5rem; font-weight: 700; color: #6d28d9;
  margin-bottom: 8px; font-family: "DM Mono", monospace;
  padding-bottom: 6px; border-bottom: 1px solid rgba(109,40,217,.1);
}
.lead-item {
  display: flex; align-items: center; gap: 8px; padding: 8px;
  margin-bottom: 6px; background: rgba(109,40,217,.06);
  border-radius: 8px; font-size: .55rem; color: #1a0a42;
  font-family: "DM Mono", monospace;
  animation: bcSlideIn .5s ease-out both;
}
.lead-item:nth-child(3) { animation-delay: .2s; }
.lead-item:nth-child(4) { animation-delay: .4s; }
.lead-item:nth-child(5) { animation-delay: .6s; }
.lead-item:nth-child(6) { animation-delay: .8s; }
.lead-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.lead-dot.hot  { background: #10b981; }
.lead-dot.warm { background: #f59e0b; }
.lead-dot.new  { background: #6d28d9; }
.lead-score { margin-left: auto; font-weight: 700; color: #10b981; font-size: .5rem; }
.crm-badge {
  position: absolute; bottom: -10px; right: -40px; background: #fff;
  padding: 10px 14px; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  font-size: .6rem; font-family: "DM Mono", monospace; color: #1a0a42;
  animation: bcFloatDown 3s ease-in-out infinite .5s; z-index: 2;
}
.crm-badge .badge-num { font-size: 1.2rem; font-weight: 800; color: #6d28d9; display: block; }
.notif-bubble {
  position: absolute; top: 20px; left: -30px;
  background: #6d28d9; color: #fff; padding: 8px 14px;
  border-radius: 12px 12px 2px 12px; font-size: .55rem; font-weight: 600;
  box-shadow: 0 4px 16px rgba(109,40,217,.3);
  animation: bcPulse 2s ease-in-out infinite;
}

/* ── Scene 02 — WhatsApp ── */
.chat-window {
  width: 240px; background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.12);
  animation: bcFloatUp 5s ease-in-out infinite;
}
.chat-header {
  background: #25d366; color: #fff; padding: 12px 16px;
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.chat-header .status-dot { width: 6px; height: 6px; background: #86efac; border-radius: 50%; }
.chat-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.msg {
  padding: 8px 12px; border-radius: 12px; font-size: .55rem;
  line-height: 1.5; max-width: 85%; animation: bcSlideIn .4s ease-out both;
}
.msg.user { background: #dcf8c6; align-self: flex-end; border-bottom-right-radius: 2px; }
.msg.bot  { background: #f0f0f0; align-self: flex-start; border-bottom-left-radius: 2px; }
.msg:nth-child(2) { animation-delay: .3s; }
.msg:nth-child(3) { animation-delay: .6s; }
.msg:nth-child(4) { animation-delay: .9s; }
.wa-typing { display: flex; gap: 3px; padding: 8px 12px; align-self: flex-start; }
.wa-typing span {
  width: 5px; height: 5px; background: #999; border-radius: 50%;
  animation: bcPulse 1.2s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: .2s; }
.wa-typing span:nth-child(3) { animation-delay: .4s; }
.auto-badge {
  position: absolute; top: 15px; right: -20px; background: #fff;
  padding: 8px 12px; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  font-size: .55rem; color: #25d366; font-weight: 700;
  font-family: "DM Mono", monospace;
  animation: bcFloatDown 3s ease-in-out infinite;
}
.calendar-badge {
  position: absolute; bottom: 10px; left: -20px; background: #fff;
  padding: 10px 14px; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  font-size: .5rem; font-family: "DM Mono", monospace; color: #1a0a42;
  animation: bcFloatUp 4s ease-in-out infinite 1s;
}
.calendar-badge strong { display: block; color: #6d28d9; font-size: .7rem; }

/* ── Scene 03 — Marketing Dashboard ── */
.mk-dashboard {
  width: 280px; background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.1);
  animation: bcFloatUp 5s ease-in-out infinite;
}
.mk-dash-header {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff; padding: 14px 16px; font-size: .65rem; font-weight: 700;
}
.mk-dash-body { padding: 14px; }
.mk-metric-row { display: flex; gap: 8px; margin-bottom: 8px; }
.mk-metric {
  flex: 1; background: rgba(16,185,129,.06);
  border-radius: 8px; padding: 10px 8px; text-align: center;
}
.mk-metric-val   { font-size: 1rem; font-weight: 800; color: #10b981; display: block; }
.mk-metric-label {
  font-size: .45rem; color: #6b7280; font-family: "DM Mono", monospace;
  text-transform: uppercase; letter-spacing: .05em;
}
.mk-channel-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 0; font-size: .5rem; color: #374151;
}
.mk-bar-fill {
  height: 4px; border-radius: 2px; flex: 1;
  background: #e5e7eb; position: relative; overflow: hidden;
}
.mk-bar-fill::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #10b981, #059669);
  animation: bcBarGrow 2s ease-out both;
  width: var(--fill, 50%);
}
.mk-ai-copy-badge {
  position: absolute; bottom: 15px; right: -15px; background: #fff;
  padding: 10px 14px; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  font-size: .5rem; font-family: "DM Mono", monospace; color: #1a0a42;
  animation: bcFloatDown 3.5s ease-in-out infinite;
}
.mk-ai-copy-badge em { display: block; color: #10b981; font-style: normal; font-weight: 700; font-size: .55rem; }

/* ── Scene 04 — Healthcare ── */
.hc-clinic-card {
  width: 220px; background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.1);
  animation: bcFloatUp 4.5s ease-in-out infinite;
}
.hc-clinic-header {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff; padding: 14px 16px; font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.hc-clinic-body { padding: 14px; }
.hc-appt-item {
  display: flex; align-items: center; gap: 8px; padding: 8px;
  margin-bottom: 6px; background: rgba(239,68,68,.04);
  border-radius: 8px; font-size: .5rem; color: #374151;
  animation: bcSlideIn .4s ease-out both;
}
.hc-appt-item:nth-child(2) { animation-delay: .2s; }
.hc-appt-item:nth-child(3) { animation-delay: .4s; }
.hc-appt-time {
  font-weight: 700; color: #ef4444; font-family: "DM Mono", monospace;
  font-size: .5rem; white-space: nowrap;
}
.hc-appt-status {
  margin-left: auto; padding: 2px 6px; border-radius: 4px;
  font-size: .4rem; font-weight: 700; text-transform: uppercase;
}
.hc-appt-status.confirmed { background: rgba(16,185,129,.1); color: #10b981; }
.hc-appt-status.pending   { background: rgba(245,158,11,.1);  color: #f59e0b; }
.hc-reminder-badge {
  position: absolute; top: 20px; right: -15px; background: #fff;
  padding: 8px 12px; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  font-size: .5rem; font-family: "DM Mono", monospace; color: #1a0a42;
  animation: bcPulse 2.5s ease-in-out infinite;
}
.hc-reminder-badge strong { color: #ef4444; }
.hc-sms-badge {
  position: absolute; bottom: 15px; left: -15px; background: #fff;
  padding: 8px 12px; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  font-size: .5rem; color: #10b981; font-weight: 700;
  animation: bcFloatDown 3s ease-in-out infinite .5s;
}

/* ── Scene 05 — Analytics ── */
.an-report-card {
  width: 260px; background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.1);
  animation: bcFloatUp 5s ease-in-out infinite;
}
.an-report-header {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff; padding: 14px 16px; font-size: .65rem; font-weight: 700;
}
.an-report-body { padding: 14px; }
.an-chart-bars {
  display: flex; align-items: flex-end; gap: 6px;
  height: 80px; margin-bottom: 12px;
}
.an-c-bar { flex: 1; border-radius: 4px 4px 0 0; height: var(--h, 50%); }
.an-c-bar:nth-child(1) { background: rgba(245,158,11,.3); }
.an-c-bar:nth-child(2) { background: rgba(245,158,11,.5); }
.an-c-bar:nth-child(3) { background: rgba(245,158,11,.4); }
.an-c-bar:nth-child(4) { background: rgba(245,158,11,.7); }
.an-c-bar:nth-child(5) { background: rgba(245,158,11,.5); }
.an-c-bar:nth-child(6) { background: #f59e0b; }
.an-c-bar:nth-child(7) { background: rgba(245,158,11,.6); }
.an-insight-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .5rem; color: #374151; padding: 4px 0;
}
.an-insight-dot { width: 4px; height: 4px; border-radius: 50%; background: #f59e0b; flex-shrink: 0; }
.an-auto-report-badge {
  position: absolute; top: 15px; left: -20px; background: #fff;
  padding: 10px 14px; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  font-size: .5rem; font-family: "DM Mono", monospace;
  color: #f59e0b; font-weight: 700;
  animation: bcFloatDown 4s ease-in-out infinite;
}

/* ── Scene 06 — Terminal ── */
.cp-deploy-terminal {
  width: 260px; background: #1a0a42; border-radius: 16px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(26,10,66,.35);
  animation: bcFloatUp 4s ease-in-out infinite;
}
.cp-term-bar { display: flex; gap: 5px; padding: 10px 14px; background: rgba(255,255,255,.05); }
.cp-term-dot { width: 8px; height: 8px; border-radius: 50%; }
.cp-term-dot:nth-child(1) { background: #ef4444; }
.cp-term-dot:nth-child(2) { background: #f59e0b; }
.cp-term-dot:nth-child(3) { background: #10b981; }
.cp-term-body {
  padding: 14px; font-family: "DM Mono", monospace;
  font-size: .5rem; line-height: 1.8; color: #a78bfa;
}
.cp-term-line { animation: bcSlideIn .4s ease-out both; }
.cp-term-line:nth-child(2) { animation-delay: .15s; }
.cp-term-line:nth-child(3) { animation-delay: .3s; }
.cp-term-line:nth-child(4) { animation-delay: .45s; }
.cp-term-line:nth-child(5) { animation-delay: .6s; }
.cp-term-line:nth-child(6) { animation-delay: .75s; }
.cp-term-line:nth-child(7) { animation-delay: .9s; }
.cp-term-success { color: #10b981; }
.cp-term-cmd     { color: #00b4f0; }
.cp-term-comment { color: rgba(167,139,250,.4); }
.cp-live-badge {
  position: absolute; bottom: 15px; right: -10px;
  background: #10b981; color: #fff; padding: 8px 16px;
  border-radius: 10px; font-size: .6rem; font-weight: 700;
  box-shadow: 0 4px 20px rgba(16,185,129,.3);
  animation: bcPulse 2s ease-in-out infinite;
}
.cp-portfolio-badge {
  position: absolute; top: 15px; left: -15px; background: #fff;
  padding: 10px 14px; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  font-size: .5rem; font-family: "DM Mono", monospace;
  color: #6d28d9; font-weight: 700;
  animation: bcFloatDown 3.5s ease-in-out infinite;
}

/* ── Responsive ── */
/* ══════════════════════════════════════════════════════════════
   BUILD CARDS — MOBILE RESPONSIVE (stacking preserved)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .build-card-inner {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 24px 20px !important;
    gap: 20px !important;
    overflow: visible !important;
  }
  .build-card-visual { order: -1 !important; min-height: 200px !important; justify-content: center !important; }
  .build-card-text   { order: 1 !important; }
  .build-scene       { height: 200px !important; border-radius: 12px !important; }

  .build-title { font-size: 1.15rem !important; }
  .build-desc  { font-size: .82rem !important; line-height: 1.6 !important; }
  .build-num   { font-size: .55rem !important; margin-bottom: 10px !important; }
  .build-stack { margin-top: 14px !important; }
  .stk         { font-size: .55rem !important; }

  .phone-mock          { width: 130px !important; height: 200px !important; padding: 8px !important; border-radius: 18px !important; }
  .phone-screen        { padding: 10px 8px !important; border-radius: 12px !important; }
  .phone-screen-header { font-size: .45rem !important; margin-bottom: 5px !important; }
  .lead-item           { padding: 5px !important; margin-bottom: 4px !important; font-size: .45rem !important; gap: 5px !important; }
  .lead-dot            { width: 5px !important; height: 5px !important; }
  .lead-score          { font-size: .4rem !important; }

  .chat-window    { width: 180px !important; }
  .chat-header    { padding: 8px 12px !important; font-size: .6rem !important; }
  .chat-body      { padding: 8px !important; gap: 5px !important; }
  .msg            { padding: 6px 8px !important; font-size: .45rem !important; line-height: 1.4 !important; }
  .wa-typing span { width: 4px !important; height: 4px !important; }

  .mk-dashboard    { width: 200px !important; }
  .mk-dash-header  { padding: 10px 12px !important; font-size: .55rem !important; }
  .mk-dash-body    { padding: 10px !important; }
  .mk-metric-row   { gap: 5px !important; margin-bottom: 6px !important; }
  .mk-metric       { padding: 6px 4px !important; }
  .mk-metric-val   { font-size: .8rem !important; }
  .mk-metric-label { font-size: .35rem !important; }
  .mk-channel-bar  { font-size: .4rem !important; padding: 4px 0 !important; }
  .mk-channel-bar span:first-child { width: 36px !important; }

  .hc-clinic-card   { width: 170px !important; }
  .hc-clinic-header { padding: 10px 12px !important; font-size: .55rem !important; }
  .hc-clinic-body   { padding: 10px !important; }
  .hc-appt-item     { padding: 5px !important; font-size: .4rem !important; gap: 5px !important; }
  .hc-appt-time     { font-size: .4rem !important; }
  .hc-appt-status   { font-size: .3rem !important; padding: 1px 4px !important; }

  .an-report-card   { width: 190px !important; }
  .an-report-header { padding: 10px 12px !important; font-size: .55rem !important; }
  .an-report-body   { padding: 10px !important; }
  .an-chart-bars    { height: 50px !important; margin-bottom: 8px !important; }
  .an-insight-item  { font-size: .4rem !important; }

  .cp-deploy-terminal { width: 190px !important; }
  .cp-term-bar        { padding: 7px 10px !important; }
  .cp-term-dot        { width: 6px !important; height: 6px !important; }
  .cp-term-body       { padding: 10px !important; font-size: .4rem !important; line-height: 1.6 !important; }

  .notif-bubble, .crm-badge, .auto-badge, .calendar-badge,
  .mk-ai-copy-badge, .hc-reminder-badge, .hc-sms-badge,
  .an-auto-report-badge, .cp-portfolio-badge, .cp-live-badge { display: none !important; }
}

@media (max-width: 420px) {
  .build-scene        { height: 180px !important; }
  .phone-mock         { width: 110px !important; height: 180px !important; }
  .chat-window        { width: 160px !important; }
  .mk-dashboard       { width: 180px !important; }
  .hc-clinic-card     { width: 155px !important; }
  .an-report-card     { width: 170px !important; }
  .cp-deploy-terminal { width: 170px !important; }
}

/* Responsive */
@media (max-width: 960px) { /* tablet */
  .paths-grid { grid-template-columns: repeat(2, 1fr); }
  .paths-inner { padding: 0 32px; }
}

@media (max-width: 600px) { /* mobile */
  .paths-section { padding: 56px 0; }
  .paths-grid { grid-template-columns: 1fr; }
  .paths-inner { padding: 0 20px; }
}

/* ════════════════════════════════════════════════════════════
   LOCATION LANDING PAGES  (.loc-*)
   Used by: digital-marketing-course-kothamangalam.html etc.
════════════════════════════════════════════════════════════ */

/* Hero */
.loc-hero { padding: 96px 0 64px; background: linear-gradient(135deg, #0f0a2e 0%, #1a0f4e 60%, #0f172a 100%); }
.loc-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 52px; box-sizing: border-box; display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: center; }
.loc-hero-left { display: flex; flex-direction: column; }
.loc-hero .sec-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: center; }

/* ── Campus Trust Card ── */
.loc-campus-card { position: relative; background: rgba(255,255,255,.06); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(167,139,250,.22); border-radius: 18px; padding: 24px 22px 20px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; animation: campusCardIn .5s .5s both; align-self: center; }
.loc-campus-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(109,40,217,.22); }
.loc-campus-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #a78bfa, #7c3aed); }
@keyframes campusCardIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.loc-cc-eyebrow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.loc-cc-label { font-size: .58rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #00b4f0; }
.loc-cc-pin { width: 28px; height: 28px; border-radius: 50%; background: rgba(167,139,250,.15); display: flex; align-items: center; justify-content: center; font-size: .85rem; }
.loc-cc-name { font-size: 1rem; font-weight: 800; color: #fff; margin: 0 0 3px; line-height: 1.25; }
.loc-cc-legal { font-size: .62rem; color: rgba(255,255,255,.4); font-weight: 600; margin-bottom: 14px; }
.loc-cc-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 14px 0; }
.loc-cc-address { font-size: .78rem; color: rgba(255,255,255,.65); font-weight: 600; line-height: 1.7; margin-bottom: 2px; }
.loc-cc-address strong { display: block; font-size: .7rem; font-family: 'DM Mono', monospace; font-weight: 500; color: rgba(255,255,255,.5); letter-spacing: .02em; }
.loc-cc-access { font-size: .8rem; font-style: italic; color: #c4b5fd; font-weight: 600; line-height: 1.5; margin: 12px 0 0; }
.loc-cc-actions { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.loc-cc-action { display: inline-flex; align-items: center; gap: 5px; font-size: .68rem; font-weight: 700; text-decoration: none; padding: 7px 13px; border-radius: 100px; transition: all .2s; white-space: nowrap; }
.loc-cc-action--dir { background: rgba(167,139,250,.15); color: #c4b5fd; border: 1px solid rgba(167,139,250,.25); }
.loc-cc-action--dir:hover { background: rgba(167,139,250,.28); }
.loc-cc-action--call { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.15); }
.loc-cc-action--call:hover { background: rgba(255,255,255,.15); }
.loc-cc-action--wa { background: rgba(37,211,102,.15); color: #4ade80; border: 1px solid rgba(37,211,102,.25); }
.loc-cc-action--wa:hover { background: rgba(37,211,102,.25); }

.loc-breadcrumbs { 
  margin: 6px 0 18px; 
  position: static !important;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  display: block !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: auto !important;
}
.loc-breadcrumbs-list { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; padding: 0; margin: 0; }
.loc-breadcrumbs-list li { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.62); }
.loc-breadcrumbs-list a { color: rgba(255,255,255,.78); text-decoration: none; font-weight: 600; }
.loc-breadcrumbs-list a:hover { text-decoration: underline; }
.loc-breadcrumbs-list li[aria-current="page"] { color: #fff; font-weight: 700; }
.loc-breadcrumbs-sep { opacity: .5; }
.loc-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.loc-hero h1 em { font-style: normal; color: #a78bfa; }
.loc-sub { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 600px; margin-bottom: 24px; line-height: 1.6; }
.loc-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.loc-pill { border-radius: 100px; padding: 6px 14px; background: rgba(167,139,250,.15); color: #c4b5fd; font-size: 13px; font-weight: 600; border: 1px solid rgba(167,139,250,.25); }
.loc-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-wa-loc { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; padding: 12px 22px; border-radius: 100px; font-weight: 700; font-size: 15px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.btn-wa-loc:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }
.btn-wa-loc svg { flex-shrink: 0; }

/* Why section */
.loc-why { background: #f5f0ff; padding: 72px 0; }
.loc-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.loc-why-text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #1e1b4b; margin-bottom: 16px; }
.loc-why-text p { color: #374151; font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.loc-landmark { display: flex; align-items: center; gap: 8px; color: #6d28d9; font-size: 14px; font-weight: 600; margin-top: 16px; }

/* ── AEO entity summary strip ── */
.aeo-entity-summary {
  background: #f5f0ff;
  border-top: 1px solid rgba(109,40,217,.1);
  border-bottom: 1px solid rgba(109,40,217,.1);
  padding: 28px 0;
}
.aeo-es-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.aeo-es-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  margin: 0;
}
.aeo-es-dl dt {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6d28d9;
  white-space: nowrap;
  padding-top: 2px;
}
.aeo-es-dl dd {
  font-size: .82rem;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}
.aeo-es-dl dd a { color: #6d28d9; text-decoration: none; }
.aeo-es-dl dd a:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .aeo-es-inner { grid-template-columns: 1fr; gap: 16px; }
}

/* Local context section */
.loc-local { padding: 72px 0; background: #fff; }
.loc-local-box {
  background: linear-gradient(180deg, rgba(245,240,255,.9) 0%, rgba(255,255,255,1) 100%);
  border: 1px solid rgba(109,40,217,.1);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(109,40,217,.06);
}
.loc-local-box h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 800;
  color: #1e1b4b;
  margin-bottom: 16px;
}
.loc-local-box p {
  color: #374151;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.loc-local-box p:last-child { margin-bottom: 0; }

/* Stat cards */
.loc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.loc-stat { background: #fff; border-radius: 14px; padding: 22px 16px; text-align: center; border: 1px solid rgba(109,40,217,.12); box-shadow: 0 2px 12px rgba(109,40,217,.06); }
.loc-stat-num { font-size: 1.8rem; font-weight: 800; color: #6d28d9; line-height: 1; }
.loc-stat-label { font-size: 12px; color: #6b7280; margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

/* Courses preview */
.loc-courses { padding: 72px 0; background: #fff; }
.loc-courses h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 800; color: #1e1b4b; margin-bottom: 8px; }
.loc-courses-subtitle { color: #6b7280; font-size: 15px; margin-bottom: 36px; }
.loc-courses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* Learn section */
.loc-learn { padding: 72px 0; background: #f9f7ff; }
.loc-learn h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 800; color: #1e1b4b; margin-bottom: 32px; }
.loc-learn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.loc-learn-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; background: #fff; border-radius: 10px; border: 1px solid rgba(109,40,217,.1); }
.loc-learn-icon { font-size: 18px; flex-shrink: 0; line-height: 1.4; }
.loc-learn-item p { font-size: 14px; color: #374151; font-weight: 500; line-height: 1.4; }

/* Testimonials */
.loc-testimonials { padding: 72px 0; background: #fff; }
.loc-testimonials h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 800; color: #1e1b4b; margin-bottom: 32px; }
.loc-testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.loc-testi-card { background: #f9f7ff; border-radius: 14px; padding: 24px; border: 1px solid rgba(109,40,217,.1); }
.loc-testi-quote { font-size: 15px; color: #374151; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.loc-testi-author { font-weight: 700; font-size: 14px; color: #1e1b4b; }
.loc-testi-meta { font-size: 13px; color: #6b7280; }
.loc-stars { color: #f59e0b; font-size: 14px; margin-bottom: 8px; }

/* FAQ */
.loc-faq { padding: 72px 0; background: #f9f7ff; }
.loc-faq h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 800; color: #1e1b4b; margin-bottom: 32px; }
.loc-faq-list { max-width: 760px; }
.loc-faq-item { border-bottom: 1px solid rgba(109,40,217,.1); }
.loc-faq-q { cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 15px; color: #1e1b4b; display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none; }
.loc-faq-q::after { content: '+'; font-size: 20px; color: #6d28d9; flex-shrink: 0; transition: transform .2s; }
.loc-faq-item.open .loc-faq-q::after { transform: rotate(45deg); }
.loc-faq-a { padding: 0 0 18px; color: #374151; font-size: 15px; line-height: 1.7; display: none; }
.loc-faq-item.open .loc-faq-a { display: block; }

/* Apply section */
.loc-apply { padding: 72px 0; background: linear-gradient(135deg, #1e0a4e 0%, #0f172a 100%); }
.loc-apply h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.loc-apply-sub { color: rgba(255,255,255,.7); font-size: 15px; margin-bottom: 32px; }
.loc-contact-note { font-size:.82rem; color:rgba(255,255,255,.55); font-weight:600; margin-bottom:28px; }
.loc-contact-note a { color:rgba(255,255,255,.8); text-decoration:none; font-weight:700; }
.loc-contact-note a:hover { color:#fff; }

/* Internal links strip */
.loc-links { padding: 40px 0; background: #f0e9ff; border-top: 1px solid rgba(109,40,217,.1); }
.loc-links-inner { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.loc-links-label { font-size: 13px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .06em; }
.loc-links a { color: #6d28d9; font-size: 14px; font-weight: 600; text-decoration: none; padding: 6px 14px; border-radius: 100px; background: rgba(109,40,217,.08); transition: background .15s; }
.loc-links a:hover { background: rgba(109,40,217,.16); }

/* City signal strip on course pages */
.cd-loc-strip { padding: 20px 0; border-top: 1px solid rgba(109,40,217,.1); margin-top: 32px; }
.cd-loc-strip p { font-size: 14px; color: #6b7280; }
.cd-loc-strip a { color: #6d28d9; font-weight: 600; text-decoration: none; }
.cd-loc-strip a:hover { text-decoration: underline; }

/* Cities band (academy index footer) */
.loc-cities-band { background: #f0e9ff; padding: 14px 32px; text-align: center; font-size: 14px; color: #6b7280; border-top: 1px solid rgba(109,40,217,.1); }
.loc-cities-band strong { color: #374151; margin-right: 8px; }
.loc-cities-band a { color: #6d28d9; margin: 0 6px; font-weight: 600; text-decoration: none; }
.loc-cities-band a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 960px) { /* tablet */
  .loc-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .loc-hero .sec-wrap { grid-template-columns: 1fr; gap: 28px; }
  .loc-campus-card { max-width: 480px; }
  .loc-why-grid { grid-template-columns: 1fr; gap: 28px; }
  .loc-courses-grid { grid-template-columns: 1fr; }
  .loc-testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) { /* mobile */
  .loc-hero { padding: 80px 0 48px; }
  .loc-hero-inner { padding: 0 24px; }
  .loc-campus-card { max-width: 100%; }
  .loc-cc-actions { gap: 6px; }
  .loc-cc-action { font-size: .65rem; padding: 6px 11px; }
  .loc-breadcrumbs { margin: 8px 0 16px; }
  .loc-local-box { padding: 24px 20px; border-radius: 18px; }
  .loc-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .loc-stat-num { font-size: 1.4rem; }
  .loc-learn-grid { grid-template-columns: 1fr; }
  .loc-cities-band { padding: 14px 20px; }
  .loc-cities-band a { display: inline-block; margin: 4px 4px; }
}

/* ════════════════════════════════════════════════════════════
   LOCATION PAGE v2 — Enhanced component set
   Benefit cards · Curriculum grid · Career cards · Nearby pills
════════════════════════════════════════════════════════════ */

/* Benefit cards — 4-up grid */
.loc-benefits { padding: 72px 0; background: #fff; }
.loc-benefits h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 800; color: #1e1b4b; margin-bottom: 8px; }
.loc-benefits-sub { color: #6b7280; font-size: 15px; margin-bottom: 32px; }
.loc-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.loc-benefit-card { background: #f9f7ff; border-radius: 16px; padding: 24px 20px; border: 1px solid rgba(109,40,217,.1); transition: box-shadow .2s, transform .2s; }
.loc-benefit-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(109,40,217,.12); }
.loc-benefit-icon { font-size: 28px; margin-bottom: 14px; line-height: 1; }
.loc-benefit-title { font-weight: 700; color: #1e1b4b; font-size: 15px; margin-bottom: 6px; }
.loc-benefit-desc { font-size: 13px; color: #64748b; line-height: 1.6; }

/* Proof strip — compact horizontal stat bar */
.loc-proof-strip { background: linear-gradient(135deg, #1e0a4e 0%, #0f172a 100%); padding: 48px 0; }
.loc-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.loc-proof-item { text-align: center; padding: 8px 16px; border-right: 1px solid rgba(255,255,255,.1); }
.loc-proof-item:last-child { border-right: none; }
.loc-proof-num { font-size: 2rem; font-weight: 800; color: #a78bfa; line-height: 1; }
.loc-proof-label { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.loc-proof-trust { text-align: center; color: rgba(255,255,255,.55); font-size: 13px; margin-top: 28px; }

/* Curriculum topic cards */
.loc-curriculum { padding: 72px 0; background: #f9f7ff; }
.loc-curriculum h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 800; color: #1e1b4b; margin-bottom: 8px; }
.loc-curriculum-sub { color: #6b7280; font-size: 15px; margin-bottom: 32px; }
.loc-curriculum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.loc-topic-card { background: #fff; border-radius: 12px; padding: 18px 20px; border: 1px solid rgba(109,40,217,.1); display: flex; align-items: flex-start; gap: 12px; }
.loc-topic-icon { font-size: 20px; flex-shrink: 0; line-height: 1.3; }
.loc-topic-text {}
.loc-topic-title { font-weight: 700; color: #1e1b4b; font-size: 14px; margin-bottom: 3px; }
.loc-topic-desc { font-size: 12px; color: #6b7280; line-height: 1.5; }

/* Career outcome cards */
.loc-careers { padding: 72px 0; background: #fff; }
.loc-careers h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 800; color: #1e1b4b; margin-bottom: 8px; }
.loc-careers-sub { color: #6b7280; font-size: 15px; margin-bottom: 32px; }
.loc-careers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.loc-career-card { border-radius: 16px; padding: 22px; border: 1px solid rgba(109,40,217,.1); background: #f9f7ff; }
.loc-career-role { font-weight: 700; color: #1e1b4b; font-size: 15px; margin-bottom: 4px; }
.loc-career-salary { font-size: 13px; color: #6d28d9; font-weight: 700; margin-bottom: 8px; }
.loc-career-desc { font-size: 13px; color: #64748b; line-height: 1.6; }
.loc-career-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.loc-career-tag { font-size: 11px; padding: 3px 10px; border-radius: 100px; background: rgba(109,40,217,.08); color: #6d28d9; font-weight: 600; }

/* Nearby city pills */
.loc-nearby { padding: 56px 0; background: #f0e9ff; border-top: 1px solid rgba(109,40,217,.1); }
.loc-nearby h2 { font-size: 1rem; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; }
.loc-nearby-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.loc-nearby-pill { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: 100px; background: #fff; color: #6d28d9; font-size: 14px; font-weight: 600; text-decoration: none; border: 1px solid rgba(109,40,217,.18); box-shadow: 0 2px 8px rgba(109,40,217,.06); transition: all .2s; white-space: nowrap; }
.loc-nearby-pill:hover { background: #6d28d9; color: #fff; border-color: #6d28d9; box-shadow: 0 4px 16px rgba(109,40,217,.25); }
.loc-nearby-pill-icon { font-size: 13px; }

/* Compact course cards for location pages */
.loc-courses-v2 { padding: 72px 0; background: #fff; }
.loc-courses-v2 h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 800; color: #1e1b4b; margin-bottom: 8px; }
.loc-courses-v2-sub { color: #6b7280; font-size: 15px; margin-bottom: 32px; }
.loc-course-preview { background: #f9f7ff; border-radius: 16px; padding: 24px; border: 1px solid rgba(109,40,217,.1); display: flex; flex-direction: column; gap: 0; }
.loc-course-preview-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #6d28d9; margin-bottom: 10px; }
.loc-course-preview h3 { font-size: 16px; font-weight: 700; color: #1e1b4b; margin-bottom: 6px; line-height: 1.3; }
.loc-course-preview-desc { font-size: 13px; color: #64748b; line-height: 1.6; margin-bottom: 14px; flex: 1; }
.loc-course-meta-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.loc-course-meta-pill { font-size: 11px; padding: 4px 10px; border-radius: 100px; background: rgba(109,40,217,.08); color: #6d28d9; font-weight: 700; }
.loc-course-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(109,40,217,.08); }
.loc-course-price { }
.loc-course-price s { font-size: 12px; color: #9ca3af; display: block; }
.loc-course-price strong { font-size: 18px; font-weight: 800; color: #1e1b4b; }
.loc-course-outcome { font-size: 12px; color: #6b7280; margin-top: 2px; }

/* Final CTA section */
.loc-final-cta { padding: 80px 0; background: linear-gradient(135deg, #1a0a42 0%, #0f172a 100%); text-align: center; }
.loc-final-cta h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.loc-final-cta h2 em { font-style: normal; color: #a78bfa; }
.loc-final-cta p { color: rgba(255,255,255,.7); font-size: 16px; max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }
.loc-final-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.loc-final-trust { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 20px; }

/* Responsive — v2 components */
@media (max-width: 960px) { /* tablet */
  .loc-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-curriculum-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-careers-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 16px; }
  .loc-proof-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .loc-benefits-grid { grid-template-columns: 1fr; }
  .loc-curriculum-grid { grid-template-columns: 1fr; }
  .loc-careers-grid { grid-template-columns: 1fr; }
  .loc-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-final-cta-btns { flex-direction: column; align-items: center; }
}
