/* =========================================================
   Next Move Career Launch Academy Ã¢â‚¬â€ Core Stylesheet
   Type: Space Grotesk (display) / Inter (body) / JetBrains Mono (utility)
   Signature: the "Next Move" trajectory line Ã¢â‚¬â€ a stepped route
   that visualises Learn Ã¢â€ â€™ Practice Ã¢â€ â€™ Launch. Used in the hero,
   as section dividers, and in the footer.
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* ---------- Design tokens ---------- */
:root{
  --bg-primary: #ffffff;
  --bg-secondary: #f5f7f9;
  --text-primary: #0f2a3a;
  --text-secondary: #011b3c;
  --accent-primary: #f26522;
  --accent-hover: #ff7a3a;
  --border-color: #e2e8f0;
  --card-bg: #ffffff;

  --accent-primary-rgb: 242,101,34;
  --shadow-soft: 0 1px 2px rgba(15,42,58,.04), 0 8px 24px -12px rgba(15,42,58,.12);
  --shadow-lift: 0 20px 40px -16px rgba(15,42,58,.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --nav-h: 76px;

  --font-display: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  color-scheme: light;
}

html[data-theme="dark"]{
  --bg-primary: #0a141e;
  --bg-secondary: #0f1c29;
  --text-primary: #edf2f6;
  --text-secondary: #93a5b3;
  --accent-primary: #f26522;
  --accent-hover: #ff8a52;
  --border-color: #1e3143;
  --card-bg: #101f2d;
  --shadow-soft: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px -12px rgba(0,0,0,.5);
  --shadow-lift: 0 20px 45px -16px rgba(0,0,0,.6);
  color-scheme: dark;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg-primary);
  /*color: var(--text-primary);*/
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color .35s ease, color .35s ease;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
   user-select: none;
}
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 0 .5em; line-height:1.15; letter-spacing:-.01em; }
p{ margin:0 0 1em; color: var(--text-secondary); }
button{ font-family: inherit; cursor:pointer; }
input,select,textarea{ font-family: inherit; }
:focus-visible{ outline: 2px solid var(--accent-primary); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior:auto !important; }
}

