/* =========================================================
   LIGHTHILLZ TECHHUB — DESIGN TOKENS
   Palette derived from the brand mark: indigo -> violet gradient
   on a charcoal chip. KidsCanCode borrows the same DNA but adds
   an amber "energy" accent for the holiday-bootcamp campaign.
   ========================================================= */
:root{
  /* brand core */
  --ink:        #0F1120;   /* deep charcoal navy, corporate bg */
  --ink-2:      #171A31;   /* slightly lighter panel on ink */
  --indigo:     #3145C7;
  --indigo-2:   #4E5FE0;
  --violet:     #8B2FD9;
  --violet-2:   #A855F7;
  --paper:      #F7F7FB;   /* light section bg */
  --paper-2:    #FFFFFF;
  --slate:      #16172A;   /* body text on light */
  --muted:      #62637A;
  --line:       #E4E4EE;
  --line-dark:  rgba(255,255,255,.12);

  /* kidscancode accent (energy) */
  --amber:      #FF9F43;
  --amber-2:    #FFC26B;
  --coral:      #FF6B6B;

  /* gradients */
  --grad-brand: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(49,69,199,.14), rgba(139,47,217,.14));
  --grad-warm:  linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%);

  /* type */
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-playful: 'Fredoka', 'Space Grotesk', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;

  /* scale */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 50px -20px rgba(15,17,32,.35);
  --shadow-tight: 0 8px 24px -12px rgba(15,17,32,.4);
  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; line-height:1.1; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }
.container{ max-width: var(--container); margin:0 auto; padding: 0 24px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 12.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color: var(--indigo-2);
}
.eyebrow::before{ content:''; width:18px; height:2px; background: var(--grad-brand); border-radius:2px; }
section{ position:relative; }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--violet-2); outline-offset: 3px; border-radius: 6px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: sticky; top:0; z-index: 60;
  background: rgba(15,17,32,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px; max-width: var(--container); margin:0 auto;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ width:38px; height:38px; border-radius:10px; }
.brand-name{ font-family: var(--font-display); font-weight:700; color:#fff; font-size:16.5px; line-height:1.15; }
.brand-name small{ display:block; font-size:10.5px; font-weight:500; letter-spacing:.1em; color:#B9BCE8; text-transform:uppercase; }
.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{ color:#D6D7F3; font-size:14.5px; font-weight:500; transition: color .2s; }
.nav-links a:hover{ color:#fff; }
.nav-cta{
  padding:10px 20px; border-radius:999px; font-weight:600; font-size:14px;
  background: var(--grad-brand); color:#fff; border:none;
  box-shadow: 0 8px 20px -8px rgba(139,47,217,.6);
}
.nav-toggle{ display:none; background:none; border:none; color:#fff; font-size:24px; }

@media (max-width: 880px){
  .nav-links{
    display:none;
    position:fixed;
    top:64px; left:0; right:0; bottom:0;
    width:100%;
    background: var(--ink);
    flex-direction:column;
    align-items:flex-start;
    padding: 32px 24px;
    gap:22px;
    overflow-y:auto;
    z-index:55;
  }
  .nav-links.open{ display:flex; }
  .nav-toggle{ display:block; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 26px; border-radius:999px; font-weight:600; font-size:15px;
  border:none; transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--grad-brand); color:#fff; box-shadow: 0 12px 30px -10px rgba(139,47,217,.55); }
.btn-warm{ background: var(--grad-warm); color:#2A1400; box-shadow: 0 12px 30px -10px rgba(255,107,107,.55); }
.btn-ghost{ background: transparent; color:#fff; border:1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover{ border-color:#fff; }
.btn-outline-dark{ background: transparent; color: var(--slate); border:1.5px solid var(--line); }
.btn-outline-dark:hover{ border-color: var(--indigo); color: var(--indigo); }
.btn-block{ width:100%; }
.btn:disabled{ opacity:.6; cursor:not-allowed; transform:none; }

/* =========================================================
   FOOTER (shared)
   ========================================================= */
.site-footer{ background: var(--ink); color:#C9CAE6; padding: 64px 0 28px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap:36px; }
.footer-brand p{ margin-top:14px; font-size:14px; line-height:1.7; color:#9EA1CC; max-width:320px; }
.footer-col h4{ font-size:14px; color:#fff; margin-bottom:16px; letter-spacing:.04em; }
.footer-col a, .footer-col li{ font-size:14px; color:#B4B6DC; margin-bottom:10px; display:block; }
.footer-col a:hover{ color:#fff; }
.footer-social{ display:flex; gap:12px; margin-top:6px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.08); border:1px solid var(--line-dark);
}
.footer-social a:hover{ background: var(--grad-brand); }
.footer-bottom{
  margin-top: 48px; padding-top: 22px; border-top:1px solid var(--line-dark);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size: 12.5px; color:#8688B3;
}
@media (max-width: 880px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.whatsapp-float{
  position:fixed; right:22px; bottom:22px; z-index:70;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.65);
  animation: floatPulse 2.6s ease-in-out infinite;
}
.whatsapp-float svg{ width:28px; height:28px; }
@keyframes floatPulse{
  0%,100%{ box-shadow: 0 12px 30px -8px rgba(37,211,102,.65); }
  50%{ box-shadow: 0 12px 34px -6px rgba(37,211,102,.9); }
}

/* generic reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* =========================================================
   INDEX.HTML — LIGHTHILLZ CORPORATE
   ========================================================= */
.hero-corp{
  background: var(--ink);
  color:#fff;
  padding: 90px 0 120px;
  position:relative;
  overflow:hidden;
}
.hero-corp::before{
  content:''; position:absolute; inset:-20% -10% auto auto; width:620px; height:620px;
  background: radial-gradient(circle, rgba(139,47,217,.35), transparent 65%);
  filter: blur(10px);
}
.hero-corp::after{
  content:''; position:absolute; left:-10%; bottom:-30%; width:520px; height:520px;
  background: radial-gradient(circle, rgba(49,69,199,.32), transparent 65%);
}
.hero-corp-inner{ position:relative; z-index:2; display:grid; grid-template-columns: 1.15fr .85fr; gap:48px; align-items:center; }
.hero-corp h1{ font-size: clamp(34px, 4.6vw, 58px); margin: 18px 0 20px; }
.hero-corp h1 .grad{ background: var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-corp p.lede{ font-size:17px; line-height:1.7; color:#C6C7E8; max-width: 540px; }
.hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.hero-mark{
  position:relative; border-radius: var(--radius-lg);
  background: var(--grad-brand-soft); border:1px solid var(--line-dark);
  padding: 30px; backdrop-filter: blur(6px);
}
.pathway-mini{ display:flex; flex-direction:column; gap:16px; }
.pathway-mini .step{ display:flex; align-items:center; gap:14px; }
.pathway-mini .dot{ width:38px; height:38px; border-radius:10px; background: var(--grad-brand); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:15px; font-weight:700; color:#fff; }
.pathway-mini .label b{ display:block; font-size:14.5px; color:#fff; }
.pathway-mini .label span{ font-size:12.5px; color:#A8AAD4; }
.pathway-mini .connector{ width:2px; height:16px; background: linear-gradient(var(--indigo-2), var(--violet-2)); margin-left:18px; }

@media (max-width: 900px){
  .hero-corp-inner{ grid-template-columns: 1fr; }
}

/* Pathway section */
.pathway-section{ background: var(--paper); padding: 100px 0; }
.section-head{ max-width:640px; margin-bottom:54px; }
.section-head h2{ font-size: clamp(26px,3.2vw,38px); margin-top:12px; }
.section-head p{ margin-top:14px; color:var(--muted); font-size:15.5px; line-height:1.7; }

.pathway-track{ position:relative; }
.pathway-line{
  position:absolute; top:52px; left:0; right:0; height:3px;
  background: var(--grad-brand); border-radius:3px; opacity:.25;
  display:none;
}
.pillars{ display:grid; grid-template-columns: repeat(3, 1fr); gap:28px; position:relative; z-index:1; }
.pillar-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-md);
  padding:30px 26px; box-shadow: var(--shadow-tight);
}
.pillar-num{
  width:44px; height:44px; border-radius:12px; background: var(--grad-brand);
  color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; margin-bottom:18px;
}
.pillar-card h3{ font-size:20px; margin-bottom:6px; }
.pillar-card .sub{ font-size:13px; font-weight:600; color: var(--violet); text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; }
.pillar-card ul li{ font-size:14px; color:var(--muted); padding:6px 0; border-top:1px dashed var(--line); }
.pillar-card ul li:first-child{ border-top:none; }
@media (max-width: 900px){
  .pillars{ grid-template-columns: 1fr; }
}

/* Model strip */
.model-strip{ background:#fff; padding: 70px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.model-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:24px; }
.model-item{ text-align:center; padding: 10px; }
.model-item .ic{ width:52px; height:52px; margin:0 auto 14px; border-radius:14px; background: var(--grad-brand-soft); display:flex; align-items:center; justify-content:center; }
.model-item h4{ font-size:15px; margin-bottom:6px; }
.model-item p{ font-size:13px; color: var(--muted); line-height:1.6; }
@media (max-width: 880px){ .model-grid{ grid-template-columns: repeat(2,1fr); } }

/* Bootcamp banner (teaser into kidscancode.html) */
.bootcamp-banner{
  margin: 0 auto; max-width: var(--container); padding: 0 24px;
}
.banner-card{
  background: var(--ink); border-radius: var(--radius-lg); color:#fff;
  padding: 54px; display:grid; grid-template-columns: 1fr auto; gap:32px; align-items:center;
  position:relative; overflow:hidden; margin: 40px auto 100px;
}
.banner-card::before{
  content:''; position:absolute; right:-60px; top:-60px; width:280px; height:280px;
  background: var(--grad-warm); opacity:.28; border-radius:50%; filter: blur(30px);
}
.banner-card .tag{
  display:inline-block; background: var(--grad-warm); color:#2A1400; font-weight:700;
  font-size:12px; padding:6px 14px; border-radius:999px; margin-bottom:16px;
}
.banner-card h3{ font-size: clamp(22px,3vw,32px); max-width:520px; position:relative; z-index:1; }
.banner-card p{ color:#C6C7E8; margin-top:12px; max-width:480px; position:relative; z-index:1; }
@media (max-width: 780px){
  .banner-card{ grid-template-columns: 1fr; padding: 36px 24px; text-align:left; }
}

/* Vision/mission */
.vm-section{ background: var(--paper); padding: 90px 0; }
.vm-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:28px; }
.vm-card{ background:#fff; border-radius: var(--radius-md); padding:34px; border:1px solid var(--line); }
.vm-card .eyebrow{ margin-bottom:14px; }
.vm-card p, .vm-card li{ color: var(--muted); font-size:15px; line-height:1.8; }
.vm-card ul li{ padding-left:22px; position:relative; margin-bottom:8px; }
.vm-card ul li::before{ content:'→'; position:absolute; left:0; color: var(--violet); font-weight:700; }
@media (max-width: 780px){ .vm-grid{ grid-template-columns:1fr; } }

/* Why choose grid */
.why-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
.why-item{ padding:24px; border-radius: var(--radius-sm); background:#fff; border:1px solid var(--line); text-align:center; }
.why-item .glyph{ font-size:26px; margin-bottom:10px; }
.why-item h4{ font-size:14.5px; margin-bottom:6px; }
.why-item p{ font-size:12.5px; color:var(--muted); line-height:1.6; }
@media (max-width: 880px){ .why-grid{ grid-template-columns: repeat(2,1fr); } }


/* =========================================================
   KIDSCANCODE.HTML — HOLIDAY BOOTCAMP CAMPAIGN PAGE
   Body gets .kcc-theme for scoped playful overrides
   ========================================================= */
.kcc-theme h1, .kcc-theme h2, .kcc-theme h3{ font-family: var(--font-playful); }

.kcc-topbar{
  background: var(--grad-warm); color:#2A1400; text-align:center;
  font-size:13.5px; font-weight:700; padding:9px 16px;
}

.kcc-hero{
  background: var(--ink); color:#fff; padding: 70px 0 130px; position:relative; overflow:hidden;
}
.kcc-hero::before{
  content:''; position:absolute; top:-20%; right:-8%; width:600px; height:600px;
  background: radial-gradient(circle, rgba(255,159,67,.32), transparent 62%);
}
.kcc-hero::after{
  content:''; position:absolute; bottom:-30%; left:-10%; width:500px; height:500px;
  background: radial-gradient(circle, rgba(139,47,217,.3), transparent 62%);
}
.kcc-hero-inner{
  position:relative; z-index:2; max-width: var(--container); margin:0 auto;
  display:grid; grid-template-columns: 1.05fr .95fr; gap:48px; align-items:center; text-align:left;
}
.kcc-hero .presents{ font-size:13px; letter-spacing:.16em; text-transform:uppercase; color:#B9BCE8; font-weight:600; }
.kcc-hero h1{ font-size: clamp(30px,4.6vw,52px); margin:16px 0 8px; }
.kcc-hero h1 .warm{ background: var(--grad-warm); -webkit-background-clip:text; background-clip:text; color:transparent; }
.kcc-hero .tagline{ font-size:17px; color:#E4E5F7; font-weight:600; margin-bottom:16px; }
.kcc-hero .lede{ font-size:15.5px; color:#C6C7E8; line-height:1.7; max-width:560px; }
.kcc-hero-actions{ display:flex; justify-content:flex-start; gap:14px; margin-top:32px; flex-wrap:wrap; }
.kcc-fee-pill{ justify-content:flex-start; }

.kcc-hero-media{ position:relative; }
.kcc-hero-media .frame{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  border:1px solid var(--line-dark); box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}
.kcc-hero-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.kcc-hero-media .frame::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,17,32,.55) 100%);
}
.kcc-hero-badge{
  position:absolute; left:22px; bottom:22px; z-index:2;
  background: rgba(15,17,32,.75); backdrop-filter: blur(8px);
  border:1px solid var(--line-dark); border-radius: var(--radius-sm);
  padding:12px 16px; display:flex; align-items:center; gap:10px;
}
.kcc-hero-badge .dot{ width:10px; height:10px; border-radius:50%; background: var(--grad-warm); flex-shrink:0; }
.kcc-hero-badge span{ font-size:13px; font-weight:600; color:#fff; }
.kcc-hero-glow{
  position:absolute; top:-24px; right:-24px; width:120px; height:120px;
  background: var(--grad-warm); border-radius:50%; opacity:.35; filter: blur(24px); z-index:0;
}

@media (max-width: 900px){
  .kcc-hero-inner{ grid-template-columns: 1fr; text-align:center; }
  .kcc-hero .lede{ margin:0 auto; }
  .kcc-hero-actions, .kcc-fee-pill{ justify-content:center; }
  .kcc-hero-media{ order:-1; max-width:480px; margin:0 auto; }
}
.kcc-fee-pill{
  display:inline-flex; gap:18px; margin-top:34px; background: rgba(255,255,255,.06);
  border:1px solid var(--line-dark); border-radius:999px; padding:10px 26px; flex-wrap:wrap; justify-content:center;
}
.kcc-fee-pill div{ font-size:13px; color:#C6C7E8; }
.kcc-fee-pill b{ color:#fff; font-size:15px; }
.kcc-fee-pill .strike{ text-decoration:line-through; opacity:.55; }

/* why choose */
.kcc-why{ background: var(--paper); padding: 90px 0 70px; }
.kcc-why-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:44px; align-items:center; }
.kcc-why p{ color: var(--muted); font-size:15.5px; line-height:1.8; margin-bottom:14px; }
.kcc-skill-list{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.kcc-skill-list .item{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding:16px 18px; font-size:14px; font-weight:600; display:flex; gap:10px; align-items:center; }
.kcc-skill-list .item span{ font-size:18px; }
@media (max-width: 880px){ .kcc-why-grid{ grid-template-columns:1fr; } .kcc-skill-list{ grid-template-columns: 1fr 1fr; } }

/* curriculum cards */
.kcc-curric{ padding: 30px 0 90px; }
.curric-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; }
.curric-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); padding:26px; box-shadow: var(--shadow-tight); }
.curric-card .tag-strip{ width:44px; height:6px; border-radius:6px; margin-bottom:16px; }
.curric-card h3{ font-size:18px; margin-bottom:12px; }
.curric-card ul li{ font-size:13.5px; color: var(--muted); padding:5px 0; }
.curric-card ul li::before{ content:'✓ '; color: var(--violet); font-weight:700; }
@media (max-width: 980px){ .curric-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .curric-grid{ grid-template-columns: 1fr; } }

/* hub selector */
.kcc-hubs{ background: var(--ink); color:#fff; padding: 90px 0; }
.kcc-hubs .section-head p{ color:#B9BCE8; }
.hub-tabs{ display:flex; gap:12px; margin-bottom:32px; flex-wrap:wrap; }
.hub-tab{
  padding:12px 22px; border-radius:999px; background: rgba(255,255,255,.07);
  border:1.5px solid var(--line-dark); color:#D6D7F3; font-weight:600; font-size:14.5px;
}
.hub-tab.active{ background: var(--grad-warm); color:#2A1400; border-color:transparent; }
.hub-panel{ display:none; }
.hub-panel.active{ display:grid; grid-template-columns: 1.1fr .9fr; gap:32px; }
.hub-info{ background: rgba(255,255,255,.05); border:1px solid var(--line-dark); border-radius: var(--radius-md); padding:32px; }
.hub-info .status{ display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:700; padding:5px 12px; border-radius:999px; margin-bottom:14px; }
.status.verified{ background: rgba(37,211,102,.18); color:#7CE8A4; }
.status.pending{ background: rgba(255,159,67,.18); color: var(--amber-2); }
.hub-info h3{ font-size:24px; margin-bottom:6px; }
.hub-info .venue{ color:#B9BCE8; font-size:14px; margin-bottom:18px; }
.hub-facts{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:10px; }
.hub-fact{ background: rgba(255,255,255,.04); border-radius: var(--radius-sm); padding:14px 16px; }
.hub-fact span{ display:block; font-size:11.5px; text-transform:uppercase; letter-spacing:.08em; color:#9698C9; margin-bottom:4px; }
.hub-fact b{ font-size:15px; }
.hub-cta{ margin-top:24px; }
.hub-map{ border-radius: var(--radius-md); overflow:hidden; border:1px solid var(--line-dark); min-height:260px; }
.hub-map iframe{ width:100%; height:100%; min-height:260px; border:0; filter: grayscale(.15); }
@media (max-width: 880px){ .hub-panel.active{ grid-template-columns:1fr; } .hub-facts{ grid-template-columns: 1fr 1fr; } }

/* timeline */
.kcc-timeline{ padding: 90px 0; background: var(--paper); }
.tl-track{ position:relative; padding-left:26px; }
.tl-track::before{ content:''; position:absolute; left:6px; top:6px; bottom:6px; width:2px; background: var(--grad-brand); opacity:.3; }
.tl-week{ position:relative; padding-bottom:38px; }
.tl-week:last-child{ padding-bottom:0; }
.tl-week::before{ content:''; position:absolute; left:-26px; top:2px; width:14px; height:14px; border-radius:50%; background: var(--grad-brand); box-shadow: 0 0 0 5px var(--paper); }
.tl-week h4{ font-size:16.5px; margin-bottom:4px; }
.tl-week span.wk-tag{ font-size:12px; font-weight:700; color: var(--violet); text-transform:uppercase; letter-spacing:.06em; }
.tl-week p{ font-size:14px; color: var(--muted); margin-top:6px; line-height:1.65; max-width:560px; }

/* showcase / different */
.kcc-showcase{ padding: 20px 0 90px; }
.showcase-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
.showcase-item{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding:20px; text-align:center; font-weight:600; font-size:14px; }
.showcase-item .ic{ font-size:24px; margin-bottom:8px; }
@media (max-width: 780px){ .showcase-grid{ grid-template-columns: 1fr 1fr; } }

/* fees */
.kcc-fees{ padding: 20px 0 90px; }
.fees-card{
  max-width:640px; margin:0 auto; background: var(--ink); color:#fff; border-radius: var(--radius-lg);
  padding:44px; text-align:center; position:relative; overflow:hidden;
}
.fees-card::before{ content:''; position:absolute; inset:0; background: var(--grad-brand-soft); opacity:.5; }
.fees-card *{ position:relative; z-index:1; }
.fees-toggle{ display:flex; justify-content:center; gap:0; margin:24px auto; max-width:320px; background: rgba(255,255,255,.08); border-radius:999px; padding:4px; }
.fees-toggle span{ flex:1; text-align:center; padding:9px 0; border-radius:999px; font-size:13.5px; font-weight:700; }
.fees-toggle .early{ background: var(--grad-warm); color:#2A1400; }
.price-row{ display:flex; justify-content:center; gap:36px; margin: 22px 0; flex-wrap:wrap; }
.price-box .label{ font-size:12.5px; color:#B9BCE8; text-transform:uppercase; letter-spacing:.08em; }
.price-box .amt{ font-size:34px; font-weight:700; margin-top:4px; }
.price-box.regular .amt{ color:#9698C9; text-decoration:line-through; font-size:22px; }
.fees-list{ text-align:left; max-width:340px; margin: 24px auto 0; }
.fees-list li{ font-size:14px; color:#DADBF5; padding:6px 0; }
.fees-list li::before{ content:'✓ '; color: var(--amber-2); font-weight:700; }

/* how to register steps */
.kcc-steps{ padding: 20px 0 90px; }
.steps-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
.step-card{ text-align:center; padding:14px; }
.step-num{ width:46px; height:46px; border-radius:14px; background: var(--grad-warm); color:#2A1400; font-weight:700; display:flex; align-items:center; justify-content:center; margin: 0 auto 14px; }
.step-card h4{ font-size:15px; margin-bottom:6px; }
.step-card p{ font-size:13px; color:var(--muted); line-height:1.6; }
@media (max-width: 880px){ .steps-grid{ grid-template-columns: 1fr 1fr; } }

/* FAQ accordion */
.kcc-faq{ background: var(--paper); padding: 20px 0 90px; }
.faq-list{ max-width:760px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; background:none; border:none; text-align:left; padding:20px 6px;
  display:flex; justify-content:space-between; align-items:center; font-size:15.5px; font-weight:600; color: var(--slate);
}
.faq-q .plus{ font-size:20px; color: var(--violet); transition: transform .25s; flex-shrink:0; margin-left:14px; }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq-a p{ padding: 0 6px 20px; color: var(--muted); font-size:14.5px; line-height:1.7; }

/* Registration form */
.kcc-register{ padding: 20px 0 100px; }
.register-wrap{
  max-width:720px; margin:0 auto; background:#fff; border:1px solid var(--line);
  border-radius: var(--radius-lg); padding:44px; box-shadow: var(--shadow-soft);
}
.register-wrap .section-head{ margin-bottom:30px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; margin-bottom:18px; }
.form-section{ padding-top:8px; margin-bottom:8px; border-top:1px solid var(--line); }
.form-section:first-child{ border-top:none; padding-top:0; }
.form-section-title{
  display:flex; align-items:center; gap:10px; font-size:16px; margin: 22px 0 18px;
  font-family: var(--font-display); color: var(--slate);
}
.form-section-title span{
  width:26px; height:26px; border-radius:8px; background: var(--grad-brand); color:#fff;
  font-size:13px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.form-field label .opt{ font-weight:400; color: var(--muted); font-size:12px; }
.terms-check{
  display:flex; align-items:flex-start; gap:10px; margin-top:8px; padding-top:16px;
  border-top:1px solid var(--line); font-size:13.5px; color: var(--slate); cursor:pointer;
}
.terms-check input{ margin-top:3px; flex-shrink:0; width:16px; height:16px; accent-color: var(--violet-2); }
.form-field{ display:flex; flex-direction:column; gap:7px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{ font-size:13px; font-weight:600; color: var(--slate); }
.form-field input, .form-field select{
  padding:13px 15px; border-radius:10px; border:1.5px solid var(--line); font-size:14.5px; font-family:inherit; background:#FBFBFE;
}
.form-field input:focus, .form-field select:focus{ border-color: var(--violet-2); outline:none; }
.hub-choice{ display:flex; gap:12px; flex-wrap:wrap; }
.hub-choice label{ min-width:120px; }
.hub-choice label{
  flex:1; border:1.5px solid var(--line); border-radius:12px; padding:14px; text-align:center;
  font-size:13.5px; font-weight:600; cursor:pointer; transition: all .2s;
}
.hub-choice input{ display:none; }
.hub-choice input:checked + span{ color: var(--violet); }
.hub-choice label:has(input:checked){ border-color: var(--violet-2); background: var(--grad-brand-soft); }
.form-note{ font-size:12.5px; color: var(--muted); margin-top:16px; line-height:1.6; text-align:center; }
#formStatus{ margin-top:16px; padding:14px 16px; border-radius:10px; font-size:13.5px; display:none; }
#formStatus.show{ display:block; }
#formStatus.ok{ background:#EAF9EE; color:#1E7B3A; border:1px solid #BFE8C8; }
@media (max-width: 640px){ .form-row{ grid-template-columns: 1fr; } }

/* sticky register bar */
.sticky-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:65;
  background: var(--ink); color:#fff; padding:14px 20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  transform: translateY(100%); transition: transform .35s ease;
  box-shadow: 0 -10px 30px -12px rgba(0,0,0,.4);
}
.sticky-cta.show{ transform: translateY(0); }
.sticky-cta .txt{ font-size:14px; font-weight:600; }
.sticky-cta .txt small{ display:block; font-weight:400; font-size:12px; color:#B9BCE8; }
@media (max-width: 560px){ .sticky-cta .txt small{ display:none; } }

/* =========================================================
   TERMS & CONDITIONS MODAL
   ========================================================= */
.terms-link{
  background:none; border:none; padding:0; margin:0; font: inherit;
  color: var(--violet); text-decoration: underline; cursor: pointer;
}
.terms-link:hover{ color: var(--indigo); }

.modal-overlay{
  position: fixed; inset:0; z-index: 100;
  background: rgba(15,17,32,.6); backdrop-filter: blur(3px);
  display:none; align-items:center; justify-content:center; padding:20px;
}
.modal-overlay.open{ display:flex; }
.modal-card{
  position:relative; background:#fff; border-radius: var(--radius-lg);
  max-width: 600px; width:100%; max-height: 82vh; overflow:hidden;
  display:flex; flex-direction:column;
  box-shadow: var(--shadow-soft);
  animation: modalIn .25s ease;
}
@keyframes modalIn{ from{ opacity:0; transform: translateY(14px) scale(.98); } to{ opacity:1; transform:none; } }
.modal-card h3{ font-family: var(--font-display); font-size:19px; padding: 26px 56px 14px 26px; }
.modal-close{
  position:absolute; top:16px; right:16px; width:34px; height:34px; border-radius:50%;
  background: var(--paper); border:1px solid var(--line); font-size:20px; line-height:1;
  color: var(--muted); display:flex; align-items:center; justify-content:center;
}
.modal-close:hover{ background: var(--line); color: var(--slate); }
.modal-body{ padding: 0 26px; overflow-y:auto; flex:1; }
.modal-body ol{ list-style:none; counter-reset: term; margin:0; padding:0; }
.modal-body ol li{
  counter-increment: term; position:relative; padding: 10px 0 10px 30px;
  font-size:13.5px; line-height:1.65; color: var(--slate); border-bottom:1px dashed var(--line);
}
.modal-body ol li:last-child{ border-bottom:none; }
.modal-body ol li::before{
  content: counter(term); position:absolute; left:0; top:10px;
  width:20px; height:20px; border-radius:6px; background: var(--grad-brand-soft);
  color: var(--violet); font-size:11px; font-weight:700; display:flex; align-items:center; justify-content:center;
}
.modal-note{ font-size:12px; color: var(--muted); padding: 14px 0 20px; }
.modal-card > .btn{ margin: 0 26px 26px; width:auto; }