.container{ width:100%; max-width: 1240px; margin:0 auto; padding: 0 24px; }
p.text-lg {
    font-size: 15px;
    margin: 0;
    max-width: 100%;
}
.nm{
  color: #011b3c;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing:.08em; text-transform:uppercase;
  color: var(--accent-primary); font-weight:600; margin-bottom:14px;
}
.eyebrow::before{ content:""; width:18px; height:2px; background: var(--accent-primary); border-radius:2px; }
.section{padding: 96px 0;border-top-style: solid;border-color: #f265227a;border-width: 1px;}
.section-tight{ padding: 64px 0; }
.consec section{border:none;padding: 0;}
.section-head{max-width: 100%;margin-bottom: 52px;}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section h2{font-size: clamp(1.9rem, 3vw, 2.6rem);color: #f26522;}
.on-secondary{ background: var(--bg-secondary); }
.text-lg{font-size: 16px;}
.muted{ color: var(--text-secondary); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family: var(--font-display);
  font-weight:600;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .22s ease;
  white-space:nowrap;
}
.btn svg{ width:17px; height:17px; }
.btn-primary{ background: var(--accent-primary); color:#fff; box-shadow: 0 10px 24px -10px rgba(var(--accent-primary-rgb),.55); }
.btn-primary:hover{background: var(--accent-hover);transform: translateY(-2px);box-shadow: 0 14px 28px -10px rgba(var(--accent-primary-rgb),.6);color: #fff;}
.btn-outline{background: transparent;border-color: #e2e8f0;font-size: 15px;}
.btn-outline:hover{ border-color: var(--accent-primary); color: var(--accent-primary); transform: translateY(-2px); }
.btn-ghost{ background: transparent; color: var(--text-primary); padding: 13px 8px; }
.btn-ghost:hover{ color: var(--accent-primary); }
.btn-block{ width:100%; }
.btn-sm{padding: 9px 18px;font-size: 15px;}

/* ---------- Navbar ---------- */
a.brand img {
    width: 150px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #ffffff30;
    border-radius: var(--radius-md);
}
.navbar{
  position: sticky; top:0; z-index: 100; height: 100px;
  display:flex; align-items:center;
  background: color-mix(in srgb, #132232 100%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #e2e8f0;
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; width:100%; padding:0;}
.brand{ display:flex; align-items:center; gap:10px; font-family: var(--font-display); font-weight:700; font-size:1.08rem; color: var(--text-primary); flex-shrink:0; }
.brand-mark{
  width:38px; height:38px; border-radius:10px; flex-shrink:0;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
  display:flex; align-items:center; justify-content:center; color:#fff;
  box-shadow: 0 8px 16px -6px rgba(var(--accent-primary-rgb),.6);
}
.brand-mark svg{ width:20px; height:20px; }
.brand small{display:block;font-family: var(--font-body);font-weight:500;font-size:.68rem;letter-spacing:.03em;}

.nav-links{display:flex;align-items:center;justify-content: center;gap: 75px;}
.nav-links a{
  position:relative;
  padding: 8px 25px;
  border: 1px solid #ffffff26;
  font-size: 15px;
  font-weight:500;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover{ color: var(--text-primary); background: var(--bg-secondary); }
.nav-links a.active{ color: var(--accent-primary); }
.has-dropdown{ position:relative; display: flex;align-items: center;}
.dropdown{
  position:absolute; top: calc(100% + 10px); left:0; min-width: 300px;
  background: var(--card-bg); border:1px solid #e2e8f0; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift); padding: 8px; opacity:0; visibility:hidden; transform: translateY(6px);
  transition: all .2s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown{ opacity:1; visibility:visible; transform: translateY(0); }
.dropdown a{display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius: var(--radius-sm);font-size: 13px;}
.dropdown a:hover{ background: var(--bg-secondary); }
.dropdown a svg{ width:17px; height:17px; color: var(--accent-primary); flex-shrink:0; }
.nav-right{ display:flex; align-items:center; gap:25px; }

.theme-toggle{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid #e2e8f0;
  background: var(--bg-secondary);
  color: var(--text-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition: all .2s ease;
  padding: 0;
}
.theme-toggle:hover{ border-color: var(--accent-primary); }
.theme-toggle svg{ width:19px; height:19px; }
.theme-toggle .sun{ display:none; }
html[data-theme="dark"] .theme-toggle .moon{ display:none; }
html[data-theme="dark"] .theme-toggle .sun{ display:block; }

.nav-toggle{ display:none; width:42px; height:42px; padding: 18px; align-items:center; justify-content:center; border-radius:10px; border:1px solid #e2e8f0; background: var(--bg-secondary); color:var(--text-primary); }
.nav-toggle svg{ width:20px; height:20px; }

/* ---------- Hero ---------- */
.hero{ position:relative; padding: 76px 0 40px; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items:center; }
.hero h1{font-size: clamp(2.3rem, 4.4vw, 2.6rem);}
.hero h1 .accent{ color: var(--accent-primary); }
.hero-lede{font-size: 16px;max-width: 520px;color: #011b3c;}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin: 28px 0 34px; }
.hero-stats{ display:flex; gap: 34px; flex-wrap:wrap; }
.hero-stat b{display:block;font-family: var(--font-display);font-size:1.7rem;color: #f26522;}
.hero-stat span{font-size:.82rem;color: #011b3c;}

.hero-media{ position:relative; }
.hero-photo{ position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lift); aspect-ratio: 4/4.6; }
.hero-photo img{width:100%;height: 100% !important;object-fit:cover;}
.hero-photo::after{content:"";position:absolute;inset:0;background: linear-gradient(0deg, rgba(15,42,58,.55), transparent 46%);top: 0;}
.floating-card{
  position:absolute; left:-28px; bottom:32px; z-index:2;
  background: var(--card-bg); border:1px solid #e2e8f0; border-radius: var(--radius-md);
  padding: 16px 18px; box-shadow: var(--shadow-lift); display:flex; align-items:center; gap:12px; max-width:230px;
}
.floating-card .fc-icon{ width:40px; height:40px; border-radius:10px; background: rgba(var(--accent-primary-rgb),.12); color: var(--accent-primary); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.floating-card .fc-icon svg{ width:20px; height:20px; }
.floating-card b{ display:block; font-size:.92rem; }
.floating-card span{ font-size:.78rem; color:var(--text-secondary); }

/* Trajectory / signature path */
.trajectory{ margin-top: 56px; }
.trajectory svg{ width:100%; height:auto; display:block; overflow: visible; }
.trajectory-path{fill:none;stroke: var(--accent-primary);stroke-width:2.5;stroke-linecap:round;stroke-dasharray: 1160;stroke-dashoffset: 1160;transition: stroke-dashoffset 1.6s cubic-bezier(.2,.7,.2,1);}
.trajectory.in-view .trajectory-path{ stroke-dashoffset:0; }
.trajectory-node circle{ fill: var(--bg-primary); stroke: var(--accent-primary); stroke-width:2.5; opacity:0; transform: scale(.4); transform-origin:center; transition: all .5s ease; }
.trajectory.in-view .trajectory-node circle{ opacity:1; transform: scale(1); }
.trajectory-node:nth-child(2) circle{ transition-delay:.5s; }
.trajectory-node:nth-child(3) circle{ transition-delay:.95s; }
.trajectory-node:nth-child(4) circle{ transition-delay:1.4s; }
.trajectory-labels{ display:grid; grid-template-columns: repeat(3,1fr); margin-top:10px; text-align:center; }
.trajectory-labels span{font-family: var(--font-mono);font-size:.76rem;letter-spacing:.04em;color: #011b3c;text-transform:uppercase;}

/* ---------- Marquee / logo strip ---------- */
.strip{ padding: 26px 0; border-top:1px solid #e2e8f0; border-bottom:1px solid #e2e8f0; }
.strip-inner{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:18px; }
.strip-item{ display:flex; align-items:center; gap:10px; color: var(--text-secondary); font-size:.9rem; font-weight:500; }
.strip-item svg{ width:18px; height:18px; color: var(--accent-primary); }

/* ---------- Cards ---------- */
.grid{ display:grid; gap: 26px; }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }

.card{
  background: var(--card-bg);
  border: 1px solid #011b3c1a;
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: transparent; }
.card-icon{ width:50px; height:50px; border-radius: 13px; background: rgba(var(--accent-primary-rgb),.12); color: var(--accent-primary); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.card-icon svg{ width:24px; height:24px; }
.card h3{font-size: 18px;margin-bottom:8px;color: #f26522;}
.card p{font-size: 15px;margin-bottom:0;}

/* Course card */
.course-card{ background: var(--card-bg); border:1px solid #f5652254; border-radius: var(--radius-lg); overflow:hidden; transition: transform .3s ease, box-shadow .3s ease; display:flex; flex-direction:column; }
.course-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.course-media{ position:relative; aspect-ratio: 16/10.5; overflow:hidden; }
.course-media img{ width:100%; height:100% !important; object-fit:cover; transition: transform .5s ease; }
.course-card:hover .course-media img{ transform: scale(1.06); }
.course-tag{ position:absolute; top:16px; left:16px; background: rgba(15,20,26,.72); backdrop-filter: blur(6px); color:#fff; font-family: var(--font-mono); font-size:.72rem; letter-spacing:.05em; text-transform:uppercase; padding:6px 12px; border-radius:999px; }
.course-body{ padding: 26px 26px 28px; flex:1; display:flex; flex-direction:column; }
.course-body h3{font-size: 18px;margin-bottom:8px;color: #f26522;}
.course-body p{font-size: 15px;flex:1;}
.course-meta{ display:flex; align-items:center; gap:16px; margin: 16px 0 20px; flex-wrap:wrap; }
.course-meta span{ display:flex; align-items:center; gap:6px; font-size:.8rem; color: var(--text-secondary); font-family: var(--font-mono); }
.course-meta svg{ width:15px; height:15px; color: var(--accent-primary); }
.course-body .btn{align-self:flex-start;font-size: 15px;}

/* Skill pill list */
.pill-list{ display:flex; flex-wrap:wrap; gap:10px; }
.pill{ display:flex; align-items:center; gap:8px; padding:10px 16px; border:1px solid #e2e8f0; border-radius:999px; background: var(--bg-secondary); font-size:.87rem; font-weight:500; }
.pill svg{ width:15px; height:15px; color: var(--accent-primary); flex-shrink:0; }

/* Check list */
ul.check-list{
  display: flex;
  flex-wrap:wrap;
}
.check-list li{display:flex;align-items: center;gap:12px;padding:10px 0;border-bottom:1px dashed #e2e8f0;max-width: 100%;flex:0 0 50%}
.check-list li:last-child{ border-bottom:none; }
.check-list svg{ width:19px; height:19px; color: var(--accent-primary); flex-shrink:0; margin-top:1px; }

/* Numbered / process steps (used for the genuine 3-stage Learn>Practice>Launch journey) */
.steps{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; counter-reset: step; }
.step{position:relative;padding: 30px 26px 26px;border: 1px solid #011b3c1a;border-radius: var(--radius-md);background: var(--card-bg);}
.step .step-index{ font-family: var(--font-mono); color: var(--accent-primary); font-size:.8rem; letter-spacing:.06em; margin-bottom:14px; display:block; }
.step h3{font-size: 18px;color: #f26522;}

/* Testimonial */
.testimonial{ background: var(--card-bg); border:1px solid #e2e8f0; border-radius: var(--radius-lg); padding: 32px; }
.testimonial p{ font-size:1.02rem; color: var(--text-primary); }
.testi-person{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.testi-avatar{ width:44px; height:44px; border-radius:50%; background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover)); color:#fff; display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-weight:700; flex-shrink:0; }
.testi-person b{ display:block; font-size:.92rem; }
.testi-person span{ font-size:.8rem; color: var(--text-secondary); }
.stars{ display:flex; gap:3px; color: var(--accent-primary); margin-bottom:12px; }
.stars svg{ width:15px; height:15px; }

/* CTA band */
.cta-band{
  border-radius: var(--radius-lg); padding: 56px; text-align:center; position:relative; overflow:hidden;
  background: linear-gradient(135deg, var(--text-primary), #16405a);
  color:#fff;
}
html[data-theme="dark"] .cta-band{ background: linear-gradient(135deg, #0d2233, #163149); }
.cta-band h2{ color:#fff; }
.cta-band p{color: rgba(255,255,255,.75);max-width: 100%;margin-left:auto;margin-right:auto;}
.cta-band .btn-outline{ border-color: rgba(255,255,255,.35); color:#fff; }
.cta-band .btn-outline:hover{ border-color:#fff; }

/* ---------- Footer ---------- */
.footer{ background: var(--bg-secondary); border-top:1px solid #e2e8f0; padding-top: 70px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer h4{font-size:13px;margin-bottom: 18px;color: #f26522;}
.footer-links li{ margin-bottom:11px; }
.footer-links a{color: var(--text-secondary);font-size: 13px;transition: color .2s;}
.footer-links a:hover{ color: var(--accent-primary); }
.footer-about p{font-size: 13px;max-width: 320px;margin: 20px 0 0;}
.footer-contact li{ display:flex; gap:10px; margin-bottom:14px; font-size:13px; color: var(--text-secondary); }
.footer-contact svg{ width:17px; height:17px; color: var(--accent-primary); flex-shrink:0; margin-top:2px; }
.social-row{ display:flex; gap:10px; margin-top:18px; }
.social-row a{ width:36px; height:36px; border-radius:50%; border:1px solid #e2e8f0; display:flex; align-items:center; justify-content:center; transition: all .2s; }
.social-row a:hover{ background: var(--accent-primary); border-color: var(--accent-primary); color:#fff; }
.social-row svg{ width:16px; height:16px; }
.footer-bottom{border-top: 1px solid #f2652278;padding: 22px 0;display:flex;justify-content:center;align-items:center;flex-wrap:wrap;justify-content:space-between;font-size:13px;color: var(--text-secondary);}
.footer-bottom a:hover{color:#f26522;}
.footer-trajectory{ opacity:.5; margin: 10px 0 30px; }


/* ---------- Page header (inner pages) ---------- */
.page-head{ padding: 62px 0 54px; border-bottom: 1px solid #e2e8f0; background: var(--bg-secondary); }
.breadcrumb{ display:flex; align-items:center; gap:8px; font-size:.85rem; color: var(--text-secondary); margin-bottom:16px; }
.breadcrumb svg{ width:14px; height:14px; }
.breadcrumb a:hover{ color: var(--accent-primary); }
.page-head h1{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 10px;}
.page-head p{max-width: 100%;font-size: 16px;}

/* ---------- About page ---------- */
.value-row{ display:flex; gap:16px; align-items:flex-start; padding: 18px 0; border-bottom:1px dashed #e2e8f0; }
.value-row:last-child{ border-bottom:none; }
.value-row .vr-icon{ width:44px; height:44px; border-radius:12px; background: rgba(var(--accent-primary-rgb),.12); color:var(--accent-primary); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.value-row .vr-icon svg{ width:21px; height:21px; }
.value-row h4{ font-size:1rem; margin-bottom:4px; }
.value-row p{ font-size:.9rem; margin-bottom:0; }

.audience-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:16px; }
.audience-chip{text-align:center;padding: 24px 14px;border: 1px solid #e2e8f0;border-radius: var(--radius-md);background: var(--card-bg);transition: all .2s;}
.audience-chip:hover{ border-color: var(--accent-primary); transform: translateY(-3px); }
.audience-chip svg{ width:26px; height:26px; color: var(--accent-primary); margin-bottom:10px; }
.audience-chip span{ font-size:.85rem; font-weight:500; }

.mv-card{ padding: 34px; border-radius: var(--radius-lg); border:1px solid #f5652254; background: var(--card-bg); }
.mv-card .card-icon{ margin-bottom: 20px; }

/* ---------- Course detail page ---------- */
.course-hero{ padding: 54px 0 0; }
.course-hero-grid{ display:grid; grid-template-columns: 1fr .8fr; gap: 48px; align-items:center; }
.course-hero-media{ border-radius: var(--radius-lg); overflow:hidden; aspect-ratio: 4/3.3; box-shadow: var(--shadow-lift); }
.course-hero-media img{ width:100%; height:100%; object-fit:cover; }
.duration-badges{ display:flex; gap:12px; flex-wrap:wrap; margin: 20px 0 26px; }
.duration-badge{ display:flex; align-items:center; gap:10px; padding:12px 18px; border:1px solid #e2e8f0; border-radius: var(--radius-md); background: var(--card-bg); }
.duration-badge svg{ width:19px; height:19px; color: var(--accent-primary); }
.duration-badge b{ display:block; font-size:.88rem; }
.duration-badge span{ font-size:.75rem; color: var(--text-secondary); }

.split{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:start; }
.split.reverse{ direction: rtl; }
.split.reverse > *{ direction: ltr; }

.two-col-lists{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }

.sidebar-card{ position:sticky; top: calc(var(--nav-h) + 24px); background: var(--card-bg); border:1px solid #e2e8f0; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-soft); }
.sidebar-card h3{ font-size:1.05rem; }
.sidebar-list li{ display:flex; justify-content:space-between; padding: 12px 0; border-bottom:1px solid #e2e8f0; font-size:.9rem; }
.sidebar-list li:last-child{ border-bottom:none; }
.sidebar-list li b{ font-weight:600; }
.sidebar-list li span:first-child{ color: var(--text-secondary); }

.related-strip{display:flex;gap:14px;overflow-x:auto;padding-bottom:8px;justify-content: space-between;}
.related-chip{flex-shrink:0;display:flex;align-items:center;gap:12px;padding:12px 16px 12px 12px;border:1px solid #f5652242;border-radius: 999px;background: var(--card-bg);min-width: 25%;}
a.related-chip:hover{color:#f56522;}
.related-chip img{ width:42px; height:42px; border-radius:50%; object-fit:cover; }
.related-chip b{display:block;font-size: 14px;}
.related-chip span{ font-size:.74rem; color:var(--text-secondary); }

/* ---------- Contact page ---------- */
.consec .contact-grid{
  display:flex;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
}
.consec .contact-card div {
    max-width: 100%;
    width: 100%;
}
.contact-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items:start; }
.contact-card{display:flex; align-items:center;gap:16px;padding: 22px;border: 1px solid #e2e8f0;border-radius: var(--radius-md);background: var(--card-bg);margin-bottom:16px;max-width: 100%;width: 100%;}
.col__1 p {
    display: flex;
    gap: 10px;
    margin-bottom: 20px !important;
}
.contact-card .cc-icon{ width:46px; height:46px; border-radius:12px; background: rgba(var(--accent-primary-rgb),.12); color:var(--accent-primary); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-card .cc-icon svg{ width:22px; height:22px; }
.contact-card h4{ font-size:.98rem; margin-bottom:4px; }
.contact-card p{ margin-bottom:0; font-size:14px;display: flex;
    flex-direction: column; }
.map-frame{border-radius: var(--radius-lg);overflow:hidden;border:1px solid #e2e8f0;height: 420px;max-width: 100%;width: 1200px;}
.map-frame iframe{ width:100%; height:100%; border:0; filter: grayscale(.15); }
html[data-theme="dark"] .map-frame iframe{ filter: grayscale(.4) invert(.92) contrast(.9); }
.hours-table{ width:100%; font-size:.9rem; }
.hours-table td{padding: 9px 9px;border: 1px solid #e2e8f0;color: var(--text-secondary);font-size: 14px;}
.hours-table td:last-child{ text-align:right; color: var(--text-primary); font-weight:500; }
.faq-item{ border-bottom:1px solid #e2e8f0; padding: 18px 0; }
.faq-item summary{ cursor:pointer; font-family: var(--font-display); font-weight:600; font-size:.98rem; list-style:none; display:flex; justify-content:space-between; align-items:center; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary svg{ width:18px; height:18px; color: var(--accent-primary); transition: transform .25s; flex-shrink:0; }
.faq-item[open] summary svg{ transform: rotate(45deg); }
.faq-item p{ margin-top:12px; font-size:.9rem; }

/* ---------- Back to top ---------- */
.to-top{ position:fixed; right:22px; bottom:22px; width:46px; height:46px; border-radius:50%; background: var(--accent-primary); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-lift); opacity:0; visibility:hidden; transform: translateY(10px); z-index:90; border:none; }
.to-top.show{ opacity:1; visibility:visible; transform:none; }
.to-top svg{ width:20px; height:20px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px){
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .audience-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 960px){
  .nav-links, .nav-right .btn-outline{ display:none; }
  .nav-toggle{ display:flex; }
  .hero-grid, .course-hero-grid, .split, .contact-grid{ grid-template-columns: 1fr; }
  .split.reverse{ direction: ltr; }
  .split.reverse .course-hero-media, .course-hero-grid .course-hero-media{ order:-1; }
  .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .floating-card{ left:16px; }
  .sidebar-card{ position:static; }
}
@media (max-width: 640px){
  .section{ padding: 64px 0; }
  .check-list li{flex:0 0 100%;}
  .reveal-scale.in-view{aspect-ratio: 16/9;}
  .grid-4{ grid-template-columns: 1fr; }
  .audience-grid{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap:32px; }
  .cta-band{ padding: 38px 22px; }
  .two-col-lists{ grid-template-columns: 1fr; }
  .trajectory-labels span{ font-size:.62rem; }
  .nav-inner{justify-content: center;gap: 8px;}
  .nav-right{gap:15px;}
  .address-block {flex-direction:column-reverse; gap: 30px;}
  .elementor .e-7b30818-0d4c3a4{
    justify-content:center !important;
  }
.hours-table td{font-size: 12px;}
  .cform{display:flex;flex-direction:column;}
  .col__1 p{
    flex-direction:column;
  }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer{
  position: fixed; inset:0; z-index: 200; background: var(--bg-primary);
  display:flex; flex-direction:column; padding: 24px; transform: translateX(100%);
  transition: transform .3s ease; overflow-y:auto;
}
.mobile-drawer.open{ transform: translateX(0); }
.mobile-drawer-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 30px; }
.mobile-drawer a{ display:flex; align-items:center; justify-content:space-between; padding: 16px 4px; font-family: var(--font-display); font-size:1.15rem; border-bottom:1px solid #e2e8f0; }
.mobile-drawer a svg{ width:18px; height:18px; color: var(--accent-primary); }
.mobile-sub{ padding-left: 16px; }
.mobile-sub a{ font-size:.98rem; font-family: var(--font-body); font-weight:500; padding:12px 4px; }
.mobile-drawer .btn{ margin-top:24px; }

/* =========================================================
   MOTION SYSTEM v2 Ã¢â‚¬â€ page transitions, text-split reveals,
   staggered grids, marquee, magnetic hovers, micro-interactions
   ========================================================= */

/* ---------- Page transition wipe ---------- */
.page-transition{
  position: fixed; inset: 0; z-index: 999;
  background: var(--accent-primary);
  transform: scaleY(1); transform-origin: bottom;
  pointer-events: none;
  transition: transform .7s cubic-bezier(.76,0,.24,1);
}
.page-transition.wipe-out{ transform-origin: top; transform: scaleY(0); }
.page-transition.wipe-in{ transform-origin: bottom; transform: scaleY(1); pointer-events:auto; }

/* ---------- Text split reveal (custom, Splitting.js-style) ---------- */
.split-mask{ display:inline-block; overflow:hidden; vertical-align:top; padding-bottom: .12em; margin-bottom: -.12em; }
.split-word{
  display:inline-block; will-change: transform, opacity;
  transform: translateY(112%) rotate(3deg); opacity:0;
  transition: transform .85s cubic-bezier(.16,.84,.2,1), opacity .6s ease;
  transition-delay: calc(var(--i, 0) * 45ms);
}
[data-split].split-el.in-view .split-word{ transform: none; opacity:1; }
[data-split]{ visibility: visible; }

/* ---------- Reveal variants ---------- */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view{ opacity:1; transform:none; }
.reveal-left{ opacity:0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-left.in-view{ opacity:1; transform:none; }
.reveal-right{ opacity:0; transform: translateX(32px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-right.in-view{ opacity:1; transform:none; }
.reveal-scale{ opacity:0; transform: scale(.92); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal-scale.in-view{ opacity:1; transform:none; }

/* Staggered children within a .stagger container Ã¢â‚¬â€ pure CSS nth-child cascade */
.stagger > *{ transition-delay: calc(var(--stagger-i, 0) * 90ms) !important; }
.stagger > *:nth-child(1){ --stagger-i: 0; }
.stagger > *:nth-child(2){ --stagger-i: 1; }
.stagger > *:nth-child(3){ --stagger-i: 2; }
.stagger > *:nth-child(4){ --stagger-i: 3; }
.stagger > *:nth-child(5){ --stagger-i: 4; }
.stagger > *:nth-child(6){ --stagger-i: 5; }
.stagger > *:nth-child(7){ --stagger-i: 6; }
.stagger > *:nth-child(8){ --stagger-i: 7; }

/* ---------- Marquee ---------- */
.marquee{ width:100%; overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track{ display:flex; align-items:center; gap:18px; width:max-content; animation: marquee-scroll 28s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state: paused; }
@keyframes marquee-scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.strip-item{display:flex;align-items:center;gap:10px;color: #f26522;font-size:.9rem;font-weight:500;white-space:nowrap;padding: 8px 22px;border-right: 1px solid #e2e8f0;}
.strip-item svg{ width:18px; height:18px; color: var(--accent-primary); flex-shrink:0; }

/* ---------- Nav link underline sweep ---------- */
.nav-links a{ position:relative; overflow:hidden; }
.nav-links a::after{
  content:""; position:absolute; left:16px; right:16px; bottom:0px; height:2px;
  background: var(--accent-primary); border-radius:2px; transform: scaleX(0); transform-origin:left;
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover::after, .nav-links a.active::after{ transform: scaleX(1); }
.nav-links a:hover{ background: transparent; color:#f26522;}

/* ---------- Button shine sweep + press ---------- */
.btn{ position:relative; overflow:hidden; }
.btn::before{
  content:""; position:absolute; top:0; left:-60%; width:40%; height:100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .65s ease;
}
.btn:hover::before{ left: 130%; }
.btn:active{ transform: scale(.97); }
.btn-outline::before{ background: linear-gradient(115deg, transparent, rgba(var(--accent-primary-rgb),.18), transparent); }

/* ---------- Card magnetic tilt (JS-driven via --rx/--ry) ---------- */
.card, .course-card, .step, .mv-card, .audience-chip{
  transform: perspective(900px) rotateX(var(--ry,0)) rotateY(var(--rx,0)) translateZ(0);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.card:hover, .step:hover, .mv-card:hover{ box-shadow: var(--shadow-lift); border-color: transparent; }
.course-card{ transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease; }

/* Icon pop on card hover */
.card-icon{ transition: transform .4s cubic-bezier(.34,1.56,.64,1), background .3s ease; }
.card:hover .card-icon, .step:hover .card-icon{ transform: scale(1.12) rotate(-6deg); background: var(--accent-primary); color:#fff; }

/* ---------- Theme toggle icon motion ---------- */
.theme-toggle svg{ transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .25s ease; }
.theme-toggle.spin svg{ transform: rotate(220deg) scale(.7); opacity:0; }

/* ---------- Hero / media clip reveal on load ---------- */
.hero-photo, .course-hero-media{
  clip-path: inset(0 0 0 0);
  animation: clip-reveal 1.15s cubic-bezier(.16,.84,.2,1) .35s both;
}
@keyframes clip-reveal{ from{ clip-path: inset(0 0 0 100%); } to{ clip-path: inset(0 0 0 0%); } }
.hero-photo img{ animation: img-zoom-out 1.4s cubic-bezier(.16,.84,.2,1) .35s both; }
@keyframes img-zoom-out{ from{ transform: scale(1.22); } to{ transform: scale(1); } }

.floating-card{ animation: float-in .7s cubic-bezier(.2,.8,.2,1) .9s both, float-bob 5s ease-in-out 1.7s infinite; }
@keyframes float-in{ from{ opacity:0; transform: translateY(24px) scale(.9); } to{ opacity:1; transform:none; } }
@keyframes float-bob{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }

/* ---------- Ambient cursor glow (hero / page-head sections) ---------- */
.glow-surface{ position:relative; isolation:isolate; }
.glow-surface::before{
  content:""; position:absolute; inset:0; z-index:-1; opacity:0; transition: opacity .4s ease;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,20%), rgba(var(--accent-primary-rgb),.14), transparent 65%);
}
.glow-surface:hover::before{ opacity:1; }

/* ---------- Mobile drawer link stagger ---------- */
.mobile-drawer a{ opacity:0; transform: translateX(24px); transition: opacity .4s ease, transform .4s cubic-bezier(.2,.8,.2,1); }
.mobile-drawer.open a{ opacity:1; transform:none; }
.mobile-drawer a:nth-child(1){ transition-delay: .08s; }
.mobile-drawer.open .mobile-drawer-top ~ a:nth-of-type(1){ transition-delay:.08s; }
.mobile-drawer a:nth-of-type(2){ transition-delay: .13s; }
.mobile-drawer a:nth-of-type(3){ transition-delay: .18s; }
.mobile-drawer .mobile-sub a:nth-of-type(1){ transition-delay: .21s; }
.mobile-drawer .mobile-sub a:nth-of-type(2){ transition-delay: .25s; }
.mobile-drawer .mobile-sub a:nth-of-type(3){ transition-delay: .29s; }
.mobile-drawer .mobile-sub a:nth-of-type(4){ transition-delay: .33s; }
.mobile-drawer a:nth-of-type(4){ transition-delay: .37s; }
.mobile-drawer .btn{ opacity:0; transform: translateY(16px); transition: opacity .4s ease .42s, transform .4s ease .42s; }
.mobile-drawer.open .btn{ opacity:1; transform:none; }

/* ---------- Sticky navbar shrink ---------- */
.navbar{ transition: height .3s ease, box-shadow .3s ease; }
.navbar.scrolled{ height: 100px; box-shadow: var(--shadow-soft); }

/* ---------- Underline link hover for footer & body copy links ---------- */
.footer-links a, .contact-card a{ background-image: linear-gradient(var(--accent-primary), var(--accent-primary)); background-position: 0 100%; background-repeat: no-repeat; background-size: 0% 1px; transition: background-size .3s ease, color .2s ease; }
.footer-links a:hover, .contact-card a:hover{ background-size: 28% 1px; }

/* ---------- FAQ accordion smoothing ---------- */
.faq-item{transition: background-color .25s ease;border-radius: 10px;padding: 20px;border: 1px solid #011b3c30;margin: 20px 0 0;}
.faq-item:hover{ background: var(--bg-secondary); }
.faq-item summary svg{ transition: transform .3s cubic-bezier(.2,.8,.2,1); }

/* ---------- To-top button ---------- */
.to-top{ transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1), background .2s ease; }
.to-top:hover{ background: var(--accent-hover); transform: translateY(-4px) scale(1.05); }

/* ---------- Reduced motion: strip everything back to instant ---------- */
@media (prefers-reduced-motion: reduce){
  .split-word{ transform:none !important; opacity:1 !important; transition:none !important; }
  .marquee-track{ animation:none !important; }
  .page-transition{ transition:none !important; }
  .hero-photo, .course-hero-media, .hero-photo img, .floating-card{ animation:none !important; clip-path:none !important; }
  .card, .course-card, .step, .mv-card, .audience-chip{ transform:none !important; }
}

/* Small screens: soften translate distances so text never clips off-canvas */
@media (max-width: 640px){
  .split-word{ transform: translateY(80%) rotate(1deg); }
  .marquee-track{ animation-duration: 20s; }
}